From a79be23ccdf7883c51b17abcdfda98dcdd24179d Mon Sep 17 00:00:00 2001 From: Tykayn Date: Fri, 18 Apr 2025 15:34:53 +0200 Subject: [PATCH] add open plaques --- config.ts | 4 + csv_to_geojson.ts | 16 +- csv_to_geojson.utils.ts | 82 +- .../.~lock.open-plaques-gb-2021-05-14.csv# | 1 + .../plaques_commémoratives/uk_stats.txt | 456 + mappings/converters/configOpenPlaquesUK.ts | 68 + output/converted_ | 114310 +++++++++++++++ tests/main.test.js | 8 +- 8 files changed, 114916 insertions(+), 29 deletions(-) create mode 100644 etalab_data/plaques_commémoratives/.~lock.open-plaques-gb-2021-05-14.csv# create mode 100644 etalab_data/plaques_commémoratives/uk_stats.txt create mode 100644 mappings/converters/configOpenPlaquesUK.ts create mode 100644 output/converted_ diff --git a/config.ts b/config.ts index d7f214c..19d6ac4 100644 --- a/config.ts +++ b/config.ts @@ -42,10 +42,14 @@ let listOfBooleanKeys = [ ] let irve_max_output = 401 // limite de kW de puissance pour une borne de recharge publique +import MappingOpenPlaquesUK from './mappings/converters/configOpenPlaquesUK' +import MappingOpenPlaques from './mappings/converters/configOpenPlaques' const limitWarningPercentageChangeInPoints = 5; // show a warning when more than N percent of the number of points changed const allowed_configs: any = { + MappingOpenPlaques, + MappingOpenPlaquesUK, MappingPlaquesCommémorativesParis, MappingPanneauxMaxSpeed, MappingArbresRemarquablesRouen, diff --git a/csv_to_geojson.ts b/csv_to_geojson.ts index 3f63e02..46d419d 100644 --- a/csv_to_geojson.ts +++ b/csv_to_geojson.ts @@ -8,7 +8,7 @@ * npx ts-node csv_to_geojson.ts -d etalab_data/panneaux -f panneaux_limite_de_vitesse_fr_panoramax_detections.csv --latColumn 'GPSLatitude' --lonColumn 'GPSLongitude' -h * */ -import fs from 'fs'; +import fs, { writeFile } from 'fs'; import path from 'path'; import minimist from 'minimist'; import { csvToGeoJSON, checkFile, countGeoJSONFeatures } from './csv_to_geojson.utils'; @@ -20,9 +20,9 @@ const args = minimist(process.argv.slice(2), { alias: { dir: 'd', // dossier source file: 'f', // fichier source - // infos pour un fichier CSV en source au lieu d'un fichier geojson latColumn: 'lat', // colonne latitude lonColumn: 'lon', // colonne longitude + wktColumn: 'wkt', // Nouvelle alias pour la colonne WKT hasHeaders: 'h', // headers présents }, default: { @@ -32,5 +32,15 @@ const args = minimist(process.argv.slice(2), { checkFile(args); -csvToGeoJSON(args); +let geojsonContent = csvToGeoJSON(args); + +// Construire le chemin de sortie dans le même dossier que le fichier source +const outputPath = path.join(args.dir, `${args.file}.geojson`); + +// Écrire le fichier GeoJSON +fs.writeFileSync(outputPath, JSON.stringify(geojsonContent, null, 2)); + +console.log(`Fichier GeoJSON créé: ${outputPath}`); + + countGeoJSONFeatures(args); diff --git a/csv_to_geojson.utils.ts b/csv_to_geojson.utils.ts index 86e4529..0938661 100644 --- a/csv_to_geojson.utils.ts +++ b/csv_to_geojson.utils.ts @@ -9,34 +9,53 @@ let counter_features = 0; let counter_missing_lat = 0; let counter_missing_lon = 0; +// Liste des séparateurs à essayer +const separators = ["|", ';', ',', '\t'] + export interface CSVConversionOptions { dir: string; file: string; latColumn?: string; lonColumn?: string; + wktColumn?: string; hasHeaders?: boolean; } -function parseCoordinates(value: string): { lat: number; lon: number } | null { +function parseCoordinates(value: string, isWKT: boolean = false): { lat: number; lon: number } | null { if (!value) return null; - const parts = value.split(';'); - if (parts.length >= 2) { - const lat = parseFloat(parts[0]); - const lon = parseFloat(parts[1]); - if (!isNaN(lat) && !isNaN(lon)) { - return { lat, lon }; + if (isWKT) { + // Essayer de parser le format WKT POINT(lon lat) + const wktMatch = value.match(/^POINT\s?\(\s?(-?\d+(\.\d+)?)\s+(-?\d+(\.\d+)?)\s?\)$/i); + if (wktMatch && wktMatch.length >= 4) { + const lon = parseFloat(wktMatch[1]); // Le premier groupe capturé est la longitude + const lat = parseFloat(wktMatch[3]); // Le troisième groupe capturé est la latitude + if (!isNaN(lat) && !isNaN(lon)) { + return { lat, lon }; + } + } + } else { + // Essayer de parser le format "lat;lon" + const parts = value.split(';'); + if (parts.length >= 2) { + const lat = parseFloat(parts[0]); + const lon = parseFloat(parts[1]); + if (!isNaN(lat) && !isNaN(lon)) { + return { lat, lon }; + } } } - return null; + + return null; // Retourner null si aucun format valide n'est trouvé } function csvToGeoJSON(options: CSVConversionOptions): FeatureCollection { - const { dir, file, latColumn, lonColumn, hasHeaders } = options; + const { dir, file, latColumn, lonColumn, wktColumn, hasHeaders } = options; const filePath = path.join(dir, file); + console.log('csvToGeoJSON: filePath', filePath) if (!fs.existsSync(filePath)) { - console.error(`Le fichier ${filePath} n'existe pas`); + console.error(`!!!!!!!!! Le fichier ${filePath} n'existe pas`); return { type: 'FeatureCollection', features: [] }; } @@ -44,35 +63,59 @@ function csvToGeoJSON(options: CSVConversionOptions): FeatureCollection { const lines = csvContent.split('\n'); const features: Feature[] = []; + + // Détecter le meilleur séparateur en utilisant la première ligne + let bestSeparator = ';'; + let maxColumns = 0; + + if (lines.length > 0) { + for (const separator of separators) { + const columnCount = lines[0].split(separator).length; + if (columnCount > maxColumns) { + maxColumns = columnCount; + bestSeparator = separator; + } + } + console.log(`Utilisation du séparateur "${bestSeparator}" (${maxColumns} colonnes détectées)`); + } + const startIndex = hasHeaders ? 1 : 0; - const headers = hasHeaders ? lines[0].split(';') : null; + const headers = hasHeaders ? lines[0].split(bestSeparator) : null; for (let i = startIndex; i < lines.length; i++) { const line = lines[i].trim(); if (!line) continue; - const values = line.split(';'); + const values = line.split(bestSeparator); const row: { [key: string]: any } = {}; if (headers) { headers.forEach((header, index) => { - row[header] = values[index]; + row[header.trim()] = values[index]?.trim(); }); } else { values.forEach((value, index) => { - row[`column${index}`] = value; + row[`column${index}`] = value.trim(); }); } let coordinates: { lat: number; lon: number } | null = null; - if (latColumn && lonColumn) { + + // Priorité 1: Colonne WKT + if (wktColumn && row[wktColumn]) { + coordinates = parseCoordinates(row[wktColumn], true); + } + // Priorité 2: Colonnes Lat/Lon séparées + else if (latColumn && lonColumn && row[latColumn] && row[lonColumn]) { const lat = parseFloat(row[latColumn]); const lon = parseFloat(row[lonColumn]); if (!isNaN(lat) && !isNaN(lon)) { coordinates = { lat, lon }; } - } else if (row['geo_point_2d']) { - coordinates = parseCoordinates(row['geo_point_2d']); + } + // Priorité 3: Colonne 'geo_point_2d' avec format "lat;lon" + else if (row['geo_point_2d']) { + coordinates = parseCoordinates(row['geo_point_2d'], false); } if (coordinates) { @@ -85,6 +128,9 @@ function csvToGeoJSON(options: CSVConversionOptions): FeatureCollection { properties: row }); } + // else { + // // console.log('csvToGeoJSON: coordinates', row) + // } } return { @@ -100,8 +146,6 @@ function checkFile(args: CSVConversionOptions) { // Vérifier si le fichier existe if (!fs.existsSync(filePath)) { throw new Error(`Le fichier CSV ${filePath} n'existe pas`); - } else { - console.log(`Le fichier CSV ${filePath} existe`); } fs.createReadStream(filePath) diff --git a/etalab_data/plaques_commémoratives/.~lock.open-plaques-gb-2021-05-14.csv# b/etalab_data/plaques_commémoratives/.~lock.open-plaques-gb-2021-05-14.csv# new file mode 100644 index 0000000..60da6aa --- /dev/null +++ b/etalab_data/plaques_commémoratives/.~lock.open-plaques-gb-2021-05-14.csv# @@ -0,0 +1 @@ +,tykayn,spaceship,17.04.2025 18:27,file:///home/tykayn/.config/libreoffice/4; \ No newline at end of file diff --git a/etalab_data/plaques_commémoratives/uk_stats.txt b/etalab_data/plaques_commémoratives/uk_stats.txt new file mode 100644 index 0000000..2785aaf --- /dev/null +++ b/etalab_data/plaques_commémoratives/uk_stats.txt @@ -0,0 +1,456 @@ + +Fichier GeoJSON chargé: etalab_data/plaques_commémoratives/open-plaques-gb-2021-05-14.csv.geojson +Nombre de features: 7858 + +=== Statistiques des valeurs par propriété === + +Propriété: id +- Total d'occurrences: 7858 +- Valeurs uniques: 7858 +- Top 5 des valeurs les plus fréquentes: + "2": 1 occurrences (0%) + "3": 1 occurrences (0%) + "4": 1 occurrences (0%) + "5": 1 occurrences (0%) + "6": 1 occurrences (0%) + ... et 7853 autres valeurs + +Propriété: machine_tag +- Total d'occurrences: 7858 +- Valeurs uniques: 7858 +- Top 5 des valeurs les plus fréquentes: + "openplaques:id=41936": 1 occurrences (0%) + "openplaques:id=4856": 1 occurrences (0%) + "openplaques:id=53515": 1 occurrences (0%) + "openplaques:id=1729": 1 occurrences (0%) + "openplaques:id=12236": 1 occurrences (0%) + ... et 7853 autres valeurs + +Propriété: title +- Total d'occurrences: 7858 +- Valeurs uniques: 7230 +- Top 5 des valeurs les plus fréquentes: + "Edgar Wood green plaque": 14 occurrences (0%) + "The Trafalgar Way and John Richards Lapenotiere...": 12 occurrences (0%) + "Charles Dickens blue plaque": 11 occurrences (0%) + "John Wesley blue plaque": 9 occurrences (0%) + "H. G. Wells blue plaque": 9 occurrences (0%) + ... et 7225 autres valeurs + +Propriété: inscription +- Total d'occurrences: 7858 +- Valeurs uniques: 7834 +- Top 5 des valeurs les plus fréquentes: + "Frank Matcham (1854-1920) theatre architect des...": 7 occurrences (0%) + "Issued to celebrate Nine Hundred years of Norma...": 4 occurrences (0%) + "1912 - This building is one of three branch lib...": 3 occurrences (0%) + "Carlton Terrace. This large terrace was designe...": 3 occurrences (0%) + "Charlie Chaplin": 2 occurrences (0%) + ... et 7829 autres valeurs + +Propriété: latitude +- Total d'occurrences: 7858 +- Valeurs uniques: 7034 +- Top 5 des valeurs les plus fréquentes: + "0.0": 59 occurrences (1%) + "51.51001": 21 occurrences (0%) + "51.51841": 12 occurrences (0%) + "51.4288": 9 occurrences (0%) + "51.5118": 8 occurrences (0%) + ... et 7029 autres valeurs + +Propriété: longitude +- Total d'occurrences: 7858 +- Valeurs uniques: 7438 +- Top 5 des valeurs les plus fréquentes: + "-0.22583": 22 occurrences (0%) + "0.0": 13 occurrences (0%) + "-0.14371": 12 occurrences (0%) + "-0.32248": 9 occurrences (0%) + "-0.34912": 7 occurrences (0%) + ... et 7433 autres valeurs + +Propriété: as_wkt +- Total d'occurrences: 7858 +- Valeurs uniques: 7685 +- Top 5 des valeurs les plus fréquentes: + "POINT(-0.22583 51.51001)": 21 occurrences (0%) + "POINT(0.0 0.0)": 13 occurrences (0%) + "POINT(-0.14371 51.51841)": 12 occurrences (0%) + "POINT(-0.32248 51.4288)": 9 occurrences (0%) + "POINT(-0.34912 51.44385)": 6 occurrences (0%) + ... et 7680 autres valeurs + +Propriété: country +- Total d'occurrences: 7858 +- Valeurs uniques: 1 +- Toutes les valeurs: + "United Kingdom": 7858 occurrences (100%) + +Propriété: area +- Total d'occurrences: 7858 +- Valeurs uniques: 1174 +- Top 5 des valeurs les plus fréquentes: + "London": 2258 occurrences (29%) + "Edinburgh": 228 occurrences (3%) + "Liverpool": 168 occurrences (2%) + "Birmingham": 159 occurrences (2%) + "Manchester": 103 occurrences (1%) + ... et 1169 autres valeurs + +Propriété: address +- Total d'occurrences: 7858 +- Valeurs uniques: 6601 +- Top 5 des valeurs les plus fréquentes: + "": 311 occurrences (4%) + "High Street": 96 occurrences (1%) + "?": 44 occurrences (1%) + "Church Street": 31 occurrences (0%) + "BBC Television Centre": 24 occurrences (0%) + ... et 6596 autres valeurs + +Propriété: erected +- Total d'occurrences: 7858 +- Valeurs uniques: 2325 +- Top 5 des valeurs les plus fréquentes: + "": 3254 occurrences (41%) + "Westminster": 126 occurrences (2%) + "1996": 65 occurrences (1%) + "Kensington and Chelsea": 62 occurrences (1%) + "2000": 61 occurrences (1%) + ... et 2320 autres valeurs + +Propriété: main_photo +- Total d'occurrences: 7858 +- Valeurs uniques: 4372 +- Top 5 des valeurs les plus fréquentes: + "": 2183 occurrences (28%) + "W1"": 88 occurrences (1%) + "1996": 46 occurrences (1%) + "2010": 43 occurrences (1%) + "2017": 43 occurrences (1%) + ... et 4367 autres valeurs + +Propriété: colour +- Total d'occurrences: 7858 +- Valeurs uniques: 2097 +- Top 5 des valeurs les plus fréquentes: + "blue": 2068 occurrences (26%) + "": 1080 occurrences (14%) + "black": 457 occurrences (6%) + "green": 317 occurrences (4%) + "bronze": 302 occurrences (4%) + ... et 2092 autres valeurs + +Propriété: organisations +- Total d'occurrences: 7858 +- Valeurs uniques: 1781 +- Top 5 des valeurs les plus fréquentes: + "[]": 1732 occurrences (22%) + "blue": 1268 occurrences (16%) + "": 307 occurrences (4%) + "green": 193 occurrences (2%) + "black": 188 occurrences (2%) + ... et 1776 autres valeurs + +Propriété: language +- Total d'occurrences: 7858 +- Valeurs uniques: 925 +- Top 5 des valeurs les plus fréquentes: + "English": 3980 occurrences (51%) + "[]": 701 occurrences (9%) + "blue": 604 occurrences (8%) + ""[""administered by English Heritage as part of...": 160 occurrences (2%) + ""[""Corporation of London""]"": 71 occurrences (1%) + ... et 920 autres valeurs + +Propriété: series +- Total d'occurrences: 7858 +- Valeurs uniques: 420 +- Top 5 des valeurs les plus fréquentes: + "": 3737 occurrences (48%) + "English": 2340 occurrences (30%) + ""[""administered by English Heritage as part of...": 361 occurrences (5%) + "blue": 166 occurrences (2%) + "[]": 147 occurrences (2%) + ... et 415 autres valeurs + +Propriété: series_ref +- Total d'occurrences: 7858 +- Valeurs uniques: 229 +- Top 5 des valeurs les plus fréquentes: + "": 6115 occurrences (78%) + "English": 787 occurrences (10%) + """English Heritage""]"": 132 occurrences (2%) + ""[""administered by English Heritage as part of...": 128 occurrences (2%) + """London County Council""]"": 118 occurrences (2%) + ... et 224 autres valeurs + +Propriété: geolocated? +- Total d'occurrences: 7858 +- Valeurs uniques: 99 +- Top 5 des valeurs les plus fréquentes: + "true": 4046 occurrences (51%) + "": 3053 occurrences (39%) + "English": 482 occurrences (6%) + """English Heritage""]"": 79 occurrences (1%) + """Greater London Council""]"": 39 occurrences (0%) + ... et 94 autres valeurs + +Propriété: photographed? +- Total d'occurrences: 7858 +- Valeurs uniques: 34 +- Top 5 des valeurs les plus fréquentes: + "true": 5800 occurrences (74%) + "": 1240 occurrences (16%) + "false": 622 occurrences (8%) + "English": 144 occurrences (2%) + "L.C.C. Medallion": 8 occurrences (0%) + ... et 29 autres valeurs + +Propriété: number_of_subjects +- Total d'occurrences: 7858 +- Valeurs uniques: 11 +- Top 5 des valeurs les plus fréquentes: + "1": 2654 occurrences (34%) + "true": 2642 occurrences (34%) + "0": 1093 occurrences (14%) + "": 624 occurrences (8%) + "false": 527 occurrences (7%) + ... et 6 autres valeurs + +Propriété: number_of_male_subjects +- Total d'occurrences: 7858 +- Valeurs uniques: 10 +- Toutes les valeurs: + "1": 4133 occurrences (53%) + "0": 1845 occurrences (23%) + "true": 1120 occurrences (14%) + "2": 444 occurrences (6%) + "false": 156 occurrences (2%) + "": 156 occurrences (2%) + "BBC Yorkshire 1": 1 occurrences (0%) + """London County Council""]"": 1 occurrences (0%) + """Esso UK PLC""]"": 1 occurrences (0%) + """English Heritage""]"": 1 occurrences (0%) + +Propriété: number_of_female_subjects +- Total d'occurrences: 7858 +- Valeurs uniques: 7 +- Toutes les valeurs: + "0": 4430 occurrences (56%) + "1": 2546 occurrences (32%) + "true": 595 occurrences (8%) + "2": 239 occurrences (3%) + "false": 32 occurrences (0%) + "": 13 occurrences (0%) + "English": 3 occurrences (0%) + +Propriété: number_of_inanimate_subjects +- Total d'occurrences: 7858 +- Valeurs uniques: 6 +- Toutes les valeurs: + "0": 5676 occurrences (72%) + "1": 1902 occurrences (24%) + "true": 153 occurrences (2%) + "2": 120 occurrences (2%) + "false": 4 occurrences (0%) + "": 3 occurrences (0%) + +Propriété: lead_subject_id +- Total d'occurrences: 7858 +- Valeurs uniques: 2507 +- Top 5 des valeurs les plus fréquentes: + "0": 2775 occurrences (35%) + "": 1096 occurrences (14%) + "1": 971 occurrences (12%) + "2": 54 occurrences (1%) + "413": 18 occurrences (0%) + ... et 2502 autres valeurs + +Propriété: lead_subject_machine_tag +- Total d'occurrences: 7858 +- Valeurs uniques: 4195 +- Top 5 des valeurs les plus fréquentes: + "": 1538 occurrences (20%) + "0": 1117 occurrences (14%) + "1": 300 occurrences (4%) + "openplaques:subject:id=413": 18 occurrences (0%) + "2": 17 occurrences (0%) + ... et 4190 autres valeurs + +Propriété: lead_subject_name +- Total d'occurrences: 7858 +- Valeurs uniques: 4846 +- Top 5 des valeurs les plus fréquentes: + "": 1629 occurrences (21%) + "0": 584 occurrences (7%) + "1": 53 occurrences (1%) + "Charles Dickens": 18 occurrences (0%) + "John Wesley": 17 occurrences (0%) + ... et 4841 autres valeurs + +Propriété: lead_subject_surname +- Total d'occurrences: 7858 +- Valeurs uniques: 4720 +- Top 5 des valeurs les plus fréquentes: + "": 1664 occurrences (21%) + "0": 149 occurrences (2%) + "Smith": 24 occurrences (0%) + "Scott": 19 occurrences (0%) + "Wesley": 18 occurrences (0%) + ... et 4715 autres valeurs + +Propriété: lead_subject_sex +- Total d'occurrences: 7858 +- Valeurs uniques: 2639 +- Top 5 des valeurs les plus fréquentes: + "male": 1992 occurrences (25%) + "": 1667 occurrences (21%) + "object": 622 occurrences (8%) + "female": 339 occurrences (4%) + "Wood": 16 occurrences (0%) + ... et 2634 autres valeurs + +Propriété: lead_subject_born_in +- Total d'occurrences: 7858 +- Valeurs uniques: 1630 +- Top 5 des valeurs les plus fréquentes: + "": 2249 occurrences (29%) + "male": 1377 occurrences (18%) + "object": 330 occurrences (4%) + "female": 224 occurrences (3%) + "1874": 40 occurrences (1%) + ... et 1625 autres valeurs + +Propriété: lead_subject_died_in +- Total d'occurrences: 7858 +- Valeurs uniques: 1037 +- Top 5 des valeurs les plus fréquentes: + "": 2723 occurrences (35%) + "male": 519 occurrences (7%) + "object": 93 occurrences (1%) + "female": 90 occurrences (1%) + "1892": 36 occurrences (0%) + ... et 1032 autres valeurs + +Propriété: lead_subject_type +- Total d'occurrences: 7858 +- Valeurs uniques: 533 +- Top 5 des valeurs les plus fréquentes: + "": 2085 occurrences (27%) + "man": 2032 occurrences (26%) + "male": 380 occurrences (5%) + "place": 377 occurrences (5%) + "woman": 339 occurrences (4%) + ... et 528 autres valeurs + +Propriété: lead_subject_roles +- Total d'occurrences: 7858 +- Valeurs uniques: 1560 +- Top 5 des valeurs les plus fréquentes: + "man": 1395 occurrences (18%) + "[]": 1322 occurrences (17%) + "": 659 occurrences (8%) + "woman": 224 occurrences (3%) + "place": 184 occurrences (2%) + ... et 1555 autres valeurs + +Propriété: lead_subject_primary_role +- Total d'occurrences: 7858 +- Valeurs uniques: 2622 +- Top 5 des valeurs les plus fréquentes: + "": 1464 occurrences (19%) + "man": 524 occurrences (7%) + "[]": 511 occurrences (7%) + "woman": 89 occurrences (1%) + ""[""poet""": 59 occurrences (1%) + ... et 2617 autres valeurs + +Propriété: lead_subject_wikipedia +- Total d'occurrences: 7858 +- Valeurs uniques: 2838 +- Top 5 des valeurs les plus fréquentes: + "": 2447 occurrences (31%) + "man": 381 occurrences (5%) + "[]": 113 occurrences (1%) + "woman": 57 occurrences (1%) + "poet": 47 occurrences (1%) + ... et 2833 autres valeurs + +Propriété: lead_subject_dbpedia +- Total d'occurrences: 7858 +- Valeurs uniques: 3137 +- Top 5 des valeurs les plus fréquentes: + "": 2948 occurrences (38%) + "man": 120 occurrences (2%) + "poet": 46 occurrences (1%) + "artist": 46 occurrences (1%) + """Knight Bachelor""]"": 31 occurrences (0%) + ... et 3132 autres valeurs + +Propriété: lead_subject_image +- Total d'occurrences: 7858 +- Valeurs uniques: 3067 +- Top 5 des valeurs les plus fréquentes: + "": 3484 occurrences (44%) + """Knight Bachelor""]"": 34 occurrences (0%) + "writer": 34 occurrences (0%) + "novelist": 29 occurrences (0%) + "poet": 25 occurrences (0%) + ... et 3062 autres valeurs + +Propriété: subjects +- Total d'occurrences: 7858 +- Valeurs uniques: 4001 +- Top 5 des valeurs les plus fréquentes: + "": 1702 occurrences (22%) + "[]": 1094 occurrences (14%) + "novelist": 26 occurrences (0%) + "poet": 24 occurrences (0%) + """Prime Minister of the United Kingdom""": 22 occurrences (0%) + ... et 3996 autres valeurs + +=== Fin des statistiques === + +Suggestions de mapping OSM: +{ + "id": "ref", + "machine_tag": "", + "title": "", + "inscription": "", + "latitude": "", + "longitude": "", + "as_wkt": "", + "country": "", + "area": "", + "address": "addr:full", + "erected": "", + "main_photo": "", + "colour": "", + "organisations": "", + "language": "", + "series": "", + "series_ref": "ref", + "geolocated?": "", + "photographed?": "", + "number_of_subjects": "", + "number_of_male_subjects": "", + "number_of_female_subjects": "", + "number_of_inanimate_subjects": "", + "lead_subject_id": "ref", + "lead_subject_machine_tag": "", + "lead_subject_name": "name", + "lead_subject_surname": "name", + "lead_subject_sex": "", + "lead_subject_born_in": "", + "lead_subject_died_in": "", + "lead_subject_type": "", + "lead_subject_roles": "", + "lead_subject_primary_role": "", + "lead_subject_wikipedia": "", + "lead_subject_dbpedia": "", + "lead_subject_image": "", + "subjects": "" +} +Nombre de propriétés uniques: 37 diff --git a/mappings/converters/configOpenPlaquesUK.ts b/mappings/converters/configOpenPlaquesUK.ts new file mode 100644 index 0000000..6ecef7a --- /dev/null +++ b/mappings/converters/configOpenPlaquesUK.ts @@ -0,0 +1,68 @@ +/** + * open plaques commémoratives UK + * + * + * + * npx ts-node convert_to_osm_tags.ts --engine-config=MappingOpenPlaquesUK --source=etalab_data/open_plaques_uk.geojson + */ +import MappingConfigType from "../mapping-config.type"; + +const MappingOpenPlaquesUK: MappingConfigType = { + config_name: "MappingOpenPlaquesUK", + config_author: "tk", + default_properties_of_point: { + // Ajoutez ici les propriétés par défaut pour vos points + }, + source: { + geojson_path: '', + url: '' + }, + filters: { + // exclude_point_if_tag_not_empty: ['id_osm'], // exclure les points ayant déjà un id_osm pour éviter les doublons + // offset: 1 + }, + add_not_mapped_tags_too: false, + boolean_keys: [], + tags_to_ignore_if_value_is: ['Non renseigne'], + tags: { + "id": "openplaque:id", + // "machine_tag": "", + // "title": "", + // "inscription": "", + // "latitude": "", + // "longitude": "", + // "as_wkt": "", + // "country": "", + // "area": "", + "address": "addr:full", + "erected": "date_start", + // "main_photo": "", + // "colour": "", + // "organisations": "", + // "language": "", + // "series": "", + // "series_ref": "ref", + // "geolocated?": "", + // "photographed?": "", + // "number_of_subjects": "", + // "number_of_male_subjects": "", + // "number_of_female_subjects": "", + // "number_of_inanimate_subjects": "", + // "lead_subject_id": "ref", + // "lead_subject_machine_tag": "", + // "lead_subject_name": "name", + // "lead_subject_surname": "name", + // "lead_subject_sex": "", + // "lead_subject_born_in": "", + // "lead_subject_died_in": "", + // "lead_subject_type": "", + // "lead_subject_roles": "", + // "lead_subject_primary_role": "", + // "lead_subject_wikipedia": "", + // "lead_subject_dbpedia": "", + // "lead_subject_image": "", + // "subjects": "" + } +} + +export default MappingOpenPlaquesUK; diff --git a/output/converted_ b/output/converted_ new file mode 100644 index 0000000..0027977 --- /dev/null +++ b/output/converted_ @@ -0,0 +1,114310 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.61166, + 50.51017 + ] + }, + "properties": { + "openplaque:id": "41936" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.4251, + 51.7005 + ] + }, + "properties": { + "openplaque:id": "4856", + "addr:full": "\"Sheppard's Pharmacy", + "date_start": "218 Cardiff Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.54609, + 52.03084 + ] + }, + "properties": { + "openplaque:id": "53515" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.33414, + 51.6398 + ] + }, + "properties": { + "openplaque:id": "1729", + "addr:full": "Cardiff Road", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09749, + 57.14842 + ] + }, + "properties": { + "openplaque:id": "12236", + "addr:full": "Flourmill Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10396, + 57.17875 + ] + }, + "properties": { + "openplaque:id": "12947", + "addr:full": "\"79 Balgownie Rd", + "date_start": "Bridge of Don" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12156, + 57.1497 + ] + }, + "properties": { + "openplaque:id": "2173", + "addr:full": "3 Belvidere Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12431, + 57.1429 + ] + }, + "properties": { + "openplaque:id": "2174", + "addr:full": "38 Albyn Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12431, + 57.1429 + ] + }, + "properties": { + "openplaque:id": "2175", + "addr:full": "38 Albyn Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10276, + 57.142 + ] + }, + "properties": { + "openplaque:id": "2178", + "addr:full": "78 Dee Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10635, + 57.1585 + ] + }, + "properties": { + "openplaque:id": "2180", + "addr:full": "16 Elmbank Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09951, + 57.1584 + ] + }, + "properties": { + "openplaque:id": "2181", + "addr:full": "\"17 Spital", + "date_start": "St Margaret's Convent\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0927, + 57.14791 + ] + }, + "properties": { + "openplaque:id": "2182", + "addr:full": "Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10562, + 57.137 + ] + }, + "properties": { + "openplaque:id": "2183", + "addr:full": "8 Fonthill Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1036, + 57.1406 + ] + }, + "properties": { + "openplaque:id": "2185", + "addr:full": "66 Springbank Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10506, + 57.14937 + ] + }, + "properties": { + "openplaque:id": "30166", + "addr:full": "Woolmanhill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0965, + 57.14938 + ] + }, + "properties": { + "openplaque:id": "31593", + "addr:full": "\"Marischal College", + "date_start": "Broad Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10992, + 57.1442 + ] + }, + "properties": { + "openplaque:id": "3358", + "addr:full": "26 Chapel Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10779, + 57.137 + ] + }, + "properties": { + "openplaque:id": "3360", + "addr:full": "15 Fonthill Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10572, + 57.14772 + ] + }, + "properties": { + "openplaque:id": "3362", + "addr:full": "\"Central Library", + "date_start": "Rosemount Viaduct\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11508, + 57.143 + ] + }, + "properties": { + "openplaque:id": "3364", + "addr:full": "16 Albyn Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10338, + 57.1433 + ] + }, + "properties": { + "openplaque:id": "3366", + "addr:full": "41 Dee Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10005, + 57.14743 + ] + }, + "properties": { + "openplaque:id": "3368", + "addr:full": "\"West St Nicholas Church", + "date_start": "West Wall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10465, + 57.1417 + ] + }, + "properties": { + "openplaque:id": "3370", + "addr:full": "64 Bon Accord Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10755, + 57.1474 + ] + }, + "properties": { + "openplaque:id": "3372", + "addr:full": "48 Skene Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10128, + 57.14665 + ] + }, + "properties": { + "openplaque:id": "3374", + "addr:full": "17 Belmont Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10462, + 57.14515 + ] + }, + "properties": { + "openplaque:id": "3376", + "addr:full": "\"Music Hall", + "date_start": "South Silver Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12205, + 57.1328 + ] + }, + "properties": { + "openplaque:id": "3378", + "addr:full": "119 Broomhill Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10095, + 57.1428 + ] + }, + "properties": { + "openplaque:id": "3380", + "addr:full": "5 St Mary's Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13675, + 57.1318 + ] + }, + "properties": { + "openplaque:id": "3384", + "addr:full": "\"Thorngrove", + "date_start": "500 Great Western Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09246, + 57.1468 + ] + }, + "properties": { + "openplaque:id": "3386", + "addr:full": "46 Marischal Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10247, + 57.1373 + ] + }, + "properties": { + "openplaque:id": "3388", + "addr:full": "10 Ferryhill Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11198, + 57.1439 + ] + }, + "properties": { + "openplaque:id": "3390", + "addr:full": "39 Thistle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10204, + 57.167 + ] + }, + "properties": { + "openplaque:id": "3394", + "addr:full": "110 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.19706, + 57.1144 + ] + }, + "properties": { + "openplaque:id": "3396", + "addr:full": "\"32 Cairn Road", + "date_start": "Cults\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10297, + 57.16784 + ] + }, + "properties": { + "openplaque:id": "3398", + "addr:full": "\"Cruickshank Building", + "date_start": "Chanonry\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10406, + 57.16779 + ] + }, + "properties": { + "openplaque:id": "3400", + "addr:full": "\"Cruickshank Botanical gardens", + "date_start": "Old Aberdeen\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12375, + 57.1433 + ] + }, + "properties": { + "openplaque:id": "3402", + "addr:full": "15 Albyn Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11509, + 57.1417 + ] + }, + "properties": { + "openplaque:id": "3404", + "addr:full": "42 Union Grove" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11405, + 57.14692 + ] + }, + "properties": { + "openplaque:id": "3406", + "addr:full": "\"Grammar School", + "date_start": "Esslemont Avenue side\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10709, + 57.1371 + ] + }, + "properties": { + "openplaque:id": "3408", + "addr:full": "40 Fonthill Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0967, + 57.14952 + ] + }, + "properties": { + "openplaque:id": "3410", + "addr:full": "\"Quadrangle", + "date_start": "Marischal College" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13509, + 57.1414 + ] + }, + "properties": { + "openplaque:id": "3412", + "addr:full": "\"Rubislaw House", + "date_start": "50 Queen's Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10138, + 57.1547 + ] + }, + "properties": { + "openplaque:id": "3414", + "addr:full": "\"Causewayend School", + "date_start": "Causewayend\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09258, + 57.14858 + ] + }, + "properties": { + "openplaque:id": "3416", + "addr:full": "\"Peacock’s Close", + "date_start": "Castle Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10072, + 57.1386 + ] + }, + "properties": { + "openplaque:id": "3418", + "addr:full": "1 South Crown Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09899, + 57.14779 + ] + }, + "properties": { + "openplaque:id": "3420", + "addr:full": "\"St Nicholas Churchyard", + "date_start": "East Wall\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.14606, + 57.1376 + ] + }, + "properties": { + "openplaque:id": "3422", + "addr:full": "\"Gordon Highlanders Museum", + "date_start": "Viewfield Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10166, + 57.16399 + ] + }, + "properties": { + "openplaque:id": "3424", + "addr:full": "\"The Pend of King's College Quadrangle", + "date_start": "Old Aberdeen\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.097, + 57.14945 + ] + }, + "properties": { + "openplaque:id": "3426", + "addr:full": "\"Marischal College", + "date_start": "Quadrangle" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12952, + 57.1672 + ] + }, + "properties": { + "openplaque:id": "3428", + "addr:full": "90 Hilton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11263, + 57.1577 + ] + }, + "properties": { + "openplaque:id": "3432", + "addr:full": "98 Leslie Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10212, + 57.14303 + ] + }, + "properties": { + "openplaque:id": "3434", + "addr:full": "\"Religious Society of Friends’ Meeting House", + "date_start": "Crown Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09936, + 57.14653 + ] + }, + "properties": { + "openplaque:id": "3436", + "addr:full": "\"St Nicholas Church Frontage", + "date_start": "Union Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11277, + 57.14279 + ] + }, + "properties": { + "openplaque:id": "3438", + "addr:full": "\"Former Christ’s College", + "date_start": "Alford Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09253, + 57.1473 + ] + }, + "properties": { + "openplaque:id": "3442", + "addr:full": "35 Marischal Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12666, + 57.14295 + ] + }, + "properties": { + "openplaque:id": "3448", + "addr:full": "\"Clydesdale Bank", + "date_start": "1 Queen's Cross\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12299, + 57.1339 + ] + }, + "properties": { + "openplaque:id": "3450", + "addr:full": "45 Salisbury Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09972, + 57.14643 + ] + }, + "properties": { + "openplaque:id": "3454", + "addr:full": "Back Wynd side of Screen in front of St Nicholas Churchyard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09261, + 57.14713 + ] + }, + "properties": { + "openplaque:id": "3554", + "addr:full": "Marischal Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11992, + 57.1475 + ] + }, + "properties": { + "openplaque:id": "3570", + "addr:full": "Craigie Loanings" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10191, + 57.14811 + ] + }, + "properties": { + "openplaque:id": "3574", + "addr:full": "\"Robert Gordon's College", + "date_start": "Schoolhill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08276, + 57.1471 + ] + }, + "properties": { + "openplaque:id": "3576", + "addr:full": "\"St Clement's Church", + "date_start": "St Clement Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09978, + 57.1483 + ] + }, + "properties": { + "openplaque:id": "3582", + "addr:full": "22 Schoolhill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09978, + 57.1483 + ] + }, + "properties": { + "openplaque:id": "3584", + "addr:full": "22 Schoolhill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09993, + 57.1461 + ] + }, + "properties": { + "openplaque:id": "3586", + "addr:full": "\"131 Union Street", + "date_start": "Back Wynd Steps\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10831, + 57.1509 + ] + }, + "properties": { + "openplaque:id": "3588", + "addr:full": "21 Skene Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1227, + 57.1348 + ] + }, + "properties": { + "openplaque:id": "3590", + "addr:full": "Ruthrieston Outdoor Centre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09633, + 57.14954 + ] + }, + "properties": { + "openplaque:id": "3596", + "addr:full": "\"Marischal College Quadrangle", + "date_start": "East Wall\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10666, + 57.1428 + ] + }, + "properties": { + "openplaque:id": "3598", + "addr:full": "Bon-Accord Square", + "date_start": "1975" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1014, + 57.14772 + ] + }, + "properties": { + "openplaque:id": "3600", + "addr:full": "\"The Pier", + "date_start": "Former United Presbyterian Church (now part of Academy Shopping Centre) Belmont Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09224, + 57.14859 + ] + }, + "properties": { + "openplaque:id": "3602", + "addr:full": "Chapel Court off Castle St (Castlegate)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09248, + 57.14898 + ] + }, + "properties": { + "openplaque:id": "3606", + "addr:full": "Rear Wall of exterior of St Peter's Churchyard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06991, + 57.14226 + ] + }, + "properties": { + "openplaque:id": "3608", + "addr:full": "North Pier" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10573, + 57.1521 + ] + }, + "properties": { + "openplaque:id": "42254", + "addr:full": "34 Maberley Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10205, + 57.14491 + ] + }, + "properties": { + "openplaque:id": "42767", + "addr:full": "2 Bath Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10101, + 57.16407 + ] + }, + "properties": { + "openplaque:id": "48782", + "addr:full": "King's College" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09917, + 57.15221 + ] + }, + "properties": { + "openplaque:id": "49100", + "addr:full": "Gallowgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08352, + 57.14705 + ] + }, + "properties": { + "openplaque:id": "49101", + "addr:full": "St. Clement's Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1016, + 57.16417 + ] + }, + "properties": { + "openplaque:id": "49103", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10434, + 57.16568 + ] + }, + "properties": { + "openplaque:id": "49104", + "addr:full": "Elphinstone Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10446, + 57.16537 + ] + }, + "properties": { + "openplaque:id": "49105", + "addr:full": "Elphinstone Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10464, + 57.1656 + ] + }, + "properties": { + "openplaque:id": "49107", + "addr:full": "Elphinstone Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10106, + 57.16519 + ] + }, + "properties": { + "openplaque:id": "49108", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10071, + 57.16565 + ] + }, + "properties": { + "openplaque:id": "49109", + "addr:full": "Dunbar Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10513, + 57.1623 + ] + }, + "properties": { + "openplaque:id": "50638" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09897, + 57.14718 + ] + }, + "properties": { + "openplaque:id": "51513", + "addr:full": "11 Correction Wynd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10074, + 57.16437 + ] + }, + "properties": { + "openplaque:id": "51679", + "addr:full": "\"Elphinstone Hall", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09916, + 57.16578 + ] + }, + "properties": { + "openplaque:id": "51707", + "addr:full": "\"William Guild Building", + "date_start": "581 King St\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11694, + 57.14472 + ] + }, + "properties": { + "openplaque:id": "53103" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1016, + 57.16402 + ] + }, + "properties": { + "openplaque:id": "53932", + "addr:full": "\"King's College", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10611, + 57.14467 + ] + }, + "properties": { + "openplaque:id": "54053", + "addr:full": "214 Union Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11892, + 57.15286 + ] + }, + "properties": { + "openplaque:id": "54447", + "addr:full": "99 Westburn Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09488, + 57.15492 + ] + }, + "properties": { + "openplaque:id": "54726", + "addr:full": "342 King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.86666, + 56.6192 + ] + }, + "properties": { + "openplaque:id": "1353", + "addr:full": "Aberfeldy's Main Square", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01651, + 51.82051 + ] + }, + "properties": { + "openplaque:id": "11217", + "addr:full": "39 Cross Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01954, + 51.82231 + ] + }, + "properties": { + "openplaque:id": "12528", + "addr:full": "Gurkha Corner Restaurant - 10 Nevill Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96962, + 51.89034 + ] + }, + "properties": { + "openplaque:id": "4104", + "addr:full": "\"Llwyn Derw (behind Glannant House)", + "date_start": "Pandy\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08189, + 0 + ] + }, + "properties": { + "openplaque:id": "4082", + "addr:full": "Queens Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.06725, + 52.41711 + ] + }, + "properties": { + "openplaque:id": "4090", + "addr:full": "\"Hugh Owen Building", + "date_start": "Penglais Campus\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08596, + 52.41408 + ] + }, + "properties": { + "openplaque:id": "54294", + "addr:full": "Bridge St." + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28142, + 51.6711 + ] + }, + "properties": { + "openplaque:id": "1005", + "addr:full": "\"39 Stert Street", + "date_start": "formerly the Mitre Inn\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2733, + 51.68191 + ] + }, + "properties": { + "openplaque:id": "31748", + "addr:full": "Oxford Road", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.32636, + 53.66387 + ] + }, + "properties": { + "openplaque:id": "42870", + "addr:full": "Ackworth Park", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.32512, + 53.65296 + ] + }, + "properties": { + "openplaque:id": "54099", + "addr:full": "Ackworth Court" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.32944, + 53.65817 + ] + }, + "properties": { + "openplaque:id": "9262", + "addr:full": "just north of Ackworth on the Pontefract road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31951, + 52.01597 + ] + }, + "properties": { + "openplaque:id": "12948", + "addr:full": "Round Close Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.32262, + 52.01581 + ] + }, + "properties": { + "openplaque:id": "3622", + "addr:full": "Le Hall Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07254, + 51.37982 + ] + }, + "properties": { + "openplaque:id": "12258", + "addr:full": "12 Colworth Road", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06405, + 51.37959 + ] + }, + "properties": { + "openplaque:id": "31549", + "addr:full": "22 Ashburton Avenue", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07259, + 51.38002 + ] + }, + "properties": { + "openplaque:id": "40326", + "addr:full": "1 Colworth Road", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46686, + 52.04075 + ] + }, + "properties": { + "openplaque:id": "53467", + "addr:full": "B4571" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.37553, + 60.28635 + ] + }, + "properties": { + "openplaque:id": "40307", + "addr:full": "Shetland\"", + "date_start": "Pier" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.37553, + 60.28635 + ] + }, + "properties": { + "openplaque:id": "40315", + "addr:full": "Shetland\"", + "date_start": "Pier" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20114, + 50.93648 + ] + }, + "properties": { + "openplaque:id": "41231", + "addr:full": "B2118" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.60186, + 52.1541 + ] + }, + "properties": { + "openplaque:id": "1354", + "addr:full": "\"Aldeburgh Cinema", + "date_start": "51 High St\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6019, + 52.1504 + ] + }, + "properties": { + "openplaque:id": "2698", + "addr:full": "\"Strafford House", + "date_start": "Crag Path\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.602, + 52.1504 + ] + }, + "properties": { + "openplaque:id": "2702", + "addr:full": "32 Crag Path" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.60229, + 52.15461 + ] + }, + "properties": { + "openplaque:id": "8734", + "addr:full": "\"The Uplands", + "date_start": "Victoria Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59803, + 52.15327 + ] + }, + "properties": { + "openplaque:id": "8736", + "addr:full": "\"Alde House", + "date_start": "Alde House Drive\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21381, + 53.29657 + ] + }, + "properties": { + "openplaque:id": "40545", + "addr:full": "Macclesfield Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21129, + 53.298 + ] + }, + "properties": { + "openplaque:id": "40546", + "addr:full": "Macclesfield Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.20035, + 49.72402 + ] + }, + "properties": { + "openplaque:id": "31578", + "addr:full": "Braye Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.20488, + 49.71561 + ] + }, + "properties": { + "openplaque:id": "31588", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.20706, + 49.71274 + ] + }, + "properties": { + "openplaque:id": "31589", + "addr:full": "Les Venelles" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21749, + 49.70591 + ] + }, + "properties": { + "openplaque:id": "31598", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.20757, + 49.7141 + ] + }, + "properties": { + "openplaque:id": "31614", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21083, + 49.71147 + ] + }, + "properties": { + "openplaque:id": "9395", + "addr:full": "Outside the airport" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1325, + 49.21667 + ] + }, + "properties": { + "openplaque:id": "9397", + "addr:full": "\"Victoria Street", + "date_start": "\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.17555, + 49.72859 + ] + }, + "properties": { + "openplaque:id": "9398", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.19083, + 49.71717 + ] + }, + "properties": { + "openplaque:id": "9399", + "addr:full": "Longis Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.20036, + 49.72358 + ] + }, + "properties": { + "openplaque:id": "9405", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.20044, + 49.72356 + ] + }, + "properties": { + "openplaque:id": "9406", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.75935, + 51.2496 + ] + }, + "properties": { + "openplaque:id": "1355", + "addr:full": "Cannon Cinema", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.76342, + 51.24615 + ] + }, + "properties": { + "openplaque:id": "43514", + "addr:full": "22 Lysons Road", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.70171, + 50.77795 + ] + }, + "properties": { + "openplaque:id": "12842", + "addr:full": "nr Dark Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69714, + 50.78523 + ] + }, + "properties": { + "openplaque:id": "5754", + "addr:full": "\"Rowland Rank Centre", + "date_start": "Aldwick Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17945, + 53.2611 + ] + }, + "properties": { + "openplaque:id": "6356", + "addr:full": "\"Windmill Hotel", + "date_start": "10 Market Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47489, + 52.95496 + ] + }, + "properties": { + "openplaque:id": "11886", + "addr:full": "3 Derwent Avenue", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.44016, + 52.91611 + ] + }, + "properties": { + "openplaque:id": "12958", + "addr:full": "Blore Heath Farm" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71189, + 55.41168 + ] + }, + "properties": { + "openplaque:id": "1685", + "addr:full": "5 Grosvenor Terrace", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7029, + 55.4125 + ] + }, + "properties": { + "openplaque:id": "40643", + "addr:full": "\"The Playhouse", + "date_start": "Bondgate Without\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.70492, + 55.41318 + ] + }, + "properties": { + "openplaque:id": "48694", + "addr:full": "White Swan Hotel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.97943, + 51.14899 + ] + }, + "properties": { + "openplaque:id": "42776", + "addr:full": "25 Lenten Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35239, + 53.38588 + ] + }, + "properties": { + "openplaque:id": "1975", + "addr:full": "Chapel Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35138, + 53.38829 + ] + }, + "properties": { + "openplaque:id": "33101", + "addr:full": "16 Market Street", + "date_start": "1991" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35273, + 53.38123 + ] + }, + "properties": { + "openplaque:id": "39405", + "addr:full": "Ashley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35176, + 53.38437 + ] + }, + "properties": { + "openplaque:id": "39406", + "addr:full": "Lloyd Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35123, + 53.37651 + ] + }, + "properties": { + "openplaque:id": "40644", + "addr:full": "\"Altrincham Grammar School For Boys", + "date_start": "Marlborough Rd\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.34554, + 53.40791 + ] + }, + "properties": { + "openplaque:id": "43672", + "addr:full": "Washway Road", + "date_start": "1995" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.34759, + 53.38749 + ] + }, + "properties": { + "openplaque:id": "49294", + "addr:full": "Stamford New Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.34822, + 53.38753 + ] + }, + "properties": { + "openplaque:id": "51760", + "addr:full": "Altrincham Transport Interchange", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33882, + 53.37994 + ] + }, + "properties": { + "openplaque:id": "55031", + "addr:full": "\"145 Hale Road", + "date_start": "Hale\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5686, + 50.6708 + ] + }, + "properties": { + "openplaque:id": "1648", + "addr:full": "Needles Pleasure Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.56557, + 50.66835 + ] + }, + "properties": { + "openplaque:id": "41737" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.56581, + 50.66859 + ] + }, + "properties": { + "openplaque:id": "41741" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5659, + 50.66856 + ] + }, + "properties": { + "openplaque:id": "41742" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32864, + 52.55055 + ] + }, + "properties": { + "openplaque:id": "30219", + "addr:full": "The Old School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96731, + 54.43501 + ] + }, + "properties": { + "openplaque:id": "11436", + "addr:full": "Rydal Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.95415, + 54.43121 + ] + }, + "properties": { + "openplaque:id": "11439", + "addr:full": "Kelsick School", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96252, + 54.43091 + ] + }, + "properties": { + "openplaque:id": "11479", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96317, + 54.43103 + ] + }, + "properties": { + "openplaque:id": "11480", + "addr:full": "St Mary's Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96413, + 54.43262 + ] + }, + "properties": { + "openplaque:id": "11484", + "addr:full": "Millans Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47914, + 51.20689 + ] + }, + "properties": { + "openplaque:id": "41597", + "addr:full": "12 High Street", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.17139, + 53.22245 + ] + }, + "properties": { + "openplaque:id": "50807" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.69648, + 56.22208 + ] + }, + "properties": { + "openplaque:id": "30543", + "addr:full": "22 East Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.70261, + 56.22306 + ] + }, + "properties": { + "openplaque:id": "54977", + "addr:full": "Old Post Office Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.69988, + 56.22352 + ] + }, + "properties": { + "openplaque:id": "54979", + "addr:full": "\"Guerdon Cottage", + "date_start": "School Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.69761, + 56.22273 + ] + }, + "properties": { + "openplaque:id": "7547", + "addr:full": "\"The Lodge", + "date_start": "Hadfoot Wynd\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.20282, + 54.71108 + ] + }, + "properties": { + "openplaque:id": "7060", + "addr:full": "\"Dunmore House", + "date_start": "Belfast Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.21772, + 54.71366 + ] + }, + "properties": { + "openplaque:id": "7084", + "addr:full": "Pogue's Entry" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.53733, + 53.31283 + ] + }, + "properties": { + "openplaque:id": "49372", + "addr:full": "Village Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2359, + 51.63955 + ] + }, + "properties": { + "openplaque:id": "43721", + "addr:full": "\"Orchard House", + "date_start": "Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3249, + 56.89292 + ] + }, + "properties": { + "openplaque:id": "53067", + "addr:full": "Bloomfield" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.61091, + 54.26018 + ] + }, + "properties": { + "openplaque:id": "1844", + "addr:full": "20 High Street", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.60934, + 54.2602 + ] + }, + "properties": { + "openplaque:id": "39743", + "addr:full": "\"44 Kildare Street", + "date_start": "BT30 7TR\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08377, + 51.07721 + ] + }, + "properties": { + "openplaque:id": "10608", + "addr:full": "Wakehurst Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.65627, + 54.34781 + ] + }, + "properties": { + "openplaque:id": "30659", + "addr:full": "\"Saint Patrick's Cathedral", + "date_start": "Cathedral Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.65231, + 54.34969 + ] + }, + "properties": { + "openplaque:id": "52347", + "addr:full": "The Mall Presbyterian Church", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.73025, + 56.89184 + ] + }, + "properties": { + "openplaque:id": "43916", + "addr:full": "Loch-Nan-Uamh Viaduct" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12921, + 53.0044 + ] + }, + "properties": { + "openplaque:id": "54603", + "addr:full": "79 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55428, + 50.8547 + ] + }, + "properties": { + "openplaque:id": "1848", + "addr:full": "High Street", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5576, + 50.8533 + ] + }, + "properties": { + "openplaque:id": "2131", + "addr:full": "Tarrant Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68993, + 51.40794 + ] + }, + "properties": { + "openplaque:id": "1816", + "addr:full": "\"Englemere", + "date_start": "Kings Ride\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.73302, + 53.01717 + ] + }, + "properties": { + "openplaque:id": "31651", + "addr:full": "Green Man & Black Head's Royal Hotel - 10 St John Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.73162, + 53.01773 + ] + }, + "properties": { + "openplaque:id": "31653", + "addr:full": "Prince's Gate Shrovetide 1928 - St John Street", + "date_start": "1928" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.73066, + 53.01812 + ] + }, + "properties": { + "openplaque:id": "31656", + "addr:full": "Madge House - 56 St John Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.73622, + 53.01615 + ] + }, + "properties": { + "openplaque:id": "31657", + "addr:full": "Antiques - Hg Barometers - 43 Church Street", + "date_start": "1904" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.73661, + 53.01584 + ] + }, + "properties": { + "openplaque:id": "31662", + "addr:full": "Pegg's Almshouses - Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.73733, + 53.01564 + ] + }, + "properties": { + "openplaque:id": "31663", + "addr:full": "The Mansion - Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.73741, + 53.0158 + ] + }, + "properties": { + "openplaque:id": "31664", + "addr:full": "Old Grammar School - Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7377, + 53.01572 + ] + }, + "properties": { + "openplaque:id": "31665", + "addr:full": "Old Grammar School - Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.73449, + 53.01505 + ] + }, + "properties": { + "openplaque:id": "40697", + "addr:full": "\"The Empire Ballroom", + "date_start": "King Edward Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47151, + 52.74597 + ] + }, + "properties": { + "openplaque:id": "10814", + "addr:full": "10-15 South Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47429, + 52.7481 + ] + }, + "properties": { + "openplaque:id": "4764", + "addr:full": "North Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47429, + 52.7481 + ] + }, + "properties": { + "openplaque:id": "4766", + "addr:full": "Market Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.87172, + 51.14158 + ] + }, + "properties": { + "openplaque:id": "42018", + "addr:full": "34 Beaver Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09155, + 53.48918 + ] + }, + "properties": { + "openplaque:id": "30450", + "addr:full": "Fletcher Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09169, + 53.49114 + ] + }, + "properties": { + "openplaque:id": "50029", + "addr:full": "148 Albemarle Terrace", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06596, + 53.4984 + ] + }, + "properties": { + "openplaque:id": "7979", + "addr:full": "\"Ladysmith Barracks Gateway", + "date_start": "Mossley Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09829, + 53.4868 + ] + }, + "properties": { + "openplaque:id": "7982", + "addr:full": "\"The Armoury", + "date_start": "Old Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09832, + 53.48679 + ] + }, + "properties": { + "openplaque:id": "7983", + "addr:full": "\"The Armoury", + "date_start": "Old Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0976, + 53.48714 + ] + }, + "properties": { + "openplaque:id": "7984", + "addr:full": "\"Inside Central Library", + "date_start": "Old Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06573, + 53.49824 + ] + }, + "properties": { + "openplaque:id": "7985", + "addr:full": "\"Ladysmith Barracks Gateway", + "date_start": "Mossley Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09384, + 53.4949 + ] + }, + "properties": { + "openplaque:id": "7986", + "addr:full": "\"43", + "date_start": "Elizabeth Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.04874, + 53.51748 + ] + }, + "properties": { + "openplaque:id": "7987", + "addr:full": "Stamford Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51197, + 51.72408 + ] + }, + "properties": { + "openplaque:id": "994", + "addr:full": "Bampton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22962, + 52.90373 + ] + }, + "properties": { + "openplaque:id": "40013", + "addr:full": "\"Churchyard of St Mary the Virgin", + "date_start": "Church Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13804, + 53.47788 + ] + }, + "properties": { + "openplaque:id": "7992", + "addr:full": "Aldwinians Rugby Union Club" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13014, + 53.47668 + ] + }, + "properties": { + "openplaque:id": "7994", + "addr:full": "Ryecroft Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13656, + 0 + ] + }, + "properties": { + "openplaque:id": "7996", + "addr:full": "122 Droylsden Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.11962, + 54.40864 + ] + }, + "properties": { + "openplaque:id": "42726" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4711, + 51.30289 + ] + }, + "properties": { + "openplaque:id": "30188", + "addr:full": "Aylesford Priory" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99207, + 54.25178 + ] + }, + "properties": { + "openplaque:id": "11538", + "addr:full": "Stonecroft" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.70812, + 52.34109 + ] + }, + "properties": { + "openplaque:id": "53961", + "addr:full": "Former stables" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.76881, + 53.85382 + ] + }, + "properties": { + "openplaque:id": "10142", + "addr:full": "The Grove" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.76626, + 53.85241 + ] + }, + "properties": { + "openplaque:id": "9828", + "addr:full": "\"9", + "date_start": "Browgate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.76638, + 53.85424 + ] + }, + "properties": { + "openplaque:id": "9865", + "addr:full": "\"24-26", + "date_start": "Northgate \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67909, + 53.21823 + ] + }, + "properties": { + "openplaque:id": "9593", + "addr:full": "Lumford House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13281, + 51.05981 + ] + }, + "properties": { + "openplaque:id": "43885", + "addr:full": "\"The Victory Hall", + "date_start": "Stockcroft Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.2405, + 55.2064 + ] + }, + "properties": { + "openplaque:id": "2409", + "addr:full": "14 Bayview Road", + "date_start": "1973" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.24408, + 55.2084 + ] + }, + "properties": { + "openplaque:id": "7154", + "addr:full": "\"Kenmara House", + "date_start": "45 North Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.00124, + 54.75225 + ] + }, + "properties": { + "openplaque:id": "41736" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.02187, + 54.41367 + ] + }, + "properties": { + "openplaque:id": "12988", + "addr:full": "Ballynahinch Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.7723, + 54.29727 + ] + }, + "properties": { + "openplaque:id": "7026", + "addr:full": "Ballykilbeg Church", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.95781, + 54.772 + ] + }, + "properties": { + "openplaque:id": "7214", + "addr:full": "Old Church", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.27083, + 54.3546 + ] + }, + "properties": { + "openplaque:id": "10458", + "addr:full": "Avonmore House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.33666, + 52.0622 + ] + }, + "properties": { + "openplaque:id": "1003", + "addr:full": "16 Parson Street", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.33729, + 52.0599 + ] + }, + "properties": { + "openplaque:id": "1023", + "addr:full": "\"Banbury Library (formerly The Mechanics Institute)", + "date_start": "Marlborough Rd\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.33116, + 52.06199 + ] + }, + "properties": { + "openplaque:id": "12535", + "addr:full": "Concord Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.33972, + 52.06442 + ] + }, + "properties": { + "openplaque:id": "12544", + "addr:full": "\"St Mary's C of E Primary School", + "date_start": "Southam Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.33386, + 52.06197 + ] + }, + "properties": { + "openplaque:id": "12548", + "addr:full": "\"Town Hall", + "date_start": "Bridge Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3368, + 52.06137 + ] + }, + "properties": { + "openplaque:id": "12549", + "addr:full": "Butchers Row (near Coach and Horses pub)", + "date_start": "1994" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.33597, + 52.06262 + ] + }, + "properties": { + "openplaque:id": "12552", + "addr:full": "Former Cornhill Corn Exchange facade - Castle Quay - Market Place", + "date_start": "1974" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.33956, + 52.06164 + ] + }, + "properties": { + "openplaque:id": "12560", + "addr:full": "\"Church yard of the Church of St Mary the Virgin", + "date_start": "Horse Fair\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.52011, + 57.65852 + ] + }, + "properties": { + "openplaque:id": "41603", + "addr:full": "Duff House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.12094, + 53.2307 + ] + }, + "properties": { + "openplaque:id": "12259", + "addr:full": "Gwynedd\"", + "date_start": "Friars Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05698, + 53.19082 + ] + }, + "properties": { + "openplaque:id": "4080", + "addr:full": "Gwynedd\"", + "date_start": "\"Ty’r Mynydd Ffordd y Mynydd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.13023, + 53.22911 + ] + }, + "properties": { + "openplaque:id": "4102", + "addr:full": "Gwynedd\"", + "date_start": "\"Main Arts Library" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.66849, + 54.66795 + ] + }, + "properties": { + "openplaque:id": "10456", + "addr:full": "County Down\"", + "date_start": "Eisenhower Pier" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.66016, + 54.6614 + ] + }, + "properties": { + "openplaque:id": "40698", + "addr:full": "County Down\"", + "date_start": "102 Hamilton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.66644, + 54.66354 + ] + }, + "properties": { + "openplaque:id": "50404", + "addr:full": "County Down\"", + "date_start": "\"Wolsey's Bar" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.667, + 54.6649 + ] + }, + "properties": { + "openplaque:id": "7162", + "addr:full": "County Down\"", + "date_start": "6 Victoria Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.91585, + 56.09204 + ] + }, + "properties": { + "openplaque:id": "42274" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05268, + 52.71861 + ] + }, + "properties": { + "openplaque:id": "40006", + "addr:full": "Barmouth Harbour Masters Office" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92401, + 54.54363 + ] + }, + "properties": { + "openplaque:id": "12658", + "addr:full": "23 Horsemarket" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9243, + 54.54413 + ] + }, + "properties": { + "openplaque:id": "12659", + "addr:full": "26 Horsemarket" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92361, + 54.54355 + ] + }, + "properties": { + "openplaque:id": "12661", + "addr:full": "3 Horsemarket" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15842, + 51.46547 + ] + }, + "properties": { + "openplaque:id": "10577", + "addr:full": "\"The Red Barn", + "date_start": "Barnehurst Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46185, + 53.49656 + ] + }, + "properties": { + "openplaque:id": "12019", + "addr:full": "\"47 Fitzwilliam Street", + "date_start": "Hoyland Common\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4899, + 53.54316 + ] + }, + "properties": { + "openplaque:id": "41734", + "addr:full": "Locke Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38125, + 53.57545 + ] + }, + "properties": { + "openplaque:id": "42888", + "addr:full": "\" Acorn Centre", + "date_start": "51 High St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.48678, + 56.9546 + ] + }, + "properties": { + "openplaque:id": "40701", + "addr:full": "Pier Road", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2278, + 54.11166 + ] + }, + "properties": { + "openplaque:id": "50791", + "addr:full": "Duke Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2402, + 54.11197 + ] + }, + "properties": { + "openplaque:id": "53033", + "addr:full": "North Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.24023, + 54.11198 + ] + }, + "properties": { + "openplaque:id": "53034", + "addr:full": "North Road", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.27254, + 51.4072 + ] + }, + "properties": { + "openplaque:id": "3338", + "addr:full": "164 Gladstone Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.28184, + 51.402 + ] + }, + "properties": { + "openplaque:id": "3340", + "addr:full": "14 Princes Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.27294, + 51.409 + ] + }, + "properties": { + "openplaque:id": "3342", + "addr:full": "24 Somerset Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.28746, + 51.3979 + ] + }, + "properties": { + "openplaque:id": "3344", + "addr:full": "8 Harbour Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.26057, + 51.4069 + ] + }, + "properties": { + "openplaque:id": "3346", + "addr:full": "31 Morel Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.28778, + 51.3994 + ] + }, + "properties": { + "openplaque:id": "3348", + "addr:full": "28 Romilly Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.29691, + 51.3955 + ] + }, + "properties": { + "openplaque:id": "3350", + "addr:full": "19 Porth Y Castell" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.26832, + 51.4065 + ] + }, + "properties": { + "openplaque:id": "3352", + "addr:full": "6 Newland Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2784, + 51.4091 + ] + }, + "properties": { + "openplaque:id": "3354", + "addr:full": "\"Old College Inn", + "date_start": "Buttrills Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.28528, + 0 + ] + }, + "properties": { + "openplaque:id": "3356", + "addr:full": "9 Windsor Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.41516, + 52.65362 + ] + }, + "properties": { + "openplaque:id": "41625", + "addr:full": "\"Baptist Chapel", + "date_start": "Main Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4387, + 53.68063 + ] + }, + "properties": { + "openplaque:id": "40103", + "addr:full": "\"Baysgarth House", + "date_start": "Preston Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44341, + 53.68883 + ] + }, + "properties": { + "openplaque:id": "42732" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44301, + 53.69152 + ] + }, + "properties": { + "openplaque:id": "42742" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42389, + 51.56784 + ] + }, + "properties": { + "openplaque:id": "39883", + "addr:full": "\"Laindon Station", + "date_start": "Station Approach\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08409, + 51.26299 + ] + }, + "properties": { + "openplaque:id": "30273", + "addr:full": "\"27 London Road", + "date_start": "RG21 7PG\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08704, + 51.26269 + ] + }, + "properties": { + "openplaque:id": "42054", + "addr:full": "inside the Willis Museum at the foot of a staircase" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08995, + 51.27036 + ] + }, + "properties": { + "openplaque:id": "54229", + "addr:full": "\"Holy Ghost Cemetery", + "date_start": "Chapel Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36607, + 51.38231 + ] + }, + "properties": { + "openplaque:id": "10182", + "addr:full": "19 New King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35343, + 51.37627 + ] + }, + "properties": { + "openplaque:id": "10183", + "addr:full": "\"Ralph Allen's Cottages", + "date_start": "Prior Park Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35971, + 51.38515 + ] + }, + "properties": { + "openplaque:id": "10397", + "addr:full": "Walcot Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35917, + 51.38143 + ] + }, + "properties": { + "openplaque:id": "11257", + "addr:full": "Bath Abbey" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.37043, + 51.39226 + ] + }, + "properties": { + "openplaque:id": "11333", + "addr:full": "\"Doric House", + "date_start": "Cavendish Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36041, + 51.38428 + ] + }, + "properties": { + "openplaque:id": "11832", + "addr:full": "Broad Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36256, + 51.38204 + ] + }, + "properties": { + "openplaque:id": "12026", + "addr:full": "Saw Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3582, + 51.3808 + ] + }, + "properties": { + "openplaque:id": "1287", + "addr:full": "4 North Parade Passage" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35622, + 51.38081 + ] + }, + "properties": { + "openplaque:id": "31098", + "addr:full": "North Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36203, + 51.38079 + ] + }, + "properties": { + "openplaque:id": "31632", + "addr:full": "\"Chapel Court", + "date_start": "St John's Hospital\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36425, + 51.38219 + ] + }, + "properties": { + "openplaque:id": "33075", + "addr:full": "Monmouth Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36424, + 51.383 + ] + }, + "properties": { + "openplaque:id": "39409", + "addr:full": "Chapel Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36327, + 51.38303 + ] + }, + "properties": { + "openplaque:id": "39832", + "addr:full": "\"Francis Hotel", + "date_start": "Queen Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3447, + 51.38624 + ] + }, + "properties": { + "openplaque:id": "39909", + "addr:full": "\"Macdonald Bath Spa Hotel", + "date_start": "Sydney Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35667, + 51.3834 + ] + }, + "properties": { + "openplaque:id": "4426", + "addr:full": "\"Bath Central United Reformed Church", + "date_start": "Argyle Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35069, + 51.3852 + ] + }, + "properties": { + "openplaque:id": "4428", + "addr:full": "Sydney Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35069, + 51.3852 + ] + }, + "properties": { + "openplaque:id": "4430", + "addr:full": "Sydney Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35451, + 51.3841 + ] + }, + "properties": { + "openplaque:id": "4434", + "addr:full": "William Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35652, + 51.3803 + ] + }, + "properties": { + "openplaque:id": "4436", + "addr:full": "North Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35711, + 51.3803 + ] + }, + "properties": { + "openplaque:id": "4438", + "addr:full": "4 Pierrepont Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35749, + 51.38 + ] + }, + "properties": { + "openplaque:id": "4440", + "addr:full": "Old Orchard Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35689, + 51.378 + ] + }, + "properties": { + "openplaque:id": "4444", + "addr:full": "\"The Royal Hotel", + "date_start": "Manvers Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36023, + 51.38681 + ] + }, + "properties": { + "openplaque:id": "51373", + "addr:full": "\"The Countess of Huntingdon’s Chapel", + "date_start": "The Paragon\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36616, + 51.38244 + ] + }, + "properties": { + "openplaque:id": "51374", + "addr:full": "New King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36402, + 51.38075 + ] + }, + "properties": { + "openplaque:id": "51375", + "addr:full": "James Street West" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36145, + 51.38394 + ] + }, + "properties": { + "openplaque:id": "6496", + "addr:full": "\"The Octagon", + "date_start": "Milsom St\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36259, + 51.38218 + ] + }, + "properties": { + "openplaque:id": "8399", + "addr:full": "Barton Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36371, + 51.3839 + ] + }, + "properties": { + "openplaque:id": "867", + "addr:full": "24 Queen Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35631, + 51.3807 + ] + }, + "properties": { + "openplaque:id": "868", + "addr:full": "11 North Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36587, + 0 + ] + }, + "properties": { + "openplaque:id": "869", + "addr:full": "12 Catherine Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3621, + 51.3868 + ] + }, + "properties": { + "openplaque:id": "870", + "addr:full": "19 Bennett Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36032, + 51.38722 + ] + }, + "properties": { + "openplaque:id": "872", + "addr:full": "33 The Paragon" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3581, + 51.38062 + ] + }, + "properties": { + "openplaque:id": "873", + "addr:full": "1 North Parade Buildings" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3592, + 51.3868 + ] + }, + "properties": { + "openplaque:id": "874", + "addr:full": "108 Walcot Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35186, + 51.3859 + ] + }, + "properties": { + "openplaque:id": "875", + "addr:full": "4 Sydney Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35697, + 51.3843 + ] + }, + "properties": { + "openplaque:id": "877", + "addr:full": "9 Henrietta Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35122, + 51.3851 + ] + }, + "properties": { + "openplaque:id": "878", + "addr:full": "103 Sydney Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35696, + 51.3806 + ] + }, + "properties": { + "openplaque:id": "879", + "addr:full": "2 Pierrepont Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35665, + 51.3807 + ] + }, + "properties": { + "openplaque:id": "880", + "addr:full": "9 North Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35694, + 51.3803 + ] + }, + "properties": { + "openplaque:id": "885", + "addr:full": "4 Pierrepont Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36671, + 51.3824 + ] + }, + "properties": { + "openplaque:id": "886", + "addr:full": "9 New King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36346, + 51.38573 + ] + }, + "properties": { + "openplaque:id": "889", + "addr:full": "22 The Circus" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36769, + 51.3888 + ] + }, + "properties": { + "openplaque:id": "890", + "addr:full": "35 St. James Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36832, + 51.3874 + ] + }, + "properties": { + "openplaque:id": "891", + "addr:full": "17 Royal Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35687, + 51.38343 + ] + }, + "properties": { + "openplaque:id": "892", + "addr:full": "\"Connaught Mansions", + "date_start": "Pultney Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3647, + 51.3858 + ] + }, + "properties": { + "openplaque:id": "893", + "addr:full": "7 The Circus" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.34729, + 51.37395 + ] + }, + "properties": { + "openplaque:id": "894", + "addr:full": "\"Widcombe Lodge", + "date_start": "Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36183, + 51.3827 + ] + }, + "properties": { + "openplaque:id": "895", + "addr:full": "5 Trim Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36724, + 51.3867 + ] + }, + "properties": { + "openplaque:id": "896", + "addr:full": "5 Royal Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3017, + 51.37806 + ] + }, + "properties": { + "openplaque:id": "8978", + "addr:full": "\"Claverton Pumping Station", + "date_start": "Ferry Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3631, + 51.384 + ] + }, + "properties": { + "openplaque:id": "898", + "addr:full": "41 Gay Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36388, + 51.3849 + ] + }, + "properties": { + "openplaque:id": "899", + "addr:full": "8 Gay Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3641, + 51.3855 + ] + }, + "properties": { + "openplaque:id": "900", + "addr:full": "13 The Circus" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36671, + 51.3863 + ] + }, + "properties": { + "openplaque:id": "901", + "addr:full": "18 Brock Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36144, + 51.3859 + ] + }, + "properties": { + "openplaque:id": "902", + "addr:full": "2 Alfred Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35874, + 51.3806 + ] + }, + "properties": { + "openplaque:id": "903", + "addr:full": "\"Marshall Wade House", + "date_start": "14 Abbey Churchyard\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36751, + 51.3872 + ] + }, + "properties": { + "openplaque:id": "905", + "addr:full": "10 Royal Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36481, + 51.3836 + ] + }, + "properties": { + "openplaque:id": "906", + "addr:full": "9 Queen's Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35018, + 51.385 + ] + }, + "properties": { + "openplaque:id": "907", + "addr:full": "93 Sydney Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36346, + 51.38573 + ] + }, + "properties": { + "openplaque:id": "908", + "addr:full": "17 The Circus" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35213, + 51.3871 + ] + }, + "properties": { + "openplaque:id": "909", + "addr:full": "16 Bathwick Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35549, + 51.37987 + ] + }, + "properties": { + "openplaque:id": "910", + "addr:full": "14 South Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35624, + 51.38031 + ] + }, + "properties": { + "openplaque:id": "911", + "addr:full": "6 South Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36346, + 51.38573 + ] + }, + "properties": { + "openplaque:id": "912", + "addr:full": "14 The Circus" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3525, + 51.3853 + ] + }, + "properties": { + "openplaque:id": "913", + "addr:full": "36 Great Pultney Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36674, + 51.3926 + ] + }, + "properties": { + "openplaque:id": "914", + "addr:full": "20 Lansdown Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35627, + 51.3834 + ] + }, + "properties": { + "openplaque:id": "915", + "addr:full": "15 Johnstone Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3635, + 51.3857 + ] + }, + "properties": { + "openplaque:id": "916", + "addr:full": "27 The Circus" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36785, + 51.38862 + ] + }, + "properties": { + "openplaque:id": "9199", + "addr:full": "35 St James’s Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48589, + 50.91563 + ] + }, + "properties": { + "openplaque:id": "1479", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39963, + 51.98958 + ] + }, + "properties": { + "openplaque:id": "7553", + "addr:full": "Bawdsey" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.65245, + 51.61312 + ] + }, + "properties": { + "openplaque:id": "9830", + "addr:full": "28 Reynolds Road", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.09229, + 53.26335 + ] + }, + "properties": { + "openplaque:id": "49431", + "addr:full": "Tudor Rose - 32 Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.09061, + 53.26428 + ] + }, + "properties": { + "openplaque:id": "49438", + "addr:full": "Ticket office - Beaumaris Castle", + "date_start": "1987" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55756, + 52.45084 + ] + }, + "properties": { + "openplaque:id": "39542", + "addr:full": "John Leman Grammar School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56253, + 52.45801 + ] + }, + "properties": { + "openplaque:id": "39543", + "addr:full": "John Leman Grammar School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55888, + 52.45506 + ] + }, + "properties": { + "openplaque:id": "54953", + "addr:full": "\"St. Mary's Green", + "date_start": "Ballygate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56257, + 52.45812 + ] + }, + "properties": { + "openplaque:id": "54955", + "addr:full": "\"Town Hall", + "date_start": "The Walk\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56263, + 52.45947 + ] + }, + "properties": { + "openplaque:id": "55021", + "addr:full": "\"St. Peter's House", + "date_start": "Old Market\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01026, + 51.4017 + ] + }, + "properties": { + "openplaque:id": "1418", + "addr:full": "\"35 Stanley Avenue", + "date_start": "BR3 2PU\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.04551, + 51.4135 + ] + }, + "properties": { + "openplaque:id": "1419", + "addr:full": "16 Kings Hall Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03717, + 51.41033 + ] + }, + "properties": { + "openplaque:id": "27882", + "addr:full": "Chaffinch Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02873, + 51.4065 + ] + }, + "properties": { + "openplaque:id": "8509", + "addr:full": "157 High Street", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02555, + 51.40776 + ] + }, + "properties": { + "openplaque:id": "9562", + "addr:full": "102–104 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.10266, + 53.0088 + ] + }, + "properties": { + "openplaque:id": "31642", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.46526, + 52.1317 + ] + }, + "properties": { + "openplaque:id": "1292", + "addr:full": "St. Marys Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.46293, + 52.13795 + ] + }, + "properties": { + "openplaque:id": "39414", + "addr:full": "17 St. Cuthberts Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48254, + 0 + ] + }, + "properties": { + "openplaque:id": "40317", + "addr:full": "34 Chaucer Road", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.47899, + 52.14091 + ] + }, + "properties": { + "openplaque:id": "42945", + "addr:full": "15 Lansdowne Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.46615, + 52.13516 + ] + }, + "properties": { + "openplaque:id": "43750", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.45495, + 52.14362 + ] + }, + "properties": { + "openplaque:id": "54231", + "addr:full": "8 Cornwall Road", + "date_start": "2020" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59304, + 55.13033 + ] + }, + "properties": { + "openplaque:id": "8467", + "addr:full": "Church Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.20893, + 52.92211 + ] + }, + "properties": { + "openplaque:id": "12080", + "addr:full": "Nottinghamshire\"", + "date_start": "220 Station Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21661, + 52.92913 + ] + }, + "properties": { + "openplaque:id": "40015", + "addr:full": "Nottinghamshire\"", + "date_start": "\"Anglo Scotian Mills" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21446, + 52.92631 + ] + }, + "properties": { + "openplaque:id": "40016", + "addr:full": "Nottinghamshire\"", + "date_start": "\"Tesco" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21103, + 52.92918 + ] + }, + "properties": { + "openplaque:id": "40020", + "addr:full": "Nottinghamshire\"", + "date_start": "\"Broadgate Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.20976, + 52.92634 + ] + }, + "properties": { + "openplaque:id": "40031", + "addr:full": "Nottinghamshire\"", + "date_start": "43 Nether Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21599, + 52.92379 + ] + }, + "properties": { + "openplaque:id": "40032", + "addr:full": "Nottinghamshire\"", + "date_start": "Address: 1-3 West End" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21442, + 52.92824 + ] + }, + "properties": { + "openplaque:id": "40036", + "addr:full": "Nottinghamshire\"", + "date_start": "Stoney Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21876, + 52.92361 + ] + }, + "properties": { + "openplaque:id": "40037", + "addr:full": "Nottinghamshire\"", + "date_start": "35-37 Chilwell Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.20753, + 52.92081 + ] + }, + "properties": { + "openplaque:id": "40038", + "addr:full": "Nottinghamshire\"", + "date_start": "\"Beeston Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.20797, + 52.92263 + ] + }, + "properties": { + "openplaque:id": "50531", + "addr:full": "Nottinghamshire\"", + "date_start": "13 Linden Grove" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21571, + 52.92529 + ] + }, + "properties": { + "openplaque:id": "9881", + "addr:full": "Nottinghamshire\"", + "date_start": "Church Street Schools" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21793, + 52.92907 + ] + }, + "properties": { + "openplaque:id": "9884", + "addr:full": "Nottinghamshire\"", + "date_start": "The Pearson Centre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.29484, + 52.11947 + ] + }, + "properties": { + "openplaque:id": "39161", + "addr:full": "Bedfordshire\"", + "date_start": "The Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.14404, + 51.26372 + ] + }, + "properties": { + "openplaque:id": "30542", + "addr:full": "\"Howletts Farmhouse", + "date_start": "Bekesbourne Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11988, + 52.39023 + ] + }, + "properties": { + "openplaque:id": "42493", + "addr:full": "Church Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65038, + 52.03361 + ] + }, + "properties": { + "openplaque:id": "42458" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93883, + 54.60053 + ] + }, + "properties": { + "openplaque:id": "10695", + "addr:full": "\"Masonic Hall", + "date_start": "Rosemary Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93014, + 54.58995 + ] + }, + "properties": { + "openplaque:id": "10968", + "addr:full": "Donegall Pass" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.85866, + 54.59572 + ] + }, + "properties": { + "openplaque:id": "10971", + "addr:full": "Ormiston Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.9304, + 54.60308 + ] + }, + "properties": { + "openplaque:id": "10973", + "addr:full": "Royal Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.92673, + 54.60221 + ] + }, + "properties": { + "openplaque:id": "10980", + "addr:full": "Hill Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93015, + 54.59589 + ] + }, + "properties": { + "openplaque:id": "12808", + "addr:full": "Linenhall Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.92549, + 54.5962 + ] + }, + "properties": { + "openplaque:id": "1333", + "addr:full": "38-42 May Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93385, + 54.58425 + ] + }, + "properties": { + "openplaque:id": "1688", + "addr:full": "Queens University", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93353, + 54.5877 + ] + }, + "properties": { + "openplaque:id": "2091", + "addr:full": "2 Crescent Gardens", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.88639, + 54.5908 + ] + }, + "properties": { + "openplaque:id": "2353", + "addr:full": "125 Hyndford Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93122, + 54.59456 + ] + }, + "properties": { + "openplaque:id": "30987", + "addr:full": "\"Ulster Hall (in the foyer)", + "date_start": "34 Bedford St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.92974, + 54.5937 + ] + }, + "properties": { + "openplaque:id": "3706", + "addr:full": "\"BBC Broadcasting House", + "date_start": "Linenhall Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.92904, + 54.60243 + ] + }, + "properties": { + "openplaque:id": "39048", + "addr:full": "St Anne's Cathedral" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0, + 0 + ] + }, + "properties": { + "openplaque:id": "39276", + "addr:full": "49 Grace Avenue", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.95248, + 54.598 + ] + }, + "properties": { + "openplaque:id": "39985", + "addr:full": "Falls Road Library", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93291, + 54.58816 + ] + }, + "properties": { + "openplaque:id": "40703", + "addr:full": "\"Empire Theatre", + "date_start": "42 Botanic Avenue\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.9305, + 54.59805 + ] + }, + "properties": { + "openplaque:id": "40905", + "addr:full": "Donegall Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.95768, + 54.60103 + ] + }, + "properties": { + "openplaque:id": "42420", + "addr:full": "23 Bombay Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.92796, + 54.60168 + ] + }, + "properties": { + "openplaque:id": "4980", + "addr:full": "Duke of York pub", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93449, + 54.59214 + ] + }, + "properties": { + "openplaque:id": "50509", + "addr:full": "RNA club Gt Victoria St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93728, + 54.61574 + ] + }, + "properties": { + "openplaque:id": "50535", + "addr:full": "Atlantic Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93181, + 54.60499 + ] + }, + "properties": { + "openplaque:id": "52956", + "addr:full": "\"St Patrick's Church", + "date_start": "Donegall Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.94933, + 54.5898 + ] + }, + "properties": { + "openplaque:id": "6984", + "addr:full": "219 Roden Street", + "date_start": "2006" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.92571, + 54.60021 + ] + }, + "properties": { + "openplaque:id": "6996", + "addr:full": "\"St George's Church", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93527, + 54.58775 + ] + }, + "properties": { + "openplaque:id": "6998", + "addr:full": "\"Old Victoria College (now Crescent Arts Centre)", + "date_start": "Lower Crescent\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.89894, + 54.5919 + ] + }, + "properties": { + "openplaque:id": "7002", + "addr:full": "32 Castlereagh Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.8521, + 54.594 + ] + }, + "properties": { + "openplaque:id": "7004", + "addr:full": "\"31", + "date_start": "Knockdene Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.95848, + 54.60853 + ] + }, + "properties": { + "openplaque:id": "7008", + "addr:full": "\"Welcome Evangelical Church", + "date_start": "Cambrai Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93657, + 54.5825 + ] + }, + "properties": { + "openplaque:id": "7018", + "addr:full": "\"Café Conor", + "date_start": "11a Stranmillis Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.95262, + 54.5967 + ] + }, + "properties": { + "openplaque:id": "7038", + "addr:full": "26 Lower Clonard Street", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93543, + 54.60091 + ] + }, + "properties": { + "openplaque:id": "7040", + "addr:full": "Rosemary Street", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.92974, + 54.5828 + ] + }, + "properties": { + "openplaque:id": "7044", + "addr:full": "37 Rugby Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.86591, + 54.5928 + ] + }, + "properties": { + "openplaque:id": "7046", + "addr:full": "16 King's Road Knock" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.9456, + 54.5746 + ] + }, + "properties": { + "openplaque:id": "7048", + "addr:full": "100a Malone Road", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93544, + 54.59211 + ] + }, + "properties": { + "openplaque:id": "7050", + "addr:full": "\"Ulster Bank building", + "date_start": "Donegall Square East\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.92771, + 54.59969 + ] + }, + "properties": { + "openplaque:id": "7052", + "addr:full": "23 High Street", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.94051, + 54.5844 + ] + }, + "properties": { + "openplaque:id": "7054", + "addr:full": "23 College Gardens", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93639, + 54.5857 + ] + }, + "properties": { + "openplaque:id": "7062", + "addr:full": "67 University Road", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93551, + 54.58402 + ] + }, + "properties": { + "openplaque:id": "7064", + "addr:full": "\"Lanyon Building", + "date_start": "Queen's University of Belfast\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93466, + 54.5866 + ] + }, + "properties": { + "openplaque:id": "7066", + "addr:full": "18 Mount Charles", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.9691, + 54.57 + ] + }, + "properties": { + "openplaque:id": "7068", + "addr:full": "11 Stockman's Lane", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.94172, + 54.6148 + ] + }, + "properties": { + "openplaque:id": "7070", + "addr:full": "\"2", + "date_start": "Norman Villas (185 Clifton Park Avenue)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93631, + 54.5979 + ] + }, + "properties": { + "openplaque:id": "7074", + "addr:full": "11 College Square North", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93363, + 54.5889 + ] + }, + "properties": { + "openplaque:id": "7076", + "addr:full": "23 Botanic Avenue", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.89238, + 54.599 + ] + }, + "properties": { + "openplaque:id": "7078", + "addr:full": "23 Ribble Street", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.85587, + 54.5909 + ] + }, + "properties": { + "openplaque:id": "7082", + "addr:full": "55 Knock Road", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.94624, + 54.5806 + ] + }, + "properties": { + "openplaque:id": "7086", + "addr:full": "\"No 20 Windsor Avenue", + "date_start": "off Lisburn Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.90146, + 54.5935 + ] + }, + "properties": { + "openplaque:id": "7088", + "addr:full": "94 Castlereagh Street", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93288, + 54.59925 + ] + }, + "properties": { + "openplaque:id": "7090", + "addr:full": "\"Kelly's Cellars", + "date_start": "Bank Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93458, + 54.5964 + ] + }, + "properties": { + "openplaque:id": "7092", + "addr:full": "21-25 College Square East" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.9325, + 54.5971 + ] + }, + "properties": { + "openplaque:id": "7096", + "addr:full": "14 Wellington Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93471, + 54.58455 + ] + }, + "properties": { + "openplaque:id": "7098", + "addr:full": "\"Old Library", + "date_start": "Queen's University\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93659, + 54.6083 + ] + }, + "properties": { + "openplaque:id": "7100", + "addr:full": "24 Antrim Road", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.92957, + 54.6087 + ] + }, + "properties": { + "openplaque:id": "7102", + "addr:full": "47 North Queen Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.85923, + 0 + ] + }, + "properties": { + "openplaque:id": "7108", + "addr:full": "\"\"\"Little Lea\"\"", + "date_start": "Circular Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.87741, + 54.5983 + ] + }, + "properties": { + "openplaque:id": "7110", + "addr:full": "\"Dundela Avenue", + "date_start": "Strandtown\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93618, + 54.6146 + ] + }, + "properties": { + "openplaque:id": "7114", + "addr:full": "240 Duncairn Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.94683, + 54.58035 + ] + }, + "properties": { + "openplaque:id": "7116", + "addr:full": "Windsor Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93458, + 54.5964 + ] + }, + "properties": { + "openplaque:id": "7118", + "addr:full": "\"Stokes House", + "date_start": "21-25 College Square East\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93849, + 54.60989 + ] + }, + "properties": { + "openplaque:id": "7126", + "addr:full": "\"St Malachi's College", + "date_start": "Antrim Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.92825, + 54.5972 + ] + }, + "properties": { + "openplaque:id": "7128", + "addr:full": "7 Chichester Street", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.92706, + 54.5998 + ] + }, + "properties": { + "openplaque:id": "7134", + "addr:full": "37 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93051, + 54.59 + ] + }, + "properties": { + "openplaque:id": "7136", + "addr:full": "\"62", + "date_start": "Donegall Pass\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93411, + 54.58185 + ] + }, + "properties": { + "openplaque:id": "7142", + "addr:full": "\"Topical Ravine", + "date_start": "Botanic Gardens\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.94104, + 54.6152 + ] + }, + "properties": { + "openplaque:id": "7146", + "addr:full": "2 Brookhill Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93581, + 54.598 + ] + }, + "properties": { + "openplaque:id": "7150", + "addr:full": "\"Wilton House", + "date_start": "5 College Square North\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93448, + 54.59213 + ] + }, + "properties": { + "openplaque:id": "7152", + "addr:full": "RNA club Gt Victoria St", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.96822, + 54.56769 + ] + }, + "properties": { + "openplaque:id": "7166", + "addr:full": "\"Kings Hall", + "date_start": "Balmoral\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.92809, + 54.5997 + ] + }, + "properties": { + "openplaque:id": "7168", + "addr:full": "16 High Street", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.92544, + 54.60009 + ] + }, + "properties": { + "openplaque:id": "7174", + "addr:full": "\"Church Lane", + "date_start": "off High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.95857, + 54.5956 + ] + }, + "properties": { + "openplaque:id": "7178", + "addr:full": "43 Cavendish Street", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.88011, + 54.60589 + ] + }, + "properties": { + "openplaque:id": "7180", + "addr:full": "\"86 Larkfield Terrace", + "date_start": "Sydenham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.90521, + 54.59349 + ] + }, + "properties": { + "openplaque:id": "7184", + "addr:full": "\"residential block at The Mount", + "date_start": "Mount Pottinger" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.87456, + 54.5995 + ] + }, + "properties": { + "openplaque:id": "7194", + "addr:full": "76 Belmont Avenue", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93332, + 54.5912 + ] + }, + "properties": { + "openplaque:id": "7196", + "addr:full": "79 Dublin Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.92238, + 54.60482 + ] + }, + "properties": { + "openplaque:id": "7200", + "addr:full": "Harbour Commissioner's Offices", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93158, + 54.59734 + ] + }, + "properties": { + "openplaque:id": "7202", + "addr:full": "Linenhall Hall Library", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.89894, + 54.5963 + ] + }, + "properties": { + "openplaque:id": "7216", + "addr:full": "\"1 Vicarage Street", + "date_start": "Ballymacarrett" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.92304, + 54.60154 + ] + }, + "properties": { + "openplaque:id": "7222", + "addr:full": "Custom House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93867, + 54.58273 + ] + }, + "properties": { + "openplaque:id": "7228", + "addr:full": "Front Door of Methodist College", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93598, + 54.58394 + ] + }, + "properties": { + "openplaque:id": "7234", + "addr:full": "\"Sir William Whitla Hall", + "date_start": "Queen's University\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.92217, + 54.5784 + ] + }, + "properties": { + "openplaque:id": "7242", + "addr:full": "\"26 Fernwood Street", + "date_start": "off Blackwood Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93666, + 54.58491 + ] + }, + "properties": { + "openplaque:id": "8491", + "addr:full": "\"Fitzwillliam Place", + "date_start": "75 University Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93103, + 54.59444 + ] + }, + "properties": { + "openplaque:id": "9782", + "addr:full": "\"inside the Ulster Hall", + "date_start": "34 Bedford Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17767, + 54.13133 + ] + }, + "properties": { + "openplaque:id": "12672", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10153, + 51.6227 + ] + }, + "properties": { + "openplaque:id": "49581", + "addr:full": "\"The Old Barn", + "date_start": "Brook Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.08327, + 55.2016 + ] + }, + "properties": { + "openplaque:id": "42504", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.4596, + 51.692 + ] + }, + "properties": { + "openplaque:id": "3632", + "addr:full": "Marybrook Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56323, + 51.75905 + ] + }, + "properties": { + "openplaque:id": "10357", + "addr:full": "\"St. John’s House", + "date_start": "Chesham Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56187, + 51.76313 + ] + }, + "properties": { + "openplaque:id": "11335", + "addr:full": "Lower Kings Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56081, + 51.76327 + ] + }, + "properties": { + "openplaque:id": "11336", + "addr:full": "Berkhamsted Castle" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55985, + 51.76243 + ] + }, + "properties": { + "openplaque:id": "11337", + "addr:full": "235 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55864, + 51.75851 + ] + }, + "properties": { + "openplaque:id": "11343", + "addr:full": "\"The Poplars", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56076, + 51.7591 + ] + }, + "properties": { + "openplaque:id": "11346", + "addr:full": "235 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56235, + 51.75953 + ] + }, + "properties": { + "openplaque:id": "11349", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56488, + 51.76068 + ] + }, + "properties": { + "openplaque:id": "11352", + "addr:full": "235 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56776, + 51.76134 + ] + }, + "properties": { + "openplaque:id": "11354", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56573, + 51.76087 + ] + }, + "properties": { + "openplaque:id": "11358", + "addr:full": "212-220 High St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56257, + 51.75982 + ] + }, + "properties": { + "openplaque:id": "11361", + "addr:full": "132 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56099, + 51.76008 + ] + }, + "properties": { + "openplaque:id": "11364", + "addr:full": "Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5609, + 51.76044 + ] + }, + "properties": { + "openplaque:id": "11365", + "addr:full": "Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56229, + 51.75975 + ] + }, + "properties": { + "openplaque:id": "52877", + "addr:full": "Church Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56134, + 51.76026 + ] + }, + "properties": { + "openplaque:id": "52926", + "addr:full": "Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.01097, + 55.77411 + ] + }, + "properties": { + "openplaque:id": "10798", + "addr:full": "\"Berwick-upon-Tweed railway station", + "date_start": "Railway Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.84243, + 53.05357 + ] + }, + "properties": { + "openplaque:id": "12230", + "addr:full": "\"Ty Mawr Wybrnant", + "date_start": "Gwydyr Forest Park\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.31303, + 52.3732 + ] + }, + "properties": { + "openplaque:id": "3336", + "addr:full": "\"Lower Park House", + "date_start": "Lower Park\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.30713, + 52.37577 + ] + }, + "properties": { + "openplaque:id": "51762", + "addr:full": "\"Bewdley Station", + "date_start": "Station Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47742, + 50.8414 + ] + }, + "properties": { + "openplaque:id": "1687", + "addr:full": "\"Baird Court", + "date_start": "Station Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15052, + 51.90344 + ] + }, + "properties": { + "openplaque:id": "43910", + "addr:full": "Bicester North Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.51188, + 50.85095 + ] + }, + "properties": { + "openplaque:id": "41211", + "addr:full": "Bickleigh Castle" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.20531, + 51.01677 + ] + }, + "properties": { + "openplaque:id": "42744", + "addr:full": "Bridge Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.20517, + 51.01677 + ] + }, + "properties": { + "openplaque:id": "44761", + "addr:full": "Bridge Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52322, + 55.62509 + ] + }, + "properties": { + "openplaque:id": "11474", + "addr:full": "\"Gladstone Court Museum", + "date_start": "N Back Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26246, + 52.08693 + ] + }, + "properties": { + "openplaque:id": "11445", + "addr:full": "38 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26305, + 52.08615 + ] + }, + "properties": { + "openplaque:id": "11449", + "addr:full": "4 Station Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26425, + 52.08685 + ] + }, + "properties": { + "openplaque:id": "11452", + "addr:full": "\"Century House", + "date_start": "Market Square \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26696, + 52.08899 + ] + }, + "properties": { + "openplaque:id": "11455", + "addr:full": "\"Elphick Court", + "date_start": "Shortmead Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26766, + 52.09099 + ] + }, + "properties": { + "openplaque:id": "11456", + "addr:full": "132 Shortmead Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26561, + 52.09064 + ] + }, + "properties": { + "openplaque:id": "11459", + "addr:full": "2 Fairlands" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26513, + 52.0873 + ] + }, + "properties": { + "openplaque:id": "11461", + "addr:full": "\"The Old Maltings", + "date_start": "Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26533, + 52.08706 + ] + }, + "properties": { + "openplaque:id": "30882", + "addr:full": "\"23 High St", + "date_start": "SG18 0JE\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.85373, + 53.84665 + ] + }, + "properties": { + "openplaque:id": "10317", + "addr:full": "St Ives Estate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83697, + 53.84689 + ] + }, + "properties": { + "openplaque:id": "11493", + "addr:full": "Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8458, + 53.856 + ] + }, + "properties": { + "openplaque:id": "1979", + "addr:full": "Keighley Rd", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01764, + 53.39328 + ] + }, + "properties": { + "openplaque:id": "32955", + "addr:full": "22 Argyle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01712, + 53.39398 + ] + }, + "properties": { + "openplaque:id": "32956", + "addr:full": "27/28 Hamilton Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01787, + 53.39335 + ] + }, + "properties": { + "openplaque:id": "32958", + "addr:full": "1 Price Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01421, + 53.39322 + ] + }, + "properties": { + "openplaque:id": "33171", + "addr:full": "Birkenhead Town Hall", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01699, + 53.36535 + ] + }, + "properties": { + "openplaque:id": "40704", + "addr:full": "212 Bebington Road", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.02174, + 53.39084 + ] + }, + "properties": { + "openplaque:id": "40705", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01257, + 53.34792 + ] + }, + "properties": { + "openplaque:id": "41122", + "addr:full": "\"Wirral Grammar School for Boys", + "date_start": "Cross Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.03371, + 53.37336 + ] + }, + "properties": { + "openplaque:id": "42356", + "addr:full": "Prenton Park", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.03847, + 53.39525 + ] + }, + "properties": { + "openplaque:id": "42680", + "addr:full": "Birkenhead Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01423, + 53.39424 + ] + }, + "properties": { + "openplaque:id": "51722", + "addr:full": "63 Hamilton Square", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.04795, + 53.4025 + ] + }, + "properties": { + "openplaque:id": "51764", + "addr:full": "\"Canada Works", + "date_start": "Wirral Waters\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.02061, + 53.39126 + ] + }, + "properties": { + "openplaque:id": "54109", + "addr:full": "46 Conway Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01676, + 53.39415 + ] + }, + "properties": { + "openplaque:id": "9443", + "addr:full": "Hamilton Square", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90416, + 52.48079 + ] + }, + "properties": { + "openplaque:id": "10105", + "addr:full": "\"Birmingham Museum & Art Gallery", + "date_start": "Great Charles Street Queensway\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.98636, + 52.46026 + ] + }, + "properties": { + "openplaque:id": "10692", + "addr:full": "\"Quinborne Community Centre", + "date_start": "80 Ridgacre Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91204, + 52.48089 + ] + }, + "properties": { + "openplaque:id": "10822", + "addr:full": "\"Cambrian Wharf", + "date_start": "Birmingham & Fazeley Canal\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91179, + 52.48085 + ] + }, + "properties": { + "openplaque:id": "10929", + "addr:full": "\"Farmer's Bridge", + "date_start": "Cambrian Wharf\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90918, + 52.48161 + ] + }, + "properties": { + "openplaque:id": "10930", + "addr:full": "\"Saturday Bridge", + "date_start": "Summer Row\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93563, + 52.43 + ] + }, + "properties": { + "openplaque:id": "11172", + "addr:full": "Bournville Carillon Vistor Centre - The Rest House - Bournville Village Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93557, + 52.43 + ] + }, + "properties": { + "openplaque:id": "11173", + "addr:full": "Bournville Carillon Vistor Centre - The Rest House - Bournville Village Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93553, + 52.42997 + ] + }, + "properties": { + "openplaque:id": "11174", + "addr:full": "Bournville Carillon Vistor Centre - The Rest House - Bournville Village Green", + "date_start": "1995" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91589, + 52.486 + ] + }, + "properties": { + "openplaque:id": "1130", + "addr:full": "\"Bakkavour", + "date_start": "86 Carver Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90502, + 52.48556 + ] + }, + "properties": { + "openplaque:id": "11838", + "addr:full": "\"13", + "date_start": "St. Paul's Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91071, + 52.49117 + ] + }, + "properties": { + "openplaque:id": "11931", + "addr:full": "\"69 & 70 Great Hampton Street", + "date_start": "Hockley\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91416, + 52.48481 + ] + }, + "properties": { + "openplaque:id": "11953", + "addr:full": "\"Dayus Square", + "date_start": "Jewellery Quarter\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90877, + 52.48744 + ] + }, + "properties": { + "openplaque:id": "11985", + "addr:full": "\"42 Caroline Street", + "date_start": "Jewellery Quarter\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90323, + 52.42797 + ] + }, + "properties": { + "openplaque:id": "12130", + "addr:full": "\"9 Stanley Road", + "date_start": "Kings Heath\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90769, + 52.4787 + ] + }, + "properties": { + "openplaque:id": "12191", + "addr:full": "Former Lloyds TSB - Broad Street", + "date_start": "1932" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89267, + 52.4665 + ] + }, + "properties": { + "openplaque:id": "12205", + "addr:full": "\"Bridge on the River Rea - Gooch Street", + "date_start": "Highgate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89278, + 52.4664 + ] + }, + "properties": { + "openplaque:id": "12206", + "addr:full": "\"Bridge on the River Rea - Gooch Street", + "date_start": "Highgate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93043, + 52.42729 + ] + }, + "properties": { + "openplaque:id": "12250", + "addr:full": "\"Bournville Baths - Main Street South", + "date_start": "Bournville\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90936, + 52.47583 + ] + }, + "properties": { + "openplaque:id": "12573", + "addr:full": "\"CBSO Centre", + "date_start": "Berkley Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94207, + 52.4275 + ] + }, + "properties": { + "openplaque:id": "12588", + "addr:full": "\"42 Hay Green Lane", + "date_start": "Bournville\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88614, + 52.47505 + ] + }, + "properties": { + "openplaque:id": "13040", + "addr:full": "\"JFK Memorial - Floodgate Street / High Street Deritend", + "date_start": "Digbeth\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9227, + 52.5001 + ] + }, + "properties": { + "openplaque:id": "1374", + "addr:full": "\"Soho House", + "date_start": "Soho Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91562, + 52.46903 + ] + }, + "properties": { + "openplaque:id": "1391", + "addr:full": "\"32 George Road", + "date_start": "Edgbaston\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91327, + 52.46958 + ] + }, + "properties": { + "openplaque:id": "1393", + "addr:full": "\"17 Wheeleys Road", + "date_start": "Edgbaston\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91548, + 52.4979 + ] + }, + "properties": { + "openplaque:id": "1395", + "addr:full": "\"101 Hunter’s Road", + "date_start": "Lozell’s\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90261, + 52.48274 + ] + }, + "properties": { + "openplaque:id": "1399", + "addr:full": "\"New Guild House", + "date_start": "45 Great Charles Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90618, + 52.4835 + ] + }, + "properties": { + "openplaque:id": "1401", + "addr:full": "144 Newhall Street", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91089, + 52.48449 + ] + }, + "properties": { + "openplaque:id": "1402", + "addr:full": "\"Victoria Works", + "date_start": "Graham Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.87347, + 52.4648 + ] + }, + "properties": { + "openplaque:id": "1405", + "addr:full": "\"Lloyd’s Farmhouse", + "date_start": "Farm Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9104, + 52.4804 + ] + }, + "properties": { + "openplaque:id": "1537", + "addr:full": "\"Crescent Tower", + "date_start": "Brindley Walk\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.95932, + 52.45843 + ] + }, + "properties": { + "openplaque:id": "1538", + "addr:full": "\" Harborne Swimming Pool and Fitness Centre", + "date_start": "Lordswood Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88747, + 52.47054 + ] + }, + "properties": { + "openplaque:id": "1542", + "addr:full": "\"Benson House - 98-104 Lombard Street", + "date_start": "Highgate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.85113, + 52.5138 + ] + }, + "properties": { + "openplaque:id": "1545", + "addr:full": "\"Flats on the corner of Gravelly Hill and Hillaries Rd.", + "date_start": "Erdington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8956, + 52.48339 + ] + }, + "properties": { + "openplaque:id": "1546", + "addr:full": "corner of Steelhouse Lane and Priory Queensway" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77749, + 52.45919 + ] + }, + "properties": { + "openplaque:id": "1547", + "addr:full": "\"Rectory Farm", + "date_start": "Ragley Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9004, + 52.47976 + ] + }, + "properties": { + "openplaque:id": "1548", + "addr:full": "\"11 / 12 Bennetts Hill", + "date_start": "City Centre\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90138, + 52.4421 + ] + }, + "properties": { + "openplaque:id": "1550", + "addr:full": "\"Highbury Hall", + "date_start": "Yew Tree Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92859, + 52.46726 + ] + }, + "properties": { + "openplaque:id": "1551", + "addr:full": "\"Edgbaston High School", + "date_start": "Westbourne Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92062, + 0 + ] + }, + "properties": { + "openplaque:id": "1552", + "addr:full": "\"the site of the original Children's Hospital", + "date_start": "Ladywood Road (near Five Ways on the Hagley Road)\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88478, + 52.49695 + ] + }, + "properties": { + "openplaque:id": "1553", + "addr:full": "\"T Startin Ltd", + "date_start": "Aston Road North\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94714, + 52.45774 + ] + }, + "properties": { + "openplaque:id": "1554", + "addr:full": "\"116 Greenfield Road", + "date_start": "Harborne\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.893, + 52.4796 + ] + }, + "properties": { + "openplaque:id": "1556", + "addr:full": "\"Carrs Lane Church", + "date_start": "Carrs Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9217, + 52.4668 + ] + }, + "properties": { + "openplaque:id": "1557", + "addr:full": "\"Audley St George's Place - Church Road", + "date_start": "Edgbaston\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89528, + 52.48578 + ] + }, + "properties": { + "openplaque:id": "1558", + "addr:full": "\"Reception Area", + "date_start": "The Dental Hospital" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.86365, + 52.4578 + ] + }, + "properties": { + "openplaque:id": "1561", + "addr:full": "\"152 Osborn Road", + "date_start": "Sparkbrook\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89363, + 52.47756 + ] + }, + "properties": { + "openplaque:id": "1562", + "addr:full": "East Mall - Bullring (to the right of the Horatio Nelson statue)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89968, + 52.48755 + ] + }, + "properties": { + "openplaque:id": "1565", + "addr:full": "\"Centro House", + "date_start": "Summer Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92885, + 52.4719 + ] + }, + "properties": { + "openplaque:id": "1566", + "addr:full": "146 Hagley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89457, + 52.4838 + ] + }, + "properties": { + "openplaque:id": "1568", + "addr:full": "\"Children's Hospital", + "date_start": "Steelhouse Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90333, + 52.47937 + ] + }, + "properties": { + "openplaque:id": "1572", + "addr:full": "\"Birmingham Town Hall", + "date_start": "Victoria Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89481, + 52.4786 + ] + }, + "properties": { + "openplaque:id": "1573", + "addr:full": "\"High Street", + "date_start": "facing New Street in the City Centre\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89845, + 52.4768 + ] + }, + "properties": { + "openplaque:id": "1575", + "addr:full": "\" The Old Rep Theatre", + "date_start": "Station Street \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90899, + 52.4793 + ] + }, + "properties": { + "openplaque:id": "1576", + "addr:full": "\"The REP", + "date_start": "Centenary Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.95499, + 52.44941 + ] + }, + "properties": { + "openplaque:id": "1578", + "addr:full": "\"Grove Park", + "date_start": "Mill Farm Road Harborne\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.86599, + 52.46432 + ] + }, + "properties": { + "openplaque:id": "1582", + "addr:full": "\"MBC Metal Powders", + "date_start": "Montgomery Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.87588, + 52.4388 + ] + }, + "properties": { + "openplaque:id": "1583", + "addr:full": "30 Dyott Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89418, + 52.4804 + ] + }, + "properties": { + "openplaque:id": "1586", + "addr:full": "\"Between Albert St. and Carrs Lane", + "date_start": "Dale End\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9422, + 52.45349 + ] + }, + "properties": { + "openplaque:id": "1587", + "addr:full": "\"Birmingham Women's Hospital", + "date_start": "Queen Elizabeth Medical Centre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92774, + 52.46789 + ] + }, + "properties": { + "openplaque:id": "1588", + "addr:full": "\"student Hostels", + "date_start": "Westbourne Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90454, + 52.48032 + ] + }, + "properties": { + "openplaque:id": "1590", + "addr:full": "\"Central Library", + "date_start": "Congreve Passage\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78506, + 52.52051 + ] + }, + "properties": { + "openplaque:id": "1592", + "addr:full": "\"St Cuthbert's Church", + "date_start": "Reed Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92839, + 52.472 + ] + }, + "properties": { + "openplaque:id": "1593", + "addr:full": "\"Oratory Church", + "date_start": "Hagley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89133, + 52.4946 + ] + }, + "properties": { + "openplaque:id": "1594", + "addr:full": "\"Bracebridge Street", + "date_start": "Aston\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.96249, + 52.4793 + ] + }, + "properties": { + "openplaque:id": "1599", + "addr:full": "\"144 Poplar Avenue", + "date_start": "Edgbaston\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9085, + 52.4655 + ] + }, + "properties": { + "openplaque:id": "1600", + "addr:full": "\"13 Charlotte Road", + "date_start": "Edgbaston\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91103, + 52.48036 + ] + }, + "properties": { + "openplaque:id": "1603", + "addr:full": "\"Norton Tower", + "date_start": "Civic Close\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90283, + 52.47871 + ] + }, + "properties": { + "openplaque:id": "1605", + "addr:full": "Swallow Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88933, + 52.48633 + ] + }, + "properties": { + "openplaque:id": "1606", + "addr:full": "Aston University", + "date_start": "1995" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92311, + 52.47244 + ] + }, + "properties": { + "openplaque:id": "1609", + "addr:full": "\"Teleperformance House", + "date_start": "Hagley Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92731, + 52.472 + ] + }, + "properties": { + "openplaque:id": "1610", + "addr:full": "\"Plough and Harrow Hotel", + "date_start": "Hagley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92664, + 52.47143 + ] + }, + "properties": { + "openplaque:id": "1611", + "addr:full": "\"Highfield Day Nursery and Preschool - 3-4 Highfield Road", + "date_start": "Edgbaston\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90191, + 52.45505 + ] + }, + "properties": { + "openplaque:id": "1612", + "addr:full": "\"South Stand - Edgbaston Cricket Ground", + "date_start": "Edgbaston Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91768, + 52.46023 + ] + }, + "properties": { + "openplaque:id": "1613", + "addr:full": "\"Edgbaston Golf Club", + "date_start": "Church Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.95558, + 52.47758 + ] + }, + "properties": { + "openplaque:id": "1615", + "addr:full": "\"George Dixon School", + "date_start": "City Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90557, + 52.4823 + ] + }, + "properties": { + "openplaque:id": "1617", + "addr:full": "Lionel House - 86 Lionel Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90419, + 52.47599 + ] + }, + "properties": { + "openplaque:id": "1618", + "addr:full": "\"The Mailbox", + "date_start": "Severn Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91773, + 52.4732 + ] + }, + "properties": { + "openplaque:id": "2325", + "addr:full": "\"Abbey National", + "date_start": "Five Ways Shopping Centre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89147, + 52.46405 + ] + }, + "properties": { + "openplaque:id": "27915", + "addr:full": "\"Percy Shurmer Academy", + "date_start": "Longmore Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90001, + 52.48097 + ] + }, + "properties": { + "openplaque:id": "30009", + "addr:full": "3 Temple Row West", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.84031, + 52.52317 + ] + }, + "properties": { + "openplaque:id": "30474", + "addr:full": "\"185 High Street", + "date_start": "Erdington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88642, + 52.48158 + ] + }, + "properties": { + "openplaque:id": "31076", + "addr:full": "\"Curzon Street Station", + "date_start": "New Canal Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.909, + 52.4945 + ] + }, + "properties": { + "openplaque:id": "31529", + "addr:full": "Great King Street North" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88888, + 52.45482 + ] + }, + "properties": { + "openplaque:id": "31804", + "addr:full": "\"Tindal Street", + "date_start": "Balsall Heath\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90447, + 52.48066 + ] + }, + "properties": { + "openplaque:id": "31805", + "addr:full": "Birmingham History Galleries - Birmingham Museum & Art Gallery - Chamberlain Square", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89334, + 52.47705 + ] + }, + "properties": { + "openplaque:id": "40219", + "addr:full": "St Martin's Church in the Bullring" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93212, + 52.4298 + ] + }, + "properties": { + "openplaque:id": "40425", + "addr:full": "Cadbury World reception - Bournville", + "date_start": "1991" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93186, + 52.42943 + ] + }, + "properties": { + "openplaque:id": "40436", + "addr:full": "Cadbury World - Bull Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93171, + 52.42943 + ] + }, + "properties": { + "openplaque:id": "40437", + "addr:full": "Cadbury World - Bull Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88837, + 52.5089 + ] + }, + "properties": { + "openplaque:id": "42597", + "addr:full": "Trinity Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82979, + 52.45037 + ] + }, + "properties": { + "openplaque:id": "42782", + "addr:full": "\"Arden Lodge Residential Home - 946 Warwick Road", + "date_start": "Acocks Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90492, + 52.48115 + ] + }, + "properties": { + "openplaque:id": "43943", + "addr:full": "Birmingham Museum & Art Gallery - Great Charles Street Queensway", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94636, + 52.45955 + ] + }, + "properties": { + "openplaque:id": "44701", + "addr:full": "\"Boston Tea Party - High Street", + "date_start": "Harborne\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94754, + 52.47268 + ] + }, + "properties": { + "openplaque:id": "48690", + "addr:full": "\"6", + "date_start": "Manor Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90748, + 52.48195 + ] + }, + "properties": { + "openplaque:id": "49303", + "addr:full": "Coffin Works - 13 and 15 Fleet Street", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.84536, + 52.45529 + ] + }, + "properties": { + "openplaque:id": "50428", + "addr:full": "Tyseley Locomotive Works", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90056, + 52.4806 + ] + }, + "properties": { + "openplaque:id": "50639", + "addr:full": "The Wellington - 37 Bennetts Hill", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9028, + 52.48013 + ] + }, + "properties": { + "openplaque:id": "50644", + "addr:full": "\"The Council House", + "date_start": "Victoria Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90367, + 52.48037 + ] + }, + "properties": { + "openplaque:id": "50694", + "addr:full": "\"Birmingham Museum & Art Gallery", + "date_start": "Chamberlain Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89922, + 52.4812 + ] + }, + "properties": { + "openplaque:id": "50983", + "addr:full": "Birmingham Cathedral", + "date_start": "1989" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90644, + 52.46666 + ] + }, + "properties": { + "openplaque:id": "51140", + "addr:full": "Edgbaston Community Centre", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.98452, + 52.39612 + ] + }, + "properties": { + "openplaque:id": "51231", + "addr:full": "\"Bournville College - High Street", + "date_start": "Longbridge\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.98426, + 52.39529 + ] + }, + "properties": { + "openplaque:id": "51232", + "addr:full": "Between Sainsbury's and Greggs - High Street", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9891, + 52.39517 + ] + }, + "properties": { + "openplaque:id": "51233", + "addr:full": "\" ExtraCare Retirement Village - near Lickey Road", + "date_start": "Longbridge\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.98563, + 52.39369 + ] + }, + "properties": { + "openplaque:id": "51234", + "addr:full": "Between Boots and Poundland - Longbridge Town Centre", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.98879, + 52.39414 + ] + }, + "properties": { + "openplaque:id": "51235", + "addr:full": "\"ExtraCare Retirement Village - Austin Way", + "date_start": "Longbridge\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.98792, + 52.39625 + ] + }, + "properties": { + "openplaque:id": "51236", + "addr:full": "\"Near Bournville College - College Street", + "date_start": "Longbridge\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89571, + 52.4809 + ] + }, + "properties": { + "openplaque:id": "5150", + "addr:full": "\"Cafe Nero", + "date_start": "74 Corporation Street - Martineau Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88493, + 52.4744 + ] + }, + "properties": { + "openplaque:id": "5152", + "addr:full": "\"Bull Ring Trading Estate", + "date_start": "High Street Deritend\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90913, + 52.46898 + ] + }, + "properties": { + "openplaque:id": "51972", + "addr:full": "\"42 Lee Crescent", + "date_start": "Edgbaston\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90952, + 52.47698 + ] + }, + "properties": { + "openplaque:id": "52064", + "addr:full": "Bistrot Pierre - Waterside House - 46 Gas Street", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89068, + 52.47832 + ] + }, + "properties": { + "openplaque:id": "53307", + "addr:full": "Platform 3 at Birmingham Moor Street Station", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.85508, + 52.44319 + ] + }, + "properties": { + "openplaque:id": "53578", + "addr:full": "\"Greet Mill Meadow - Stratford Road", + "date_start": "Hall Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91162, + 52.46977 + ] + }, + "properties": { + "openplaque:id": "54153", + "addr:full": "\"3 Yew Tree Road", + "date_start": "Edgbaston\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94729, + 52.45872 + ] + }, + "properties": { + "openplaque:id": "54154", + "addr:full": "\"10 Bull Street", + "date_start": "Harborne\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94835, + 52.4312 + ] + }, + "properties": { + "openplaque:id": "54155", + "addr:full": "\"Woodbrooke - 1046 Bristol Road", + "date_start": "Selly Oak\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91512, + 52.50484 + ] + }, + "properties": { + "openplaque:id": "54171", + "addr:full": "\"The Lodge - 33 Radnor Road", + "date_start": "Handsworth\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92308, + 52.44838 + ] + }, + "properties": { + "openplaque:id": "54215", + "addr:full": "\"King Edward's School - Bristol Road", + "date_start": "Edgbaston\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90831, + 52.47969 + ] + }, + "properties": { + "openplaque:id": "54263", + "addr:full": "\"Outside the Shakespeare Memorial Room", + "date_start": "Level 9" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88604, + 52.43411 + ] + }, + "properties": { + "openplaque:id": "54303", + "addr:full": "\"95 Springfield Road", + "date_start": "Kings Heath\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9143, + 52.48461 + ] + }, + "properties": { + "openplaque:id": "54308", + "addr:full": "\"Pig & Tail - Albion Street (Dayus Square)", + "date_start": "Jewellery Quarter\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8587, + 52.4661 + ] + }, + "properties": { + "openplaque:id": "5444", + "addr:full": "\"City College", + "date_start": "103 - 105 Golden Hillock Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93016, + 52.4658 + ] + }, + "properties": { + "openplaque:id": "54645", + "addr:full": "\"Birmingham Botanical Gardens", + "date_start": "Edgbaston\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83185, + 52.44576 + ] + }, + "properties": { + "openplaque:id": "54693", + "addr:full": "\"Corner of Fox Hollies Road and Westley Road", + "date_start": "Acocks Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93423, + 52.47806 + ] + }, + "properties": { + "openplaque:id": "54703", + "addr:full": "\"Edgbaston Reservoir - Reservoir Road", + "date_start": "Ladywood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90043, + 52.47977 + ] + }, + "properties": { + "openplaque:id": "5478", + "addr:full": "10-13 Bennetts Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.95664, + 52.46289 + ] + }, + "properties": { + "openplaque:id": "54838", + "addr:full": "\"Moorpool Hall", + "date_start": "Harborne\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93828, + 52.452 + ] + }, + "properties": { + "openplaque:id": "7327", + "addr:full": "\"Medical School", + "date_start": "University of Birmingham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93812, + 52.452 + ] + }, + "properties": { + "openplaque:id": "7329", + "addr:full": "\"Medical School", + "date_start": "University of Birmingham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93353, + 52.45 + ] + }, + "properties": { + "openplaque:id": "7331", + "addr:full": "\"Haworth Building", + "date_start": "University of Birmingham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93305, + 52.45067 + ] + }, + "properties": { + "openplaque:id": "7333", + "addr:full": "\"Biosciences", + "date_start": "University of Birmingham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93211, + 52.4492 + ] + }, + "properties": { + "openplaque:id": "7335", + "addr:full": "\"Aston Webb – A Block", + "date_start": "Earth Sciences" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93206, + 52.4491 + ] + }, + "properties": { + "openplaque:id": "7337", + "addr:full": "\"Aston Webb – A Block", + "date_start": "Earth Sciences" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92957, + 52.4491 + ] + }, + "properties": { + "openplaque:id": "7343", + "addr:full": "\"Nuffield", + "date_start": "University of Birmingham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92947, + 52.449 + ] + }, + "properties": { + "openplaque:id": "7345", + "addr:full": "\"Nuffield", + "date_start": "University of Birmingham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92945, + 52.4491 + ] + }, + "properties": { + "openplaque:id": "7347", + "addr:full": "\"Nuffield", + "date_start": "University of Birmingham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92493, + 52.4498 + ] + }, + "properties": { + "openplaque:id": "7353", + "addr:full": "\"Birmingham Business School", + "date_start": "University of Birmingham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92914, + 52.4502 + ] + }, + "properties": { + "openplaque:id": "7361", + "addr:full": "\"Arts Building", + "date_start": "University of Birmingham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92405, + 52.4528 + ] + }, + "properties": { + "openplaque:id": "7367", + "addr:full": "\"Winterbourne House", + "date_start": "University of Birmingham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88431, + 52.4749 + ] + }, + "properties": { + "openplaque:id": "8209", + "addr:full": "Gibb Street", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93561, + 52.43016 + ] + }, + "properties": { + "openplaque:id": "8341", + "addr:full": "\"The Rest House", + "date_start": "Bournville Village Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89406, + 52.48268 + ] + }, + "properties": { + "openplaque:id": "8342", + "addr:full": "\"Pitman Chambers", + "date_start": "153 Corporation Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90268, + 52.48013 + ] + }, + "properties": { + "openplaque:id": "8355", + "addr:full": "\"The Council House", + "date_start": "Victoria Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89977, + 52.48547 + ] + }, + "properties": { + "openplaque:id": "8356", + "addr:full": "Old Snow Hill", + "date_start": "1958" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90444, + 52.47989 + ] + }, + "properties": { + "openplaque:id": "8360", + "addr:full": "Between Paradise Circus Queensway and Chamberlain Square", + "date_start": "1993" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90391, + 52.48022 + ] + }, + "properties": { + "openplaque:id": "8364", + "addr:full": "\"Birmingham Museum & Art Gallery / Council House", + "date_start": "Chamberlain Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90951, + 52.47698 + ] + }, + "properties": { + "openplaque:id": "8365", + "addr:full": "Gas Street Basin - Worcester & Birmingham Canal - 46 Gas Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90951, + 52.47698 + ] + }, + "properties": { + "openplaque:id": "8366", + "addr:full": "Gas Street Basin - Worcester & Birmingham Canal - Worcester Bar" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88555, + 52.48454 + ] + }, + "properties": { + "openplaque:id": "8779", + "addr:full": "Jennens Road (near A B Row and Millennium Point)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88496, + 52.48057 + ] + }, + "properties": { + "openplaque:id": "8787", + "addr:full": "\"Gun Barrel Proof House", + "date_start": "Banbury Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90748, + 52.48491 + ] + }, + "properties": { + "openplaque:id": "8805", + "addr:full": "4 Brook Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90029, + 52.48236 + ] + }, + "properties": { + "openplaque:id": "8877", + "addr:full": "Hotel du Vin - Church Street", + "date_start": "1883" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92575, + 52.47046 + ] + }, + "properties": { + "openplaque:id": "9102", + "addr:full": "\"Giles House - 83 Harborne Road", + "date_start": "Edgbaston\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.96112, + 52.42128 + ] + }, + "properties": { + "openplaque:id": "9340", + "addr:full": "\"Royal Orthopaedic Hospital", + "date_start": "Bristol Road South" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92297, + 52.41217 + ] + }, + "properties": { + "openplaque:id": "9402", + "addr:full": "\"Kings Norton Junction - Worcester & Birmingham Canal", + "date_start": "Kings Norton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90381, + 52.48128 + ] + }, + "properties": { + "openplaque:id": "9783", + "addr:full": "\"Birmingham & Midland Institute", + "date_start": "Margaret Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90395, + 52.48026 + ] + }, + "properties": { + "openplaque:id": "9791", + "addr:full": "\"Birmingham Museum & Art Gallery", + "date_start": "Chamberlain Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90395, + 52.48026 + ] + }, + "properties": { + "openplaque:id": "9793", + "addr:full": "\"Birmingham Museum & Art Gallery", + "date_start": "Chamberlain Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90401, + 52.48055 + ] + }, + "properties": { + "openplaque:id": "9796", + "addr:full": "\"Birmingham Museum & Art Gallery", + "date_start": "Chamberlain Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8849, + 52.47063 + ] + }, + "properties": { + "openplaque:id": "9831", + "addr:full": "145 Alcester Street", + "date_start": "1903" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.66264, + 53.74294 + ] + }, + "properties": { + "openplaque:id": "12966", + "addr:full": "Owler Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11842, + 52.67442 + ] + }, + "properties": { + "openplaque:id": "50164", + "addr:full": "\"Royal British Legion", + "date_start": "19 Front Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67807, + 54.66153 + ] + }, + "properties": { + "openplaque:id": "43864", + "addr:full": "65 Princes Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99853, + 52.49008 + ] + }, + "properties": { + "openplaque:id": "49512", + "addr:full": "1 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99814, + 52.49082 + ] + }, + "properties": { + "openplaque:id": "49514", + "addr:full": "14 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99803, + 52.49163 + ] + }, + "properties": { + "openplaque:id": "49516", + "addr:full": "23 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99796, + 52.49191 + ] + }, + "properties": { + "openplaque:id": "49519", + "addr:full": "33 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99782, + 52.4924 + ] + }, + "properties": { + "openplaque:id": "49520", + "addr:full": "57 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99775, + 52.49243 + ] + }, + "properties": { + "openplaque:id": "49521", + "addr:full": "64 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99778, + 52.49268 + ] + }, + "properties": { + "openplaque:id": "49522", + "addr:full": "72-74 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99785, + 52.4932 + ] + }, + "properties": { + "openplaque:id": "49523", + "addr:full": "76 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99802, + 52.49366 + ] + }, + "properties": { + "openplaque:id": "49524", + "addr:full": "23 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99793, + 52.49358 + ] + }, + "properties": { + "openplaque:id": "49525", + "addr:full": "10 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99795, + 52.49375 + ] + }, + "properties": { + "openplaque:id": "49527", + "addr:full": "25-27 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99794, + 52.49405 + ] + }, + "properties": { + "openplaque:id": "49528", + "addr:full": "33-35 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9979, + 52.49415 + ] + }, + "properties": { + "openplaque:id": "49531", + "addr:full": "30 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99785, + 52.49425 + ] + }, + "properties": { + "openplaque:id": "49532", + "addr:full": "39 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15961, + 51.87213 + ] + }, + "properties": { + "openplaque:id": "39919", + "addr:full": "Lemon Tree in Water Lane", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.20951, + 50.95462 + ] + }, + "properties": { + "openplaque:id": "42745", + "addr:full": "Bank Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.13288, + 51.2308 + ] + }, + "properties": { + "openplaque:id": "3282", + "addr:full": "Oswalds" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53627, + 51.855 + ] + }, + "properties": { + "openplaque:id": "12199", + "addr:full": "Bakers Lane", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.48281, + 53.75235 + ] + }, + "properties": { + "openplaque:id": "10110", + "addr:full": "Randall Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.45779, + 53.74632 + ] + }, + "properties": { + "openplaque:id": "10113", + "addr:full": "331 Audley Range" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.50095, + 53.756 + ] + }, + "properties": { + "openplaque:id": "10114", + "addr:full": "Edgeware Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0, + 0 + ] + }, + "properties": { + "openplaque:id": "33072", + "addr:full": "\"Bank House", + "date_start": "Dukes Brow\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.49014, + 53.72849 + ] + }, + "properties": { + "openplaque:id": "39433", + "addr:full": "\"Ewood Park", + "date_start": "Nuttall Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.48439, + 53.74684 + ] + }, + "properties": { + "openplaque:id": "40707", + "addr:full": "corner of Mincing Lane and Clayton Street", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.48251, + 53.74668 + ] + }, + "properties": { + "openplaque:id": "41006", + "addr:full": "\"Postal Order", + "date_start": "15-19 Darwen Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.48764, + 53.75149 + ] + }, + "properties": { + "openplaque:id": "44032", + "addr:full": "Strawberry Bank" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.48954, + 53.75165 + ] + }, + "properties": { + "openplaque:id": "44033", + "addr:full": "105 New Park Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.48559, + 53.74918 + ] + }, + "properties": { + "openplaque:id": "8749", + "addr:full": "\"Paganini Inn", + "date_start": "Lord Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.48572, + 53.74954 + ] + }, + "properties": { + "openplaque:id": "8750", + "addr:full": "Lord Street", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.48239, + 53.74467 + ] + }, + "properties": { + "openplaque:id": "8751", + "addr:full": "Darwen Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.4828, + 53.74698 + ] + }, + "properties": { + "openplaque:id": "8753", + "addr:full": "\"BBC Radio Lancashire", + "date_start": "Darwen Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.03775, + 52.47442 + ] + }, + "properties": { + "openplaque:id": "50951", + "addr:full": "Horner Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.03116, + 53.8157 + ] + }, + "properties": { + "openplaque:id": "2171", + "addr:full": "\"Blackpool Cricket Club", + "date_start": "West Park Drive\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.05455, + 53.81523 + ] + }, + "properties": { + "openplaque:id": "32993", + "addr:full": "Bank Hey Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.05033, + 53.81267 + ] + }, + "properties": { + "openplaque:id": "32995", + "addr:full": "Central Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0315, + 53.80767 + ] + }, + "properties": { + "openplaque:id": "32997", + "addr:full": "251 Whitegate Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.05364, + 53.8195 + ] + }, + "properties": { + "openplaque:id": "32998", + "addr:full": "Talbot Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.05517, + 53.80883 + ] + }, + "properties": { + "openplaque:id": "33000", + "addr:full": "Queens Promenade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0535, + 53.81683 + ] + }, + "properties": { + "openplaque:id": "33002", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.05411, + 53.83266 + ] + }, + "properties": { + "openplaque:id": "33003", + "addr:full": "\"Gynn Square", + "date_start": "North Shore\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.05633, + 53.8195 + ] + }, + "properties": { + "openplaque:id": "33004", + "addr:full": "Next to North Pier" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0525, + 53.81767 + ] + }, + "properties": { + "openplaque:id": "33006", + "addr:full": "57/59 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0515, + 53.81767 + ] + }, + "properties": { + "openplaque:id": "33007", + "addr:full": "\"St John's Square", + "date_start": "Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.04006, + 53.81782 + ] + }, + "properties": { + "openplaque:id": "33010", + "addr:full": "Liverpool Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.04517, + 53.809 + ] + }, + "properties": { + "openplaque:id": "33011", + "addr:full": "Revoe Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.03167, + 53.80783 + ] + }, + "properties": { + "openplaque:id": "33012", + "addr:full": "253 Whitegate Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.05617, + 53.82017 + ] + }, + "properties": { + "openplaque:id": "33018", + "addr:full": "Cenotaph" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.05583, + 53.79267 + ] + }, + "properties": { + "openplaque:id": "33019", + "addr:full": "Pleasure Beach", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.05238, + 53.81391 + ] + }, + "properties": { + "openplaque:id": "33021", + "addr:full": "10 Vance Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.04698, + 53.8102 + ] + }, + "properties": { + "openplaque:id": "33026", + "addr:full": "Ibbison Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.05508, + 53.81887 + ] + }, + "properties": { + "openplaque:id": "33029", + "addr:full": "Market Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0531, + 53.81949 + ] + }, + "properties": { + "openplaque:id": "33030", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.05173, + 53.79678 + ] + }, + "properties": { + "openplaque:id": "33031", + "addr:full": "50 Dean Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01401, + 53.81738 + ] + }, + "properties": { + "openplaque:id": "33032", + "addr:full": "Woodside Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01719, + 53.82299 + ] + }, + "properties": { + "openplaque:id": "33033", + "addr:full": "Whinney Heys Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.04356, + 53.77868 + ] + }, + "properties": { + "openplaque:id": "33034", + "addr:full": "Squires Gate Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.04577, + 53.81812 + ] + }, + "properties": { + "openplaque:id": "33035", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01325, + 53.77859 + ] + }, + "properties": { + "openplaque:id": "33036", + "addr:full": "School Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.05201, + 53.84032 + ] + }, + "properties": { + "openplaque:id": "33037", + "addr:full": "Holmfield Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.02942, + 53.81281 + ] + }, + "properties": { + "openplaque:id": "33038", + "addr:full": "Mawson Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.05102, + 53.82393 + ] + }, + "properties": { + "openplaque:id": "33039", + "addr:full": "Cocker Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.05602, + 53.81093 + ] + }, + "properties": { + "openplaque:id": "3310", + "addr:full": "North Pier" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0514, + 53.8214 + ] + }, + "properties": { + "openplaque:id": "40708", + "addr:full": "Dickson Road", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.04418, + 53.833 + ] + }, + "properties": { + "openplaque:id": "4850", + "addr:full": "\"Holy Family Church", + "date_start": "Links Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.05112, + 53.81838 + ] + }, + "properties": { + "openplaque:id": "53153", + "addr:full": "Abingdon Street Market", + "date_start": "2020" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.05748, + 53.78325 + ] + }, + "properties": { + "openplaque:id": "9869", + "addr:full": "Promenade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.46931, + 51.6261 + ] + }, + "properties": { + "openplaque:id": "4106", + "addr:full": "6 Clydach Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01853, + 52.95479 + ] + }, + "properties": { + "openplaque:id": "42340", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01773, + 52.95682 + ] + }, + "properties": { + "openplaque:id": "43414", + "addr:full": "Causeway" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.16449, + 50.8571 + ] + }, + "properties": { + "openplaque:id": "3320", + "addr:full": "\"Lime Tree House", + "date_start": "The Plocks\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.16439, + 50.8564 + ] + }, + "properties": { + "openplaque:id": "3322", + "addr:full": "Church Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.16657, + 50.8555 + ] + }, + "properties": { + "openplaque:id": "7391", + "addr:full": "\"Crown Hotel", + "date_start": "West Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.16335, + 50.8566 + ] + }, + "properties": { + "openplaque:id": "7393", + "addr:full": "\"The Old Rectory", + "date_start": "Sheep Market Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.16118, + 50.8568 + ] + }, + "properties": { + "openplaque:id": "7395", + "addr:full": "East Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1658, + 50.8559 + ] + }, + "properties": { + "openplaque:id": "7397", + "addr:full": "West Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.16415, + 50.8559 + ] + }, + "properties": { + "openplaque:id": "7401", + "addr:full": "Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.74315, + 51.9972 + ] + }, + "properties": { + "openplaque:id": "2746", + "addr:full": "Bletchley Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.71883, + 51.99678 + ] + }, + "properties": { + "openplaque:id": "8329", + "addr:full": "Denmark Street", + "date_start": "1964" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.74247, + 51.9965 + ] + }, + "properties": { + "openplaque:id": "8814", + "addr:full": "Bletchley Park (outside Bletchley Park House)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23844, + 51.56887 + ] + }, + "properties": { + "openplaque:id": "10829", + "addr:full": "Boham’s House", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51118, + 55.12087 + ] + }, + "properties": { + "openplaque:id": "50674", + "addr:full": "\"Blyth Spartans AFC", + "date_start": "Croft Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53939, + 50.99636 + ] + }, + "properties": { + "openplaque:id": "30006", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.65265, + 50.7892 + ] + }, + "properties": { + "openplaque:id": "11216", + "addr:full": "\"The Fox Inn", + "date_start": "Waterloo Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68363, + 50.78012 + ] + }, + "properties": { + "openplaque:id": "51918", + "addr:full": "Promenade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67451, + 50.78183 + ] + }, + "properties": { + "openplaque:id": "52165", + "addr:full": "seafront", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67897, + 50.7822 + ] + }, + "properties": { + "openplaque:id": "52168", + "addr:full": "32 West Street", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68257, + 50.78371 + ] + }, + "properties": { + "openplaque:id": "52169", + "addr:full": "Victoria Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68879, + 50.78004 + ] + }, + "properties": { + "openplaque:id": "52170", + "addr:full": "Marine Park Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.673, + 50.78329 + ] + }, + "properties": { + "openplaque:id": "52174", + "addr:full": "\"Your Move", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69745, + 50.7792 + ] + }, + "properties": { + "openplaque:id": "54188", + "addr:full": "6 Aldwick Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67244, + 50.78292 + ] + }, + "properties": { + "openplaque:id": "54849", + "addr:full": "Belmont Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66611, + 50.78883 + ] + }, + "properties": { + "openplaque:id": "54850", + "addr:full": "The Dome" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021, + 50.78334 + ] + }, + "properties": { + "openplaque:id": "54852", + "addr:full": "Clarence Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67297, + 50.79413 + ] + }, + "properties": { + "openplaque:id": "54872", + "addr:full": "\"Hollywood House", + "date_start": "Bersted Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67896, + 50.78228 + ] + }, + "properties": { + "openplaque:id": "9717", + "addr:full": "West Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66858, + 50.78331 + ] + }, + "properties": { + "openplaque:id": "9718", + "addr:full": "Albert Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66854, + 50.78786 + ] + }, + "properties": { + "openplaque:id": "9719", + "addr:full": "Hotham Park", + "date_start": "1978" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29229, + 53.22913 + ] + }, + "properties": { + "openplaque:id": "8316", + "addr:full": "44 Market Place", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.4325, + 53.57922 + ] + }, + "properties": { + "openplaque:id": "39126", + "addr:full": "Deansgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.42484, + 53.57846 + ] + }, + "properties": { + "openplaque:id": "40262", + "addr:full": "Silverwell Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.42548, + 53.57825 + ] + }, + "properties": { + "openplaque:id": "40263", + "addr:full": "Silverwell Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.42653, + 53.58011 + ] + }, + "properties": { + "openplaque:id": "42322", + "addr:full": "\"Bank Street Unitarian Chapel", + "date_start": "Bank Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.44907, + 53.57077 + ] + }, + "properties": { + "openplaque:id": "42355", + "addr:full": "Bankfield Street", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.42582, + 53.57963 + ] + }, + "properties": { + "openplaque:id": "50315", + "addr:full": "Churchgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.42585, + 53.57876 + ] + }, + "properties": { + "openplaque:id": "8661", + "addr:full": "16 Wood Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.79161, + 54.10339 + ] + }, + "properties": { + "openplaque:id": "41332", + "addr:full": "Saint Michael's Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27734, + 51.658 + ] + }, + "properties": { + "openplaque:id": "2361", + "addr:full": "\"Elstree Film Studios", + "date_start": "28 Malden Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27091, + 51.6577 + ] + }, + "properties": { + "openplaque:id": "40751", + "addr:full": "Elstree Film Studios", + "date_start": "2006" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26969, + 51.65806 + ] + }, + "properties": { + "openplaque:id": "40766", + "addr:full": "Elstree Film Studios", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27537, + 51.65899 + ] + }, + "properties": { + "openplaque:id": "5204", + "addr:full": "\"Elstree Studios", + "date_start": "Borehamwood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27539, + 51.66092 + ] + }, + "properties": { + "openplaque:id": "8320", + "addr:full": "\"Canterbury House", + "date_start": "Stratfield Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02446, + 52.97759 + ] + }, + "properties": { + "openplaque:id": "55005", + "addr:full": "The Stump and Candle" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.345, + 53.90415 + ] + }, + "properties": { + "openplaque:id": "49270", + "addr:full": "\"198", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8594, + 50.72879 + ] + }, + "properties": { + "openplaque:id": "10172", + "addr:full": "195 Holdenhurst Road", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88229, + 50.72235 + ] + }, + "properties": { + "openplaque:id": "11003", + "addr:full": "\"(inside) Town Hall", + "date_start": "Bourne Avenue\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.87904, + 50.72123 + ] + }, + "properties": { + "openplaque:id": "11012", + "addr:full": "\"Norfolk Hotel", + "date_start": "48 Richmond Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90279, + 50.71753 + ] + }, + "properties": { + "openplaque:id": "1175", + "addr:full": "\"Alum Chine", + "date_start": "near to 61 Alum Chine Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.86921, + 50.7253 + ] + }, + "properties": { + "openplaque:id": "1176", + "addr:full": "48 Dean Park Road", + "date_start": "1975" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88089, + 50.72079 + ] + }, + "properties": { + "openplaque:id": "12618", + "addr:full": "\"Colonnade pergola", + "date_start": "Upper Gardens\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.86838, + 50.7186 + ] + }, + "properties": { + "openplaque:id": "1855", + "addr:full": "\"Hotel Miramar", + "date_start": "East Overcliff Drive\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8843, + 50.74429 + ] + }, + "properties": { + "openplaque:id": "40969", + "addr:full": "Edgehill Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7949, + 50.73241 + ] + }, + "properties": { + "openplaque:id": "7941", + "addr:full": "\"former ‘Iford Waterworks’", + "date_start": "River Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.87713, + 50.72009 + ] + }, + "properties": { + "openplaque:id": "9359", + "addr:full": "Bournemouth Arcade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75788, + 51.88411 + ] + }, + "properties": { + "openplaque:id": "31512", + "addr:full": "The Victoria Hall - Riverside" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35874, + 0 + ] + }, + "properties": { + "openplaque:id": "8447", + "addr:full": "6 Grange Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35858, + 53.38196 + ] + }, + "properties": { + "openplaque:id": "8458", + "addr:full": "13 Higher Downs" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24961, + 51.41788 + ] + }, + "properties": { + "openplaque:id": "39824" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75615, + 53.79768 + ] + }, + "properties": { + "openplaque:id": "10005", + "addr:full": "\"30", + "date_start": "Manor Row\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7549, + 53.79709 + ] + }, + "properties": { + "openplaque:id": "10006", + "addr:full": "Corner of Manor Row and Upper Piccadilly" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.76162, + 53.80038 + ] + }, + "properties": { + "openplaque:id": "10064", + "addr:full": "\"49", + "date_start": "Hanover Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.74595, + 53.79358 + ] + }, + "properties": { + "openplaque:id": "10068", + "addr:full": "\"4", + "date_start": "Chapel Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.74447, + 53.79412 + ] + }, + "properties": { + "openplaque:id": "10069", + "addr:full": "\"26", + "date_start": "East Parade\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.74476, + 53.79671 + ] + }, + "properties": { + "openplaque:id": "10072", + "addr:full": "\"Anne Gate", + "date_start": "Barkerend Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75921, + 53.79134 + ] + }, + "properties": { + "openplaque:id": "10076", + "addr:full": "\"German Evangelical Church", + "date_start": "29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75439, + 53.79462 + ] + }, + "properties": { + "openplaque:id": "10077", + "addr:full": "\"Kirkgate Centre", + "date_start": "Kirkgate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75486, + 53.79598 + ] + }, + "properties": { + "openplaque:id": "10119", + "addr:full": "\"34", + "date_start": "Darley Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.80273, + 0 + ] + }, + "properties": { + "openplaque:id": "10143", + "addr:full": "\"25", + "date_start": "Brafferton Arbor\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.74639, + 53.79344 + ] + }, + "properties": { + "openplaque:id": "10879", + "addr:full": "Leeds Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75501, + 53.7911 + ] + }, + "properties": { + "openplaque:id": "11469", + "addr:full": "Princes Way", + "date_start": "1986" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79059, + 53.80865 + ] + }, + "properties": { + "openplaque:id": "11764", + "addr:full": "\"5", + "date_start": "Saltburn Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.74821, + 53.7955 + ] + }, + "properties": { + "openplaque:id": "12238", + "addr:full": "\"Entrance Porch", + "date_start": "Bradford Cathedral" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7616, + 53.79138 + ] + }, + "properties": { + "openplaque:id": "1686", + "addr:full": "the Old Building of the Bradford and Ilkley Community College", + "date_start": "1997" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.74557, + 53.79482 + ] + }, + "properties": { + "openplaque:id": "28258", + "addr:full": "36 Peckover Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7555, + 53.79091 + ] + }, + "properties": { + "openplaque:id": "30395", + "addr:full": "Prince's Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75451, + 53.79085 + ] + }, + "properties": { + "openplaque:id": "33060", + "addr:full": "\"Pedestrian Subway", + "date_start": "Jacob's Well\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0, + 0 + ] + }, + "properties": { + "openplaque:id": "40714", + "addr:full": "58 Manningham Lane", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.76008, + 53.79031 + ] + }, + "properties": { + "openplaque:id": "42628", + "addr:full": "120 Morley Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.74272, + 53.81255 + ] + }, + "properties": { + "openplaque:id": "52351", + "addr:full": "Kingsdale Crescent", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75792, + 53.7935 + ] + }, + "properties": { + "openplaque:id": "6860", + "addr:full": "Southgate", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.76338, + 53.7905 + ] + }, + "properties": { + "openplaque:id": "9317", + "addr:full": "Claremont" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75982, + 53.79319 + ] + }, + "properties": { + "openplaque:id": "9838", + "addr:full": "125 Thornton Road (Culture Fusion Building)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75304, + 53.79516 + ] + }, + "properties": { + "openplaque:id": "9839", + "addr:full": "\"1", + "date_start": "Piccadilly\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75269, + 53.79419 + ] + }, + "properties": { + "openplaque:id": "9840", + "addr:full": "\"Wool Exchange", + "date_start": "Bank Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.74805, + 53.79431 + ] + }, + "properties": { + "openplaque:id": "9933", + "addr:full": "\"47", + "date_start": "Well Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25551, + 51.34331 + ] + }, + "properties": { + "openplaque:id": "42731" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25288, + 51.34686 + ] + }, + "properties": { + "openplaque:id": "44676", + "addr:full": "McKeever Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.55662, + 51.87875 + ] + }, + "properties": { + "openplaque:id": "12198", + "addr:full": "11 Woodfield Road", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.55142, + 51.87734 + ] + }, + "properties": { + "openplaque:id": "12202", + "addr:full": "New Street", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.55342, + 51.8773 + ] + }, + "properties": { + "openplaque:id": "12203", + "addr:full": "Fairfield Road", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73411, + 54.9427 + ] + }, + "properties": { + "openplaque:id": "10419", + "addr:full": "\"T Hamilton", + "date_start": "Main Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21173, + 52.28722 + ] + }, + "properties": { + "openplaque:id": "50430", + "addr:full": "Brindley Quays" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.38599, + 51.9436 + ] + }, + "properties": { + "openplaque:id": "39656", + "addr:full": "Gasworks Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.3975, + 51.95116 + ] + }, + "properties": { + "openplaque:id": "39658", + "addr:full": "Cradoc Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.38899, + 51.94673 + ] + }, + "properties": { + "openplaque:id": "4112", + "addr:full": "\"The Plough Chapel", + "date_start": "Lion Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.39025, + 51.95082 + ] + }, + "properties": { + "openplaque:id": "41816" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.39241, + 51.94588 + ] + }, + "properties": { + "openplaque:id": "43415" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.42835, + 51.88181 + ] + }, + "properties": { + "openplaque:id": "53144", + "addr:full": "Pen-y-Fan" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.38496, + 51.94414 + ] + }, + "properties": { + "openplaque:id": "54464", + "addr:full": "South Wales Borderers Museum" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.10585, + 50.68418 + ] + }, + "properties": { + "openplaque:id": "42029", + "addr:full": "Launceston Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41687, + 52.53426 + ] + }, + "properties": { + "openplaque:id": "49116" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41881, + 52.53404 + ] + }, + "properties": { + "openplaque:id": "49121", + "addr:full": "East Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41879, + 52.5334 + ] + }, + "properties": { + "openplaque:id": "49122", + "addr:full": "East Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41835, + 52.53435 + ] + }, + "properties": { + "openplaque:id": "49123" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41553, + 52.53616 + ] + }, + "properties": { + "openplaque:id": "49125" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41226, + 52.53392 + ] + }, + "properties": { + "openplaque:id": "49126" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41596, + 52.53443 + ] + }, + "properties": { + "openplaque:id": "49127" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41788, + 52.5355 + ] + }, + "properties": { + "openplaque:id": "49128", + "addr:full": "Cart Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00648, + 51.1278 + ] + }, + "properties": { + "openplaque:id": "5872", + "addr:full": "High Street", + "date_start": "2006" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00162, + 51.127 + ] + }, + "properties": { + "openplaque:id": "5876", + "addr:full": "\"Lytil Mill", + "date_start": "Blake Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00405, + 51.1266 + ] + }, + "properties": { + "openplaque:id": "5882", + "addr:full": "15 Friarn Street", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00255, + 51.1302 + ] + }, + "properties": { + "openplaque:id": "5886", + "addr:full": "Chandos Street", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00188, + 51.1307 + ] + }, + "properties": { + "openplaque:id": "5890", + "addr:full": "\"The Lions House", + "date_start": "West Quay\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00753, + 51.1293 + ] + }, + "properties": { + "openplaque:id": "5898", + "addr:full": "\"Thompson Brothers", + "date_start": "Mount Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.09069, + 51.1077 + ] + }, + "properties": { + "openplaque:id": "5908", + "addr:full": "Enmore School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00237, + 51.12744 + ] + }, + "properties": { + "openplaque:id": "7561", + "addr:full": "\"Unitarian Chapel", + "date_start": "Dampiet Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15783, + 51.15224 + ] + }, + "properties": { + "openplaque:id": "7562", + "addr:full": "35 Lime Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19311, + 54.08058 + ] + }, + "properties": { + "openplaque:id": "54691", + "addr:full": "Gummers Wharf", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75817, + 50.73313 + ] + }, + "properties": { + "openplaque:id": "10527", + "addr:full": "Ships Sculpture on South Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75787, + 50.73214 + ] + }, + "properties": { + "openplaque:id": "40718", + "addr:full": "Palace Cinema", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75618, + 50.73322 + ] + }, + "properties": { + "openplaque:id": "42050", + "addr:full": "\"The Bull Hotel", + "date_start": "East Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.85302, + 50.72643 + ] + }, + "properties": { + "openplaque:id": "53148", + "addr:full": "Golden Cap" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78715, + 53.70387 + ] + }, + "properties": { + "openplaque:id": "33046", + "addr:full": "\"Brighouse Library", + "date_start": "Halifax Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77899, + 53.69814 + ] + }, + "properties": { + "openplaque:id": "40445", + "addr:full": "\"Railway Station (Platform 1)", + "date_start": "Railway Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77965, + 53.70145 + ] + }, + "properties": { + "openplaque:id": "7496", + "addr:full": "\"The Richard Oastler", + "date_start": "Bethel Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78199, + 53.70105 + ] + }, + "properties": { + "openplaque:id": "7497", + "addr:full": "Thornton Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78088, + 53.70121 + ] + }, + "properties": { + "openplaque:id": "7499", + "addr:full": "Bethel Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78179, + 53.70129 + ] + }, + "properties": { + "openplaque:id": "7500", + "addr:full": "\"Old Town Hall", + "date_start": "Market Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78188, + 53.70134 + ] + }, + "properties": { + "openplaque:id": "7502", + "addr:full": "\"Old Town Hall", + "date_start": "Market Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77909, + 53.70206 + ] + }, + "properties": { + "openplaque:id": "7503", + "addr:full": "\"NatWest", + "date_start": "Bradford Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77932, + 53.70161 + ] + }, + "properties": { + "openplaque:id": "7504", + "addr:full": "\"Yorkshire Building Society", + "date_start": "Bradford Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77908, + 53.70174 + ] + }, + "properties": { + "openplaque:id": "7505", + "addr:full": "\"Websters Interiors", + "date_start": "Bradford Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13095, + 50.82468 + ] + }, + "properties": { + "openplaque:id": "10109", + "addr:full": "\"Tarner Park", + "date_start": "off Sussex Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.143, + 50.8216 + ] + }, + "properties": { + "openplaque:id": "1035", + "addr:full": "20 Middle Street", + "date_start": "1951" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15, + 50.8221 + ] + }, + "properties": { + "openplaque:id": "1040", + "addr:full": "65-66 Queensbury Mews" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1523, + 50.8227 + ] + }, + "properties": { + "openplaque:id": "1042", + "addr:full": "12 Cavendish Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1514, + 50.8219 + ] + }, + "properties": { + "openplaque:id": "1046", + "addr:full": "132 Kings Road", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1412, + 50.8212 + ] + }, + "properties": { + "openplaque:id": "1047", + "addr:full": "\"The Black Lion Pub", + "date_start": "14 Black Lion Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1382, + 50.8211 + ] + }, + "properties": { + "openplaque:id": "1050", + "addr:full": "55 Old Steine", + "date_start": "1925" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13796, + 50.82025 + ] + }, + "properties": { + "openplaque:id": "1051", + "addr:full": "\"Royal York Hotel", + "date_start": "Old Steine\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1273, + 50.8192 + ] + }, + "properties": { + "openplaque:id": "1055", + "addr:full": "14 Marine Gardens", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1269, + 50.8186 + ] + }, + "properties": { + "openplaque:id": "1056", + "addr:full": "79 Marine Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.111, + 50.8172 + ] + }, + "properties": { + "openplaque:id": "1057", + "addr:full": "11 Sussex Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1101, + 50.8159 + ] + }, + "properties": { + "openplaque:id": "1060", + "addr:full": "18 Lewes Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1099, + 50.8156 + ] + }, + "properties": { + "openplaque:id": "1061", + "addr:full": "25 Lewes Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1093, + 50.8149 + ] + }, + "properties": { + "openplaque:id": "1062", + "addr:full": "5 Arundel Terrace", + "date_start": "1910" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1099, + 50.8149 + ] + }, + "properties": { + "openplaque:id": "1064", + "addr:full": "Lewes Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11633, + 50.84567 + ] + }, + "properties": { + "openplaque:id": "10667", + "addr:full": "nr East Moulsecoomb Leisure Centre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1175, + 50.8165 + ] + }, + "properties": { + "openplaque:id": "1068", + "addr:full": "160 Marine Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12437, + 50.8181 + ] + }, + "properties": { + "openplaque:id": "1069", + "addr:full": "101 Marine Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1242, + 50.818 + ] + }, + "properties": { + "openplaque:id": "1070", + "addr:full": "103 Marine Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1244, + 50.8183 + ] + }, + "properties": { + "openplaque:id": "1071", + "addr:full": "25 Burlington Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.126, + 50.8193 + ] + }, + "properties": { + "openplaque:id": "1073", + "addr:full": "\"The Church of St John the Baptist", + "date_start": "Bristol Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1479, + 50.8318 + ] + }, + "properties": { + "openplaque:id": "1076", + "addr:full": "38 Dyke Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1413, + 50.829 + ] + }, + "properties": { + "openplaque:id": "1077", + "addr:full": "Brighton Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1494, + 50.8421 + ] + }, + "properties": { + "openplaque:id": "1078", + "addr:full": "\"St John's Church", + "date_start": "Knowle Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14324, + 50.83658 + ] + }, + "properties": { + "openplaque:id": "10849", + "addr:full": "Preston Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13788, + 50.81952 + ] + }, + "properties": { + "openplaque:id": "1253", + "addr:full": "Royal Albion Hotel (facing sea)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13901, + 50.8214 + ] + }, + "properties": { + "openplaque:id": "1254", + "addr:full": "\"Fishy Fishy Restaurant", + "date_start": "36 East St\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14652, + 50.82123 + ] + }, + "properties": { + "openplaque:id": "1255", + "addr:full": "\"The Brighton Centre", + "date_start": "Kings Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11601, + 50.8165 + ] + }, + "properties": { + "openplaque:id": "1256", + "addr:full": "5 Percival Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11046, + 50.8178 + ] + }, + "properties": { + "openplaque:id": "1258", + "addr:full": "22 Sussex Square", + "date_start": "1952" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15123, + 50.8221 + ] + }, + "properties": { + "openplaque:id": "1259", + "addr:full": "2 Regency Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15126, + 50.822 + ] + }, + "properties": { + "openplaque:id": "1260", + "addr:full": "1 Regency Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1525, + 50.8335 + ] + }, + "properties": { + "openplaque:id": "1263", + "addr:full": "18 Chanctonbury Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13749, + 50.81954 + ] + }, + "properties": { + "openplaque:id": "1265", + "addr:full": "Grand Junction Rd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1305, + 50.81867 + ] + }, + "properties": { + "openplaque:id": "12721", + "addr:full": "Madeira Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15157, + 50.82386 + ] + }, + "properties": { + "openplaque:id": "12783", + "addr:full": "11 Sillwood Road", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14633, + 50.82967 + ] + }, + "properties": { + "openplaque:id": "12901", + "addr:full": "Compton Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13891, + 50.8276 + ] + }, + "properties": { + "openplaque:id": "1642", + "addr:full": "34 Kensington Place", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13073, + 50.8307 + ] + }, + "properties": { + "openplaque:id": "1868", + "addr:full": "11 Hanover Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15122, + 50.8247 + ] + }, + "properties": { + "openplaque:id": "2058", + "addr:full": "\"Codrington Mansions", + "date_start": "140 Western Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1511, + 50.8278 + ] + }, + "properties": { + "openplaque:id": "2187", + "addr:full": "\"'The Temple'", + "date_start": "Montpelier Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14976, + 50.8293 + ] + }, + "properties": { + "openplaque:id": "2565", + "addr:full": "6 Vernon Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14733, + 50.8332 + ] + }, + "properties": { + "openplaque:id": "2569", + "addr:full": "15 Prestonville Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14428, + 50.8279 + ] + }, + "properties": { + "openplaque:id": "2573", + "addr:full": "79 Buckingham Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14213, + 50.8265 + ] + }, + "properties": { + "openplaque:id": "2577", + "addr:full": "\"Queensbury House", + "date_start": "104-109 Queens Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13516, + 50.8347 + ] + }, + "properties": { + "openplaque:id": "2581", + "addr:full": "28 Warleigh Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11314, + 50.81774 + ] + }, + "properties": { + "openplaque:id": "28232", + "addr:full": "St Mary's Hall", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13781, + 50.82246 + ] + }, + "properties": { + "openplaque:id": "28233", + "addr:full": "Royal Pavilion" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13752, + 50.82538 + ] + }, + "properties": { + "openplaque:id": "30787", + "addr:full": "North Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1405, + 50.82067 + ] + }, + "properties": { + "openplaque:id": "31430", + "addr:full": "Brighton Town Hall", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14087, + 50.82888 + ] + }, + "properties": { + "openplaque:id": "31450", + "addr:full": "Brighton Station", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14095, + 50.82888 + ] + }, + "properties": { + "openplaque:id": "31451", + "addr:full": "Brighton Station", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14487, + 50.82528 + ] + }, + "properties": { + "openplaque:id": "31535", + "addr:full": "\"St Nicholas Church", + "date_start": "Dyke Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1339, + 50.8207 + ] + }, + "properties": { + "openplaque:id": "3189", + "addr:full": "Madeira Place", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.139, + 50.82562 + ] + }, + "properties": { + "openplaque:id": "33040", + "addr:full": "\"Infinity Foods", + "date_start": "Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14172, + 50.8227 + ] + }, + "properties": { + "openplaque:id": "3664", + "addr:full": "\"Fabrica Gallery", + "date_start": "40 Duke Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1311, + 50.8214 + ] + }, + "properties": { + "openplaque:id": "3800", + "addr:full": "38-39 Devonshire Place", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11124, + 50.81458 + ] + }, + "properties": { + "openplaque:id": "39355", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12269, + 50.81793 + ] + }, + "properties": { + "openplaque:id": "41023", + "addr:full": "117-119 Marine Parade", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1384, + 50.82215 + ] + }, + "properties": { + "openplaque:id": "41391", + "addr:full": "The Royal Pavilion", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15126, + 50.822 + ] + }, + "properties": { + "openplaque:id": "41676", + "addr:full": "Regency Square", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13549, + 50.83685 + ] + }, + "properties": { + "openplaque:id": "42235", + "addr:full": "London Road Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14618, + 50.8344 + ] + }, + "properties": { + "openplaque:id": "4238", + "addr:full": "31 Hamilton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12679, + 50.85372 + ] + }, + "properties": { + "openplaque:id": "42467", + "addr:full": "Hollingbury Golf Course" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15642, + 50.82291 + ] + }, + "properties": { + "openplaque:id": "42599", + "addr:full": "Embassy Court", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1519, + 50.8264 + ] + }, + "properties": { + "openplaque:id": "4420", + "addr:full": "Montpellier Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.126, + 50.83527 + ] + }, + "properties": { + "openplaque:id": "48628", + "addr:full": "148 Lewes Road", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14778, + 50.82866 + ] + }, + "properties": { + "openplaque:id": "52097", + "addr:full": "8 Clifton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14338, + 50.82413 + ] + }, + "properties": { + "openplaque:id": "52204", + "addr:full": "\"The Quadrant Pub", + "date_start": "Queens Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14781, + 50.82893 + ] + }, + "properties": { + "openplaque:id": "53154", + "addr:full": "11 Clifton Road", + "date_start": "2020" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12266, + 50.8204 + ] + }, + "properties": { + "openplaque:id": "5440", + "addr:full": "127-135 Eastern Road", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15245, + 50.82778 + ] + }, + "properties": { + "openplaque:id": "7473", + "addr:full": "\"Sixth Form College", + "date_start": "Temple Gardens\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1485, + 50.8235 + ] + }, + "properties": { + "openplaque:id": "8952", + "addr:full": "Clarence Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1497, + 50.8219 + ] + }, + "properties": { + "openplaque:id": "976", + "addr:full": "\"Queensbury Arms pub", + "date_start": "Queensbury Mews\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1446, + 50.8244 + ] + }, + "properties": { + "openplaque:id": "991", + "addr:full": "Wykeham Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59037, + 51.50324 + ] + }, + "properties": { + "openplaque:id": "10999", + "addr:full": "\"12 Felstead Road", + "date_start": "Southmead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59445, + 51.44973 + ] + }, + "properties": { + "openplaque:id": "12173", + "addr:full": "Queen Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59445, + 51.44973 + ] + }, + "properties": { + "openplaque:id": "12174", + "addr:full": "Queen Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59996, + 51.45561 + ] + }, + "properties": { + "openplaque:id": "13008", + "addr:full": "Red Lodge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.60421, + 51.4556 + ] + }, + "properties": { + "openplaque:id": "1313", + "addr:full": "\"Blackwells Bookshop", + "date_start": "89 Park Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.60799, + 51.4479 + ] + }, + "properties": { + "openplaque:id": "1329", + "addr:full": "By the harbour" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.61737, + 51.4553 + ] + }, + "properties": { + "openplaque:id": "1486", + "addr:full": "\"15 Victoria Square", + "date_start": "Clifton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.62419, + 51.4555 + ] + }, + "properties": { + "openplaque:id": "2617", + "addr:full": "20 Sion Hill", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.61872, + 51.4539 + ] + }, + "properties": { + "openplaque:id": "2621", + "addr:full": "2 Royal York Crescent", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.62695, + 51.4605 + ] + }, + "properties": { + "openplaque:id": "2641", + "addr:full": "\"Glendower House", + "date_start": "Clifton Down\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.62508, + 51.4552 + ] + }, + "properties": { + "openplaque:id": "2645", + "addr:full": "13 Sion Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.61655, + 51.4686 + ] + }, + "properties": { + "openplaque:id": "2653", + "addr:full": "29 Anglesea Place", + "date_start": "1989" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.622, + 51.4575 + ] + }, + "properties": { + "openplaque:id": "2657", + "addr:full": "\"Penrose Cottage", + "date_start": "Harley Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.61752, + 51.4538 + ] + }, + "properties": { + "openplaque:id": "2661", + "addr:full": "2 Saville Place", + "date_start": "1992" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.62522, + 51.4546 + ] + }, + "properties": { + "openplaque:id": "2981", + "addr:full": "5 Sion Hill", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5931, + 51.45203 + ] + }, + "properties": { + "openplaque:id": "30382", + "addr:full": "Little King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58948, + 51.45823 + ] + }, + "properties": { + "openplaque:id": "30383", + "addr:full": "The Friary Building" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5897, + 51.45227 + ] + }, + "properties": { + "openplaque:id": "30421", + "addr:full": "\"Seven Stars Public House", + "date_start": "Thomas Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59933, + 51.45117 + ] + }, + "properties": { + "openplaque:id": "31534", + "addr:full": "\"Engineers Walk", + "date_start": "Anchor Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.62656, + 51.45553 + ] + }, + "properties": { + "openplaque:id": "31538", + "addr:full": "Clifton Suspension Bridge", + "date_start": "1959" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.6268, + 51.45535 + ] + }, + "properties": { + "openplaque:id": "32920", + "addr:full": "Clifton Suspension Bridge", + "date_start": "1986" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5883, + 51.44904 + ] + }, + "properties": { + "openplaque:id": "3642", + "addr:full": "Phippin Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5886, + 51.4492 + ] + }, + "properties": { + "openplaque:id": "3644", + "addr:full": "St Thomas Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.62388, + 51.45934 + ] + }, + "properties": { + "openplaque:id": "39169", + "addr:full": "11 Percival Road", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.52599, + 51.60683 + ] + }, + "properties": { + "openplaque:id": "40729", + "addr:full": "\"57 High Street", + "date_start": "Thornbury\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5973, + 51.44934 + ] + }, + "properties": { + "openplaque:id": "40733", + "addr:full": "\"Arnolfini Centre", + "date_start": "Narrow Quay\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58271, + 51.45724 + ] + }, + "properties": { + "openplaque:id": "41335", + "addr:full": "\"7 Redcross St", + "date_start": "St Judes\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58268, + 51.45678 + ] + }, + "properties": { + "openplaque:id": "41336", + "addr:full": "Redcross Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59231, + 51.45406 + ] + }, + "properties": { + "openplaque:id": "41979", + "addr:full": "St. Nicholas Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.60411, + 51.46112 + ] + }, + "properties": { + "openplaque:id": "41995", + "addr:full": "\"St Mary’s House", + "date_start": "Tyndall Park Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59273, + 51.45524 + ] + }, + "properties": { + "openplaque:id": "42223", + "addr:full": "\"Pridential Buildings", + "date_start": "11-19 Wine Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5983, + 51.45607 + ] + }, + "properties": { + "openplaque:id": "42431", + "addr:full": "Lower Park Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59773, + 51.45701 + ] + }, + "properties": { + "openplaque:id": "42765", + "addr:full": "\"Workhouse Kitchen", + "date_start": "St Michael's Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.6242, + 51.45342 + ] + }, + "properties": { + "openplaque:id": "42964", + "addr:full": "Princess Victoria Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59827, + 51.47232 + ] + }, + "properties": { + "openplaque:id": "44012", + "addr:full": "\"54 Salisbury Road", + "date_start": "Redland\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.61983, + 51.4558 + ] + }, + "properties": { + "openplaque:id": "4890", + "addr:full": "3 Rodney Place", + "date_start": "1933" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.60692, + 51.4567 + ] + }, + "properties": { + "openplaque:id": "4894", + "addr:full": "67 Queens Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59841, + 51.4531 + ] + }, + "properties": { + "openplaque:id": "4896", + "addr:full": "\"Hippodrome", + "date_start": "St Augustines Parade\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58992, + 51.44784 + ] + }, + "properties": { + "openplaque:id": "49348", + "addr:full": "\"Graveyard", + "date_start": "St Mary Redcliffe Church" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.60224, + 51.45526 + ] + }, + "properties": { + "openplaque:id": "49351", + "addr:full": "\"The White Harte", + "date_start": "Park Street Avenue\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.52767, + 51.5901 + ] + }, + "properties": { + "openplaque:id": "50160", + "addr:full": "\"David's Lane", + "date_start": "Alveston\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59894, + 51.45119 + ] + }, + "properties": { + "openplaque:id": "50495", + "addr:full": "Anchor Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59896, + 51.45122 + ] + }, + "properties": { + "openplaque:id": "50496", + "addr:full": "Anchor Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.60432, + 51.46423 + ] + }, + "properties": { + "openplaque:id": "50550", + "addr:full": "\"Broomcroft", + "date_start": "11 Cotham Vale\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59895, + 51.45133 + ] + }, + "properties": { + "openplaque:id": "50587", + "addr:full": "Anchor Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59897, + 51.45122 + ] + }, + "properties": { + "openplaque:id": "50588", + "addr:full": "Anchor Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59896, + 51.45126 + ] + }, + "properties": { + "openplaque:id": "50597", + "addr:full": "Anchor Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59901, + 51.45123 + ] + }, + "properties": { + "openplaque:id": "50600", + "addr:full": "Anchor Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.61712, + 51.45505 + ] + }, + "properties": { + "openplaque:id": "50608", + "addr:full": "\"20", + "date_start": "Victoria Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.51548, + 51.4488 + ] + }, + "properties": { + "openplaque:id": "52187", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.6603, + 51.57465 + ] + }, + "properties": { + "openplaque:id": "53166", + "addr:full": "Severn Beach" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.62025, + 51.45492 + ] + }, + "properties": { + "openplaque:id": "53400", + "addr:full": "\"5 Waterloo Street", + "date_start": "Clifton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.62147, + 51.45529 + ] + }, + "properties": { + "openplaque:id": "53401", + "addr:full": "3 West Mall Clifton BS8 4BH" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.62447, + 51.4534 + ] + }, + "properties": { + "openplaque:id": "5424", + "addr:full": "112 Princess Victoria Street", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.67557, + 51.48694 + ] + }, + "properties": { + "openplaque:id": "54527", + "addr:full": "Shirehampton Public Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.56941, + 51.46291 + ] + }, + "properties": { + "openplaque:id": "54988", + "addr:full": "\"Hemmings Waste Disposal", + "date_start": "St Gabriel's Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59301, + 51.45433 + ] + }, + "properties": { + "openplaque:id": "54990", + "addr:full": "All Saints Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59699, + 51.44954 + ] + }, + "properties": { + "openplaque:id": "54991", + "addr:full": "\"Shakespeare Tavern", + "date_start": "Prince Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.55265, + 51.4835 + ] + }, + "properties": { + "openplaque:id": "54992", + "addr:full": "\"68 Park Road", + "date_start": "Stapleton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.56635, + 51.46738 + ] + }, + "properties": { + "openplaque:id": "54993", + "addr:full": "\"Platform 1", + "date_start": "Stapleton Road Station\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.56868, + 51.45509 + ] + }, + "properties": { + "openplaque:id": "54995", + "addr:full": "\"Hapgood Street", + "date_start": "Barton Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59404, + 51.44315 + ] + }, + "properties": { + "openplaque:id": "54996", + "addr:full": "\"Corner of Bartley Street and Philip Street", + "date_start": "Bedminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.62369, + 51.46107 + ] + }, + "properties": { + "openplaque:id": "54998", + "addr:full": "\"Clifton College", + "date_start": "Clifton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.56265, + 51.47045 + ] + }, + "properties": { + "openplaque:id": "55011", + "addr:full": "100 Fishponds Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59281, + 51.45902 + ] + }, + "properties": { + "openplaque:id": "55030", + "addr:full": "Bristol Bus Station", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5634, + 51.45319 + ] + }, + "properties": { + "openplaque:id": "55083", + "addr:full": "Barton Hill Trading Estate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.62447, + 51.45133 + ] + }, + "properties": { + "openplaque:id": "7305", + "addr:full": "Windsor Terrace", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58913, + 51.4648 + ] + }, + "properties": { + "openplaque:id": "7309", + "addr:full": "\"The Bristolian", + "date_start": "Picton Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59568, + 51.45442 + ] + }, + "properties": { + "openplaque:id": "8445", + "addr:full": "\"The Old Bristol Times and Mirror Building", + "date_start": "St. Stephen's Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.54918, + 51.48335 + ] + }, + "properties": { + "openplaque:id": "8502", + "addr:full": "Wickham Court", + "date_start": "1949" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59, + 51.48534 + ] + }, + "properties": { + "openplaque:id": "8653", + "addr:full": "\"15 Hughenden Road", + "date_start": "Horfield\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59356, + 51.47955 + ] + }, + "properties": { + "openplaque:id": "8654", + "addr:full": "\"Bishop Road School", + "date_start": "Bishopston" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58271, + 51.46972 + ] + }, + "properties": { + "openplaque:id": "8655", + "addr:full": "\"Fairlawn Road", + "date_start": "Montpelier\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58307, + 51.4478 + ] + }, + "properties": { + "openplaque:id": "917", + "addr:full": "\"25 Garamound House", + "date_start": "Clarence Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.60782, + 51.4367 + ] + }, + "properties": { + "openplaque:id": "922", + "addr:full": "\"27 Chessel Street", + "date_start": "Bedminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.61469, + 51.46 + ] + }, + "properties": { + "openplaque:id": "924", + "addr:full": "\"9 Oakfield Road", + "date_start": "Clifton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.60786, + 51.4657 + ] + }, + "properties": { + "openplaque:id": "925", + "addr:full": "\"47 Hampton Park", + "date_start": "Cotham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.56829, + 51.4347 + ] + }, + "properties": { + "openplaque:id": "927", + "addr:full": "\"5 Ryde Road", + "date_start": "Knowle\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59848, + 51.455 + ] + }, + "properties": { + "openplaque:id": "929", + "addr:full": "\"Colston Hall", + "date_start": "Colston Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.61226, + 51.4675 + ] + }, + "properties": { + "openplaque:id": "930", + "addr:full": "151 Whiteladies Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.60945, + 51.4574 + ] + }, + "properties": { + "openplaque:id": "932", + "addr:full": "\"9 Richmond Hill", + "date_start": "Clifton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5828, + 51.4568 + ] + }, + "properties": { + "openplaque:id": "933", + "addr:full": "\"7 Redcross St", + "date_start": "St Judes\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58151, + 51.444 + ] + }, + "properties": { + "openplaque:id": "934", + "addr:full": "\"26 Richmond Street", + "date_start": "Totterdown\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.61245, + 51.4561 + ] + }, + "properties": { + "openplaque:id": "935", + "addr:full": "\"23 Gordon Road", + "date_start": "Clifton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.60889, + 51.4689 + ] + }, + "properties": { + "openplaque:id": "940", + "addr:full": "\"Foley Cottage", + "date_start": "130 Hampton Rd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59813, + 51.4574 + ] + }, + "properties": { + "openplaque:id": "941", + "addr:full": "4 Horfield Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5467, + 51.43311 + ] + }, + "properties": { + "openplaque:id": "942", + "addr:full": "\"Stars and Stripes Pool Hall", + "date_start": "Bath Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.55013, + 51.44721 + ] + }, + "properties": { + "openplaque:id": "943", + "addr:full": "\"St Annes School", + "date_start": "Bloomfield Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.61983, + 51.4557 + ] + }, + "properties": { + "openplaque:id": "944", + "addr:full": "\"2 Rodney Place", + "date_start": "Clifton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.55073, + 51.45983 + ] + }, + "properties": { + "openplaque:id": "946", + "addr:full": "\"St Georges Park", + "date_start": "St George" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.61284, + 51.4724 + ] + }, + "properties": { + "openplaque:id": "950", + "addr:full": "\"2 Durdham Park", + "date_start": "Redland\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.60192, + 51.45543 + ] + }, + "properties": { + "openplaque:id": "951", + "addr:full": "Corner of Park Row/Woodland Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59498, + 51.479 + ] + }, + "properties": { + "openplaque:id": "952", + "addr:full": "15 Monk Road Bishopston" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59071, + 51.47888 + ] + }, + "properties": { + "openplaque:id": "957", + "addr:full": "\"22 Manor Road", + "date_start": "Bishopston\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.61134, + 51.4755 + ] + }, + "properties": { + "openplaque:id": "958", + "addr:full": "23 Blenheim Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.62024, + 51.45509 + ] + }, + "properties": { + "openplaque:id": "9757", + "addr:full": "\"The Clifton Club", + "date_start": "22 The Mall\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.49484, + 50.40074 + ] + }, + "properties": { + "openplaque:id": "54089", + "addr:full": "\"Berry Head Hotel", + "date_start": "Berry Head Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.4949, + 50.40072 + ] + }, + "properties": { + "openplaque:id": "54091" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.50556, + 50.39929 + ] + }, + "properties": { + "openplaque:id": "54093", + "addr:full": "\"RNLI Torbay Lifeboat Station", + "date_start": "Berry Head Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.51776, + 50.3957 + ] + }, + "properties": { + "openplaque:id": "6740", + "addr:full": "73 S Furzeham Rd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.5643, + 50.396 + ] + }, + "properties": { + "openplaque:id": "6832", + "addr:full": "\"Vale House", + "date_start": "Manor Vale Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4441, + 51.35945 + ] + }, + "properties": { + "openplaque:id": "13031", + "addr:full": "\"Broadstairs Sailing Club", + "date_start": "Seaview House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42532, + 51.36714 + ] + }, + "properties": { + "openplaque:id": "13032", + "addr:full": "\"54 Albion Road", + "date_start": "St. Peter's\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.44288, + 51.35931 + ] + }, + "properties": { + "openplaque:id": "30361", + "addr:full": "Albion Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.44101, + 51.35714 + ] + }, + "properties": { + "openplaque:id": "4134", + "addr:full": "4 Chandos Road", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.44509, + 51.35987 + ] + }, + "properties": { + "openplaque:id": "42071", + "addr:full": "Fort Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.44093, + 51.35769 + ] + }, + "properties": { + "openplaque:id": "49052" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4417, + 51.35662 + ] + }, + "properties": { + "openplaque:id": "53665", + "addr:full": "Victoria Parade", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59566, + 50.80115 + ] + }, + "properties": { + "openplaque:id": "49896", + "addr:full": "Rhinefield House Hotel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28502, + 51.23283 + ] + }, + "properties": { + "openplaque:id": "39588", + "addr:full": "Brockham Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98045, + 53.35068 + ] + }, + "properties": { + "openplaque:id": "53930", + "addr:full": "36 Manor Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05401, + 51.39061 + ] + }, + "properties": { + "openplaque:id": "11222", + "addr:full": "\"Harvester Restaurant", + "date_start": "Southborough Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00039, + 51.40156 + ] + }, + "properties": { + "openplaque:id": "1413", + "addr:full": "\"20 Church Road", + "date_start": "Shortlands" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00163, + 51.402 + ] + }, + "properties": { + "openplaque:id": "1416", + "addr:full": "\"16 Church Road", + "date_start": "Shortlands" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0066, + 51.3995 + ] + }, + "properties": { + "openplaque:id": "1417", + "addr:full": "\"83 Shortlands Road", + "date_start": "Shortlands" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.03292, + 51.4401 + ] + }, + "properties": { + "openplaque:id": "1430", + "addr:full": "\"Fairmount Residential Care Home", + "date_start": "Mottingham Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05265, + 51.4058 + ] + }, + "properties": { + "openplaque:id": "1431", + "addr:full": "195 Mackenzie Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0153, + 51.412 + ] + }, + "properties": { + "openplaque:id": "332", + "addr:full": "6 Crescent Road", + "date_start": "1989" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01663, + 51.40685 + ] + }, + "properties": { + "openplaque:id": "51872", + "addr:full": "7 South Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01174, + 51.40711 + ] + }, + "properties": { + "openplaque:id": "51950", + "addr:full": "\"The Swan and Mitre", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5547, + 54.22702 + ] + }, + "properties": { + "openplaque:id": "30337", + "addr:full": "\"Garden House", + "date_start": "Brompton Hall\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07445, + 52.35868 + ] + }, + "properties": { + "openplaque:id": "10823", + "addr:full": "\"Housmans House", + "date_start": "Valley Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05791, + 52.33737 + ] + }, + "properties": { + "openplaque:id": "12421", + "addr:full": "The Strand / Stourbridge Road", + "date_start": "1910" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06481, + 52.33135 + ] + }, + "properties": { + "openplaque:id": "12422", + "addr:full": "\"Cookes House", + "date_start": "Worcester Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06628, + 52.33377 + ] + }, + "properties": { + "openplaque:id": "8559", + "addr:full": "\"Housman Hall", + "date_start": "Bromsgrove School\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5065, + 52.18721 + ] + }, + "properties": { + "openplaque:id": "41172", + "addr:full": "\"Tower House", + "date_start": "Tower Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.65876, + 51.30174 + ] + }, + "properties": { + "openplaque:id": "43919" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.63604, + 51.30354 + ] + }, + "properties": { + "openplaque:id": "52383" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93851, + 54.5663 + ] + }, + "properties": { + "openplaque:id": "10731", + "addr:full": "14 Child Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.19996, + 54.90486 + ] + }, + "properties": { + "openplaque:id": "7230", + "addr:full": "24 Tullymore Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.86134, + 56.4696 + ] + }, + "properties": { + "openplaque:id": "44005", + "addr:full": "Reres Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94061, + 52.66404 + ] + }, + "properties": { + "openplaque:id": "28087", + "addr:full": "Pool Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.76873, + 50.48278 + ] + }, + "properties": { + "openplaque:id": "40734", + "addr:full": "Railway Station", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1915, + 54.1375 + ] + }, + "properties": { + "openplaque:id": "12670", + "addr:full": "Buckton Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.3216, + 50.62983 + ] + }, + "properties": { + "openplaque:id": "12183", + "addr:full": "Umbrella Cottage" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.32096, + 50.62909 + ] + }, + "properties": { + "openplaque:id": "31491", + "addr:full": "South Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.32869, + 50.63083 + ] + }, + "properties": { + "openplaque:id": "41441", + "addr:full": "Public Hall", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.40743, + 52.15153 + ] + }, + "properties": { + "openplaque:id": "4116", + "addr:full": "Builth High School (viewed from North Road)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43977, + 52.45784 + ] + }, + "properties": { + "openplaque:id": "51372", + "addr:full": "Falcon Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.34828, + 52.53002 + ] + }, + "properties": { + "openplaque:id": "41626", + "addr:full": "\"Burbage Constitutional Club/Canning House", + "date_start": "Church Street \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.34667, + 52.53008 + ] + }, + "properties": { + "openplaque:id": "41646", + "addr:full": "\"Burbage Hall", + "date_start": "Aston Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35099, + 52.53336 + ] + }, + "properties": { + "openplaque:id": "41647", + "addr:full": "\"Athelstan", + "date_start": "Hinckley Road (opposite Regency Court)\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.34904, + 52.53064 + ] + }, + "properties": { + "openplaque:id": "41648", + "addr:full": "\"Catherines Church", + "date_start": "South Gate Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.34867, + 52.5291 + ] + }, + "properties": { + "openplaque:id": "41649", + "addr:full": "\"Tong Lodge", + "date_start": "Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.34919, + 52.52511 + ] + }, + "properties": { + "openplaque:id": "41651", + "addr:full": "\"Cheadle House", + "date_start": "Britannia Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35247, + 52.52974 + ] + }, + "properties": { + "openplaque:id": "41652", + "addr:full": "\"Main Entrance", + "date_start": "Burbage Infant school" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.34854, + 52.53035 + ] + }, + "properties": { + "openplaque:id": "41653", + "addr:full": "\"Archer Cottage", + "date_start": "Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35208, + 52.5264 + ] + }, + "properties": { + "openplaque:id": "50147", + "addr:full": "\"The Sycamores Inn", + "date_start": "60 Windsor Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.65407, + 51.77378 + ] + }, + "properties": { + "openplaque:id": "12632", + "addr:full": "Cotswold WildLife Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.89779, + 50.2803 + ] + }, + "properties": { + "openplaque:id": "1360", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.74206, + 53.9124 + ] + }, + "properties": { + "openplaque:id": "30254", + "addr:full": "Junction of Cornmill Lane and Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74526, + 52.96463 + ] + }, + "properties": { + "openplaque:id": "50161", + "addr:full": "East Harbour Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76006, + 52.93035 + ] + }, + "properties": { + "openplaque:id": "9432", + "addr:full": "?", + "date_start": "1959" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.26527, + 53.78637 + ] + }, + "properties": { + "openplaque:id": "41818", + "addr:full": "Hargher Street", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23143, + 53.78859 + ] + }, + "properties": { + "openplaque:id": "43794", + "addr:full": "\"Bob Lord Stand", + "date_start": "Turf Moor" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23045, + 53.78843 + ] + }, + "properties": { + "openplaque:id": "43795", + "addr:full": "\"Bob Lord Stand", + "date_start": "Turf Moor" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.26512, + 53.78646 + ] + }, + "properties": { + "openplaque:id": "44746" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.20197, + 53.81164 + ] + }, + "properties": { + "openplaque:id": "8921", + "addr:full": "\"Queen Street Mill Textile Museum", + "date_start": "Queen Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23199, + 53.78061 + ] + }, + "properties": { + "openplaque:id": "9307", + "addr:full": "Burnley Wood", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23199, + 53.78061 + ] + }, + "properties": { + "openplaque:id": "9414", + "addr:full": "\"TBC", + "date_start": "Burnley Wood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23199, + 53.78061 + ] + }, + "properties": { + "openplaque:id": "9417", + "addr:full": "\"TBC", + "date_start": "Burnley Wood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23826, + 53.80178 + ] + }, + "properties": { + "openplaque:id": "9418", + "addr:full": "\"Hurtley Street", + "date_start": "Burnley Wood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23199, + 53.78061 + ] + }, + "properties": { + "openplaque:id": "9420", + "addr:full": "\"TBC", + "date_start": "Burnley Wood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.23362, + 56.0588 + ] + }, + "properties": { + "openplaque:id": "3324", + "addr:full": "corner of Kirkgate and Somerville Street", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.23389, + 56.05851 + ] + }, + "properties": { + "openplaque:id": "55079", + "addr:full": "30-31 Somerville Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89951, + 52.6754 + ] + }, + "properties": { + "openplaque:id": "27900", + "addr:full": "Norton Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9082, + 52.67638 + ] + }, + "properties": { + "openplaque:id": "27901", + "addr:full": "17 Chase Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91265, + 52.67819 + ] + }, + "properties": { + "openplaque:id": "27903", + "addr:full": "Tudor Park Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88939, + 52.67504 + ] + }, + "properties": { + "openplaque:id": "27961", + "addr:full": "\"Lichfield Road", + "date_start": "Edial\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.85189, + 52.68852 + ] + }, + "properties": { + "openplaque:id": "27962", + "addr:full": "Abnalls Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88285, + 52.6812 + ] + }, + "properties": { + "openplaque:id": "27963", + "addr:full": "\"Woodhouses Road", + "date_start": "Woodhouses\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89646, + 52.67818 + ] + }, + "properties": { + "openplaque:id": "27964", + "addr:full": "Woodhouses Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88803, + 52.68146 + ] + }, + "properties": { + "openplaque:id": "28013", + "addr:full": "Shaftsbury Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8881, + 52.68266 + ] + }, + "properties": { + "openplaque:id": "28014", + "addr:full": "St. Matthews Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89402, + 52.68036 + ] + }, + "properties": { + "openplaque:id": "28016", + "addr:full": "St. Matthews Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89459, + 52.68041 + ] + }, + "properties": { + "openplaque:id": "28017", + "addr:full": "Coulter Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89904, + 52.67967 + ] + }, + "properties": { + "openplaque:id": "28018", + "addr:full": "Church Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90602, + 52.67988 + ] + }, + "properties": { + "openplaque:id": "28019", + "addr:full": "Rugeley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90578, + 52.68212 + ] + }, + "properties": { + "openplaque:id": "28020", + "addr:full": "Rugeley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91001, + 52.68581 + ] + }, + "properties": { + "openplaque:id": "28021", + "addr:full": "Rake Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90665, + 52.68854 + ] + }, + "properties": { + "openplaque:id": "28022", + "addr:full": "Green Lane off Rugeley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.89621, + 52.67963 + ] + }, + "properties": { + "openplaque:id": "28030", + "addr:full": "\"Christ Church", + "date_start": "Church Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90635, + 52.68482 + ] + }, + "properties": { + "openplaque:id": "28031", + "addr:full": "123 Rugeley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.62842, + 52.8016 + ] + }, + "properties": { + "openplaque:id": "41356", + "addr:full": "Garden of Remembrance" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61154, + 52.82972 + ] + }, + "properties": { + "openplaque:id": "8922", + "addr:full": "Meadow Lane", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.32725, + 52.27492 + ] + }, + "properties": { + "openplaque:id": "12943", + "addr:full": "Cuckolds Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31365, + 52.2719 + ] + }, + "properties": { + "openplaque:id": "12954", + "addr:full": "Weirs Drove" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.32733, + 52.26722 + ] + }, + "properties": { + "openplaque:id": "12955", + "addr:full": "Station Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.30099, + 53.58895 + ] + }, + "properties": { + "openplaque:id": "33133", + "addr:full": "Manchester Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.30609, + 53.61007 + ] + }, + "properties": { + "openplaque:id": "43840", + "addr:full": "Woodhill Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.29433, + 53.57092 + ] + }, + "properties": { + "openplaque:id": "54320", + "addr:full": "529 Manchester Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71683, + 52.24351 + ] + }, + "properties": { + "openplaque:id": "11671", + "addr:full": "\"Savings Bank House", + "date_start": "Crown Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7167, + 52.2429 + ] + }, + "properties": { + "openplaque:id": "4006", + "addr:full": "Crown Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7119, + 52.24463 + ] + }, + "properties": { + "openplaque:id": "42329", + "addr:full": "Guildhall Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71677, + 52.24474 + ] + }, + "properties": { + "openplaque:id": "42331", + "addr:full": "The Abbey Gardens - Angel Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71555, + 52.24497 + ] + }, + "properties": { + "openplaque:id": "42332", + "addr:full": "Abbeygate Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71795, + 52.24421 + ] + }, + "properties": { + "openplaque:id": "51973", + "addr:full": "Walled Garden - Abbey Gardens", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71671, + 52.24363 + ] + }, + "properties": { + "openplaque:id": "51974", + "addr:full": "Norman Tower - Abbey Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71966, + 52.24124 + ] + }, + "properties": { + "openplaque:id": "54812", + "addr:full": "5 St Mary's Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71583, + 52.24462 + ] + }, + "properties": { + "openplaque:id": "8914", + "addr:full": "\"The Angel Hotel", + "date_start": "Angel Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56426, + 50.90881 + ] + }, + "properties": { + "openplaque:id": "41719", + "addr:full": "West Sussex\"", + "date_start": "Bury House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36731, + 51.64521 + ] + }, + "properties": { + "openplaque:id": "30405", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3942, + 51.6499 + ] + }, + "properties": { + "openplaque:id": "6022", + "addr:full": "32 Tucker Street", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91779, + 53.25773 + ] + }, + "properties": { + "openplaque:id": "31700", + "addr:full": "Don Redfern Memorial Bandstand - Pavilion Gardens", + "date_start": "1997" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91823, + 53.25813 + ] + }, + "properties": { + "openplaque:id": "31729", + "addr:full": "The Pavilion - Pavilion Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91541, + 53.25812 + ] + }, + "properties": { + "openplaque:id": "31731", + "addr:full": "The Old Hall Hotel - The Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91504, + 53.25844 + ] + }, + "properties": { + "openplaque:id": "31738", + "addr:full": "Natural Mineral Baths - The Crescent", + "date_start": "1924" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91371, + 53.25913 + ] + }, + "properties": { + "openplaque:id": "31739", + "addr:full": "Buxton Baths - The Crescent", + "date_start": "1986" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91295, + 0 + ] + }, + "properties": { + "openplaque:id": "39495", + "addr:full": "Buxton Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92286, + 53.26082 + ] + }, + "properties": { + "openplaque:id": "8484", + "addr:full": "151 Park Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91669, + 53.25872 + ] + }, + "properties": { + "openplaque:id": "9404", + "addr:full": "\"Buxton Opera House", + "date_start": "Water Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.97259, + 53.33575 + ] + }, + "properties": { + "openplaque:id": "9444", + "addr:full": "Bugsworth Basin", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24485, + 52.17373 + ] + }, + "properties": { + "openplaque:id": "42906", + "addr:full": "Byfield Village Hall", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.95197, + 51.60852 + ] + }, + "properties": { + "openplaque:id": "54240", + "addr:full": "\"Hanbury Arms", + "date_start": "Hanbury Close\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.27681, + 53.13965 + ] + }, + "properties": { + "openplaque:id": "12972", + "addr:full": "Castle Ditch" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.27526, + 53.14086 + ] + }, + "properties": { + "openplaque:id": "49474", + "addr:full": "East Gate near the High Street and Hole-in-the-Wall Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.27265, + 53.13758 + ] + }, + "properties": { + "openplaque:id": "49475", + "addr:full": "Oakmere Plumbing - St Helen's Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.27525, + 53.13934 + ] + }, + "properties": { + "openplaque:id": "49483", + "addr:full": "Near the David Lloyd George statue on a terrace overlooking Caernarfon Castle", + "date_start": "1911" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.27584, + 53.13987 + ] + }, + "properties": { + "openplaque:id": "49489", + "addr:full": "Castle Ditch near the end of the town walls", + "date_start": "1917" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.27397, + 53.13949 + ] + }, + "properties": { + "openplaque:id": "49492", + "addr:full": "Castle Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.27411, + 53.13917 + ] + }, + "properties": { + "openplaque:id": "49493", + "addr:full": "Post Office - Castle Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.24732, + 53.12883 + ] + }, + "properties": { + "openplaque:id": "50826", + "addr:full": "Penrhos" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.16361, + 53.35264 + ] + }, + "properties": { + "openplaque:id": "53957", + "addr:full": "\"Simon's Bridge", + "date_start": "Wirral Way. Caldy\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.00343, + 51.4376 + ] + }, + "properties": { + "openplaque:id": "2561", + "addr:full": "Church Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.00349, + 51.4376 + ] + }, + "properties": { + "openplaque:id": "3772", + "addr:full": "Church Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.00258, + 51.4375 + ] + }, + "properties": { + "openplaque:id": "4028", + "addr:full": "Mill Street", + "date_start": "1977" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.00513, + 51.4377 + ] + }, + "properties": { + "openplaque:id": "4032", + "addr:full": "Cox's Hill", + "date_start": "1986" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.00475, + 51.4367 + ] + }, + "properties": { + "openplaque:id": "4036", + "addr:full": "New Road", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3182, + 50.8084 + ] + }, + "properties": { + "openplaque:id": "2381", + "addr:full": "Eaglehurst" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.30921, + 50.81486 + ] + }, + "properties": { + "openplaque:id": "42714", + "addr:full": "Jack Maynard Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.30925, + 50.81469 + ] + }, + "properties": { + "openplaque:id": "44763" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.70962, + 51.3024 + ] + }, + "properties": { + "openplaque:id": "54287", + "addr:full": "Deepcut Bridge Rd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7223, + 51.29978 + ] + }, + "properties": { + "openplaque:id": "54288", + "addr:full": "Guildford Rd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.76712, + 51.3343 + ] + }, + "properties": { + "openplaque:id": "5458", + "addr:full": "\"McDonald's Restaurant", + "date_start": "London Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09088, + 52.20978 + ] + }, + "properties": { + "openplaque:id": "12187", + "addr:full": "\"Old Cavendish Laboratory", + "date_start": "Free School Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09089, + 52.20978 + ] + }, + "properties": { + "openplaque:id": "12188", + "addr:full": "\"Old Cavendish Laboratory", + "date_start": "Free School Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.121, + 52.2029 + ] + }, + "properties": { + "openplaque:id": "12263", + "addr:full": "\"Museum of Archaeology", + "date_start": "Downing Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13719, + 52.1876 + ] + }, + "properties": { + "openplaque:id": "1335", + "addr:full": "163 Hills Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.12441, + 52.2023 + ] + }, + "properties": { + "openplaque:id": "1338", + "addr:full": "\"Hobson House", + "date_start": "44 St Andrews Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13014, + 52.1992 + ] + }, + "properties": { + "openplaque:id": "1346", + "addr:full": "10 Harvey Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.12181, + 52.1988 + ] + }, + "properties": { + "openplaque:id": "1347", + "addr:full": "\"University of Cambridge", + "date_start": "Trumpington Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.10458, + 52.2135 + ] + }, + "properties": { + "openplaque:id": "1348", + "addr:full": "76 Storeys Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11823, + 52.2039 + ] + }, + "properties": { + "openplaque:id": "1352", + "addr:full": "\"The Eagle Public House", + "date_start": "8 Benet Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11762, + 52.204 + ] + }, + "properties": { + "openplaque:id": "1875", + "addr:full": "Kings Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.12101, + 52.2057 + ] + }, + "properties": { + "openplaque:id": "3500", + "addr:full": "28 Petty Cury" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.12086, + 52.2057 + ] + }, + "properties": { + "openplaque:id": "3502", + "addr:full": "Boots - Sidney Street / 28 Petty Cury" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11918, + 52.2034 + ] + }, + "properties": { + "openplaque:id": "3898", + "addr:full": "Free School Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11773, + 52.2047 + ] + }, + "properties": { + "openplaque:id": "3904", + "addr:full": "19 King's Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11776, + 52.2048 + ] + }, + "properties": { + "openplaque:id": "3906", + "addr:full": "11 King's Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11932, + 52.20105 + ] + }, + "properties": { + "openplaque:id": "3908", + "addr:full": "\"Peterhouse", + "date_start": "The Hostel - Trumpington Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.12277, + 52.19677 + ] + }, + "properties": { + "openplaque:id": "48668", + "addr:full": "18 Brookside", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11798, + 52.20551 + ] + }, + "properties": { + "openplaque:id": "49719", + "addr:full": "1-2 Trinity Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11185, + 52.21022 + ] + }, + "properties": { + "openplaque:id": "51770", + "addr:full": "Westminster College", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11896, + 52.2042 + ] + }, + "properties": { + "openplaque:id": "54854", + "addr:full": "16 Bene't Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.6032, + 55.42399 + ] + }, + "properties": { + "openplaque:id": "40737", + "addr:full": "Hall Street", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.02907, + 52.68817 + ] + }, + "properties": { + "openplaque:id": "49300", + "addr:full": "Ringway" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15686, + 52.15003 + ] + }, + "properties": { + "openplaque:id": "51547", + "addr:full": "Priory Church of St Mary" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08092, + 51.2804 + ] + }, + "properties": { + "openplaque:id": "1877", + "addr:full": "52 Palace Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08268, + 51.27745 + ] + }, + "properties": { + "openplaque:id": "30144", + "addr:full": "St George's Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08856, + 51.283 + ] + }, + "properties": { + "openplaque:id": "3209", + "addr:full": "30 Notley Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08522, + 51.2771 + ] + }, + "properties": { + "openplaque:id": "3213", + "addr:full": "63 Ivy Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.13519, + 51.2126 + ] + }, + "properties": { + "openplaque:id": "3280", + "addr:full": "\"The Orchard", + "date_start": "Marley Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.04453, + 51.2825 + ] + }, + "properties": { + "openplaque:id": "3284", + "addr:full": "\"Vernon Holme", + "date_start": "Harbledown\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.09349, + 51.2268 + ] + }, + "properties": { + "openplaque:id": "3288", + "addr:full": "\"Duck Inn", + "date_start": "Pett Bottom\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17364, + 51.19021 + ] + }, + "properties": { + "openplaque:id": "3290", + "addr:full": "\"Broome Park", + "date_start": "Canterbury Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06668, + 51.289 + ] + }, + "properties": { + "openplaque:id": "3292", + "addr:full": "36 Harkness Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0802, + 51.27963 + ] + }, + "properties": { + "openplaque:id": "3296", + "addr:full": "Guildhall Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08641, + 51.27771 + ] + }, + "properties": { + "openplaque:id": "41558" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.07814, + 51.28023 + ] + }, + "properties": { + "openplaque:id": "42072", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08069, + 51.27949 + ] + }, + "properties": { + "openplaque:id": "49098" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.12629, + 51.2953 + ] + }, + "properties": { + "openplaque:id": "5912", + "addr:full": "\"Watergate House", + "date_start": "King St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0928, + 51.2774 + ] + }, + "properties": { + "openplaque:id": "5914", + "addr:full": "\"6", + "date_start": "St Martin’s Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.12597, + 51.29514 + ] + }, + "properties": { + "openplaque:id": "5916", + "addr:full": "\"Manor House", + "date_start": "Fordwich\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0816, + 51.2825 + ] + }, + "properties": { + "openplaque:id": "5918", + "addr:full": "\"16", + "date_start": "St Radigund’s Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18326, + 51.4686 + ] + }, + "properties": { + "openplaque:id": "11873", + "addr:full": "\"69 Corporation Road", + "date_start": "Grangetown\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20155, + 51.47324 + ] + }, + "properties": { + "openplaque:id": "12021", + "addr:full": "Sloper Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1814, + 51.47985 + ] + }, + "properties": { + "openplaque:id": "12140", + "addr:full": "Westgate Street", + "date_start": "1949" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17681, + 51.49486 + ] + }, + "properties": { + "openplaque:id": "12153", + "addr:full": "Crwys Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17683, + 51.49486 + ] + }, + "properties": { + "openplaque:id": "12154", + "addr:full": "Crwys Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17833, + 51.48173 + ] + }, + "properties": { + "openplaque:id": "12213", + "addr:full": "\"11", + "date_start": "Queen Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20993, + 51.50962 + ] + }, + "properties": { + "openplaque:id": "12264", + "addr:full": "\"The Philog", + "date_start": "Whitchurch\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1667, + 51.46295 + ] + }, + "properties": { + "openplaque:id": "12790", + "addr:full": "11/12 Stuart Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17807, + 51.47813 + ] + }, + "properties": { + "openplaque:id": "13127", + "addr:full": "\"88", + "date_start": "St Mary Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21554, + 51.4913 + ] + }, + "properties": { + "openplaque:id": "1852", + "addr:full": "Palace Road", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15452, + 51.4906 + ] + }, + "properties": { + "openplaque:id": "29891", + "addr:full": "Stacey Road", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.16514, + 51.46312 + ] + }, + "properties": { + "openplaque:id": "29924", + "addr:full": "Mermaid Quay" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17963, + 51.47991 + ] + }, + "properties": { + "openplaque:id": "39849", + "addr:full": "St Mary Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17977, + 51.48002 + ] + }, + "properties": { + "openplaque:id": "39850", + "addr:full": "St Mary Street", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17724, + 51.48582 + ] + }, + "properties": { + "openplaque:id": "39854", + "addr:full": "National Museum Cardiff - Gorsedd Gardens Road", + "date_start": "1993" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17726, + 51.4858 + ] + }, + "properties": { + "openplaque:id": "39855", + "addr:full": "National Museum Cardiff - Gorsedd Gardens Road", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17756, + 51.4817 + ] + }, + "properties": { + "openplaque:id": "39860", + "addr:full": "Queens Chambers - Queen Street", + "date_start": "1994" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17812, + 51.4816 + ] + }, + "properties": { + "openplaque:id": "39861", + "addr:full": "Queen Street", + "date_start": "1978" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21201, + 51.5147 + ] + }, + "properties": { + "openplaque:id": "4088", + "addr:full": "\"158 Manor Way", + "date_start": "Whitchurch\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21322, + 51.52142 + ] + }, + "properties": { + "openplaque:id": "4094", + "addr:full": "\"The Public Library", + "date_start": "Rhiwbina\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20018, + 51.4868 + ] + }, + "properties": { + "openplaque:id": "4096", + "addr:full": "\"15 Conway Road", + "date_start": "Pontcanna\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.22537, + 0 + ] + }, + "properties": { + "openplaque:id": "4098", + "addr:full": "\"Public Library", + "date_start": "Park Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21883, + 51.4941 + ] + }, + "properties": { + "openplaque:id": "4110", + "addr:full": "\"11 High Street", + "date_start": "Llandaff\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.22786, + 51.50406 + ] + }, + "properties": { + "openplaque:id": "42256", + "addr:full": "\"40 Station Road", + "date_start": "Llandaff North\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.16547, + 51.46334 + ] + }, + "properties": { + "openplaque:id": "42465", + "addr:full": "Cardiff Bay" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.23046, + 51.4933 + ] + }, + "properties": { + "openplaque:id": "42674", + "addr:full": "\"Ty Gwyn", + "date_start": "Fairwater Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1623, + 51.46363 + ] + }, + "properties": { + "openplaque:id": "51517", + "addr:full": "\"The Senedd", + "date_start": "Pierhead St\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19129, + 51.48077 + ] + }, + "properties": { + "openplaque:id": "8236", + "addr:full": "Cowbridge Road East" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.66089, + 52.08343 + ] + }, + "properties": { + "openplaque:id": "53478", + "addr:full": "\"Corner House", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.66118, + 52.0819 + ] + }, + "properties": { + "openplaque:id": "53497" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.66117, + 52.08173 + ] + }, + "properties": { + "openplaque:id": "53503", + "addr:full": "\"Castle Reception", + "date_start": "1 Green Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.66157, + 52.08184 + ] + }, + "properties": { + "openplaque:id": "54270", + "addr:full": "Quay Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.93323, + 54.89187 + ] + }, + "properties": { + "openplaque:id": "11492", + "addr:full": "37 Lingarth" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9355, + 54.89533 + ] + }, + "properties": { + "openplaque:id": "42114" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9355, + 54.89383 + ] + }, + "properties": { + "openplaque:id": "42115" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9355, + 54.89367 + ] + }, + "properties": { + "openplaque:id": "42116" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.92712, + 54.88912 + ] + }, + "properties": { + "openplaque:id": "42669", + "addr:full": "\"169", + "date_start": "Botchergate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.91334, + 54.88335 + ] + }, + "properties": { + "openplaque:id": "49242", + "addr:full": "8 Petteril Terrace", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.92989, + 54.89518 + ] + }, + "properties": { + "openplaque:id": "53919", + "addr:full": "3 Chatsworth Square", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49314, + 53.73957 + ] + }, + "properties": { + "openplaque:id": "54493" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.30564, + 51.8565 + ] + }, + "properties": { + "openplaque:id": "28180", + "addr:full": "6 King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.30342, + 51.85763 + ] + }, + "properties": { + "openplaque:id": "28181", + "addr:full": "Spilman Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.30776, + 51.85636 + ] + }, + "properties": { + "openplaque:id": "28182", + "addr:full": "Guildhall Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.30555, + 51.85684 + ] + }, + "properties": { + "openplaque:id": "28183", + "addr:full": "9B King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.31171, + 51.85648 + ] + }, + "properties": { + "openplaque:id": "28184", + "addr:full": "\"English Baptist Church", + "date_start": "Lammas Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.32043, + 51.85522 + ] + }, + "properties": { + "openplaque:id": "41797" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7711, + 54.12981 + ] + }, + "properties": { + "openplaque:id": "28025", + "addr:full": "Railway Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7711, + 54.12975 + ] + }, + "properties": { + "openplaque:id": "9089", + "addr:full": "\"Carnforth Station", + "date_start": "Warton Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.24263, + 50.21516 + ] + }, + "properties": { + "openplaque:id": "53976" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.9927, + 54.9847 + ] + }, + "properties": { + "openplaque:id": "7206", + "addr:full": "14 Shingle Cove" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.8067, + 54.71887 + ] + }, + "properties": { + "openplaque:id": "10435", + "addr:full": "\"Macneice Fold", + "date_start": "North Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.80701, + 54.7125 + ] + }, + "properties": { + "openplaque:id": "10457", + "addr:full": "Harbour" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.78446, + 54.72251 + ] + }, + "properties": { + "openplaque:id": "10908", + "addr:full": "Magill’s Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.80455, + 54.71604 + ] + }, + "properties": { + "openplaque:id": "50756", + "addr:full": "\"Carrickfergus Library", + "date_start": "Joymount Court" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.80533, + 54.71543 + ] + }, + "properties": { + "openplaque:id": "7000", + "addr:full": "High Street", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.83296, + 54.7246 + ] + }, + "properties": { + "openplaque:id": "7024", + "addr:full": "75 Woodburn Road", + "date_start": "2006" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.81457, + 54.71259 + ] + }, + "properties": { + "openplaque:id": "7192", + "addr:full": "\"Marine Cottage", + "date_start": "Belfast Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59632, + 51.75833 + ] + }, + "properties": { + "openplaque:id": "1004", + "addr:full": "Carterton Town Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.51057, + 51.09014 + ] + }, + "properties": { + "openplaque:id": "12446", + "addr:full": "Upper High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.51037, + 51.09253 + ] + }, + "properties": { + "openplaque:id": "54277", + "addr:full": "Cumnock Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59957, + 51.98968 + ] + }, + "properties": { + "openplaque:id": "11131", + "addr:full": "\"Bank House", + "date_start": "11 St. James Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5971, + 51.98799 + ] + }, + "properties": { + "openplaque:id": "49420", + "addr:full": "\"'Sheepcote'", + "date_start": "Queen Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35204, + 53.72667 + ] + }, + "properties": { + "openplaque:id": "9271", + "addr:full": "Carlton Street", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.95618, + 54.26462 + ] + }, + "properties": { + "openplaque:id": "1748", + "addr:full": "Castlewellan Forest Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07652, + 51.28174 + ] + }, + "properties": { + "openplaque:id": "8291", + "addr:full": "\"Caterham Valley Computers", + "date_start": "11-13 Godstone Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07922, + 51.2805 + ] + }, + "properties": { + "openplaque:id": "8293", + "addr:full": "\"Site of Eothen School", + "date_start": "2 West View" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08909, + 51.28727 + ] + }, + "properties": { + "openplaque:id": "8297", + "addr:full": "\"Site of Fire House", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08923, + 51.28588 + ] + }, + "properties": { + "openplaque:id": "8306", + "addr:full": "\"C.W.Cox Bicycles", + "date_start": "Park Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07564, + 51.28126 + ] + }, + "properties": { + "openplaque:id": "8307", + "addr:full": "\"The Miller Centre", + "date_start": "Caterham Valley\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07825, + 51.28203 + ] + }, + "properties": { + "openplaque:id": "8308", + "addr:full": "Caterham Station", + "date_start": "2006" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.97961, + 51.46826 + ] + }, + "properties": { + "openplaque:id": "12451", + "addr:full": "Caversham Court" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55567, + 51.6055 + ] + }, + "properties": { + "openplaque:id": "12169", + "addr:full": "Grange Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55624, + 51.61006 + ] + }, + "properties": { + "openplaque:id": "52095", + "addr:full": "Gravel Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55578, + 51.60774 + ] + }, + "properties": { + "openplaque:id": "52096", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.96032, + 50.93878 + ] + }, + "properties": { + "openplaque:id": "41823", + "addr:full": "The Red Lion", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96572, + 50.8727 + ] + }, + "properties": { + "openplaque:id": "4812", + "addr:full": "\"The Baker's Dozen", + "date_start": "Fore Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96347, + 50.8713 + ] + }, + "properties": { + "openplaque:id": "4816", + "addr:full": "\"The Boden Centre", + "date_start": "Boden Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9644, + 50.8728 + ] + }, + "properties": { + "openplaque:id": "4832", + "addr:full": "\"Dolland & Aitcheson", + "date_start": "Fore Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96436, + 50.8701 + ] + }, + "properties": { + "openplaque:id": "4838", + "addr:full": "\"Glebeland", + "date_start": "Holyrood Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97011, + 50.8725 + ] + }, + "properties": { + "openplaque:id": "4840", + "addr:full": "Helliers Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97136, + 50.8725 + ] + }, + "properties": { + "openplaque:id": "4844", + "addr:full": "121 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.79448, + 51.21122 + ] + }, + "properties": { + "openplaque:id": "42079", + "addr:full": "61 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48256, + 51.8728 + ] + }, + "properties": { + "openplaque:id": "30720", + "addr:full": "\"Post Office", + "date_start": "8 Market Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92698, + 52.6785 + ] + }, + "properties": { + "openplaque:id": "28091", + "addr:full": "Sycamore Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92791, + 52.68089 + ] + }, + "properties": { + "openplaque:id": "28092", + "addr:full": "Bridge Cross Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93347, + 52.68153 + ] + }, + "properties": { + "openplaque:id": "28094", + "addr:full": "Sankeys Corner" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93373, + 52.68172 + ] + }, + "properties": { + "openplaque:id": "28095", + "addr:full": "Sankeys Corner" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93478, + 52.68187 + ] + }, + "properties": { + "openplaque:id": "28096", + "addr:full": "Cannock Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93422, + 52.68187 + ] + }, + "properties": { + "openplaque:id": "28097", + "addr:full": "Cannock Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94494, + 52.68335 + ] + }, + "properties": { + "openplaque:id": "28098", + "addr:full": "131 Cannock Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93423, + 52.68194 + ] + }, + "properties": { + "openplaque:id": "28099", + "addr:full": "Cannock Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94255, + 52.68488 + ] + }, + "properties": { + "openplaque:id": "28100", + "addr:full": "16 Chapel Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9412, + 52.68465 + ] + }, + "properties": { + "openplaque:id": "28101", + "addr:full": "3 Chapel Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94094, + 52.68671 + ] + }, + "properties": { + "openplaque:id": "28102", + "addr:full": "79 Ironstone Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93393, + 52.68133 + ] + }, + "properties": { + "openplaque:id": "28103", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93388, + 52.68128 + ] + }, + "properties": { + "openplaque:id": "28104", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9381, + 52.68576 + ] + }, + "properties": { + "openplaque:id": "28105", + "addr:full": "Cross Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92832, + 52.69219 + ] + }, + "properties": { + "openplaque:id": "28106", + "addr:full": "\"Chorley Road", + "date_start": "Boney Hay\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9283, + 52.69228 + ] + }, + "properties": { + "openplaque:id": "28107", + "addr:full": "\"Chorley Road", + "date_start": "Boney Hay\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92164, + 52.68915 + ] + }, + "properties": { + "openplaque:id": "28108", + "addr:full": "\"Birch Terrace", + "date_start": "Boney Hay\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92658, + 52.68091 + ] + }, + "properties": { + "openplaque:id": "42180", + "addr:full": "Bridge Cross Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93402, + 52.67464 + ] + }, + "properties": { + "openplaque:id": "28067", + "addr:full": "142 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93828, + 52.67321 + ] + }, + "properties": { + "openplaque:id": "28068", + "addr:full": "Union Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93399, + 52.67242 + ] + }, + "properties": { + "openplaque:id": "28069", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93399, + 52.67229 + ] + }, + "properties": { + "openplaque:id": "28070", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93363, + 52.67044 + ] + }, + "properties": { + "openplaque:id": "28071", + "addr:full": "Queen Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93404, + 52.67031 + ] + }, + "properties": { + "openplaque:id": "28072", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93407, + 52.6701 + ] + }, + "properties": { + "openplaque:id": "28078", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93426, + 52.67018 + ] + }, + "properties": { + "openplaque:id": "28080", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93422, + 52.66962 + ] + }, + "properties": { + "openplaque:id": "28081", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93456, + 52.66945 + ] + }, + "properties": { + "openplaque:id": "28082", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93524, + 52.66961 + ] + }, + "properties": { + "openplaque:id": "28083", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93702, + 52.66996 + ] + }, + "properties": { + "openplaque:id": "28084", + "addr:full": "Church Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93805, + 52.67029 + ] + }, + "properties": { + "openplaque:id": "28085", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94307, + 52.67225 + ] + }, + "properties": { + "openplaque:id": "28086", + "addr:full": "The Sportsway" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93411, + 52.67372 + ] + }, + "properties": { + "openplaque:id": "39244", + "addr:full": "97/101 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.52097, + 51.3804 + ] + }, + "properties": { + "openplaque:id": "54225", + "addr:full": "Chatham Railway Station", + "date_start": "2020" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.52016, + 51.3801 + ] + }, + "properties": { + "openplaque:id": "7319", + "addr:full": "2 Ordnance Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.52742, + 51.39432 + ] + }, + "properties": { + "openplaque:id": "8973", + "addr:full": "\"Chatham Historical Dockyard", + "date_start": "The Old Surgery" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.98896, + 51.13309 + ] + }, + "properties": { + "openplaque:id": "39060", + "addr:full": "\"Winchester Road", + "date_start": "GU34 1SD\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21333, + 51.35816 + ] + }, + "properties": { + "openplaque:id": "10559", + "addr:full": "\"Tabor Court", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4734, + 51.7374 + ] + }, + "properties": { + "openplaque:id": "2377", + "addr:full": "\"Marconi Building", + "date_start": "New Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4748, + 51.7293 + ] + }, + "properties": { + "openplaque:id": "2397", + "addr:full": "Hall Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47425, + 51.7328 + ] + }, + "properties": { + "openplaque:id": "3496", + "addr:full": "69 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47991, + 51.7329 + ] + }, + "properties": { + "openplaque:id": "3498", + "addr:full": "Wharf Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47277, + 51.73459 + ] + }, + "properties": { + "openplaque:id": "51693", + "addr:full": "Tindall Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47338, + 51.73421 + ] + }, + "properties": { + "openplaque:id": "51694", + "addr:full": "4 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.45775, + 51.7213 + ] + }, + "properties": { + "openplaque:id": "54422", + "addr:full": "11 Widford Road", + "date_start": "2020" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.12531, + 51.3555 + ] + }, + "properties": { + "openplaque:id": "1415", + "addr:full": "\"Court Lodge", + "date_start": "Church Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.04367, + 51.30754 + ] + }, + "properties": { + "openplaque:id": "8313", + "addr:full": "Chelsham Sainsbury's", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08654, + 51.90104 + ] + }, + "properties": { + "openplaque:id": "3636", + "addr:full": "\"Alpha House", + "date_start": "St George’s Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.26438, + 51.6648 + ] + }, + "properties": { + "openplaque:id": "3638", + "addr:full": "parish church at Kinsgscote" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07108, + 51.90476 + ] + }, + "properties": { + "openplaque:id": "42448", + "addr:full": "6 Evesham Road", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0864, + 51.89126 + ] + }, + "properties": { + "openplaque:id": "44721", + "addr:full": "11 Tivoli Road", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08449, + 51.8956 + ] + }, + "properties": { + "openplaque:id": "4596", + "addr:full": "\"Royston", + "date_start": "9 Queen's Parade\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08275, + 51.8956 + ] + }, + "properties": { + "openplaque:id": "4598", + "addr:full": "\"12 Rotunda Terrace", + "date_start": "Montpellier\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08061, + 51.9015 + ] + }, + "properties": { + "openplaque:id": "4600", + "addr:full": "10 St James’ Square", + "date_start": "1926" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07228, + 51.9074 + ] + }, + "properties": { + "openplaque:id": "4602", + "addr:full": "6 Wellington Square", + "date_start": "1927" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06646, + 51.8975 + ] + }, + "properties": { + "openplaque:id": "4604", + "addr:full": "\"Court House", + "date_start": "28 Priory Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07511, + 51.8998 + ] + }, + "properties": { + "openplaque:id": "4606", + "addr:full": "\"Everyman Theatre", + "date_start": "Regent Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07444, + 51.905 + ] + }, + "properties": { + "openplaque:id": "4608", + "addr:full": "19 Clarence Square", + "date_start": "1948" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0708, + 51.9041 + ] + }, + "properties": { + "openplaque:id": "4610", + "addr:full": "4 Clarence Road", + "date_start": "1949" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07818, + 51.9019 + ] + }, + "properties": { + "openplaque:id": "4612", + "addr:full": "\"St. George’s Cottage", + "date_start": "St George’s Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07287, + 51.89885 + ] + }, + "properties": { + "openplaque:id": "4614", + "addr:full": "Jessop House - 30 Cambray Place", + "date_start": "1975" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08376, + 51.8949 + ] + }, + "properties": { + "openplaque:id": "4616", + "addr:full": "\"Lauriston House", + "date_start": "Montpellier Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06236, + 51.8981 + ] + }, + "properties": { + "openplaque:id": "4618", + "addr:full": "3 King’s Road", + "date_start": "1982" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08402, + 51.8953 + ] + }, + "properties": { + "openplaque:id": "4620", + "addr:full": "3 Queen’s Parade", + "date_start": "1982" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08617, + 51.8914 + ] + }, + "properties": { + "openplaque:id": "4622", + "addr:full": "11 Tivoli Road", + "date_start": "1982" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08252, + 51.8926 + ] + }, + "properties": { + "openplaque:id": "4624", + "addr:full": "\"Montpellier House", + "date_start": "Suffolk Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06804, + 51.8962 + ] + }, + "properties": { + "openplaque:id": "4626", + "addr:full": "\"Wellington Mansions", + "date_start": "London Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05687, + 51.8789 + ] + }, + "properties": { + "openplaque:id": "4628", + "addr:full": "\"Box Cottage", + "date_start": "Bafford Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09421, + 51.8964 + ] + }, + "properties": { + "openplaque:id": "4630", + "addr:full": "9 Eldorado Road", + "date_start": "1984" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06521, + 51.8968 + ] + }, + "properties": { + "openplaque:id": "4632", + "addr:full": "3 Priory Terrace", + "date_start": "1984" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07318, + 51.899 + ] + }, + "properties": { + "openplaque:id": "4634", + "addr:full": "4 Cambray Place", + "date_start": "1985" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07357, + 51.9001 + ] + }, + "properties": { + "openplaque:id": "4636", + "addr:full": "148 High Street", + "date_start": "1985" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06899, + 51.9041 + ] + }, + "properties": { + "openplaque:id": "4638", + "addr:full": "21 Prestbury Road", + "date_start": "1986" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08656, + 51.8984 + ] + }, + "properties": { + "openplaque:id": "4644", + "addr:full": "Overton Road", + "date_start": "1988" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08154, + 51.8978 + ] + }, + "properties": { + "openplaque:id": "4648", + "addr:full": "\"Main entrance to Ladies’ College", + "date_start": "Bayshill Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07662, + 51.9024 + ] + }, + "properties": { + "openplaque:id": "4650", + "addr:full": "255 High Street", + "date_start": "1993" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06543, + 51.89797 + ] + }, + "properties": { + "openplaque:id": "4652", + "addr:full": "\"Old Post Office Garage", + "date_start": "Carlton Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07305, + 51.9017 + ] + }, + "properties": { + "openplaque:id": "4654", + "addr:full": "3 Portland Street", + "date_start": "1995" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0736, + 51.9001 + ] + }, + "properties": { + "openplaque:id": "4658", + "addr:full": "Right of entrance to Regent Arcade", + "date_start": "1997" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07738, + 51.8992 + ] + }, + "properties": { + "openplaque:id": "4660", + "addr:full": "79 The Promenade (part of Municipal Offices)", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08236, + 51.89707 + ] + }, + "properties": { + "openplaque:id": "4662", + "addr:full": "\"Summerfield House", + "date_start": "Bayshill Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09533, + 51.8968 + ] + }, + "properties": { + "openplaque:id": "4672", + "addr:full": "17 Eldorado Road", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06942, + 51.90559 + ] + }, + "properties": { + "openplaque:id": "4688", + "addr:full": "\"Pittville House", + "date_start": "Wellington Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06604, + 51.8964 + ] + }, + "properties": { + "openplaque:id": "4690", + "addr:full": "1 Oxford Street", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07897, + 51.897 + ] + }, + "properties": { + "openplaque:id": "52228", + "addr:full": "Imperial Gardens", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07792, + 51.89347 + ] + }, + "properties": { + "openplaque:id": "52326", + "addr:full": "Montpellier Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07337, + 51.89719 + ] + }, + "properties": { + "openplaque:id": "54157", + "addr:full": "\"Prithvi", + "date_start": "37 Bath Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0752, + 51.8997 + ] + }, + "properties": { + "openplaque:id": "6358", + "addr:full": "Everyman Theatre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.6777, + 51.63952 + ] + }, + "properties": { + "openplaque:id": "49259", + "addr:full": "Hardwick Avenue", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.17074, + 51.05335 + ] + }, + "properties": { + "openplaque:id": "42715" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.88475, + 53.19103 + ] + }, + "properties": { + "openplaque:id": "30307", + "addr:full": "\"The Forest House", + "date_start": "Love Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89229, + 53.19168 + ] + }, + "properties": { + "openplaque:id": "30312", + "addr:full": "\"Inside Chester Town Hall", + "date_start": "Northgate Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89148, + 53.19275 + ] + }, + "properties": { + "openplaque:id": "30321", + "addr:full": "6 Abbey Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89049, + 53.1918 + ] + }, + "properties": { + "openplaque:id": "30323", + "addr:full": "\"The Addleshaw Tower", + "date_start": "Cathedral grounds\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89539, + 53.18952 + ] + }, + "properties": { + "openplaque:id": "30342", + "addr:full": "\"Stanley Palace", + "date_start": "Watergate Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.876, + 53.20027 + ] + }, + "properties": { + "openplaque:id": "41727", + "addr:full": "Stone Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.88883, + 53.19083 + ] + }, + "properties": { + "openplaque:id": "44767" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89293, + 53.19367 + ] + }, + "properties": { + "openplaque:id": "44769", + "addr:full": "Abbey Green", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.88972, + 53.19073 + ] + }, + "properties": { + "openplaque:id": "44782", + "addr:full": "St. Werburgh Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89154, + 53.19153 + ] + }, + "properties": { + "openplaque:id": "44804" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89064, + 53.19153 + ] + }, + "properties": { + "openplaque:id": "44807", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89666, + 53.19329 + ] + }, + "properties": { + "openplaque:id": "44809" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89047, + 53.19046 + ] + }, + "properties": { + "openplaque:id": "46996", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89254, + 53.19178 + ] + }, + "properties": { + "openplaque:id": "51367", + "addr:full": "Town Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89621, + 53.1932 + ] + }, + "properties": { + "openplaque:id": "52381" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89345, + 53.18998 + ] + }, + "properties": { + "openplaque:id": "54571" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4214, + 53.23782 + ] + }, + "properties": { + "openplaque:id": "12083", + "addr:full": "\"North Midland House", + "date_start": "Crow Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42437, + 53.23697 + ] + }, + "properties": { + "openplaque:id": "30851", + "addr:full": "1 Holywell Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4239, + 53.23673 + ] + }, + "properties": { + "openplaque:id": "30852", + "addr:full": "2 St Mary's Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42394, + 53.23633 + ] + }, + "properties": { + "openplaque:id": "30855", + "addr:full": "St Mary's Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43091, + 53.23573 + ] + }, + "properties": { + "openplaque:id": "30863", + "addr:full": "87 New Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42426, + 53.23482 + ] + }, + "properties": { + "openplaque:id": "30864", + "addr:full": "42 St Mary's Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42805, + 53.23644 + ] + }, + "properties": { + "openplaque:id": "53340", + "addr:full": "Elder Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.413, + 53.24581 + ] + }, + "properties": { + "openplaque:id": "53344", + "addr:full": "Tapton House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43758, + 53.2431 + ] + }, + "properties": { + "openplaque:id": "53349", + "addr:full": "26 Cromwell Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43321, + 53.23548 + ] + }, + "properties": { + "openplaque:id": "8315", + "addr:full": "\"Shentall Memorial Gardens", + "date_start": "Rose Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4803, + 52.22087 + ] + }, + "properties": { + "openplaque:id": "42724" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77951, + 50.8344 + ] + }, + "properties": { + "openplaque:id": "10957", + "addr:full": "South St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.78039, + 50.83923 + ] + }, + "properties": { + "openplaque:id": "39821", + "addr:full": "Providence Chapel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77355, + 50.83592 + ] + }, + "properties": { + "openplaque:id": "39822" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.78414, + 50.8373 + ] + }, + "properties": { + "openplaque:id": "4818", + "addr:full": "North Walls" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77776, + 50.83587 + ] + }, + "properties": { + "openplaque:id": "49781", + "addr:full": "1A North Pallant" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77525, + 50.83472 + ] + }, + "properties": { + "openplaque:id": "49784", + "addr:full": "9 St John's Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.78107, + 50.83673 + ] + }, + "properties": { + "openplaque:id": "50536", + "addr:full": "West Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.78223, + 50.83692 + ] + }, + "properties": { + "openplaque:id": "51062", + "addr:full": "23 West Street", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19862, + 50.8995 + ] + }, + "properties": { + "openplaque:id": "6412", + "addr:full": "Rosemount" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.30506, + 51.58079 + ] + }, + "properties": { + "openplaque:id": "42518" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22315, + 52.92152 + ] + }, + "properties": { + "openplaque:id": "40010", + "addr:full": "65 High Road", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23001, + 52.91898 + ] + }, + "properties": { + "openplaque:id": "41056", + "addr:full": "214-218 High Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01661, + 51.62273 + ] + }, + "properties": { + "openplaque:id": "40608", + "addr:full": "Old Church Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11553, + 51.46248 + ] + }, + "properties": { + "openplaque:id": "1356", + "addr:full": "Chippenham Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1206, + 51.4595 + ] + }, + "properties": { + "openplaque:id": "4144", + "addr:full": "Ivy Lane Primary School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11394, + 51.4581 + ] + }, + "properties": { + "openplaque:id": "5550", + "addr:full": "Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1304, + 51.4524 + ] + }, + "properties": { + "openplaque:id": "7563", + "addr:full": "Rowden Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78398, + 52.04942 + ] + }, + "properties": { + "openplaque:id": "50552", + "addr:full": "\"Davies House", + "date_start": "Lower High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54583, + 51.94062 + ] + }, + "properties": { + "openplaque:id": "1002", + "addr:full": "\"Hitchman Brewery", + "date_start": "West Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54266, + 51.94371 + ] + }, + "properties": { + "openplaque:id": "1006", + "addr:full": "Rock Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5468, + 51.94327 + ] + }, + "properties": { + "openplaque:id": "39844", + "addr:full": "\"Heather Cottage", + "date_start": "Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54554, + 51.94228 + ] + }, + "properties": { + "openplaque:id": "42642", + "addr:full": "5 Market Street", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54506, + 51.94229 + ] + }, + "properties": { + "openplaque:id": "48708", + "addr:full": "\"The Crown and Cushion", + "date_start": "23 High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08025, + 51.4133 + ] + }, + "properties": { + "openplaque:id": "1423", + "addr:full": "\"5 Shepherds Green", + "date_start": "Chislehurst" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.06052, + 51.4109 + ] + }, + "properties": { + "openplaque:id": "1427", + "addr:full": "\"Bonchester", + "date_start": "Bonchester Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08034, + 51.4073 + ] + }, + "properties": { + "openplaque:id": "1428", + "addr:full": "\"Manor Place", + "date_start": "Manor Park\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.06006, + 51.41113 + ] + }, + "properties": { + "openplaque:id": "1432", + "addr:full": "\"The Cedars", + "date_start": "Camden Park Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77755, + 50.73485 + ] + }, + "properties": { + "openplaque:id": "12853", + "addr:full": "\"The Town Hall", + "date_start": "Saxon Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77761, + 50.73486 + ] + }, + "properties": { + "openplaque:id": "12855", + "addr:full": "\"The Town Hall", + "date_start": "Saxon Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77752, + 50.73482 + ] + }, + "properties": { + "openplaque:id": "12856", + "addr:full": "\"The Town Hall", + "date_start": "Saxon Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77634, + 50.73257 + ] + }, + "properties": { + "openplaque:id": "12874", + "addr:full": "\"Red House Museum", + "date_start": "Quay Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77649, + 50.7324 + ] + }, + "properties": { + "openplaque:id": "12875", + "addr:full": "Red House Museum & Gardens", + "date_start": "1951" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77638, + 50.73259 + ] + }, + "properties": { + "openplaque:id": "12876", + "addr:full": "\"Red House Museum", + "date_start": "Quay Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77545, + 50.73068 + ] + }, + "properties": { + "openplaque:id": "12880", + "addr:full": "\"Town Quay Shelter", + "date_start": "The Quay\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77577, + 50.73391 + ] + }, + "properties": { + "openplaque:id": "30839", + "addr:full": "2A Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77411, + 50.73378 + ] + }, + "properties": { + "openplaque:id": "53462", + "addr:full": "Castle Street", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.96957, + 51.71669 + ] + }, + "properties": { + "openplaque:id": "39450", + "addr:full": "23 Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.96703, + 51.71705 + ] + }, + "properties": { + "openplaque:id": "40609", + "addr:full": "\"Corn Hall", + "date_start": "Market Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.98284, + 50.95221 + ] + }, + "properties": { + "openplaque:id": "42683", + "addr:full": "Hampshire Hog Public House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40249, + 54.95192 + ] + }, + "properties": { + "openplaque:id": "41915", + "addr:full": "Coulthard Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02598, + 0 + ] + }, + "properties": { + "openplaque:id": "42001", + "addr:full": "\"Pier Gardens", + "date_start": "Sea Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02596, + 53.55736 + ] + }, + "properties": { + "openplaque:id": "8319", + "addr:full": "16 Sea View Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49425, + 51.4316 + ] + }, + "properties": { + "openplaque:id": "31464", + "addr:full": "View Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.39119, + 53.87244 + ] + }, + "properties": { + "openplaque:id": "50677", + "addr:full": "\"Yorkshire Building Society", + "date_start": "King Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.43484, + 50.73275 + ] + }, + "properties": { + "openplaque:id": "42047", + "addr:full": "St Michael's Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.49276, + 52.64052 + ] + }, + "properties": { + "openplaque:id": "9219", + "addr:full": "The Old Furnace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.49273, + 52.64054 + ] + }, + "properties": { + "openplaque:id": "9221", + "addr:full": "The Old Furnace", + "date_start": "1982" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.49293, + 52.63922 + ] + }, + "properties": { + "openplaque:id": "9222", + "addr:full": "Museum of Iron", + "date_start": "1979" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.49272, + 52.64054 + ] + }, + "properties": { + "openplaque:id": "9223", + "addr:full": "The Old Furnace", + "date_start": "1985" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4125, + 51.32632 + ] + }, + "properties": { + "openplaque:id": "8686", + "addr:full": "\"Church Cottage", + "date_start": "Downside Bridge Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36002, + 54.66284 + ] + }, + "properties": { + "openplaque:id": "7635", + "addr:full": "All Saints Rooms" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68497, + 51.8693 + ] + }, + "properties": { + "openplaque:id": "51932", + "addr:full": "Riverside Maltings - Bridge Street", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68541, + 51.86973 + ] + }, + "properties": { + "openplaque:id": "51933", + "addr:full": "Former Little Coggeshall Brewery - Bridge Street", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89904, + 51.8911 + ] + }, + "properties": { + "openplaque:id": "2673", + "addr:full": "West Stockwell Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.82355, + 51.88487 + ] + }, + "properties": { + "openplaque:id": "30399", + "addr:full": "\" 296 London Road", + "date_start": "Stanway\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.90274, + 51.87962 + ] + }, + "properties": { + "openplaque:id": "30400", + "addr:full": "6 Berechurch Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.90876, + 51.88997 + ] + }, + "properties": { + "openplaque:id": "30812", + "addr:full": "8 East Hill", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89625, + 51.8885 + ] + }, + "properties": { + "openplaque:id": "30821", + "addr:full": "39 Head Street", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89651, + 51.88922 + ] + }, + "properties": { + "openplaque:id": "30822", + "addr:full": "\"Bunting Rooms", + "date_start": "Culver Street west\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.90304, + 51.8906 + ] + }, + "properties": { + "openplaque:id": "30823", + "addr:full": "\"Colchester Castle", + "date_start": "Castle Park\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91648, + 51.88436 + ] + }, + "properties": { + "openplaque:id": "40303", + "addr:full": "12a Artillery Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8963, + 51.88778 + ] + }, + "properties": { + "openplaque:id": "41317", + "addr:full": "\"Former Cameo Cinema", + "date_start": "St John's Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89117, + 51.88243 + ] + }, + "properties": { + "openplaque:id": "41333", + "addr:full": "\"The Medical Centre", + "date_start": "Cavalry Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.90521, + 51.88991 + ] + }, + "properties": { + "openplaque:id": "41418", + "addr:full": "74 High Street", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88749, + 51.90165 + ] + }, + "properties": { + "openplaque:id": "42019", + "addr:full": "\"Colchester North Station", + "date_start": "Loco Shed. Only visible from a train.\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9026, + 51.88926 + ] + }, + "properties": { + "openplaque:id": "42375", + "addr:full": "Culver Street East" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9033, + 51.88967 + ] + }, + "properties": { + "openplaque:id": "42376", + "addr:full": "WH Shephard Funeral Services - 93-94 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89928, + 51.88863 + ] + }, + "properties": { + "openplaque:id": "42383", + "addr:full": "8 Trinity Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89927, + 51.88871 + ] + }, + "properties": { + "openplaque:id": "42384", + "addr:full": "6 Trinity Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89586, + 51.8948 + ] + }, + "properties": { + "openplaque:id": "42390", + "addr:full": "North Station Road", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89851, + 51.88791 + ] + }, + "properties": { + "openplaque:id": "42391", + "addr:full": "34-39 Eld Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89923, + 51.89175 + ] + }, + "properties": { + "openplaque:id": "42393", + "addr:full": "John Ball Walk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88238, + 51.8832 + ] + }, + "properties": { + "openplaque:id": "43339", + "addr:full": "26 Cambridge Road", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.75909, + 51.92604 + ] + }, + "properties": { + "openplaque:id": "4846", + "addr:full": "\"Goods Yard", + "date_start": "East Anglian Railway Museum\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88689, + 51.88789 + ] + }, + "properties": { + "openplaque:id": "51769", + "addr:full": "\"English Study Centre", + "date_start": "Lexdon Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91661, + 51.88439 + ] + }, + "properties": { + "openplaque:id": "53097", + "addr:full": "Artillery Street Evangelical Church", + "date_start": "1897" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89566, + 51.87714 + ] + }, + "properties": { + "openplaque:id": "8799", + "addr:full": "13 Abbey Field View", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89432, + 51.87693 + ] + }, + "properties": { + "openplaque:id": "8802", + "addr:full": "41 Abbey Field View", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.15673, + 55.88723 + ] + }, + "properties": { + "openplaque:id": "12113", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.15649, + 55.88677 + ] + }, + "properties": { + "openplaque:id": "44803" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.6247, + 51.7931 + ] + }, + "properties": { + "openplaque:id": "50848", + "addr:full": "Victoria Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.64824, + 55.20278 + ] + }, + "properties": { + "openplaque:id": "7028", + "addr:full": "\"Causeway Street", + "date_start": "Port Rush\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.66757, + 55.1317 + ] + }, + "properties": { + "openplaque:id": "7218", + "addr:full": "9 Kingsgate Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.70551, + 52.49941 + ] + }, + "properties": { + "openplaque:id": "9841", + "addr:full": "11 Church Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.17912, + 53.85514 + ] + }, + "properties": { + "openplaque:id": "10018", + "addr:full": "90 Albert Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.75271, + 54.54716 + ] + }, + "properties": { + "openplaque:id": "10466", + "addr:full": "\"Carnesure Terrace", + "date_start": "Old Ballygowan Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.74377, + 54.55102 + ] + }, + "properties": { + "openplaque:id": "7030", + "addr:full": "Bridge Street Link", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82953, + 54.85229 + ] + }, + "properties": { + "openplaque:id": "53010", + "addr:full": "\"Salvation Army Citadel", + "date_start": "Sherburn Terrace\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.8223, + 53.28087 + ] + }, + "properties": { + "openplaque:id": "50340", + "addr:full": "Conwy Suspension Bridge close to the Toll House", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.82257, + 53.28071 + ] + }, + "properties": { + "openplaque:id": "50341", + "addr:full": "Conwy Suspension Bridge close to the Toll House", + "date_start": "1969" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.83256, + 53.28119 + ] + }, + "properties": { + "openplaque:id": "50357", + "addr:full": "Mount Pleasant" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.82626, + 53.28063 + ] + }, + "properties": { + "openplaque:id": "50376", + "addr:full": "Conwy Town Walls in a small garden close to Castle Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73263, + 51.558 + ] + }, + "properties": { + "openplaque:id": "1812", + "addr:full": "\"142 Whyteladies Lane", + "date_start": "Cookham Rise\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.75064, + 51.56333 + ] + }, + "properties": { + "openplaque:id": "1815", + "addr:full": "\"Herries School", + "date_start": "Dean Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.70874, + 51.55979 + ] + }, + "properties": { + "openplaque:id": "51490", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.70675, + 51.56023 + ] + }, + "properties": { + "openplaque:id": "52080", + "addr:full": "Ferry Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.74875, + 51.56341 + ] + }, + "properties": { + "openplaque:id": "9626", + "addr:full": "\"Herries Preparatory School", + "date_start": "Dean Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.76382, + 54.68292 + ] + }, + "properties": { + "openplaque:id": "7198", + "addr:full": "Lissan House", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42397, + 50.99211 + ] + }, + "properties": { + "openplaque:id": "9431", + "addr:full": "Blue Idol Quaker Meeting House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.96471, + 54.96812 + ] + }, + "properties": { + "openplaque:id": "42629", + "addr:full": "\"Styford Roundabout", + "date_start": "A69\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 19.92544, + 39.62425 + ] + }, + "properties": { + "openplaque:id": "54715", + "addr:full": "Agoniston Politechniou" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 19.9255, + 39.62406 + ] + }, + "properties": { + "openplaque:id": "54716", + "addr:full": "Agoniston Politechniou" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -8.29093, + 51.85026 + ] + }, + "properties": { + "openplaque:id": "51463", + "addr:full": "Lynch's Quay" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36994, + 52.97994 + ] + }, + "properties": { + "openplaque:id": "29986", + "addr:full": "London Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.37335, + 0 + ] + }, + "properties": { + "openplaque:id": "29987", + "addr:full": "\"Owain Glyndŵr Hotel", + "date_start": "London Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.37063, + 52.97978 + ] + }, + "properties": { + "openplaque:id": "29988", + "addr:full": "\"Corwen Manor", + "date_start": "London Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21818, + 57.22792 + ] + }, + "properties": { + "openplaque:id": "50090" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08754, + 51.94641 + ] + }, + "properties": { + "openplaque:id": "42528", + "addr:full": "The Kennels" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12337, + 51.31711 + ] + }, + "properties": { + "openplaque:id": "8302", + "addr:full": "Coulsdon Court", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14426, + 51.31827 + ] + }, + "properties": { + "openplaque:id": "8312", + "addr:full": "Smitham Bottom Infants School", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13904, + 51.31968 + ] + }, + "properties": { + "openplaque:id": "8314", + "addr:full": "\"Coulsdon Comrades Club", + "date_start": "194 Brighton Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1607, + 52.55497 + ] + }, + "properties": { + "openplaque:id": "50165", + "addr:full": "\"Countesthorpe Cottage Homes School", + "date_start": "The Drive\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53191, + 52.40754 + ] + }, + "properties": { + "openplaque:id": "12823", + "addr:full": "22 Craven Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53382, + 52.4071 + ] + }, + "properties": { + "openplaque:id": "13083", + "addr:full": "\"Lord Street", + "date_start": "Chapelfields\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53434, + 52.40594 + ] + }, + "properties": { + "openplaque:id": "13084", + "addr:full": "125 Craven Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53486, + 52.40611 + ] + }, + "properties": { + "openplaque:id": "13085", + "addr:full": "35 Mount Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53485, + 52.40746 + ] + }, + "properties": { + "openplaque:id": "13086", + "addr:full": "2 Mount Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53352, + 52.40791 + ] + }, + "properties": { + "openplaque:id": "13087", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51818, + 52.40829 + ] + }, + "properties": { + "openplaque:id": "2214", + "addr:full": "27 Spon Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51128, + 52.40814 + ] + }, + "properties": { + "openplaque:id": "30104", + "addr:full": "Upper Precinct Mall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50759, + 52.40868 + ] + }, + "properties": { + "openplaque:id": "30107", + "addr:full": "11 Priory Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50854, + 52.40758 + ] + }, + "properties": { + "openplaque:id": "30111", + "addr:full": "10-10a Hay Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50852, + 52.40731 + ] + }, + "properties": { + "openplaque:id": "30112", + "addr:full": "Earl Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50924, + 0 + ] + }, + "properties": { + "openplaque:id": "30114", + "addr:full": "Priory Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51637, + 52.40864 + ] + }, + "properties": { + "openplaque:id": "30117", + "addr:full": "188-190 Spon Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51869, + 52.40822 + ] + }, + "properties": { + "openplaque:id": "30118", + "addr:full": "\"Skydome", + "date_start": "Spon Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51677, + 52.40987 + ] + }, + "properties": { + "openplaque:id": "30121", + "addr:full": "34-44 Hill Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51504, + 52.40205 + ] + }, + "properties": { + "openplaque:id": "30123", + "addr:full": "Warwick Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51504, + 52.40205 + ] + }, + "properties": { + "openplaque:id": "30124", + "addr:full": "Warwick Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50724, + 52.41179 + ] + }, + "properties": { + "openplaque:id": "39283", + "addr:full": "Volgograd Place - under Ringway Swanswell", + "date_start": "1972" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53542, + 52.40458 + ] + }, + "properties": { + "openplaque:id": "39457", + "addr:full": "Hearsall Common" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51516, + 52.40434 + ] + }, + "properties": { + "openplaque:id": "40080", + "addr:full": "Warwick Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48163, + 52.40813 + ] + }, + "properties": { + "openplaque:id": "40277", + "addr:full": "\" Elm Bank", + "date_start": "North Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50656, + 52.40726 + ] + }, + "properties": { + "openplaque:id": "41352", + "addr:full": "Herbert Art Gallery & Museum" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49, + 52.41205 + ] + }, + "properties": { + "openplaque:id": "41374", + "addr:full": "Signet Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58509, + 52.39833 + ] + }, + "properties": { + "openplaque:id": "42613", + "addr:full": "Torrington Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51082, + 52.41052 + ] + }, + "properties": { + "openplaque:id": "42736", + "addr:full": "Cnr Hales St and Bishop St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5122, + 52.40787 + ] + }, + "properties": { + "openplaque:id": "43631", + "addr:full": "Former BHS - Upper Precinct", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51192, + 52.41224 + ] + }, + "properties": { + "openplaque:id": "43873", + "addr:full": "Canal Basin Bridge - Bishop Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52121, + 52.40904 + ] + }, + "properties": { + "openplaque:id": "47009", + "addr:full": "16 Norfolk Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53058, + 52.40004 + ] + }, + "properties": { + "openplaque:id": "47021", + "addr:full": "Earlsdon Avenue", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53236, + 52.3983 + ] + }, + "properties": { + "openplaque:id": "48630", + "addr:full": "\"Criterion Theatre", + "date_start": "Berkeley Road South\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53091, + 52.39802 + ] + }, + "properties": { + "openplaque:id": "48631", + "addr:full": "91 Berkeley Road South", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53103, + 52.39805 + ] + }, + "properties": { + "openplaque:id": "48632", + "addr:full": "102 Berkeley Road South", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53179, + 52.39763 + ] + }, + "properties": { + "openplaque:id": "48633", + "addr:full": "102 Osborne Road", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53464, + 52.39689 + ] + }, + "properties": { + "openplaque:id": "48634", + "addr:full": "4 Palmerston Road", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53488, + 52.39965 + ] + }, + "properties": { + "openplaque:id": "48635", + "addr:full": "31 Clarendon Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53439, + 52.40001 + ] + }, + "properties": { + "openplaque:id": "48636", + "addr:full": "15 Clarendon Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53261, + 52.40002 + ] + }, + "properties": { + "openplaque:id": "48637", + "addr:full": "60 Moor Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53359, + 52.39921 + ] + }, + "properties": { + "openplaque:id": "48638", + "addr:full": "24 Warwick Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53104, + 52.39899 + ] + }, + "properties": { + "openplaque:id": "48644", + "addr:full": "12 Moor Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53287, + 52.39871 + ] + }, + "properties": { + "openplaque:id": "48645", + "addr:full": "52 Earlsdon Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5334, + 52.39849 + ] + }, + "properties": { + "openplaque:id": "48646", + "addr:full": "68 Earlsdon Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53125, + 52.39964 + ] + }, + "properties": { + "openplaque:id": "48648", + "addr:full": "8 Earlsdon Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53252, + 52.39977 + ] + }, + "properties": { + "openplaque:id": "48649", + "addr:full": "59 Moor Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51753, + 52.40908 + ] + }, + "properties": { + "openplaque:id": "48650", + "addr:full": "11 Lower Holyhead Road", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53088, + 52.4079 + ] + }, + "properties": { + "openplaque:id": "48651", + "addr:full": "13 Allesley Old Road", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53117, + 52.40772 + ] + }, + "properties": { + "openplaque:id": "48653", + "addr:full": "11 Craven Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53807, + 52.40837 + ] + }, + "properties": { + "openplaque:id": "48654", + "addr:full": "164 Allesley Old Road", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53263, + 52.39978 + ] + }, + "properties": { + "openplaque:id": "48663", + "addr:full": "Warwick Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52824, + 52.40116 + ] + }, + "properties": { + "openplaque:id": "48771", + "addr:full": "\"Spencer Park", + "date_start": "Spencer Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51098, + 52.40518 + ] + }, + "properties": { + "openplaque:id": "49082", + "addr:full": "Manor Yard near New Union Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53488, + 52.39983 + ] + }, + "properties": { + "openplaque:id": "49227", + "addr:full": "26 Clarendon Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53041, + 52.40018 + ] + }, + "properties": { + "openplaque:id": "49583", + "addr:full": "\"Earlsdon Library", + "date_start": "Earlsdon Avenue\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48727, + 52.40972 + ] + }, + "properties": { + "openplaque:id": "49584", + "addr:full": "\"Stoke Library", + "date_start": "Kingsway\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49627, + 52.42683 + ] + }, + "properties": { + "openplaque:id": "49585", + "addr:full": "\"Foleshill Library", + "date_start": "Broad Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51183, + 52.4135 + ] + }, + "properties": { + "openplaque:id": "5352", + "addr:full": "Canal Basin", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49289, + 52.41024 + ] + }, + "properties": { + "openplaque:id": "5354", + "addr:full": "Binley Oak", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51425, + 52.4082 + ] + }, + "properties": { + "openplaque:id": "5362", + "addr:full": "Lower Precinct", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49485, + 52.43513 + ] + }, + "properties": { + "openplaque:id": "5368", + "addr:full": "807 Foleshill Road (ex Heath Hotel)", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52797, + 52.40902 + ] + }, + "properties": { + "openplaque:id": "54971", + "addr:full": "\"The Koco Building", + "date_start": "Arches Industrial Estate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52649, + 52.4086 + ] + }, + "properties": { + "openplaque:id": "7409", + "addr:full": "102 Spon End", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48895, + 52.3884 + ] + }, + "properties": { + "openplaque:id": "7411", + "addr:full": "\"Abbey Road", + "date_start": "Whitley Village\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50799, + 52.40778 + ] + }, + "properties": { + "openplaque:id": "8901", + "addr:full": "22 and 23 Bayley Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.55987, + 52.43599 + ] + }, + "properties": { + "openplaque:id": "9860", + "addr:full": "\"Jaguar Heritage", + "date_start": "Browns Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.45004, + 51.4614 + ] + }, + "properties": { + "openplaque:id": "39834", + "addr:full": "old Cowbridge Grammar School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.45004, + 51.4614 + ] + }, + "properties": { + "openplaque:id": "39835", + "addr:full": "old Cowbridge Grammar School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.44702, + 51.4617 + ] + }, + "properties": { + "openplaque:id": "41752", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.30104, + 50.76647 + ] + }, + "properties": { + "openplaque:id": "41709" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29582, + 50.75971 + ] + }, + "properties": { + "openplaque:id": "54252", + "addr:full": "\"Westbourne House", + "date_start": "43 Birmingham Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29867, + 50.76214 + ] + }, + "properties": { + "openplaque:id": "54257", + "addr:full": "\"Terminus Road", + "date_start": "Cowes\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29513, + 50.75945 + ] + }, + "properties": { + "openplaque:id": "54259", + "addr:full": "9 Medina Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19408, + 57.49127 + ] + }, + "properties": { + "openplaque:id": "52382" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5357, + 51.0967 + ] + }, + "properties": { + "openplaque:id": "1447", + "addr:full": "Stone Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53663, + 51.09702 + ] + }, + "properties": { + "openplaque:id": "1449", + "addr:full": "Church House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.535, + 51.0963 + ] + }, + "properties": { + "openplaque:id": "1450", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53473, + 51.09629 + ] + }, + "properties": { + "openplaque:id": "1451", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53466, + 51.09637 + ] + }, + "properties": { + "openplaque:id": "1452", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53129, + 51.09549 + ] + }, + "properties": { + "openplaque:id": "1454", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53483, + 51.0975 + ] + }, + "properties": { + "openplaque:id": "1455", + "addr:full": "Carriers Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53632, + 51.09592 + ] + }, + "properties": { + "openplaque:id": "1457", + "addr:full": "Stone Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53812, + 51.09617 + ] + }, + "properties": { + "openplaque:id": "1458", + "addr:full": "Waterloo Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53779, + 51.09558 + ] + }, + "properties": { + "openplaque:id": "1459", + "addr:full": "The Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53832, + 51.09521 + ] + }, + "properties": { + "openplaque:id": "1461", + "addr:full": "The Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53949, + 51.09472 + ] + }, + "properties": { + "openplaque:id": "1462", + "addr:full": "The Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5393, + 51.09515 + ] + }, + "properties": { + "openplaque:id": "1464", + "addr:full": "Russell's Yard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5393, + 51.09515 + ] + }, + "properties": { + "openplaque:id": "1465", + "addr:full": "Russell's Yard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5393, + 51.09515 + ] + }, + "properties": { + "openplaque:id": "1466", + "addr:full": "Russell's Yard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53586, + 51.09668 + ] + }, + "properties": { + "openplaque:id": "44747" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53516, + 51.0964 + ] + }, + "properties": { + "openplaque:id": "50844", + "addr:full": "\"White Lion House", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58181, + 51.11562 + ] + }, + "properties": { + "openplaque:id": "53382", + "addr:full": "\"Sissinghurst", + "date_start": "Biddenden Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1628, + 51.1177 + ] + }, + "properties": { + "openplaque:id": "1649", + "addr:full": "\"Haslett Avenue East", + "date_start": "Three Bridges\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1394, + 51.1159 + ] + }, + "properties": { + "openplaque:id": "1650", + "addr:full": "\"Turners Hill Road", + "date_start": "Pound Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19054, + 51.1146 + ] + }, + "properties": { + "openplaque:id": "1862", + "addr:full": "The Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1898, + 51.1162 + ] + }, + "properties": { + "openplaque:id": "1863", + "addr:full": "\"The Old Punch Bowl", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1761, + 51.0951 + ] + }, + "properties": { + "openplaque:id": "2138", + "addr:full": "Tilgate Lake" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2181, + 51.124 + ] + }, + "properties": { + "openplaque:id": "2139", + "addr:full": "Ifield Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1948, + 51.1204 + ] + }, + "properties": { + "openplaque:id": "2141", + "addr:full": "Little Crabtree" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1947, + 51.1144 + ] + }, + "properties": { + "openplaque:id": "2142", + "addr:full": "Victoria Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1936, + 51.1144 + ] + }, + "properties": { + "openplaque:id": "2143", + "addr:full": "Victoria Mews" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1895, + 51.1166 + ] + }, + "properties": { + "openplaque:id": "2145", + "addr:full": "\"The Tree", + "date_start": "103 High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17535, + 51.45378 + ] + }, + "properties": { + "openplaque:id": "53781", + "addr:full": "\"The One Bell Inn", + "date_start": "170 Old Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.64785, + 50.78876 + ] + }, + "properties": { + "openplaque:id": "51296", + "addr:full": "Downeshead Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.43296, + 53.08938 + ] + }, + "properties": { + "openplaque:id": "54226", + "addr:full": "Crewe Railway Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.798, + 50.88352 + ] + }, + "properties": { + "openplaque:id": "40529" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48718, + 53.09178 + ] + }, + "properties": { + "openplaque:id": "31682", + "addr:full": "Bowes-Lyon Bridge - National Tramway Museum", + "date_start": "1988" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48686, + 53.09179 + ] + }, + "properties": { + "openplaque:id": "31683", + "addr:full": "Bowes-Lyon Bridge - National Tramway Museum", + "date_start": "1992" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48606, + 53.08969 + ] + }, + "properties": { + "openplaque:id": "31688", + "addr:full": "Facade of Derby Assembly Rooms - National Tramway Museum", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48601, + 53.08982 + ] + }, + "properties": { + "openplaque:id": "31690", + "addr:full": "Tramway Street - National Tramway Museum", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.12943, + 51.86691 + ] + }, + "properties": { + "openplaque:id": "28035", + "addr:full": "Great Oak Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.84967, + 51.64021 + ] + }, + "properties": { + "openplaque:id": "43950" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.84049, + 56.37305 + ] + }, + "properties": { + "openplaque:id": "42593", + "addr:full": "James Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42884, + 53.65695 + ] + }, + "properties": { + "openplaque:id": "12212", + "addr:full": "Young People’s Centre on High Street", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.03063, + 57.68002 + ] + }, + "properties": { + "openplaque:id": "12215", + "addr:full": "\"Hugh Miller's Birthplace Cottage and Museum", + "date_start": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.03233, + 57.68082 + ] + }, + "properties": { + "openplaque:id": "43727", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3032, + 52.93117 + ] + }, + "properties": { + "openplaque:id": "41450", + "addr:full": "The Esplanade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29986, + 52.93247 + ] + }, + "properties": { + "openplaque:id": "41457", + "addr:full": "5 New Street", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30433, + 52.931 + ] + }, + "properties": { + "openplaque:id": "5114", + "addr:full": "Esplanade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54005, + 53.10549 + ] + }, + "properties": { + "openplaque:id": "12269", + "addr:full": "Castle Top Farm", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5521, + 53.11232 + ] + }, + "properties": { + "openplaque:id": "53099", + "addr:full": "Cromford Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.55144, + 53.11291 + ] + }, + "properties": { + "openplaque:id": "53101", + "addr:full": "Cromford Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.86383, + 51.26641 + ] + }, + "properties": { + "openplaque:id": "39763", + "addr:full": "The Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31502, + 52.11478 + ] + }, + "properties": { + "openplaque:id": "49743", + "addr:full": "Wwilliamscot Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7945, + 51.368 + ] + }, + "properties": { + "openplaque:id": "3882", + "addr:full": "\"Wellington Mews", + "date_start": "Heath Hill Road South\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.24538, + 51.13602 + ] + }, + "properties": { + "openplaque:id": "39165", + "addr:full": "Baggy Point" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10359, + 51.35186 + ] + }, + "properties": { + "openplaque:id": "10041", + "addr:full": "38 Blenheim Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09547, + 51.37198 + ] + }, + "properties": { + "openplaque:id": "10395", + "addr:full": "\"Fairfield Halls", + "date_start": "Barclay Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09991, + 51.36977 + ] + }, + "properties": { + "openplaque:id": "10439", + "addr:full": "\"Grosvenor House", + "date_start": "125 High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09815, + 51.38555 + ] + }, + "properties": { + "openplaque:id": "10581", + "addr:full": "Union Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11147, + 51.37004 + ] + }, + "properties": { + "openplaque:id": "12018", + "addr:full": "6 St Leonards Road", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10612, + 51.37332 + ] + }, + "properties": { + "openplaque:id": "30871", + "addr:full": "122 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06712, + 51.39351 + ] + }, + "properties": { + "openplaque:id": "39072", + "addr:full": "South Norwood Leisure Centre", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1008, + 51.3832 + ] + }, + "properties": { + "openplaque:id": "607", + "addr:full": "144 St James’s Road", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.85109, + 0 + ] + }, + "properties": { + "openplaque:id": "50591", + "addr:full": "\"The Kilmarnock Arms", + "date_start": "Bridge Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07483, + 51.31587 + ] + }, + "properties": { + "openplaque:id": "1422", + "addr:full": "\"The Blacksmith Arms", + "date_start": "Cudham Lane South\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43204, + 55.03611 + ] + }, + "properties": { + "openplaque:id": "11803", + "addr:full": "Front Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61679, + 53.26408 + ] + }, + "properties": { + "openplaque:id": "40488", + "addr:full": "Moorland" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.45289, + 51.68632 + ] + }, + "properties": { + "openplaque:id": "39833", + "addr:full": "61 Brynhyfryd", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.45474, + 51.68565 + ] + }, + "properties": { + "openplaque:id": "50406", + "addr:full": "\"Community Youth Centre", + "date_start": "Galnrhyd Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13084, + 51.54354 + ] + }, + "properties": { + "openplaque:id": "12962", + "addr:full": "\"Bowling Club Pavilion", + "date_start": "Parsloe Park\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.82257, + 54.93305 + ] + }, + "properties": { + "openplaque:id": "43748", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0392, + 55.88922 + ] + }, + "properties": { + "openplaque:id": "50125" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.55455, + 54.52425 + ] + }, + "properties": { + "openplaque:id": "43929", + "addr:full": "\"Hole in the Wall", + "date_start": "14-15 Horse Market\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.55513, + 54.52384 + ] + }, + "properties": { + "openplaque:id": "48662", + "addr:full": "\"12A", + "date_start": "Horse Market\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.71882, + 54.4066 + ] + }, + "properties": { + "openplaque:id": "49310", + "addr:full": "Whitfield House", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22045, + 51.44389 + ] + }, + "properties": { + "openplaque:id": "1171", + "addr:full": "\"Holy Trinity Church", + "date_start": "Overy Liberty\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22445, + 51.44336 + ] + }, + "properties": { + "openplaque:id": "1173", + "addr:full": "\"Upper Burial Ground", + "date_start": "East Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.21962, + 51.4474 + ] + }, + "properties": { + "openplaque:id": "39827", + "addr:full": "\"Platform 2", + "date_start": "Dartford Station\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22406, + 51.45438 + ] + }, + "properties": { + "openplaque:id": "40084", + "addr:full": "6 Spielman Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2457, + 51.43981 + ] + }, + "properties": { + "openplaque:id": "53778", + "addr:full": "154A Watling Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.21727, + 51.44428 + ] + }, + "properties": { + "openplaque:id": "53784", + "addr:full": "\"One Bell Corner", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.69359, + 50.4399 + ] + }, + "properties": { + "openplaque:id": "9300", + "addr:full": "\"Dartington Lodge", + "date_start": "Dartington Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.5735, + 50.34333 + ] + }, + "properties": { + "openplaque:id": "11678", + "addr:full": "Warfleet Rd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.5782, + 50.34978 + ] + }, + "properties": { + "openplaque:id": "30366", + "addr:full": "Lower Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.57836, + 50.34976 + ] + }, + "properties": { + "openplaque:id": "40621", + "addr:full": "Lower Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.58012, + 50.35153 + ] + }, + "properties": { + "openplaque:id": "40627", + "addr:full": "Victoria Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.46603, + 53.69533 + ] + }, + "properties": { + "openplaque:id": "8755", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.45814, + 53.67925 + ] + }, + "properties": { + "openplaque:id": "8756", + "addr:full": "Cemetery Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16146, + 52.25808 + ] + }, + "properties": { + "openplaque:id": "54751", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.44225, + 50.59663 + ] + }, + "properties": { + "openplaque:id": "31801", + "addr:full": "Beech Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4037, + 51.2336 + ] + }, + "properties": { + "openplaque:id": "1724", + "addr:full": "49 The Marina", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40217, + 51.2087 + ] + }, + "properties": { + "openplaque:id": "40530", + "addr:full": "Cnr The Beach and Clarence Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40172, + 51.22479 + ] + }, + "properties": { + "openplaque:id": "49441", + "addr:full": "\"The Astor Theatre", + "date_start": "17 Stanhope Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40041, + 51.22478 + ] + }, + "properties": { + "openplaque:id": "49442", + "addr:full": "\"St George's Garden Of Rest", + "date_start": "St George's Rd\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40264, + 51.22628 + ] + }, + "properties": { + "openplaque:id": "49443", + "addr:full": "127 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40202, + 51.23086 + ] + }, + "properties": { + "openplaque:id": "49446", + "addr:full": "61 College Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40441, + 51.22523 + ] + }, + "properties": { + "openplaque:id": "49450", + "addr:full": "\"The Royal Hotel", + "date_start": "Beach Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4037, + 51.22259 + ] + }, + "properties": { + "openplaque:id": "49451", + "addr:full": "8 Middle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40377, + 51.22224 + ] + }, + "properties": { + "openplaque:id": "49452", + "addr:full": "corner of Middle Street and South Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40261, + 51.22122 + ] + }, + "properties": { + "openplaque:id": "49453", + "addr:full": "19 Victoria Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38112, + 51.21667 + ] + }, + "properties": { + "openplaque:id": "49454", + "addr:full": "corner of Addleham Road and Rectory Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40326, + 51.21441 + ] + }, + "properties": { + "openplaque:id": "49469", + "addr:full": "The Strand" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40422, + 51.22594 + ] + }, + "properties": { + "openplaque:id": "7975", + "addr:full": "109 Beach Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40206, + 51.22572 + ] + }, + "properties": { + "openplaque:id": "7976", + "addr:full": "just off Middle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99603, + 51.95006 + ] + }, + "properties": { + "openplaque:id": "51882", + "addr:full": "The Munnings Art Museum - Castle House - Castle Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.835, + 0 + ] + }, + "properties": { + "openplaque:id": "10030", + "addr:full": "\"retirement home", + "date_start": "TBC\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.41927, + 53.18582 + ] + }, + "properties": { + "openplaque:id": "39260", + "addr:full": "\"39", + "date_start": "Beacons Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.41848, + 53.18443 + ] + }, + "properties": { + "openplaque:id": "39261", + "addr:full": "\"Swan Lane Chapel", + "date_start": "Chapel Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.41848, + 53.18443 + ] + }, + "properties": { + "openplaque:id": "39262", + "addr:full": "\"Swan Lane Chapel", + "date_start": "Chapel Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.41839, + 53.18415 + ] + }, + "properties": { + "openplaque:id": "39263", + "addr:full": "\"19", + "date_start": "Vale Street (on Chapel Street face of building)\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.41839, + 53.18415 + ] + }, + "properties": { + "openplaque:id": "39264", + "addr:full": "\"19", + "date_start": "Vale Street \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.41958, + 53.18401 + ] + }, + "properties": { + "openplaque:id": "39269", + "addr:full": "Crown Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.42107, + 53.18138 + ] + }, + "properties": { + "openplaque:id": "39271", + "addr:full": "\"Castle Walls", + "date_start": "Castle Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.42144, + 53.18357 + ] + }, + "properties": { + "openplaque:id": "39272", + "addr:full": "Bridge Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.40062, + 53.18421 + ] + }, + "properties": { + "openplaque:id": "39395", + "addr:full": "Ruthin Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4972, + 51.5725 + ] + }, + "properties": { + "openplaque:id": "5922", + "addr:full": "Hill House", + "date_start": "2006" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.45481, + 54.27727 + ] + }, + "properties": { + "openplaque:id": "11543", + "addr:full": "Glebe Field" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1123, + 53.45207 + ] + }, + "properties": { + "openplaque:id": "7997", + "addr:full": "St Lawrence's Church" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11366, + 53.45548 + ] + }, + "properties": { + "openplaque:id": "8000", + "addr:full": "Memorial Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.37222, + 52.58639 + ] + }, + "properties": { + "openplaque:id": "39670", + "addr:full": "98 Sluice Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49338, + 52.9261 + ] + }, + "properties": { + "openplaque:id": "1132", + "addr:full": "Ashbourne Road", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47658, + 52.92008 + ] + }, + "properties": { + "openplaque:id": "11586", + "addr:full": "4 Babington Lane", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5045, + 52.96967 + ] + }, + "properties": { + "openplaque:id": "30216", + "addr:full": "\"Quarndon House", + "date_start": "The Common\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46695, + 52.92389 + ] + }, + "properties": { + "openplaque:id": "42258" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48302, + 52.92439 + ] + }, + "properties": { + "openplaque:id": "48713", + "addr:full": "\"Bloomfield House", + "date_start": "56 St Helen's Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47876, + 52.92594 + ] + }, + "properties": { + "openplaque:id": "52853", + "addr:full": "\"31", + "date_start": "Queen Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4776, + 52.92384 + ] + }, + "properties": { + "openplaque:id": "52854", + "addr:full": "\"32", + "date_start": "Iron gate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.94109, + 52.68251 + ] + }, + "properties": { + "openplaque:id": "52356", + "addr:full": "\"Hill House", + "date_start": "26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9411, + 52.68251 + ] + }, + "properties": { + "openplaque:id": "52357", + "addr:full": "\"Hill House", + "date_start": "26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.93917, + 52.68092 + ] + }, + "properties": { + "openplaque:id": "54488" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.20778, + 54.58232 + ] + }, + "properties": { + "openplaque:id": "41728" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.49604, + 54.48987 + ] + }, + "properties": { + "openplaque:id": "42721" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.32183, + 54.99542 + ] + }, + "properties": { + "openplaque:id": "51749" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.46796, + 54.5021 + ] + }, + "properties": { + "openplaque:id": "42723" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.47548, + 55.12312 + ] + }, + "properties": { + "openplaque:id": "7482", + "addr:full": "\"Community Building", + "date_start": "Knock Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.748, + 53.44076 + ] + }, + "properties": { + "openplaque:id": "51378" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51581, + 53.12269 + ] + }, + "properties": { + "openplaque:id": "12965", + "addr:full": "Wood Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99231, + 51.35252 + ] + }, + "properties": { + "openplaque:id": "10303", + "addr:full": "The White Bear" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.996, + 51.35225 + ] + }, + "properties": { + "openplaque:id": "30738", + "addr:full": "2-3 The Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.00182, + 51.35451 + ] + }, + "properties": { + "openplaque:id": "30739", + "addr:full": "Northgate Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99451, + 51.35524 + ] + }, + "properties": { + "openplaque:id": "30753", + "addr:full": "Couch Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.00153, + 51.35444 + ] + }, + "properties": { + "openplaque:id": "30754", + "addr:full": "Northgate Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.00198, + 51.3547 + ] + }, + "properties": { + "openplaque:id": "30755", + "addr:full": "Northgate Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99525, + 51.35201 + ] + }, + "properties": { + "openplaque:id": "30757", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9984, + 51.35387 + ] + }, + "properties": { + "openplaque:id": "30795", + "addr:full": "Northgate Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99469, + 51.35081 + ] + }, + "properties": { + "openplaque:id": "30796", + "addr:full": "21 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99474, + 51.35099 + ] + }, + "properties": { + "openplaque:id": "30797", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99348, + 51.34978 + ] + }, + "properties": { + "openplaque:id": "30798", + "addr:full": "41 Long Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99522, + 51.35048 + ] + }, + "properties": { + "openplaque:id": "30816", + "addr:full": "Hillworth Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99392, + 51.35069 + ] + }, + "properties": { + "openplaque:id": "30817", + "addr:full": "48 Long Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99423, + 51.35106 + ] + }, + "properties": { + "openplaque:id": "30829", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99474, + 51.35063 + ] + }, + "properties": { + "openplaque:id": "30830", + "addr:full": "4 St John's Court" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99358, + 51.35025 + ] + }, + "properties": { + "openplaque:id": "30832", + "addr:full": "11 Long Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99607, + 51.35231 + ] + }, + "properties": { + "openplaque:id": "44756", + "addr:full": "Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99247, + 51.3526 + ] + }, + "properties": { + "openplaque:id": "5238", + "addr:full": "Monday Market Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99348, + 51.3533 + ] + }, + "properties": { + "openplaque:id": "5240", + "addr:full": "New Park Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.64191, + 53.69685 + ] + }, + "properties": { + "openplaque:id": "28231", + "addr:full": "\"48 West Park St", + "date_start": "WF13 4LD\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6329, + 53.69196 + ] + }, + "properties": { + "openplaque:id": "43637", + "addr:full": "Wellington Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22965, + 53.40919 + ] + }, + "properties": { + "openplaque:id": "40265", + "addr:full": "Fletcher Moss", + "date_start": "1989" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22764, + 53.42261 + ] + }, + "properties": { + "openplaque:id": "49683", + "addr:full": "18 Cranmer Road", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22942, + 53.409 + ] + }, + "properties": { + "openplaque:id": "51696", + "addr:full": "Fletcher Moss Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99244, + 53.56797 + ] + }, + "properties": { + "openplaque:id": "39413", + "addr:full": "Entrance to Standedge Tunnel", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.42855, + 57.59584 + ] + }, + "properties": { + "openplaque:id": "42542", + "addr:full": "\"Dingwall Town Hall", + "date_start": "Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11474, + 50.92198 + ] + }, + "properties": { + "openplaque:id": "12556", + "addr:full": "28 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11186, + 50.91981 + ] + }, + "properties": { + "openplaque:id": "43633", + "addr:full": "\"'Cleves'", + "date_start": "40 Lewes Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.6208, + 50.66765 + ] + }, + "properties": { + "openplaque:id": "49133" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.53023, + 54.64724 + ] + }, + "properties": { + "openplaque:id": "10460", + "addr:full": "Harbour wall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.53386, + 54.6395 + ] + }, + "properties": { + "openplaque:id": "7058", + "addr:full": "Rosebank 8 Millisle Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.09931, + 53.51585 + ] + }, + "properties": { + "openplaque:id": "12217", + "addr:full": "\"Vue Cinema", + "date_start": "Doncaster Leisure Park Herten Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.01141, + 53.61289 + ] + }, + "properties": { + "openplaque:id": "52836" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3084, + 52.8223 + ] + }, + "properties": { + "openplaque:id": "42623", + "addr:full": "Donnington Park Services Jct. 23A of the M1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.4372, + 50.71547 + ] + }, + "properties": { + "openplaque:id": "10402", + "addr:full": "\"Dorset County Museum", + "date_start": "High West Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.4372, + 50.713 + ] + }, + "properties": { + "openplaque:id": "10407", + "addr:full": "\"Fox & Sons", + "date_start": "40 South Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.43977, + 50.71025 + ] + }, + "properties": { + "openplaque:id": "10409", + "addr:full": "Car park - Fairfield Road", + "date_start": "1888" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.43687, + 50.71498 + ] + }, + "properties": { + "openplaque:id": "10411", + "addr:full": "\"Antelope Walk", + "date_start": "South Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.43663, + 50.71538 + ] + }, + "properties": { + "openplaque:id": "10412", + "addr:full": "South Street / High Street junction", + "date_start": "1989" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.44159, + 50.71544 + ] + }, + "properties": { + "openplaque:id": "10417", + "addr:full": "Colliton Walk", + "date_start": "1980" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.43597, + 50.7147 + ] + }, + "properties": { + "openplaque:id": "10493", + "addr:full": "20 Durngate Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.4369, + 50.7138 + ] + }, + "properties": { + "openplaque:id": "1749", + "addr:full": "\"Barclays", + "date_start": "10 South Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.43493, + 50.7156 + ] + }, + "properties": { + "openplaque:id": "6818", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.43833, + 50.7154 + ] + }, + "properties": { + "openplaque:id": "9369", + "addr:full": "\"West Dorset District Council", + "date_start": "Stratton House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33067, + 51.23251 + ] + }, + "properties": { + "openplaque:id": "53365", + "addr:full": "High Street", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32893, + 51.23464 + ] + }, + "properties": { + "openplaque:id": "7596", + "addr:full": "26 Wathen Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3357, + 51.23183 + ] + }, + "properties": { + "openplaque:id": "7628", + "addr:full": "44 West Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.334, + 51.23162 + ] + }, + "properties": { + "openplaque:id": "7629", + "addr:full": "58-61 West Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.79384, + 58.26954 + ] + }, + "properties": { + "openplaque:id": "54490", + "addr:full": "Isle of Lewis\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78226, + 53.05618 + ] + }, + "properties": { + "openplaque:id": "31620", + "addr:full": "Izaak Walton Gauging Station - River Dove", + "date_start": "1969" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31373, + 51.12532 + ] + }, + "properties": { + "openplaque:id": "12417", + "addr:full": "7 Market Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35596, + 53.50234 + ] + }, + "properties": { + "openplaque:id": "51655", + "addr:full": "\"Clyde House", + "date_start": "Maison Dieu Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32596, + 51.13116 + ] + }, + "properties": { + "openplaque:id": "7551", + "addr:full": "woods off Upper Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.34139, + 51.76423 + ] + }, + "properties": { + "openplaque:id": "12229", + "addr:full": "\"31", + "date_start": "Station Terrace\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3752, + 52.60276 + ] + }, + "properties": { + "openplaque:id": "8379", + "addr:full": "Reeds Homestore - 17 Bridge Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.71957, + 54.32841 + ] + }, + "properties": { + "openplaque:id": "39918", + "addr:full": "English St", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.7183, + 54.3265 + ] + }, + "properties": { + "openplaque:id": "7120", + "addr:full": "gardens at Saint Patrick's Centre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.23438, + 52.67249 + ] + }, + "properties": { + "openplaque:id": "33227", + "addr:full": "Drayton High Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13837, + 51.66386 + ] + }, + "properties": { + "openplaque:id": "51757", + "addr:full": "\"The Old Rectory", + "date_start": "Church Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.14635, + 52.26804 + ] + }, + "properties": { + "openplaque:id": "50961", + "addr:full": "\"Nelly's Yard", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.15007, + 54.39929 + ] + }, + "properties": { + "openplaque:id": "7056", + "addr:full": "Drumbroneth House", + "date_start": "2006" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.16895, + 53.48641 + ] + }, + "properties": { + "openplaque:id": "8005", + "addr:full": "530 Edge Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.15085, + 53.47501 + ] + }, + "properties": { + "openplaque:id": "8006", + "addr:full": "Fairfield High School for Girls" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.14818, + 53.47947 + ] + }, + "properties": { + "openplaque:id": "8007", + "addr:full": "Library", + "date_start": "1995" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08473, + 52.5115 + ] + }, + "properties": { + "openplaque:id": "7281", + "addr:full": "Dudley Concert Hall", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.03143, + 52.45398 + ] + }, + "properties": { + "openplaque:id": "7283", + "addr:full": "Halesowen Golf Club", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12217, + 52.484 + ] + }, + "properties": { + "openplaque:id": "7285", + "addr:full": "Civic Hall in Brierley Hill", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08472, + 52.5115 + ] + }, + "properties": { + "openplaque:id": "7287", + "addr:full": "Dudley Concert Hall", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07654, + 52.52359 + ] + }, + "properties": { + "openplaque:id": "8807", + "addr:full": "Brown Bridge - Black Country Living Museum" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08674, + 52.51754 + ] + }, + "properties": { + "openplaque:id": "9451", + "addr:full": "Off Tipton Road", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08646, + 53.478 + ] + }, + "properties": { + "openplaque:id": "30555", + "addr:full": "\"Old Road", + "date_start": "Astley Arms" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09291, + 53.47163 + ] + }, + "properties": { + "openplaque:id": "8010", + "addr:full": "Woodbury Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08645, + 53.478 + ] + }, + "properties": { + "openplaque:id": "8016", + "addr:full": "\"Old Road", + "date_start": "Astley Arms" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0869, + 53.46851 + ] + }, + "properties": { + "openplaque:id": "8017", + "addr:full": "Adamson Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.56828, + 55.94294 + ] + }, + "properties": { + "openplaque:id": "54973", + "addr:full": "\"The Clipper", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.57127, + 55.94331 + ] + }, + "properties": { + "openplaque:id": "8383", + "addr:full": "\"Glencairn House", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.61323, + 55.07148 + ] + }, + "properties": { + "openplaque:id": "11502", + "addr:full": "68 George Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.5688, + 55.09072 + ] + }, + "properties": { + "openplaque:id": "41898", + "addr:full": "Tinwald Downs Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.96392, + 56.18667 + ] + }, + "properties": { + "openplaque:id": "31408", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.96393, + 56.18713 + ] + }, + "properties": { + "openplaque:id": "31411", + "addr:full": "16-22 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.96402, + 56.18839 + ] + }, + "properties": { + "openplaque:id": "42547", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.96462, + 56.18694 + ] + }, + "properties": { + "openplaque:id": "42587", + "addr:full": "Millrow" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28887, + 52.33674 + ] + }, + "properties": { + "openplaque:id": "51778", + "addr:full": "\"The Square", + "date_start": "Daventry Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28842, + 52.33714 + ] + }, + "properties": { + "openplaque:id": "51780", + "addr:full": "\"St. Peters Church", + "date_start": "The Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9518, + 56.46716 + ] + }, + "properties": { + "openplaque:id": "11225", + "addr:full": "South Baffin Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96671, + 56.46301 + ] + }, + "properties": { + "openplaque:id": "11226", + "addr:full": "\"99 Seagate", + "date_start": "DD1 2ER\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97337, + 56.4632 + ] + }, + "properties": { + "openplaque:id": "31083", + "addr:full": "36-40 Bell Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96888, + 56.46094 + ] + }, + "properties": { + "openplaque:id": "40746", + "addr:full": "6 Castle Street", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9724, + 56.45901 + ] + }, + "properties": { + "openplaque:id": "50426", + "addr:full": "Nethergate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98353, + 56.45665 + ] + }, + "properties": { + "openplaque:id": "50427", + "addr:full": "Hawkhill Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96672, + 56.4631 + ] + }, + "properties": { + "openplaque:id": "50498", + "addr:full": "99 Seagate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97302, + 56.4621 + ] + }, + "properties": { + "openplaque:id": "50500", + "addr:full": "22 Meadowside" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9688, + 56.45955 + ] + }, + "properties": { + "openplaque:id": "51102", + "addr:full": "Shore Terrace", + "date_start": "1914" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96859, + 56.45954 + ] + }, + "properties": { + "openplaque:id": "51364", + "addr:full": "Crichton Street", + "date_start": "1914" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96928, + 56.45611 + ] + }, + "properties": { + "openplaque:id": "51986", + "addr:full": "Discovery Point" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96381, + 56.46451 + ] + }, + "properties": { + "openplaque:id": "51987" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96237, + 56.45877 + ] + }, + "properties": { + "openplaque:id": "51988", + "addr:full": "\"Tay Road Bridge", + "date_start": "central walkway\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96826, + 56.4607 + ] + }, + "properties": { + "openplaque:id": "51989" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96159, + 56.46004 + ] + }, + "properties": { + "openplaque:id": "51990" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96992, + 56.46019 + ] + }, + "properties": { + "openplaque:id": "51991", + "addr:full": "\"City Chambers", + "date_start": "City Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97864, + 56.46282 + ] + }, + "properties": { + "openplaque:id": "52002", + "addr:full": "\"Marketgait", + "date_start": "Tayside Police HQ\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96972, + 56.46012 + ] + }, + "properties": { + "openplaque:id": "53185", + "addr:full": "\"City Chambers", + "date_start": "City Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96987, + 56.4602 + ] + }, + "properties": { + "openplaque:id": "53186", + "addr:full": "\"City Chambers", + "date_start": "City Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.79028, + 54.59513 + ] + }, + "properties": { + "openplaque:id": "10907", + "addr:full": "Upper Newtownards Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.46403, + 56.07114 + ] + }, + "properties": { + "openplaque:id": "9364", + "addr:full": "City Chambers" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.77027, + 54.5036 + ] + }, + "properties": { + "openplaque:id": "7176", + "addr:full": "16 Scotch Street", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.39255, + 53.38945 + ] + }, + "properties": { + "openplaque:id": "42797", + "addr:full": "School Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.00211, + 54.55154 + ] + }, + "properties": { + "openplaque:id": "10467", + "addr:full": "Kingsway" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.92445, + 55.94635 + ] + }, + "properties": { + "openplaque:id": "9087", + "addr:full": "Castle House Museum", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.52599, + 51.88968 + ] + }, + "properties": { + "openplaque:id": "5132", + "addr:full": "High Street North" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57699, + 54.77429 + ] + }, + "properties": { + "openplaque:id": "11733", + "addr:full": "\"Windy Gap", + "date_start": "off Palace Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57717, + 54.7761 + ] + }, + "properties": { + "openplaque:id": "27975", + "addr:full": "Moatside Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57467, + 54.77581 + ] + }, + "properties": { + "openplaque:id": "27976", + "addr:full": "43 Drury Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5755, + 54.77436 + ] + }, + "properties": { + "openplaque:id": "27978", + "addr:full": "\"The Alms Houses", + "date_start": "Palace Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5762, + 54.77492 + ] + }, + "properties": { + "openplaque:id": "27979", + "addr:full": "\"University Library", + "date_start": "Palace Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57631, + 54.77472 + ] + }, + "properties": { + "openplaque:id": "27980", + "addr:full": "\"University Library", + "date_start": "Palace Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57638, + 54.77439 + ] + }, + "properties": { + "openplaque:id": "27981", + "addr:full": "\"Old Registry", + "date_start": "Palace Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57621, + 54.7735 + ] + }, + "properties": { + "openplaque:id": "27983", + "addr:full": "Durham Cathedral" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57608, + 0 + ] + }, + "properties": { + "openplaque:id": "27984", + "addr:full": "Durham Cathedral Cloisters" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57608, + 54.7735 + ] + }, + "properties": { + "openplaque:id": "27985", + "addr:full": "Durham Cathedral Cloisters" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57488, + 54.77751 + ] + }, + "properties": { + "openplaque:id": "27986", + "addr:full": "Silver Street/Walkergate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57266, + 54.77823 + ] + }, + "properties": { + "openplaque:id": "40472" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57305, + 54.77589 + ] + }, + "properties": { + "openplaque:id": "43426", + "addr:full": "Elvet Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57573, + 54.77194 + ] + }, + "properties": { + "openplaque:id": "48688", + "addr:full": "\"St John’s College", + "date_start": "Durham University\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57331, + 54.77597 + ] + }, + "properties": { + "openplaque:id": "9020", + "addr:full": "Elvet Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57085, + 54.77873 + ] + }, + "properties": { + "openplaque:id": "9876", + "addr:full": "56 Claypath" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.73672, + 58.56436 + ] + }, + "properties": { + "openplaque:id": "50101" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35778, + 51.68094 + ] + }, + "properties": { + "openplaque:id": "42957" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35749, + 51.68085 + ] + }, + "properties": { + "openplaque:id": "44806", + "addr:full": "May Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.48776, + 51.40859 + ] + }, + "properties": { + "openplaque:id": "42474", + "addr:full": "St Kilda Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1306, + 53.91808 + ] + }, + "properties": { + "openplaque:id": "29979", + "addr:full": "Earby Youth Hostel 9-11 Birch Hall Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31601, + 52.57528 + ] + }, + "properties": { + "openplaque:id": "41627", + "addr:full": "\"Earl Shilton Institute", + "date_start": "Station Road \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.85179, + 53.191 + ] + }, + "properties": { + "openplaque:id": "39869", + "addr:full": "High Wheeldon" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.83523, + 56.18827 + ] + }, + "properties": { + "openplaque:id": "40628", + "addr:full": "Town Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.8346, + 56.1889 + ] + }, + "properties": { + "openplaque:id": "8761", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.96375, + 52.66798 + ] + }, + "properties": { + "openplaque:id": "54487", + "addr:full": "Dumpling Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1647, + 50.9254 + ] + }, + "properties": { + "openplaque:id": "2172", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.18062, + 52.83035 + ] + }, + "properties": { + "openplaque:id": "41694", + "addr:full": "\"East Leake Primary School", + "date_start": "School Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.03747, + 50.96737 + ] + }, + "properties": { + "openplaque:id": "41366", + "addr:full": "\"The Sustainability Centre", + "date_start": "Droxford Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.27227, + 50.7569 + ] + }, + "properties": { + "openplaque:id": "1183", + "addr:full": "\"Hodesley", + "date_start": "10 Staveley Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26593, + 50.7593 + ] + }, + "properties": { + "openplaque:id": "1184", + "addr:full": "14 Denton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26925, + 50.7577 + ] + }, + "properties": { + "openplaque:id": "1185", + "addr:full": "14 Milnthorpe Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.28331, + 50.7672 + ] + }, + "properties": { + "openplaque:id": "1187", + "addr:full": "7 Lushington Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26221, + 50.7686 + ] + }, + "properties": { + "openplaque:id": "1188", + "addr:full": "65 Summerdown Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26495, + 50.7715 + ] + }, + "properties": { + "openplaque:id": "1190", + "addr:full": "33 Greys Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26668, + 50.7723 + ] + }, + "properties": { + "openplaque:id": "1191", + "addr:full": "\"Pilgrims", + "date_start": "4–6 Borough Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26809, + 50.7779 + ] + }, + "properties": { + "openplaque:id": "1192", + "addr:full": "\"Ocklynge Manor", + "date_start": "11 Mill Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2753, + 50.798 + ] + }, + "properties": { + "openplaque:id": "1193", + "addr:full": "11 Glynde Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2163, + 50.7907 + ] + }, + "properties": { + "openplaque:id": "1205", + "addr:full": "\"The Hungry Monk", + "date_start": "Jevington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.25323, + 50.79958 + ] + }, + "properties": { + "openplaque:id": "30710", + "addr:full": "\"22 Church Street", + "date_start": "Willingdon\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.28763, + 50.76864 + ] + }, + "properties": { + "openplaque:id": "40747", + "addr:full": "\"Curzon Cinema", + "date_start": "Langney Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2929, + 50.76918 + ] + }, + "properties": { + "openplaque:id": "7432", + "addr:full": "Royal Hippodrome Theatre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00886, + 51.12575 + ] + }, + "properties": { + "openplaque:id": "30163", + "addr:full": "London Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.14855, + 55.77658 + ] + }, + "properties": { + "openplaque:id": "28064", + "addr:full": "\"former Hunter House Museum", + "date_start": "Maxwellton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35441, + 50.96729 + ] + }, + "properties": { + "openplaque:id": "11999", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35411, + 50.96518 + ] + }, + "properties": { + "openplaque:id": "12029", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.30694, + 53.01857 + ] + }, + "properties": { + "openplaque:id": "12257", + "addr:full": "8a Victoria Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.26413, + 55.05919 + ] + }, + "properties": { + "openplaque:id": "11498", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3339, + 53.4855 + ] + }, + "properties": { + "openplaque:id": "30212", + "addr:full": "Eccles Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.32617, + 53.4891 + ] + }, + "properties": { + "openplaque:id": "30770", + "addr:full": "258 Eccles Old Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33553, + 53.48325 + ] + }, + "properties": { + "openplaque:id": "31562", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33546, + 53.48291 + ] + }, + "properties": { + "openplaque:id": "31641", + "addr:full": "Regent Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33555, + 53.48396 + ] + }, + "properties": { + "openplaque:id": "31685", + "addr:full": "56 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33575, + 53.48338 + ] + }, + "properties": { + "openplaque:id": "31691", + "addr:full": "\"Eccles Cross", + "date_start": "Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.32181, + 53.48974 + ] + }, + "properties": { + "openplaque:id": "31767", + "addr:full": "\"Beechfield Lodge", + "date_start": "232 Eccles Old Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33493, + 53.48494 + ] + }, + "properties": { + "openplaque:id": "53159", + "addr:full": "3 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3943, + 53.64343 + ] + }, + "properties": { + "openplaque:id": "8558", + "addr:full": "Brandwood Fold" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19675, + 55.94751 + ] + }, + "properties": { + "openplaque:id": "10299", + "addr:full": "\"The White Hart Inn", + "date_start": "34 Grassmarket\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19359, + 55.95333 + ] + }, + "properties": { + "openplaque:id": "10316", + "addr:full": "\"21 South St David Street", + "date_start": "EH2 2BW\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19177, + 55.94818 + ] + }, + "properties": { + "openplaque:id": "10389", + "addr:full": "\"George IV Bridge arch", + "date_start": "Cowgate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18469, + 55.94911 + ] + }, + "properties": { + "openplaque:id": "10690", + "addr:full": "\"Panmure St Ann's School", + "date_start": "Cowgate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1883, + 55.94673 + ] + }, + "properties": { + "openplaque:id": "10691", + "addr:full": "\"Rear wall of National Museum of Scotland", + "date_start": "South College Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20849, + 55.94931 + ] + }, + "properties": { + "openplaque:id": "10725", + "addr:full": "\"23 Rutland Street", + "date_start": "EH1 2AE\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1982, + 55.95707 + ] + }, + "properties": { + "openplaque:id": "11277", + "addr:full": "\"25 Northumberland Street", + "date_start": "EH3 6LR\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19246, + 55.9589 + ] + }, + "properties": { + "openplaque:id": "11819", + "addr:full": "\"15 London Street", + "date_start": "EH3 6LZ\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18171, + 55.93808 + ] + }, + "properties": { + "openplaque:id": "11821", + "addr:full": "Sciennes House Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18691, + 55.94592 + ] + }, + "properties": { + "openplaque:id": "11844", + "addr:full": "Potterrow" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19125, + 55.94662 + ] + }, + "properties": { + "openplaque:id": "11845", + "addr:full": "Forrest Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20574, + 55.94649 + ] + }, + "properties": { + "openplaque:id": "11875", + "addr:full": "\"Filmhouse Cinema", + "date_start": "88 Lothian Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.08847, + 55.93588 + ] + }, + "properties": { + "openplaque:id": "11877", + "addr:full": "Whitehill Street", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18874, + 55.95003 + ] + }, + "properties": { + "openplaque:id": "11879", + "addr:full": "219 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18885, + 55.95002 + ] + }, + "properties": { + "openplaque:id": "11880", + "addr:full": "219 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19539, + 55.95372 + ] + }, + "properties": { + "openplaque:id": "12002", + "addr:full": "George Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19397, + 55.95467 + ] + }, + "properties": { + "openplaque:id": "12003", + "addr:full": "21 St Andrew Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18625, + 55.94575 + ] + }, + "properties": { + "openplaque:id": "12004", + "addr:full": "Nicolson Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18359, + 55.95004 + ] + }, + "properties": { + "openplaque:id": "12005", + "addr:full": "Boyds Entry" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.192, + 55.95612 + ] + }, + "properties": { + "openplaque:id": "12006", + "addr:full": "32 York Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1963, + 55.95694 + ] + }, + "properties": { + "openplaque:id": "12007", + "addr:full": "4 Nelson Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1963, + 55.95735 + ] + }, + "properties": { + "openplaque:id": "12008", + "addr:full": "22 Nelson Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1949, + 55.95815 + ] + }, + "properties": { + "openplaque:id": "12009", + "addr:full": "4 Drummond Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21218, + 55.95224 + ] + }, + "properties": { + "openplaque:id": "12010", + "addr:full": "13 Randolph Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19513, + 55.94747 + ] + }, + "properties": { + "openplaque:id": "12015", + "addr:full": "Grassmarket", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21598, + 55.95187 + ] + }, + "properties": { + "openplaque:id": "12016", + "addr:full": "5 Belford Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19651, + 55.95237 + ] + }, + "properties": { + "openplaque:id": "12175", + "addr:full": "Hannover Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1995, + 55.96477 + ] + }, + "properties": { + "openplaque:id": "28090", + "addr:full": "Warriston Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19041, + 55.95057 + ] + }, + "properties": { + "openplaque:id": "28291", + "addr:full": "\"Warriston's Close", + "date_start": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.14518, + 55.94247 + ] + }, + "properties": { + "openplaque:id": "29892", + "addr:full": "\"Bonnie Prince Charlie's House", + "date_start": "8-10 The Causeway" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18439, + 55.95063 + ] + }, + "properties": { + "openplaque:id": "30279", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20718, + 55.95484 + ] + }, + "properties": { + "openplaque:id": "30280", + "addr:full": "1 Moray Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1982, + 55.959 + ] + }, + "properties": { + "openplaque:id": "30281", + "addr:full": "9 Cumberland Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18916, + 55.95315 + ] + }, + "properties": { + "openplaque:id": "30283", + "addr:full": "North Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18411, + 55.9548 + ] + }, + "properties": { + "openplaque:id": "30284", + "addr:full": "\"Old Observatory House", + "date_start": "Calton Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18884, + 55.94998 + ] + }, + "properties": { + "openplaque:id": "30287", + "addr:full": "231 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18873, + 55.95003 + ] + }, + "properties": { + "openplaque:id": "30288", + "addr:full": "231 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17879, + 55.95154 + ] + }, + "properties": { + "openplaque:id": "30298", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18932, + 55.94999 + ] + }, + "properties": { + "openplaque:id": "30338", + "addr:full": "Anchor Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21187, + 55.95234 + ] + }, + "properties": { + "openplaque:id": "31349", + "addr:full": "13 Randolph Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17829, + 55.95184 + ] + }, + "properties": { + "openplaque:id": "31350", + "addr:full": "Panmure Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.10347, + 55.95205 + ] + }, + "properties": { + "openplaque:id": "31351", + "addr:full": "Laing Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.11283, + 55.95561 + ] + }, + "properties": { + "openplaque:id": "31352", + "addr:full": "Beach Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.11377, + 55.95259 + ] + }, + "properties": { + "openplaque:id": "31354", + "addr:full": "189 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.10776, + 55.95261 + ] + }, + "properties": { + "openplaque:id": "31357", + "addr:full": "\"37 Bellfield Street", + "date_start": "Portobello\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1729, + 55.97392 + ] + }, + "properties": { + "openplaque:id": "31358", + "addr:full": "\"Henderson Street", + "date_start": "Leith\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.11055, + 55.95447 + ] + }, + "properties": { + "openplaque:id": "31359", + "addr:full": "\"7 Straiton Place", + "date_start": "Portobello\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18305, + 55.94906 + ] + }, + "properties": { + "openplaque:id": "31360", + "addr:full": "Pleasance" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.11566, + 55.95381 + ] + }, + "properties": { + "openplaque:id": "31361", + "addr:full": "\"High Street", + "date_start": "Portobello\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19273, + 55.94931 + ] + }, + "properties": { + "openplaque:id": "31362", + "addr:full": "1 George IV Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.11469, + 55.95326 + ] + }, + "properties": { + "openplaque:id": "31363", + "addr:full": "\"148 High Street", + "date_start": "Portobello\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.11789, + 55.95226 + ] + }, + "properties": { + "openplaque:id": "31364", + "addr:full": "\"9 Rosefield Place", + "date_start": "Portobello\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18742, + 55.94397 + ] + }, + "properties": { + "openplaque:id": "31371", + "addr:full": "George Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17616, + 55.95238 + ] + }, + "properties": { + "openplaque:id": "31372", + "addr:full": "Cannongate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19105, + 55.94991 + ] + }, + "properties": { + "openplaque:id": "31383", + "addr:full": "357 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19867, + 55.96273 + ] + }, + "properties": { + "openplaque:id": "33082", + "addr:full": "\"14 Canonmills", + "date_start": "EH3 5LH\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19258, + 55.95494 + ] + }, + "properties": { + "openplaque:id": "38845", + "addr:full": "St Andrew Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20667, + 55.95247 + ] + }, + "properties": { + "openplaque:id": "38846", + "addr:full": "45 Charlotte Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1779, + 55.94341 + ] + }, + "properties": { + "openplaque:id": "38847", + "addr:full": "St Leonard's Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20603, + 55.94651 + ] + }, + "properties": { + "openplaque:id": "38848", + "addr:full": "88 Lothian Street", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18917, + 55.94498 + ] + }, + "properties": { + "openplaque:id": "39052", + "addr:full": "\"Reid Museum of Musical Instruments", + "date_start": "Bristo Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2138, + 55.93329 + ] + }, + "properties": { + "openplaque:id": "40098", + "addr:full": "Merchiston Tower" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1786, + 55.96429 + ] + }, + "properties": { + "openplaque:id": "40282", + "addr:full": "1 Pilrig Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20065, + 55.95788 + ] + }, + "properties": { + "openplaque:id": "40474", + "addr:full": "\"Great King St", + "date_start": "New Town" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19094, + 55.94975 + ] + }, + "properties": { + "openplaque:id": "40603", + "addr:full": "\"Roxburgh's Close", + "date_start": "341 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21114, + 55.93832 + ] + }, + "properties": { + "openplaque:id": "40611", + "addr:full": "26 Viewforth", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20602, + 55.94779 + ] + }, + "properties": { + "openplaque:id": "40748", + "addr:full": "Castle Terrace", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.405, + 56.01182 + ] + }, + "properties": { + "openplaque:id": "40750", + "addr:full": "North Queensferry", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1913, + 55.94663 + ] + }, + "properties": { + "openplaque:id": "40910", + "addr:full": "1 Forrest Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20226, + 55.93611 + ] + }, + "properties": { + "openplaque:id": "40912", + "addr:full": "\" The Edinburgh Hospital for Women and Children", + "date_start": "90-94 Whitehouse Loan\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19061, + 55.94927 + ] + }, + "properties": { + "openplaque:id": "40913", + "addr:full": "\"St Giles", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1949, + 55.94912 + ] + }, + "properties": { + "openplaque:id": "40914", + "addr:full": "\"Church of Scotland General Assembly Hall", + "date_start": "Castle Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20713, + 55.9568 + ] + }, + "properties": { + "openplaque:id": "40917", + "addr:full": "10 Gloucester Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18842, + 55.94624 + ] + }, + "properties": { + "openplaque:id": "40948", + "addr:full": "\"Potterow Building", + "date_start": "1 Bristo Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19618, + 55.95662 + ] + }, + "properties": { + "openplaque:id": "41024", + "addr:full": "\"3 Abercromby Place", + "date_start": "EH3 6LB\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20248, + 55.95748 + ] + }, + "properties": { + "openplaque:id": "41029", + "addr:full": "\"Great King St", + "date_start": "New Town" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18599, + 55.9471 + ] + }, + "properties": { + "openplaque:id": "4130", + "addr:full": "\"Black Medicine Coffee Company", + "date_start": "108-110 Marchmont Rd\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18346, + 55.94839 + ] + }, + "properties": { + "openplaque:id": "42275" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21069, + 55.95238 + ] + }, + "properties": { + "openplaque:id": "42450", + "addr:full": "9 Charlotte Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20622, + 55.9511 + ] + }, + "properties": { + "openplaque:id": "4296", + "addr:full": "14 South Charlotte Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21262, + 55.94879 + ] + }, + "properties": { + "openplaque:id": "43993", + "addr:full": "2 Walker Street", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.22113, + 55.95626 + ] + }, + "properties": { + "openplaque:id": "43997", + "addr:full": "14 South Learmonth Gardens", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20695, + 55.91719 + ] + }, + "properties": { + "openplaque:id": "43998", + "addr:full": "\"Hermitage of Braid Nature Reserve", + "date_start": "Braid Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.22193, + 55.95165 + ] + }, + "properties": { + "openplaque:id": "44002", + "addr:full": "\"Belford Mews", + "date_start": "Dean Village\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18492, + 55.95726 + ] + }, + "properties": { + "openplaque:id": "44004", + "addr:full": "1-3 Baxter’s Place", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19085, + 55.94922 + ] + }, + "properties": { + "openplaque:id": "44759", + "addr:full": "\"car park", + "date_start": "ex-burial ground of High Kirk of St. Giles\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19027, + 55.94315 + ] + }, + "properties": { + "openplaque:id": "48725", + "addr:full": "25 George Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20555, + 55.95532 + ] + }, + "properties": { + "openplaque:id": "48726", + "addr:full": "14 India Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18332, + 55.94763 + ] + }, + "properties": { + "openplaque:id": "48728", + "addr:full": "5 Roxburgh Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19025, + 55.94341 + ] + }, + "properties": { + "openplaque:id": "48731", + "addr:full": "23 George Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18925, + 55.95637 + ] + }, + "properties": { + "openplaque:id": "48745", + "addr:full": "47 York Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19032, + 55.94354 + ] + }, + "properties": { + "openplaque:id": "48748", + "addr:full": "22 George Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17924, + 55.95167 + ] + }, + "properties": { + "openplaque:id": "48764", + "addr:full": "Canongate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.28153, + 55.94578 + ] + }, + "properties": { + "openplaque:id": "49911", + "addr:full": "\"7", + "date_start": "Hillview Terrace\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.23257, + 55.93942 + ] + }, + "properties": { + "openplaque:id": "50064", + "addr:full": "2 McLeod Street", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2723, + 55.95079 + ] + }, + "properties": { + "openplaque:id": "50065" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20218, + 55.93222 + ] + }, + "properties": { + "openplaque:id": "50092", + "addr:full": "Clinton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.28868, + 55.93894 + ] + }, + "properties": { + "openplaque:id": "50105", + "addr:full": "Dunsmuir Court" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.30793, + 55.98299 + ] + }, + "properties": { + "openplaque:id": "50154" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21109, + 55.96655 + ] + }, + "properties": { + "openplaque:id": "50168" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19589, + 55.96723 + ] + }, + "properties": { + "openplaque:id": "50169" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21599, + 55.95419 + ] + }, + "properties": { + "openplaque:id": "50170", + "addr:full": "Buckingham Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19896, + 55.95777 + ] + }, + "properties": { + "openplaque:id": "50175", + "addr:full": "\"39", + "date_start": "Great King Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18872, + 55.95787 + ] + }, + "properties": { + "openplaque:id": "50176", + "addr:full": "\"The Barony", + "date_start": "Broughton Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21783, + 55.91086 + ] + }, + "properties": { + "openplaque:id": "50180" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.24801, + 55.92386 + ] + }, + "properties": { + "openplaque:id": "50203" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2989, + 55.93646 + ] + }, + "properties": { + "openplaque:id": "50206", + "addr:full": "South Gyle Road", + "date_start": "1985" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.28687, + 55.94315 + ] + }, + "properties": { + "openplaque:id": "50207", + "addr:full": "St John's Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20301, + 55.9491 + ] + }, + "properties": { + "openplaque:id": "50227" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19295, + 55.94965 + ] + }, + "properties": { + "openplaque:id": "50229", + "addr:full": "Bank Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.22294, + 55.95097 + ] + }, + "properties": { + "openplaque:id": "50231" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.28371, + 55.96797 + ] + }, + "properties": { + "openplaque:id": "50234" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20633, + 55.94727 + ] + }, + "properties": { + "openplaque:id": "50235", + "addr:full": "Lothian Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20376, + 55.96257 + ] + }, + "properties": { + "openplaque:id": "50240" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19852, + 55.94861 + ] + }, + "properties": { + "openplaque:id": "50241" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19409, + 55.95018 + ] + }, + "properties": { + "openplaque:id": "50246" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19598, + 55.95456 + ] + }, + "properties": { + "openplaque:id": "50249", + "addr:full": "Thistle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19436, + 55.95404 + ] + }, + "properties": { + "openplaque:id": "50251" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19436, + 55.95404 + ] + }, + "properties": { + "openplaque:id": "50252" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19564, + 55.95897 + ] + }, + "properties": { + "openplaque:id": "50254", + "addr:full": "Drummond Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19309, + 55.95423 + ] + }, + "properties": { + "openplaque:id": "50255" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1922, + 55.94624 + ] + }, + "properties": { + "openplaque:id": "50257" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19142, + 55.94697 + ] + }, + "properties": { + "openplaque:id": "50258", + "addr:full": "Candlemaker Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19121, + 55.94517 + ] + }, + "properties": { + "openplaque:id": "50260" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18975, + 55.94968 + ] + }, + "properties": { + "openplaque:id": "50262" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19068, + 55.93844 + ] + }, + "properties": { + "openplaque:id": "50265" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18869, + 55.95194 + ] + }, + "properties": { + "openplaque:id": "50266" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18805, + 55.95194 + ] + }, + "properties": { + "openplaque:id": "50268", + "addr:full": "North Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18762, + 55.94808 + ] + }, + "properties": { + "openplaque:id": "50269", + "addr:full": "Guthrie Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18704, + 55.95007 + ] + }, + "properties": { + "openplaque:id": "50271" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18552, + 55.94748 + ] + }, + "properties": { + "openplaque:id": "50273" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18603, + 55.95376 + ] + }, + "properties": { + "openplaque:id": "50274" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18585, + 55.95322 + ] + }, + "properties": { + "openplaque:id": "50275" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18419, + 55.94587 + ] + }, + "properties": { + "openplaque:id": "50276" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18378, + 55.94821 + ] + }, + "properties": { + "openplaque:id": "50277" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18384, + 55.95037 + ] + }, + "properties": { + "openplaque:id": "50278" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18369, + 55.94552 + ] + }, + "properties": { + "openplaque:id": "50280", + "addr:full": "West Richmond Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18317, + 55.94939 + ] + }, + "properties": { + "openplaque:id": "50281" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18143, + 55.95097 + ] + }, + "properties": { + "openplaque:id": "50283", + "addr:full": "St John's Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18146, + 55.95111 + ] + }, + "properties": { + "openplaque:id": "50284" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18075, + 55.94869 + ] + }, + "properties": { + "openplaque:id": "50285" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17871, + 55.95536 + ] + }, + "properties": { + "openplaque:id": "50287" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17743, + 55.95555 + ] + }, + "properties": { + "openplaque:id": "50290" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17622, + 55.95242 + ] + }, + "properties": { + "openplaque:id": "50292" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17558, + 55.9526 + ] + }, + "properties": { + "openplaque:id": "50293" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17622, + 55.95242 + ] + }, + "properties": { + "openplaque:id": "50294" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1759, + 55.95242 + ] + }, + "properties": { + "openplaque:id": "50295" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18746, + 55.95357 + ] + }, + "properties": { + "openplaque:id": "50296" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17972, + 55.97287 + ] + }, + "properties": { + "openplaque:id": "50297" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17455, + 55.95558 + ] + }, + "properties": { + "openplaque:id": "50300" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1775, + 55.9737 + ] + }, + "properties": { + "openplaque:id": "50301" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17966, + 55.97611 + ] + }, + "properties": { + "openplaque:id": "50302" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17621, + 55.97335 + ] + }, + "properties": { + "openplaque:id": "50304" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.16874, + 55.97522 + ] + }, + "properties": { + "openplaque:id": "50305" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.16809, + 55.97514 + ] + }, + "properties": { + "openplaque:id": "50306" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.16866, + 55.97801 + ] + }, + "properties": { + "openplaque:id": "50307" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.14452, + 55.93663 + ] + }, + "properties": { + "openplaque:id": "50308" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.38905, + 55.9298 + ] + }, + "properties": { + "openplaque:id": "50309" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.3861, + 55.92328 + ] + }, + "properties": { + "openplaque:id": "50310" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1329, + 55.9114 + ] + }, + "properties": { + "openplaque:id": "50311" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2206, + 55.9487 + ] + }, + "properties": { + "openplaque:id": "50317", + "addr:full": "14 Eglinton Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19767, + 55.95632 + ] + }, + "properties": { + "openplaque:id": "50318", + "addr:full": "29 Abercromby Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20164, + 55.93227 + ] + }, + "properties": { + "openplaque:id": "50319", + "addr:full": "East Morningside House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.28436, + 55.9358 + ] + }, + "properties": { + "openplaque:id": "50321", + "addr:full": "\"79-80", + "date_start": "Ladywell Avenue\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.16986, + 55.97521 + ] + }, + "properties": { + "openplaque:id": "50326" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21321, + 55.94846 + ] + }, + "properties": { + "openplaque:id": "50345", + "addr:full": "5 Atholl Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1311, + 55.93084 + ] + }, + "properties": { + "openplaque:id": "50348", + "addr:full": "\"Thistle Foundation", + "date_start": "Niddrie Mains Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20804, + 55.9533 + ] + }, + "properties": { + "openplaque:id": "50350", + "addr:full": "68-73 Queen Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.3185, + 55.9112 + ] + }, + "properties": { + "openplaque:id": "50351", + "addr:full": "\"Heriot-Watt University The Fairway", + "date_start": "Riccarton Campus" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21213, + 55.94856 + ] + }, + "properties": { + "openplaque:id": "50354", + "addr:full": "12 Coates Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19353, + 55.94943 + ] + }, + "properties": { + "openplaque:id": "50355", + "addr:full": "Lady Stair's Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18395, + 55.95381 + ] + }, + "properties": { + "openplaque:id": "50360", + "addr:full": "5-7 Regent Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20171, + 55.93842 + ] + }, + "properties": { + "openplaque:id": "50362", + "addr:full": "Warrender Park Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18027, + 55.95142 + ] + }, + "properties": { + "openplaque:id": "50363", + "addr:full": "\"Scottish Poetry Library", + "date_start": "5 Crichton's Close\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.32065, + 55.90926 + ] + }, + "properties": { + "openplaque:id": "50366", + "addr:full": "\"Riccarton Campus", + "date_start": "Heriot-Watt University\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.25532, + 55.90757 + ] + }, + "properties": { + "openplaque:id": "50374", + "addr:full": "Bridge Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19393, + 55.95725 + ] + }, + "properties": { + "openplaque:id": "50877", + "addr:full": "32 Dublin Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20912, + 55.95204 + ] + }, + "properties": { + "openplaque:id": "50878", + "addr:full": "14 Charlotte Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17721, + 55.93527 + ] + }, + "properties": { + "openplaque:id": "50885", + "addr:full": "\"Bartholomew House", + "date_start": "12 Duncan Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18552, + 55.94661 + ] + }, + "properties": { + "openplaque:id": "50886", + "addr:full": "\"Surgeons' Hall Museums", + "date_start": "The Royal College of Surgeons of Edinburgh" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20532, + 55.95357 + ] + }, + "properties": { + "openplaque:id": "50929", + "addr:full": "66 Queen Street", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20685, + 55.95359 + ] + }, + "properties": { + "openplaque:id": "50962", + "addr:full": "9 Albyn Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2012, + 55.96373 + ] + }, + "properties": { + "openplaque:id": "50963", + "addr:full": "8 Howard Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.201, + 55.9633 + ] + }, + "properties": { + "openplaque:id": "50964", + "addr:full": "1 Inverleith Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1762, + 55.92403 + ] + }, + "properties": { + "openplaque:id": "50984", + "addr:full": "\"Joseph Black Building", + "date_start": "David Brewster Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18553, + 55.94918 + ] + }, + "properties": { + "openplaque:id": "50989", + "addr:full": "65 Blackfriars Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18139, + 55.95084 + ] + }, + "properties": { + "openplaque:id": "50994", + "addr:full": "St Johns Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1993, + 55.95302 + ] + }, + "properties": { + "openplaque:id": "51008", + "addr:full": "60 George Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21288, + 55.9486 + ] + }, + "properties": { + "openplaque:id": "51137", + "addr:full": "12 Coates Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19078, + 55.94419 + ] + }, + "properties": { + "openplaque:id": "51149", + "addr:full": "\"Chrystal Macmillan Building", + "date_start": "15a George Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18767, + 55.94755 + ] + }, + "properties": { + "openplaque:id": "51217", + "addr:full": "\"Old College", + "date_start": "South Bridge\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20255, + 55.9603 + ] + }, + "properties": { + "openplaque:id": "51329", + "addr:full": "57 Henderson Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18889, + 55.95008 + ] + }, + "properties": { + "openplaque:id": "51333", + "addr:full": "Old Stamp Office Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18667, + 55.9476 + ] + }, + "properties": { + "openplaque:id": "51353", + "addr:full": "\"Old College", + "date_start": "South Bridge\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18659, + 55.94746 + ] + }, + "properties": { + "openplaque:id": "51354", + "addr:full": "\"Old College", + "date_start": "South Bridge\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18071, + 55.95041 + ] + }, + "properties": { + "openplaque:id": "51355", + "addr:full": "St John Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21624, + 55.9513 + ] + }, + "properties": { + "openplaque:id": "51383", + "addr:full": "1 Rothesay Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20251, + 55.95747 + ] + }, + "properties": { + "openplaque:id": "51399", + "addr:full": "84 Great King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2017, + 55.9576 + ] + }, + "properties": { + "openplaque:id": "51401", + "addr:full": "72 Great King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19866, + 55.9566 + ] + }, + "properties": { + "openplaque:id": "51402", + "addr:full": "15 Dundas Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19651, + 55.95258 + ] + }, + "properties": { + "openplaque:id": "51403", + "addr:full": "21 Hanover Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19469, + 55.94888 + ] + }, + "properties": { + "openplaque:id": "51428", + "addr:full": "\"The Hub", + "date_start": "Castlehill \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18097, + 55.95796 + ] + }, + "properties": { + "openplaque:id": "51434", + "addr:full": "1 Hillside Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18633, + 55.94273 + ] + }, + "properties": { + "openplaque:id": "51435", + "addr:full": "11 Buccleuch Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18725, + 55.94259 + ] + }, + "properties": { + "openplaque:id": "51440", + "addr:full": "18 Buccleuch Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18582, + 55.94281 + ] + }, + "properties": { + "openplaque:id": "51442", + "addr:full": "7 Buccleuch Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20771, + 55.95098 + ] + }, + "properties": { + "openplaque:id": "51458", + "addr:full": "24 Charlotte Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20346, + 55.95283 + ] + }, + "properties": { + "openplaque:id": "51461", + "addr:full": "39 North Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20557, + 55.95127 + ] + }, + "properties": { + "openplaque:id": "51494", + "addr:full": "\"Rose Theatre", + "date_start": "204 Rose Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.22103, + 55.95943 + ] + }, + "properties": { + "openplaque:id": "51511", + "addr:full": "21 Comely Bank Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17559, + 55.95268 + ] + }, + "properties": { + "openplaque:id": "51537", + "addr:full": "White Horse Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21386, + 55.9542 + ] + }, + "properties": { + "openplaque:id": "51560", + "addr:full": "2 Eton Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21165, + 55.95092 + ] + }, + "properties": { + "openplaque:id": "51563", + "addr:full": "10 Melville Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18185, + 55.95091 + ] + }, + "properties": { + "openplaque:id": "51623", + "addr:full": "Cannongate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19263, + 55.96165 + ] + }, + "properties": { + "openplaque:id": "51706", + "addr:full": "21 East Claremont Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19823, + 55.94254 + ] + }, + "properties": { + "openplaque:id": "51756", + "addr:full": "15 Lonsdale Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.33171, + 55.9369 + ] + }, + "properties": { + "openplaque:id": "53397", + "addr:full": "Gogarburn" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18528, + 55.95428 + ] + }, + "properties": { + "openplaque:id": "55035", + "addr:full": "\"Rock House", + "date_start": "Calton Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.11797, + 55.95529 + ] + }, + "properties": { + "openplaque:id": "7433", + "addr:full": "\"3 Bridge Street", + "date_start": "Portobello\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.309, + 55.922 + ] + }, + "properties": { + "openplaque:id": "7509", + "addr:full": "Scott Russell Aqueduct" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18646, + 55.94702 + ] + }, + "properties": { + "openplaque:id": "7569", + "addr:full": "5 South College Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19083, + 55.94944 + ] + }, + "properties": { + "openplaque:id": "7575", + "addr:full": "Parliament Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20596, + 55.9465 + ] + }, + "properties": { + "openplaque:id": "8411", + "addr:full": "\"88 Lothian Rd", + "date_start": "EH3 9BZ\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.21208, + 55.94265 + ] + }, + "properties": { + "openplaque:id": "8553", + "addr:full": "Fountainbridge", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20865, + 55.94105 + ] + }, + "properties": { + "openplaque:id": "8956", + "addr:full": "65 Gilmore Place", + "date_start": "1995" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20125, + 55.95562 + ] + }, + "properties": { + "openplaque:id": "9531", + "addr:full": "17 Heriot Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20322, + 55.95192 + ] + }, + "properties": { + "openplaque:id": "9625", + "addr:full": "Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18398, + 55.95042 + ] + }, + "properties": { + "openplaque:id": "9771", + "addr:full": "St Mary's St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41912, + 55.62732 + ] + }, + "properties": { + "openplaque:id": "54504", + "addr:full": "Ednam Kirk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41593, + 55.62765 + ] + }, + "properties": { + "openplaque:id": "54505", + "addr:full": "Kelso Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.46911, + 52.11785 + ] + }, + "properties": { + "openplaque:id": "30583", + "addr:full": "\"St Helena", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26143, + 52.39973 + ] + }, + "properties": { + "openplaque:id": "42335", + "addr:full": "13 St Mary's Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26154, + 52.39971 + ] + }, + "properties": { + "openplaque:id": "42336", + "addr:full": "2 St Mary's Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26469, + 52.39922 + ] + }, + "properties": { + "openplaque:id": "42338", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.94651, + 50.8493 + ] + }, + "properties": { + "openplaque:id": "1206", + "addr:full": "\"Threepwood", + "date_start": "Record Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93699, + 50.84826 + ] + }, + "properties": { + "openplaque:id": "54967", + "addr:full": "10b North Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21169, + 52.58827 + ] + }, + "properties": { + "openplaque:id": "50148", + "addr:full": "2 Seine Lane", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10014, + 51.65866 + ] + }, + "properties": { + "openplaque:id": "12567", + "addr:full": "\"Lilburn Lodge", + "date_start": "50A The Ridgeway\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.6302, + 54.3454 + ] + }, + "properties": { + "openplaque:id": "47026", + "addr:full": "Forthill Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.65396, + 54.35135 + ] + }, + "properties": { + "openplaque:id": "6986", + "addr:full": "Portora Royal School", + "date_start": "2006" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.62439, + 54.3479 + ] + }, + "properties": { + "openplaque:id": "6992", + "addr:full": "10 Cooper Crescent", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.64399, + 54.3473 + ] + }, + "properties": { + "openplaque:id": "7204", + "addr:full": "2 Queen Street", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.65271, + 54.34978 + ] + }, + "properties": { + "openplaque:id": "7236", + "addr:full": "Portora Royal School", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11387, + 51.69379 + ] + }, + "properties": { + "openplaque:id": "39116", + "addr:full": "Station Approach" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1122, + 51.69986 + ] + }, + "properties": { + "openplaque:id": "40977", + "addr:full": "\"M&S", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11277, + 51.70033 + ] + }, + "properties": { + "openplaque:id": "40978", + "addr:full": "Buttercross Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11073, + 51.69735 + ] + }, + "properties": { + "openplaque:id": "40979", + "addr:full": "Hemnall Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11216, + 51.69988 + ] + }, + "properties": { + "openplaque:id": "40980", + "addr:full": "\"M&S", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.10695, + 51.6963 + ] + }, + "properties": { + "openplaque:id": "50028", + "addr:full": "45 High Street", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25508, + 51.33453 + ] + }, + "properties": { + "openplaque:id": "39289", + "addr:full": "Epsom Cottage Hospital" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26857, + 51.33312 + ] + }, + "properties": { + "openplaque:id": "44700", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36516, + 51.38113 + ] + }, + "properties": { + "openplaque:id": "42538", + "addr:full": "\"Cranmere School", + "date_start": "Arran Way\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36454, + 51.37018 + ] + }, + "properties": { + "openplaque:id": "4406", + "addr:full": "High Street", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3623, + 51.37121 + ] + }, + "properties": { + "openplaque:id": "53464", + "addr:full": "\"Sandown House", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3484, + 51.38409 + ] + }, + "properties": { + "openplaque:id": "8758", + "addr:full": "\"The Old Red House", + "date_start": "Chestnut Avenue\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60921, + 51.49108 + ] + }, + "properties": { + "openplaque:id": "50880", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60903, + 51.48895 + ] + }, + "properties": { + "openplaque:id": "8645", + "addr:full": "29 and 29a High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6097, + 51.4907 + ] + }, + "properties": { + "openplaque:id": "8646", + "addr:full": "\"Gulliver's End", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.16578, + 55.41705 + ] + }, + "properties": { + "openplaque:id": "50091" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399, + 51.35517 + ] + }, + "properties": { + "openplaque:id": "30016", + "addr:full": "Hogsmill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4097, + 50.80302 + ] + }, + "properties": { + "openplaque:id": "12838", + "addr:full": "Exbury Gardens & Steam Railway" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.53535, + 50.70353 + ] + }, + "properties": { + "openplaque:id": "10744", + "addr:full": "\"Church Road", + "date_start": "Alphington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.53018, + 50.72339 + ] + }, + "properties": { + "openplaque:id": "13098", + "addr:full": "\"Royal Clarence Hotel", + "date_start": "Cathedral Yard\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52166, + 50.72296 + ] + }, + "properties": { + "openplaque:id": "13099", + "addr:full": "\"Exeter Protestant Martyrs’ Memorial", + "date_start": "junction of Barnfield Road and Denmark Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.50535, + 50.71943 + ] + }, + "properties": { + "openplaque:id": "13104", + "addr:full": "\"Junction of Meadow Way and Church Street", + "date_start": "Heavitree\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.53117, + 50.7246 + ] + }, + "properties": { + "openplaque:id": "13105", + "addr:full": "\"Britannia Building Society", + "date_start": "Gandy Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.53238, + 50.72265 + ] + }, + "properties": { + "openplaque:id": "30210", + "addr:full": "High St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.53976, + 50.73021 + ] + }, + "properties": { + "openplaque:id": "30642", + "addr:full": "New North Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52978, + 50.72585 + ] + }, + "properties": { + "openplaque:id": "30645", + "addr:full": "Castle Street", + "date_start": "1977" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.53669, + 50.72916 + ] + }, + "properties": { + "openplaque:id": "31792", + "addr:full": "11 Howell Road", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.53053, + 50.71867 + ] + }, + "properties": { + "openplaque:id": "39224", + "addr:full": "The Quay" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.53188, + 50.71818 + ] + }, + "properties": { + "openplaque:id": "39306", + "addr:full": "The Quay" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.53512, + 50.72068 + ] + }, + "properties": { + "openplaque:id": "40814", + "addr:full": "140 Fore St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52865, + 50.72268 + ] + }, + "properties": { + "openplaque:id": "41500", + "addr:full": "15 Cathedral Close", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.5276, + 50.72399 + ] + }, + "properties": { + "openplaque:id": "47028" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.51576, + 50.72365 + ] + }, + "properties": { + "openplaque:id": "51977", + "addr:full": "Heavitree Road", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52475, + 50.72679 + ] + }, + "properties": { + "openplaque:id": "6796", + "addr:full": "Sidwell Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52969, + 50.7202 + ] + }, + "properties": { + "openplaque:id": "6798", + "addr:full": "South Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52624, + 50.72304 + ] + }, + "properties": { + "openplaque:id": "6808", + "addr:full": "Barnfield Road", + "date_start": "2006" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.53232, + 50.7229 + ] + }, + "properties": { + "openplaque:id": "7299", + "addr:full": "Parliament Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.53546, + 50.72202 + ] + }, + "properties": { + "openplaque:id": "7301", + "addr:full": "Carpenter Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.53355, + 50.71429 + ] + }, + "properties": { + "openplaque:id": "8451", + "addr:full": "3 Fords Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52161, + 50.71832 + ] + }, + "properties": { + "openplaque:id": "8452", + "addr:full": "\"Mount Radford School for boys", + "date_start": "56 St Leonards Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.38857, + 50.60964 + ] + }, + "properties": { + "openplaque:id": "42292", + "addr:full": "Marine Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.38857, + 50.60964 + ] + }, + "properties": { + "openplaque:id": "42293", + "addr:full": "Marine Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.38858, + 50.60981 + ] + }, + "properties": { + "openplaque:id": "42294", + "addr:full": "Marine Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.38861, + 50.60968 + ] + }, + "properties": { + "openplaque:id": "42295", + "addr:full": "Marine Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.41325, + 50.61565 + ] + }, + "properties": { + "openplaque:id": "4472", + "addr:full": "\"Deer Leap", + "date_start": "The Esplanade\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.41219, + 50.6159 + ] + }, + "properties": { + "openplaque:id": "4478", + "addr:full": "\"Royal Beacon Hotel", + "date_start": "The Beacon\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.41413, + 50.6185 + ] + }, + "properties": { + "openplaque:id": "4730", + "addr:full": "Chapel Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.41412, + 50.6175 + ] + }, + "properties": { + "openplaque:id": "4744", + "addr:full": "Withycombe Mill Wheel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08923, + 55.87195 + ] + }, + "properties": { + "openplaque:id": "40483", + "addr:full": "\"Lodge St. Ebbe No. 70", + "date_start": "Masons Wynd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.79244, + 56.00112 + ] + }, + "properties": { + "openplaque:id": "40768", + "addr:full": "Town Hall", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.06873, + 50.15511 + ] + }, + "properties": { + "openplaque:id": "12161", + "addr:full": "Fish Strand Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.06805, + 50.15377 + ] + }, + "properties": { + "openplaque:id": "40769", + "addr:full": "\"Arts Centre", + "date_start": "Royal Cornwall Polytechnic Society Building\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.07221, + 50.15563 + ] + }, + "properties": { + "openplaque:id": "42033", + "addr:full": "\"Passmore Edwards Free Library", + "date_start": "Webber Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.06818, + 50.15367 + ] + }, + "properties": { + "openplaque:id": "51667", + "addr:full": "The Poly", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.06352, + 50.15064 + ] + }, + "properties": { + "openplaque:id": "52332" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.17369, + 50.85434 + ] + }, + "properties": { + "openplaque:id": "10830", + "addr:full": "21 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.74973, + 51.27514 + ] + }, + "properties": { + "openplaque:id": "50328", + "addr:full": "Hampshire\"", + "date_start": "Alexandra Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7429, + 51.29031 + ] + }, + "properties": { + "openplaque:id": "54276", + "addr:full": "Hampshire\"", + "date_start": "Ashley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.75288, + 51.28259 + ] + }, + "properties": { + "openplaque:id": "54284", + "addr:full": "Hampshire\"", + "date_start": "85 Farnborough Rd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80001, + 51.21652 + ] + }, + "properties": { + "openplaque:id": "43853", + "addr:full": "56 Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80343, + 51.21364 + ] + }, + "properties": { + "openplaque:id": "43859", + "addr:full": "28 West Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7968, + 51.21173 + ] + }, + "properties": { + "openplaque:id": "53463", + "addr:full": "4 Bridge Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89088, + 51.31566 + ] + }, + "properties": { + "openplaque:id": "12276", + "addr:full": "1&2 Hugh Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89226, + 51.3129 + ] + }, + "properties": { + "openplaque:id": "2074", + "addr:full": "43 Newton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89537, + 51.31544 + ] + }, + "properties": { + "openplaque:id": "2078", + "addr:full": "Orchard Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8919, + 51.3166 + ] + }, + "properties": { + "openplaque:id": "2084", + "addr:full": "Court Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89083, + 51.31393 + ] + }, + "properties": { + "openplaque:id": "2099", + "addr:full": "\"Mackays", + "date_start": "Preston Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89019, + 51.31296 + ] + }, + "properties": { + "openplaque:id": "2100", + "addr:full": "\"The former Assembly Rooms", + "date_start": "Preston Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89122, + 51.32013 + ] + }, + "properties": { + "openplaque:id": "2103", + "addr:full": "\"The Brents Tavern", + "date_start": "Upper Brents\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8912, + 51.31417 + ] + }, + "properties": { + "openplaque:id": "2111", + "addr:full": "Preston Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89586, + 51.31849 + ] + }, + "properties": { + "openplaque:id": "2112", + "addr:full": "The Old Grammar School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89179, + 51.3164 + ] + }, + "properties": { + "openplaque:id": "2113", + "addr:full": "\"Faversham's second guildhall", + "date_start": "Court Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8844, + 51.3171 + ] + }, + "properties": { + "openplaque:id": "2114", + "addr:full": "Stonebridge Lodge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89136, + 51.31563 + ] + }, + "properties": { + "openplaque:id": "2115", + "addr:full": "\"The Manor House of King's Mill", + "date_start": "Market Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88412, + 51.31508 + ] + }, + "properties": { + "openplaque:id": "2116", + "addr:full": "\"Roman Catholic Church", + "date_start": "Tanners Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89136, + 51.31778 + ] + }, + "properties": { + "openplaque:id": "2119", + "addr:full": "\"TS Hazard", + "date_start": "Conduit Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28718, + 54.20805 + ] + }, + "properties": { + "openplaque:id": "29927", + "addr:full": "40 Belle Vue Street (side elevation to lane)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2852, + 54.20389 + ] + }, + "properties": { + "openplaque:id": "30020", + "addr:full": "Royal Parade (south end)", + "date_start": "1955" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28788, + 54.20936 + ] + }, + "properties": { + "openplaque:id": "50863", + "addr:full": "\"Memorial Gardens", + "date_start": "Murray Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28442, + 54.2084 + ] + }, + "properties": { + "openplaque:id": "50864", + "addr:full": "The Beach", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28671, + 54.20441 + ] + }, + "properties": { + "openplaque:id": "52235", + "addr:full": "White Lodge Hotel", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.65706, + 51.73673 + ] + }, + "properties": { + "openplaque:id": "1033", + "addr:full": "The Village Centre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47079, + 0 + ] + }, + "properties": { + "openplaque:id": "12197", + "addr:full": "Upper Howe Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4805, + 51.84614 + ] + }, + "properties": { + "openplaque:id": "9275", + "addr:full": "\"Finstock Church", + "date_start": "Whitney Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48282, + 51.842 + ] + }, + "properties": { + "openplaque:id": "997", + "addr:full": "\"Barn Cottage", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12683, + 54.113 + ] + }, + "properties": { + "openplaque:id": "12671", + "addr:full": "Bempton Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08136, + 54.11596 + ] + }, + "properties": { + "openplaque:id": "12723", + "addr:full": "The head" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01697, + 53.9269 + ] + }, + "properties": { + "openplaque:id": "42893", + "addr:full": "Marine Hall", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00821, + 53.92845 + ] + }, + "properties": { + "openplaque:id": "43774", + "addr:full": "Esplanade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00839, + 53.92789 + ] + }, + "properties": { + "openplaque:id": "43778", + "addr:full": "The Esplanade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.3946, + 57.25887 + ] + }, + "properties": { + "openplaque:id": "43940", + "addr:full": "Old Military Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1532, + 51.07475 + ] + }, + "properties": { + "openplaque:id": "40773", + "addr:full": "\"Spade House", + "date_start": "Radnor Cliff Crescest\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79234, + 50.92653 + ] + }, + "properties": { + "openplaque:id": "12455", + "addr:full": "High Street", + "date_start": "1986" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87973, + 56.64608 + ] + }, + "properties": { + "openplaque:id": "12980", + "addr:full": "\"Ingleside", + "date_start": "East High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.06554, + 53.55118 + ] + }, + "properties": { + "openplaque:id": "41442", + "addr:full": "47 Ravenmeols Lane", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0706, + 53.56501 + ] + }, + "properties": { + "openplaque:id": "41443", + "addr:full": "95 Freshfield Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.10332, + 56.81974 + ] + }, + "properties": { + "openplaque:id": "43936" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.98198, + 52.4994 + ] + }, + "properties": { + "openplaque:id": "9452", + "addr:full": "Foxton Locks", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.76895, + 52.71793 + ] + }, + "properties": { + "openplaque:id": "39788", + "addr:full": "Hay End Lane (corner of Bridge Farm Lane)", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.769, + 52.71791 + ] + }, + "properties": { + "openplaque:id": "39790", + "addr:full": "Hay End Lane (corner of Bridge Farm Lane)", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.76929, + 52.71775 + ] + }, + "properties": { + "openplaque:id": "39792", + "addr:full": "Wood End Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34668, + 52.22388 + ] + }, + "properties": { + "openplaque:id": "43417" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.00508, + 57.69138 + ] + }, + "properties": { + "openplaque:id": "41918", + "addr:full": "Commerce Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51607, + 50.6724 + ] + }, + "properties": { + "openplaque:id": "6972", + "addr:full": "Terrace Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.85453, + 51.5975 + ] + }, + "properties": { + "openplaque:id": "51065", + "addr:full": "Parmoor House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.25886, + 51.83881 + ] + }, + "properties": { + "openplaque:id": "42608", + "addr:full": "The Leas" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57554, + 51.14171 + ] + }, + "properties": { + "openplaque:id": "39877", + "addr:full": "Mill Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72982, + 53.29429 + ] + }, + "properties": { + "openplaque:id": "32895", + "addr:full": "38 Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7309, + 53.29423 + ] + }, + "properties": { + "openplaque:id": "32896", + "addr:full": "43 Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7301, + 53.29463 + ] + }, + "properties": { + "openplaque:id": "32897", + "addr:full": "49 Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72864, + 53.29473 + ] + }, + "properties": { + "openplaque:id": "32898", + "addr:full": "52 Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72974, + 53.29473 + ] + }, + "properties": { + "openplaque:id": "32899", + "addr:full": "53 Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72663, + 53.29547 + ] + }, + "properties": { + "openplaque:id": "32900", + "addr:full": "68 Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72712, + 53.29516 + ] + }, + "properties": { + "openplaque:id": "32901", + "addr:full": "84 Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72785, + 53.29532 + ] + }, + "properties": { + "openplaque:id": "32902", + "addr:full": "89 Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72834, + 53.29479 + ] + }, + "properties": { + "openplaque:id": "32904", + "addr:full": "62 Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72408, + 53.29589 + ] + }, + "properties": { + "openplaque:id": "32906", + "addr:full": "Frodsham Station Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7259, + 53.29579 + ] + }, + "properties": { + "openplaque:id": "32907", + "addr:full": "Golden Lion Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72843, + 53.2952 + ] + }, + "properties": { + "openplaque:id": "32908", + "addr:full": "61 Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72816, + 53.29521 + ] + }, + "properties": { + "openplaque:id": "32910", + "addr:full": "75 Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72551, + 53.29543 + ] + }, + "properties": { + "openplaque:id": "32911", + "addr:full": "12 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72622, + 53.29622 + ] + }, + "properties": { + "openplaque:id": "32912", + "addr:full": "127 Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72551, + 53.29543 + ] + }, + "properties": { + "openplaque:id": "32913", + "addr:full": "12 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7266, + 53.29602 + ] + }, + "properties": { + "openplaque:id": "32914", + "addr:full": "121 Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72814, + 53.29566 + ] + }, + "properties": { + "openplaque:id": "32915", + "addr:full": "79 Main Street", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.32393, + 51.23059 + ] + }, + "properties": { + "openplaque:id": "8503", + "addr:full": "Sheppards' Barton" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23, + 50.88814 + ] + }, + "properties": { + "openplaque:id": "53052", + "addr:full": "nr Shepherd and Dog pub" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77558, + 53.3999 + ] + }, + "properties": { + "openplaque:id": "50513", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.80793, + 55.61583 + ] + }, + "properties": { + "openplaque:id": "13007", + "addr:full": "Bank Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.27036, + 55.0593 + ] + }, + "properties": { + "openplaque:id": "11381", + "addr:full": "Clatteringshaws Dam" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48703, + 54.18565 + ] + }, + "properties": { + "openplaque:id": "52948", + "addr:full": "Main Street", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10589, + 53.98134 + ] + }, + "properties": { + "openplaque:id": "11556", + "addr:full": "Church Street", + "date_start": "1987" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77445, + 53.90011 + ] + }, + "properties": { + "openplaque:id": "12158", + "addr:full": "Parkhill Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61873, + 54.95517 + ] + }, + "properties": { + "openplaque:id": "11747", + "addr:full": "\"Gateshead Evangelical Church", + "date_start": "Derwentwater Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61239, + 54.95742 + ] + }, + "properties": { + "openplaque:id": "43949" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5936, + 54.93594 + ] + }, + "properties": { + "openplaque:id": "7831", + "addr:full": "\"19 Primrose Hill", + "date_start": "Low Fell\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.60439, + 54.9428 + ] + }, + "properties": { + "openplaque:id": "7834", + "addr:full": "\"Saltwell Towers", + "date_start": "Saltwell Park \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59916, + 54.93467 + ] + }, + "properties": { + "openplaque:id": "7835", + "addr:full": "\"Durham Road", + "date_start": "Low Fell (A167) opposite Southern Memorial Hall (part of Wesley Memorial Church)\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59977, + 54.96004 + ] + }, + "properties": { + "openplaque:id": "7837", + "addr:full": "\" William IV Public House", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77877, + 54.96944 + ] + }, + "properties": { + "openplaque:id": "7840", + "addr:full": "\"south-east side of the B6317 road at Barmoor Ryton in the corner of a field next to the Ryton", + "date_start": "Crawcrook and District Youth Centre\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71127, + 54.9298 + ] + }, + "properties": { + "openplaque:id": "7842", + "addr:full": "Old Hollinside", + "date_start": "1984" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.73868, + 54.92785 + ] + }, + "properties": { + "openplaque:id": "7843", + "addr:full": "\"wall of former colliery/brickworks offices (now a private residence) situated beside the A694 road oposite the junction with Sherburn Park Drive", + "date_start": "Rowlands Gill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.74466, + 0 + ] + }, + "properties": { + "openplaque:id": "7844", + "addr:full": "\"Tesco Supermarket", + "date_start": "Rowlands Gill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.60405, + 54.96387 + ] + }, + "properties": { + "openplaque:id": "7845", + "addr:full": "\"Old Dispensary", + "date_start": "Nelson Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57, + 54.95297 + ] + }, + "properties": { + "openplaque:id": "7846", + "addr:full": "\"east of Felling Metro Station", + "date_start": "on the north wall of the old station building facing Mulberry Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.60527, + 54.9676 + ] + }, + "properties": { + "openplaque:id": "7847", + "addr:full": "Off Hillgate on the east face of the south tower of the Tyne Bridge", + "date_start": "1978" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.60527, + 54.9676 + ] + }, + "properties": { + "openplaque:id": "7848", + "addr:full": "Off Hillgate on the east face of the south tower of the Tyne Bridge", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7641, + 54.91821 + ] + }, + "properties": { + "openplaque:id": "7852", + "addr:full": "\"preserved coke oven No 109 at west end of Whinfield Industrial Estate", + "date_start": "Highfield" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.60406, + 54.96361 + ] + }, + "properties": { + "openplaque:id": "7853", + "addr:full": "\"former Post Office", + "date_start": "West Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5976, + 54.95557 + ] + }, + "properties": { + "openplaque:id": "9422", + "addr:full": "King St", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79111, + 54.96639 + ] + }, + "properties": { + "openplaque:id": "9523", + "addr:full": "\"Main Street and Greenside Road", + "date_start": "Crawcrook\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67793, + 54.95395 + ] + }, + "properties": { + "openplaque:id": "9524", + "addr:full": "\"Market Lane", + "date_start": "Swalwell\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.19692, + 51.1378 + ] + }, + "properties": { + "openplaque:id": "39159", + "addr:full": "Crowberry Cottage" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.19563, + 51.13774 + ] + }, + "properties": { + "openplaque:id": "39164", + "addr:full": "Skirr Cottage" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.34586, + 36.13425 + ] + }, + "properties": { + "openplaque:id": "11992", + "addr:full": "\"Signal Hill", + "date_start": "Rock of Gibraltar\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.27266, + 51.03403 + ] + }, + "properties": { + "openplaque:id": "39901", + "addr:full": "Dorset\"", + "date_start": "Gillingham Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.24022, + 55.85898 + ] + }, + "properties": { + "openplaque:id": "11117", + "addr:full": "\"Blackfriars Road", + "date_start": "off the High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.24684, + 55.85695 + ] + }, + "properties": { + "openplaque:id": "11120", + "addr:full": "\"Britannia Panopticon Music Hall", + "date_start": "113-117 Trongate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.26262, + 55.83794 + ] + }, + "properties": { + "openplaque:id": "11121", + "addr:full": "\"21 Ardbeg Street", + "date_start": "Govanhill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.24486, + 55.85699 + ] + }, + "properties": { + "openplaque:id": "11123", + "addr:full": "\"38 Trongate", + "date_start": "G1 5ES\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.30072, + 55.88136 + ] + }, + "properties": { + "openplaque:id": "11124", + "addr:full": "\"8 Great Western Terrace", + "date_start": "G12 9XB\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.24903, + 55.85758 + ] + }, + "properties": { + "openplaque:id": "11125", + "addr:full": "\"187 Trongate", + "date_start": "Merchant City" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.23632, + 55.86382 + ] + }, + "properties": { + "openplaque:id": "11127", + "addr:full": "\"Glasgow Royal Infirmary", + "date_start": "84-106 Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.27502, + 55.86692 + ] + }, + "properties": { + "openplaque:id": "11128", + "addr:full": "\"17 Woodside Place", + "date_start": "G3 7QL\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.28156, + 55.83734 + ] + }, + "properties": { + "openplaque:id": "11129", + "addr:full": "\"33 Fotheringay Road", + "date_start": "Pollockshields" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.27296, + 55.8364 + ] + }, + "properties": { + "openplaque:id": "11130", + "addr:full": "\"15 Regent Park Square", + "date_start": "G41 2AF\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.24517, + 55.85899 + ] + }, + "properties": { + "openplaque:id": "11133", + "addr:full": "\"City Halls", + "date_start": "87 Candleriggs" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.27476, + 55.8371 + ] + }, + "properties": { + "openplaque:id": "11135", + "addr:full": "\"12 Moray Place", + "date_start": "G41 2BA\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.25674, + 55.85995 + ] + }, + "properties": { + "openplaque:id": "11149", + "addr:full": "\"84-100 Union Street", + "date_start": "G1 3QW\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.25861, + 55.86059 + ] + }, + "properties": { + "openplaque:id": "11150", + "addr:full": "\"72-80 Gordon Street", + "date_start": "G2 6LY\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.24508, + 55.85956 + ] + }, + "properties": { + "openplaque:id": "11151", + "addr:full": "102 Ingram Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.24993, + 55.85872 + ] + }, + "properties": { + "openplaque:id": "11154", + "addr:full": "\"Virginia Court", + "date_start": "37-47 Virginia Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.25097, + 55.8587 + ] + }, + "properties": { + "openplaque:id": "11155", + "addr:full": "\"42 Miller Street", + "date_start": "G1 1DT\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.24888, + 55.85932 + ] + }, + "properties": { + "openplaque:id": "11157", + "addr:full": "\"85 Glassford Street", + "date_start": "G1 1UH\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.25875, + 55.86185 + ] + }, + "properties": { + "openplaque:id": "11158", + "addr:full": "\"144 St Vincent Street", + "date_start": "G2 5LQ\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.26322, + 55.86493 + ] + }, + "properties": { + "openplaque:id": "11160", + "addr:full": "\"200 Bath Street (on the Douglas Street side of the building)", + "date_start": "G2 4HG\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.2441, + 55.85874 + ] + }, + "properties": { + "openplaque:id": "11162", + "addr:full": "\"99 - 101 Albion Street", + "date_start": "G1 1NQ\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.29218, + 55.86707 + ] + }, + "properties": { + "openplaque:id": "11163", + "addr:full": "\"Dukes Bar", + "date_start": "41 Old Dumbarton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.24661, + 55.85618 + ] + }, + "properties": { + "openplaque:id": "11165", + "addr:full": "\"TBC", + "date_start": "Merchant City\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.29395, + 0 + ] + }, + "properties": { + "openplaque:id": "11166", + "addr:full": "\"Joseph Black Building", + "date_start": "University Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.25869, + 55.8597 + ] + }, + "properties": { + "openplaque:id": "11170", + "addr:full": "\"Grand Central Hotel (in the hotel lobby)", + "date_start": "99 Gordon Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.2277, + 55.8614 + ] + }, + "properties": { + "openplaque:id": "13076", + "addr:full": "\"2 Firpark Terrace", + "date_start": "Dennistoun" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.27189, + 55.83588 + ] + }, + "properties": { + "openplaque:id": "28053", + "addr:full": "\"6 Regent Park Square", + "date_start": "G41 2AG\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.25865, + 55.81354 + ] + }, + "properties": { + "openplaque:id": "28054", + "addr:full": "\"23", + "date_start": "25 and 27 Snuff Mill Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.25876, + 55.81423 + ] + }, + "properties": { + "openplaque:id": "28055", + "addr:full": "\"38 Snuff Mill Road", + "date_start": "Cathcart" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.23688, + 55.86233 + ] + }, + "properties": { + "openplaque:id": "28057", + "addr:full": "\"3 Castle St", + "date_start": "G4 0RH\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.26407, + 55.86475 + ] + }, + "properties": { + "openplaque:id": "28058", + "addr:full": "\"202 Bath St", + "date_start": "G2 4HW\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.25734, + 55.85703 + ] + }, + "properties": { + "openplaque:id": "28126", + "addr:full": "\"26 Jamaica Street", + "date_start": "G1 4QD\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.24992, + 55.85874 + ] + }, + "properties": { + "openplaque:id": "28127", + "addr:full": "\"between 41 and 45 Virginia Street", + "date_start": "G1 1TS\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.25408, + 55.86177 + ] + }, + "properties": { + "openplaque:id": "28129", + "addr:full": "\"155-159 Buchanan Street", + "date_start": "G1 2JX\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.25256, + 55.86004 + ] + }, + "properties": { + "openplaque:id": "28130", + "addr:full": "\"Gallery of Modern Art", + "date_start": "Royal Exchange Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.2452, + 55.85689 + ] + }, + "properties": { + "openplaque:id": "28131", + "addr:full": "\"63 Trongate (junction with Chisholm Street)", + "date_start": "G1 5HB\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.26482, + 55.86567 + ] + }, + "properties": { + "openplaque:id": "28132", + "addr:full": "\"336-356 Sauchiehall Street", + "date_start": "G2 3JD\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.23749, + 55.86532 + ] + }, + "properties": { + "openplaque:id": "28137", + "addr:full": "\"Parson St", + "date_start": "G4 0PX\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.2866, + 55.84164 + ] + }, + "properties": { + "openplaque:id": "28138", + "addr:full": "\"Castlehill", + "date_start": "202 Nithsdale Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.3125, + 55.86343 + ] + }, + "properties": { + "openplaque:id": "28211", + "addr:full": "\"Pearce Institute", + "date_start": "840 Govan Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.31246, + 55.86361 + ] + }, + "properties": { + "openplaque:id": "28212", + "addr:full": "\"Mary Barbour Conference Suite", + "date_start": "Pearce Institute" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.2741, + 55.87879 + ] + }, + "properties": { + "openplaque:id": "30590", + "addr:full": "\"18 Wilton Drive", + "date_start": "Maryhill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.25766, + 55.86031 + ] + }, + "properties": { + "openplaque:id": "30992", + "addr:full": "Glasgow Central Station", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.25488, + 55.86358 + ] + }, + "properties": { + "openplaque:id": "30993", + "addr:full": "\"The Tron Church", + "date_start": "Bath Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.24881, + 55.86111 + ] + }, + "properties": { + "openplaque:id": "30994", + "addr:full": "George Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.28462, + 55.87421 + ] + }, + "properties": { + "openplaque:id": "33187", + "addr:full": "\"Eton Terrace", + "date_start": "47 Oakfield Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.25945, + 0 + ] + }, + "properties": { + "openplaque:id": "40785", + "addr:full": "105 St Vincent Street", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.23809, + 55.84926 + ] + }, + "properties": { + "openplaque:id": "43934" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.27951, + 55.86923 + ] + }, + "properties": { + "openplaque:id": "44000", + "addr:full": "22 Circus Park", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.23841, + 55.84926 + ] + }, + "properties": { + "openplaque:id": "46994" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.2934, + 55.8729 + ] + }, + "properties": { + "openplaque:id": "50016", + "addr:full": "11 University Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.2681, + 55.86601 + ] + }, + "properties": { + "openplaque:id": "50087", + "addr:full": "460 Sauchiehall Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.24442, + 55.85806 + ] + }, + "properties": { + "openplaque:id": "7462", + "addr:full": "\"64 Albion Street", + "date_start": "G1 1NY\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.18603, + 55.89782 + ] + }, + "properties": { + "openplaque:id": "8397", + "addr:full": "\"Robroyston Road", + "date_start": "Robroyston\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.25607, + 55.86339 + ] + }, + "properties": { + "openplaque:id": "9848", + "addr:full": "\"79 Renfield Street", + "date_start": "G2 1LP\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71696, + 51.14755 + ] + }, + "properties": { + "openplaque:id": "12207", + "addr:full": "\"The Assembly Rooms", + "date_start": "The High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7181, + 51.1473 + ] + }, + "properties": { + "openplaque:id": "30827", + "addr:full": "Benedict Street", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.36271, + 54.83251 + ] + }, + "properties": { + "openplaque:id": "42722" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24743, + 51.8677 + ] + }, + "properties": { + "openplaque:id": "13004", + "addr:full": "Palace Yard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2478, + 51.86692 + ] + }, + "properties": { + "openplaque:id": "31472", + "addr:full": "King Edward's Gate - College Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24996, + 51.86377 + ] + }, + "properties": { + "openplaque:id": "31481", + "addr:full": "Soldiers of Gloucestershire Museum" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2513, + 51.86443 + ] + }, + "properties": { + "openplaque:id": "31482", + "addr:full": "Dock Company Office - Gloucester Docks", + "date_start": "1980" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2525, + 51.86182 + ] + }, + "properties": { + "openplaque:id": "31496", + "addr:full": "Gloucester Waterways Museum - Llanthony Warehouse - Gloucester Docks", + "date_start": "1988" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23193, + 51.87 + ] + }, + "properties": { + "openplaque:id": "52969", + "addr:full": "19 Alexandra Road", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.06205, + 50.87785 + ] + }, + "properties": { + "openplaque:id": "42003", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61118, + 51.18573 + ] + }, + "properties": { + "openplaque:id": "12433", + "addr:full": "\"King's Arms", + "date_start": "22 High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.05994, + 55.84062 + ] + }, + "properties": { + "openplaque:id": "43937" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.72851, + 52.57762 + ] + }, + "properties": { + "openplaque:id": "50026", + "addr:full": "33 Baker Street", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.72947, + 52.56961 + ] + }, + "properties": { + "openplaque:id": "50412", + "addr:full": "1 Avondale Road", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15448, + 50.78192 + ] + }, + "properties": { + "openplaque:id": "12539", + "addr:full": "\"Stokes By Sailing Club", + "date_start": "The Promenade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13017, + 50.79867 + ] + }, + "properties": { + "openplaque:id": "12579", + "addr:full": "Forton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.136, + 50.79967 + ] + }, + "properties": { + "openplaque:id": "12580", + "addr:full": "Forton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11701, + 50.79482 + ] + }, + "properties": { + "openplaque:id": "12581", + "addr:full": "Mumby Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.27291, + 51.57013 + ] + }, + "properties": { + "openplaque:id": "33159", + "addr:full": "\"Middleton Hall Cottage", + "date_start": "Middleton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6409, + 52.91643 + ] + }, + "properties": { + "openplaque:id": "27891", + "addr:full": "The King's School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.63861, + 52.91139 + ] + }, + "properties": { + "openplaque:id": "30368", + "addr:full": "London Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.64027, + 52.91798 + ] + }, + "properties": { + "openplaque:id": "30371", + "addr:full": "69 Manthorpe Road", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.64065, + 52.91536 + ] + }, + "properties": { + "openplaque:id": "40409", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.64132, + 52.91101 + ] + }, + "properties": { + "openplaque:id": "40786", + "addr:full": "38 High Street", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.64205, + 52.9153 + ] + }, + "properties": { + "openplaque:id": "42955", + "addr:full": "\"King's School", + "date_start": "Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.64019, + 52.91053 + ] + }, + "properties": { + "openplaque:id": "47008", + "addr:full": "St Peter's Hill", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.03613, + 54.46751 + ] + }, + "properties": { + "openplaque:id": "7636", + "addr:full": "Near Lancrigg Hotel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99728, + 54.07283 + ] + }, + "properties": { + "openplaque:id": "54184", + "addr:full": "Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7514, + 51.11068 + ] + }, + "properties": { + "openplaque:id": "50969", + "addr:full": "\"Co-Op", + "date_start": "Avenue Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.75293, + 51.11004 + ] + }, + "properties": { + "openplaque:id": "52052", + "addr:full": "Crossways Rd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753, + 51.11065 + ] + }, + "properties": { + "openplaque:id": "52053", + "addr:full": "\"Headley Rd", + "date_start": "Grayshott" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.75816, + 51.11305 + ] + }, + "properties": { + "openplaque:id": "52288", + "addr:full": "School Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.74703, + 51.11071 + ] + }, + "properties": { + "openplaque:id": "52289", + "addr:full": "\"Grayshott Village Hall", + "date_start": "Headley Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13443, + 54.48854 + ] + }, + "properties": { + "openplaque:id": "30043", + "addr:full": "\"Public Library", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.94828, + 52.18502 + ] + }, + "properties": { + "openplaque:id": "42908", + "addr:full": "Great Finborough Village Hall", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0, + 0 + ] + }, + "properties": { + "openplaque:id": "43719", + "addr:full": "The Limes", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.72455, + 52.58178 + ] + }, + "properties": { + "openplaque:id": "12117", + "addr:full": "East Anglian Way", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.73521, + 52.6054 + ] + }, + "properties": { + "openplaque:id": "3796", + "addr:full": "\"Fjaerland Hotel", + "date_start": "24/25 Trafalgar Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.72856, + 52.6069 + ] + }, + "properties": { + "openplaque:id": "3860", + "addr:full": "Regent Boulevard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.73344, + 0 + ] + }, + "properties": { + "openplaque:id": "4196", + "addr:full": "\"The Corner House Hotel", + "date_start": "Albert Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.72398, + 52.613 + ] + }, + "properties": { + "openplaque:id": "4202", + "addr:full": "\"near the White Swan pub", + "date_start": "North Quay\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.72991, + 52.61852 + ] + }, + "properties": { + "openplaque:id": "42201", + "addr:full": "5 Beaconsfield Road", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7271, + 52.61052 + ] + }, + "properties": { + "openplaque:id": "48761" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.73383, + 52.60292 + ] + }, + "properties": { + "openplaque:id": "49344", + "addr:full": "2 Standard Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.73375, + 52.5711 + ] + }, + "properties": { + "openplaque:id": "54325", + "addr:full": "\"Harbour's Mouth", + "date_start": "Gorleston-on-Sea \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.75509, + 55.94786 + ] + }, + "properties": { + "openplaque:id": "11164", + "addr:full": "William Street (junction with Dalrymple Street)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.75773, + 55.9438 + ] + }, + "properties": { + "openplaque:id": "4294", + "addr:full": "Hope Street", + "date_start": "2006" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08417, + 53.5691 + ] + }, + "properties": { + "openplaque:id": "44710", + "addr:full": "Grimsby Fishing Heritage Centre", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99747, + 54.51313 + ] + }, + "properties": { + "openplaque:id": "42269" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56178, + 51.2377 + ] + }, + "properties": { + "openplaque:id": "1207", + "addr:full": "59 Epsom Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55994, + 51.2428 + ] + }, + "properties": { + "openplaque:id": "3278", + "addr:full": "22 Ennismore Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57161, + 51.23342 + ] + }, + "properties": { + "openplaque:id": "42938", + "addr:full": "\"The Chestnuts", + "date_start": "Castle Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57897, + 51.24339 + ] + }, + "properties": { + "openplaque:id": "50325", + "addr:full": "Dapdune Wharf" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57615, + 51.23497 + ] + }, + "properties": { + "openplaque:id": "51340" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5723, + 51.23443 + ] + }, + "properties": { + "openplaque:id": "51342" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57469, + 51.23523 + ] + }, + "properties": { + "openplaque:id": "52327", + "addr:full": "61 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57494, + 51.23506 + ] + }, + "properties": { + "openplaque:id": "52871", + "addr:full": "The Star Inn", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57399, + 0 + ] + }, + "properties": { + "openplaque:id": "8698", + "addr:full": "Quarry Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57673, + 51.23488 + ] + }, + "properties": { + "openplaque:id": "8702", + "addr:full": "Millbrook" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57326, + 51.23227 + ] + }, + "properties": { + "openplaque:id": "8703", + "addr:full": "Millbrook" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57181, + 51.23591 + ] + }, + "properties": { + "openplaque:id": "8718", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04971, + 54.53401 + ] + }, + "properties": { + "openplaque:id": "9050", + "addr:full": "Belmangate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.70813, + 53.87523 + ] + }, + "properties": { + "openplaque:id": "11784", + "addr:full": "Well Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7119, + 53.87321 + ] + }, + "properties": { + "openplaque:id": "11785", + "addr:full": "Otley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.03269, + 52.45249 + ] + }, + "properties": { + "openplaque:id": "41499", + "addr:full": "\"Leasowes Walled Garden", + "date_start": "Leasowes Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.50316, + 52.3453 + ] + }, + "properties": { + "openplaque:id": "4038", + "addr:full": "\"Hooker House", + "date_start": "Quay Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.50316, + 52.3453 + ] + }, + "properties": { + "openplaque:id": "4040", + "addr:full": "\"Hooker House", + "date_start": "Quay Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.50221, + 52.34287 + ] + }, + "properties": { + "openplaque:id": "48742", + "addr:full": "35 The Thoroughfare" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.85921, + 53.72308 + ] + }, + "properties": { + "openplaque:id": "12220", + "addr:full": "Corner of Russel Street and Market Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.85226, + 53.72169 + ] + }, + "properties": { + "openplaque:id": "12221", + "addr:full": "Navigation Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.85535, + 53.72165 + ] + }, + "properties": { + "openplaque:id": "12222", + "addr:full": "\"Square Capel", + "date_start": "Square Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.85657, + 53.72118 + ] + }, + "properties": { + "openplaque:id": "12225", + "addr:full": "Cross Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.12962, + 51.33317 + ] + }, + "properties": { + "openplaque:id": "55018", + "addr:full": "\"Halstead Place", + "date_start": "Church Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.4559, + 54.9668 + ] + }, + "properties": { + "openplaque:id": "44785" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.45833, + 54.9705 + ] + }, + "properties": { + "openplaque:id": "7637", + "addr:full": "Town square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.45817, + 54.97067 + ] + }, + "properties": { + "openplaque:id": "7638", + "addr:full": "Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.459, + 54.9705 + ] + }, + "properties": { + "openplaque:id": "7639", + "addr:full": "4 sites in Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.86851, + 51.57328 + ] + }, + "properties": { + "openplaque:id": "5590", + "addr:full": "Hambleden Manor" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.06851, + 55.76772 + ] + }, + "properties": { + "openplaque:id": "28063", + "addr:full": "\"off Lady Watson Gardens", + "date_start": "Sherry Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17938, + 51.55731 + ] + }, + "properties": { + "openplaque:id": "51697", + "addr:full": "Holly Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1785, + 51.56106 + ] + }, + "properties": { + "openplaque:id": "51698", + "addr:full": "\"Bell Moor House", + "date_start": "East Heath Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23915, + 51.48292 + ] + }, + "properties": { + "openplaque:id": "42466", + "addr:full": "St Mary's Church" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19707, + 51.04787 + ] + }, + "properties": { + "openplaque:id": "12013", + "addr:full": "Nymans Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.16119, + 53.02466 + ] + }, + "properties": { + "openplaque:id": "53440", + "addr:full": "\"89 Seymour Street", + "date_start": "Wellington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53189, + 52.82497 + ] + }, + "properties": { + "openplaque:id": "30242", + "addr:full": "The Hill House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.1124, + 52.85374 + ] + }, + "properties": { + "openplaque:id": "8555", + "addr:full": "Ffordd Isaf" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13295, + 51.7833 + ] + }, + "properties": { + "openplaque:id": "1481", + "addr:full": "\"High Street", + "date_start": "Old Harlow\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11835, + 51.77749 + ] + }, + "properties": { + "openplaque:id": "50163", + "addr:full": "The Chantry" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.55336, + 53.99104 + ] + }, + "properties": { + "openplaque:id": "39750", + "addr:full": "Valley Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54605, + 53.99586 + ] + }, + "properties": { + "openplaque:id": "39752", + "addr:full": "\"9", + "date_start": "Swan Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54773, + 53.99545 + ] + }, + "properties": { + "openplaque:id": "54382", + "addr:full": "The Old Swan" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09612, + 51.06956 + ] + }, + "properties": { + "openplaque:id": "39403", + "addr:full": "Chuck Hatch Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.89083, + 51.31333 + ] + }, + "properties": { + "openplaque:id": "42055", + "addr:full": "\"White Lion Antiques", + "date_start": "Star Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.71403, + 51.0856 + ] + }, + "properties": { + "openplaque:id": "1986", + "addr:full": "\"Shepherd's Down", + "date_start": "Hill Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73555, + 51.1024 + ] + }, + "properties": { + "openplaque:id": "1988", + "addr:full": "\"Leigh Heights", + "date_start": "The Hindhead Music Centre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.74516, + 51.08352 + ] + }, + "properties": { + "openplaque:id": "1989", + "addr:full": "Rats Castle", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.72447, + 51.08687 + ] + }, + "properties": { + "openplaque:id": "49557", + "addr:full": "\"Green Bushes", + "date_start": "Foundry Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.70796, + 51.08975 + ] + }, + "properties": { + "openplaque:id": "49559", + "addr:full": "\"Town House", + "date_start": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.70953, + 51.08773 + ] + }, + "properties": { + "openplaque:id": "49562", + "addr:full": "\"Town Hall", + "date_start": "Haslemere \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73435, + 51.08752 + ] + }, + "properties": { + "openplaque:id": "49789" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.71944, + 51.08861 + ] + }, + "properties": { + "openplaque:id": "52452", + "addr:full": "Haslemere Station", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73371, + 51.09425 + ] + }, + "properties": { + "openplaque:id": "52453", + "addr:full": "125 Lion Lane", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.71491, + 51.0882 + ] + }, + "properties": { + "openplaque:id": "6332", + "addr:full": "\"Penfolds", + "date_start": "Sandrock\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.546, + 50.8506 + ] + }, + "properties": { + "openplaque:id": "1215", + "addr:full": "\"117 Marina", + "date_start": "St. Leonards\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5523, + 50.8507 + ] + }, + "properties": { + "openplaque:id": "1216", + "addr:full": "\"57 Marina", + "date_start": "St Leonards\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5526, + 50.8509 + ] + }, + "properties": { + "openplaque:id": "1217", + "addr:full": "\"Royal Victoria Hotel", + "date_start": "Marina" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.55263, + 50.8508 + ] + }, + "properties": { + "openplaque:id": "1218", + "addr:full": "\"Opposite Royal Victoria Hotel", + "date_start": "Marina" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5534, + 50.8575 + ] + }, + "properties": { + "openplaque:id": "1220", + "addr:full": "9 Dane Road", + "date_start": "1995" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5548, + 50.8532 + ] + }, + "properties": { + "openplaque:id": "1221", + "addr:full": "\"North Lodge", + "date_start": "Maze Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.55702, + 50.8613 + ] + }, + "properties": { + "openplaque:id": "1223", + "addr:full": "241 London Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59235, + 50.8582 + ] + }, + "properties": { + "openplaque:id": "1224", + "addr:full": "90 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59097, + 50.858 + ] + }, + "properties": { + "openplaque:id": "1225", + "addr:full": "18 Croft Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59091, + 50.8577 + ] + }, + "properties": { + "openplaque:id": "1226", + "addr:full": "23 Croft Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59244, + 50.857 + ] + }, + "properties": { + "openplaque:id": "1229", + "addr:full": "31 The Bourne" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59173, + 50.8566 + ] + }, + "properties": { + "openplaque:id": "1230", + "addr:full": "\"Winding Street", + "date_start": "The Bourne\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59061, + 50.8564 + ] + }, + "properties": { + "openplaque:id": "1231", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59096, + 50.8568 + ] + }, + "properties": { + "openplaque:id": "1232", + "addr:full": "54 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58898, + 50.85596 + ] + }, + "properties": { + "openplaque:id": "1233", + "addr:full": "57 George Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59373, + 50.85942 + ] + }, + "properties": { + "openplaque:id": "1234", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59412, + 50.8562 + ] + }, + "properties": { + "openplaque:id": "1236", + "addr:full": "Rock-a-Nore Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58816, + 0 + ] + }, + "properties": { + "openplaque:id": "1240", + "addr:full": "Plynlimmon Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59382, + 50.85949 + ] + }, + "properties": { + "openplaque:id": "1268", + "addr:full": "5 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5895, + 50.85702 + ] + }, + "properties": { + "openplaque:id": "1271", + "addr:full": "\"West Hill House", + "date_start": "Exmouth Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59883, + 50.86163 + ] + }, + "properties": { + "openplaque:id": "12961", + "addr:full": "High Wickham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58417, + 50.85533 + ] + }, + "properties": { + "openplaque:id": "31434", + "addr:full": "Pelham Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58461, + 50.8554 + ] + }, + "properties": { + "openplaque:id": "3312", + "addr:full": "7 Pelham Crescent", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57629, + 50.85438 + ] + }, + "properties": { + "openplaque:id": "40435", + "addr:full": "42 Robertson Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5922, + 50.85804 + ] + }, + "properties": { + "openplaque:id": "41399", + "addr:full": "32 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59468, + 50.85847 + ] + }, + "properties": { + "openplaque:id": "41401", + "addr:full": "125 All Saints' Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5952, + 50.85751 + ] + }, + "properties": { + "openplaque:id": "41405", + "addr:full": "27 Tackleway" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59083, + 50.8567 + ] + }, + "properties": { + "openplaque:id": "41408", + "addr:full": "57 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59242, + 50.8562 + ] + }, + "properties": { + "openplaque:id": "44796" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57007, + 50.85315 + ] + }, + "properties": { + "openplaque:id": "50539", + "addr:full": "Bottle Alley" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59086, + 50.85665 + ] + }, + "properties": { + "openplaque:id": "51145", + "addr:full": "64d High Street", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58953, + 50.85592 + ] + }, + "properties": { + "openplaque:id": "52075", + "addr:full": "17 West Street", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58932, + 50.85703 + ] + }, + "properties": { + "openplaque:id": "53335", + "addr:full": "\"Exmouth House", + "date_start": "Exmouth Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59888, + 50.86167 + ] + }, + "properties": { + "openplaque:id": "53353", + "addr:full": "4 High Wickham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59572, + 50.85954 + ] + }, + "properties": { + "openplaque:id": "54027", + "addr:full": "1 Harold Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58779, + 50.85554 + ] + }, + "properties": { + "openplaque:id": "54028", + "addr:full": "George Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5915, + 50.85683 + ] + }, + "properties": { + "openplaque:id": "54031", + "addr:full": "Post Office Passage" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59912, + 50.86231 + ] + }, + "properties": { + "openplaque:id": "54033", + "addr:full": "Belmont Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57922, + 50.85496 + ] + }, + "properties": { + "openplaque:id": "54222", + "addr:full": "\"Debenhams", + "date_start": "Robertson Terrace\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57799, + 50.87259 + ] + }, + "properties": { + "openplaque:id": "54423", + "addr:full": "\"Loreto", + "date_start": "81 St Helen's Park Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58067, + 50.8548 + ] + }, + "properties": { + "openplaque:id": "7261", + "addr:full": "Pelham Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59126, + 50.85723 + ] + }, + "properties": { + "openplaque:id": "7554", + "addr:full": "\"Museum", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.65427, + 53.33037 + ] + }, + "properties": { + "openplaque:id": "30999", + "addr:full": "Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.98283, + 50.85074 + ] + }, + "properties": { + "openplaque:id": "54789", + "addr:full": "16 Homewell" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.98168, + 50.84979 + ] + }, + "properties": { + "openplaque:id": "54794", + "addr:full": "South Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.97769, + 50.85076 + ] + }, + "properties": { + "openplaque:id": "54823", + "addr:full": "East Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.98043, + 50.85237 + ] + }, + "properties": { + "openplaque:id": "54828", + "addr:full": "4 Prince George Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.9816, + 50.85421 + ] + }, + "properties": { + "openplaque:id": "54841", + "addr:full": "North Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.98243, + 50.85316 + ] + }, + "properties": { + "openplaque:id": "54842", + "addr:full": "Market Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.98399, + 50.85164 + ] + }, + "properties": { + "openplaque:id": "54844", + "addr:full": "19 West Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.98149, + 50.85073 + ] + }, + "properties": { + "openplaque:id": "54845", + "addr:full": "2 South Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.96767, + 51.80213 + ] + }, + "properties": { + "openplaque:id": "28159", + "addr:full": "5 Victoria Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.96727, + 51.802 + ] + }, + "properties": { + "openplaque:id": "28160", + "addr:full": "7 Victoria Place West" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.97124, + 51.79839 + ] + }, + "properties": { + "openplaque:id": "28161", + "addr:full": "89 Hill Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.97211, + 51.8014 + ] + }, + "properties": { + "openplaque:id": "28162", + "addr:full": "St Mary's Church" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.97127, + 51.8012 + ] + }, + "properties": { + "openplaque:id": "28166", + "addr:full": "St Mary's Church" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.96705, + 51.80067 + ] + }, + "properties": { + "openplaque:id": "28170", + "addr:full": "Quay Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.96675, + 51.80028 + ] + }, + "properties": { + "openplaque:id": "28172", + "addr:full": "\"The Bristol Trader", + "date_start": "Quay Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0, + 0 + ] + }, + "properties": { + "openplaque:id": "28175", + "addr:full": "Hole In The Wall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.97304, + 51.79926 + ] + }, + "properties": { + "openplaque:id": "28176", + "addr:full": "\"Pig Bank", + "date_start": "Dew Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.97231, + 51.80063 + ] + }, + "properties": { + "openplaque:id": "28177", + "addr:full": "\"Haverfordwest County Library", + "date_start": "Dew Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.97116, + 51.79943 + ] + }, + "properties": { + "openplaque:id": "28179", + "addr:full": "\"Albany Church", + "date_start": "Hill Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.19923, + 54.31924 + ] + }, + "properties": { + "openplaque:id": "40532", + "addr:full": "Simonstone Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.78676, + 55.42259 + ] + }, + "properties": { + "openplaque:id": "50127" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.79676, + 55.4095 + ] + }, + "properties": { + "openplaque:id": "50129" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4927, + 51.0488 + ] + }, + "properties": { + "openplaque:id": "1467", + "addr:full": "High Street", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5101, + 51.0472 + ] + }, + "properties": { + "openplaque:id": "1468", + "addr:full": "Rye Road", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5118, + 51.047 + ] + }, + "properties": { + "openplaque:id": "1469", + "addr:full": "Rye Road", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5118, + 51.047 + ] + }, + "properties": { + "openplaque:id": "1470", + "addr:full": "Rye Road", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5101, + 51.0475 + ] + }, + "properties": { + "openplaque:id": "1471", + "addr:full": "Rye Road", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5123, + 51.0474 + ] + }, + "properties": { + "openplaque:id": "1472", + "addr:full": "Rye Road", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5101, + 51.0476 + ] + }, + "properties": { + "openplaque:id": "1474", + "addr:full": "Cranbrook Road", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5096, + 51.0499 + ] + }, + "properties": { + "openplaque:id": "1475", + "addr:full": "Cranbrook Road", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5096, + 51.0479 + ] + }, + "properties": { + "openplaque:id": "1476", + "addr:full": "Northgrove Road", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5042, + 51.0399 + ] + }, + "properties": { + "openplaque:id": "1477", + "addr:full": "Talbot Road", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.50685, + 51.04241 + ] + }, + "properties": { + "openplaque:id": "50873", + "addr:full": "Talbot Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.50464, + 51.03692 + ] + }, + "properties": { + "openplaque:id": "9077", + "addr:full": "Collingwood House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00069, + 54.37464 + ] + }, + "properties": { + "openplaque:id": "11434", + "addr:full": "Vicarage Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.95667, + 53.83134 + ] + }, + "properties": { + "openplaque:id": "28263", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.95561, + 53.83138 + ] + }, + "properties": { + "openplaque:id": "28265", + "addr:full": "\"Black Bull Inn", + "date_start": "119" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.12718, + 52.07388 + ] + }, + "properties": { + "openplaque:id": "11711", + "addr:full": "13A Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94324, + 53.37924 + ] + }, + "properties": { + "openplaque:id": "30865", + "addr:full": "63 Kinder Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94014, + 53.37818 + ] + }, + "properties": { + "openplaque:id": "55008", + "addr:full": "Kinder Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.95136, + 53.3807 + ] + }, + "properties": { + "openplaque:id": "6406", + "addr:full": "Wood Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.97265, + 50.787 + ] + }, + "properties": { + "openplaque:id": "40473", + "addr:full": "Selsmor Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09789, + 50.9993 + ] + }, + "properties": { + "openplaque:id": "3177", + "addr:full": "\"Petlands", + "date_start": "Heyworth Primary School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10604, + 51.00044 + ] + }, + "properties": { + "openplaque:id": "39305", + "addr:full": "\"Magda's", + "date_start": "The Broadway\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49598, + 52.91048 + ] + }, + "properties": { + "openplaque:id": "54486" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.96218, + 54.05709 + ] + }, + "properties": { + "openplaque:id": "11518", + "addr:full": "River Wharfe", + "date_start": "1985" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.98069, + 53.73166 + ] + }, + "properties": { + "openplaque:id": "41429", + "addr:full": "1 Aspinall Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.01286, + 53.77857 + ] + }, + "properties": { + "openplaque:id": "41430" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.01331, + 53.74145 + ] + }, + "properties": { + "openplaque:id": "44775", + "addr:full": "Bridge Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0102, + 53.74027 + ] + }, + "properties": { + "openplaque:id": "50841", + "addr:full": "\"Hebden Bridge Marina", + "date_start": "New Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67666, + 53.71149 + ] + }, + "properties": { + "openplaque:id": "43976", + "addr:full": "\"Old Hall Public House", + "date_start": "1 New North Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.00517, + 52.7118 + ] + }, + "properties": { + "openplaque:id": "52851", + "addr:full": "\"53", + "date_start": "Green Heath Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.73772, + 56.00762 + ] + }, + "properties": { + "openplaque:id": "40791", + "addr:full": "ex-Templeton Library", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33672, + 53.68705 + ] + }, + "properties": { + "openplaque:id": "42735" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34436, + 52.63406 + ] + }, + "properties": { + "openplaque:id": "10922", + "addr:full": "\"12 Woodgate", + "date_start": "PE6 7ED \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.27173, + 50.10225 + ] + }, + "properties": { + "openplaque:id": "30084", + "addr:full": "61 Weldron Street", + "date_start": "1937" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4737, + 51.74949 + ] + }, + "properties": { + "openplaque:id": "42612", + "addr:full": "Bank Court" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.47322, + 51.75857 + ] + }, + "properties": { + "openplaque:id": "52945", + "addr:full": "Queensway" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.97667, + 51.53194 + ] + }, + "properties": { + "openplaque:id": "1014", + "addr:full": "\"Rose Cottage", + "date_start": "Dog Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.9036, + 51.5357 + ] + }, + "properties": { + "openplaque:id": "1030", + "addr:full": "\"Christ Church United Reformed Church", + "date_start": "Reading Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.90343, + 51.53931 + ] + }, + "properties": { + "openplaque:id": "54020", + "addr:full": "19 New Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.90108, + 51.53885 + ] + }, + "properties": { + "openplaque:id": "54034", + "addr:full": "Thameside" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.9029, + 51.53475 + ] + }, + "properties": { + "openplaque:id": "54035", + "addr:full": "Reading Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.69275, + 52.04915 + ] + }, + "properties": { + "openplaque:id": "13009", + "addr:full": "On the corner of Hampton Park Road and Vineyard Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71736, + 52.05544 + ] + }, + "properties": { + "openplaque:id": "30050", + "addr:full": "Broad Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71776, + 52.0535 + ] + }, + "properties": { + "openplaque:id": "30052", + "addr:full": "Gwynne Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71817, + 52.05197 + ] + }, + "properties": { + "openplaque:id": "30053", + "addr:full": "Wye Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71281, + 52.05387 + ] + }, + "properties": { + "openplaque:id": "30055", + "addr:full": "29 Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71062, + 52.05426 + ] + }, + "properties": { + "openplaque:id": "30056", + "addr:full": "St Owens Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71633, + 52.0553 + ] + }, + "properties": { + "openplaque:id": "41950", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71309, + 52.05353 + ] + }, + "properties": { + "openplaque:id": "47031" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71621, + 52.05534 + ] + }, + "properties": { + "openplaque:id": "50835", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7161, + 52.05531 + ] + }, + "properties": { + "openplaque:id": "50836", + "addr:full": "20 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.70371, + 52.06663 + ] + }, + "properties": { + "openplaque:id": "9908", + "addr:full": "Venns Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.13148, + 51.373 + ] + }, + "properties": { + "openplaque:id": "3294", + "addr:full": "Herne Bay" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40947, + 51.36943 + ] + }, + "properties": { + "openplaque:id": "8689", + "addr:full": "15 (?) West Grove" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07648, + 51.7963 + ] + }, + "properties": { + "openplaque:id": "30558", + "addr:full": "78 Fore Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07748, + 51.79623 + ] + }, + "properties": { + "openplaque:id": "30559", + "addr:full": "\"Shire Hall", + "date_start": "Fore Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08795, + 51.79751 + ] + }, + "properties": { + "openplaque:id": "30561", + "addr:full": "\"Sele Mill", + "date_start": "North Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0811, + 51.79685 + ] + }, + "properties": { + "openplaque:id": "30562", + "addr:full": "\"Wallace House", + "date_start": "11 St Andrews Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07759, + 51.79603 + ] + }, + "properties": { + "openplaque:id": "30567", + "addr:full": "Fore Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07982, + 51.79594 + ] + }, + "properties": { + "openplaque:id": "30568", + "addr:full": "Castle Grounds" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08054, + 51.7971 + ] + }, + "properties": { + "openplaque:id": "30570", + "addr:full": "26 Old Cross" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07314, + 51.7991 + ] + }, + "properties": { + "openplaque:id": "54606", + "addr:full": "Mill Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07896, + 51.7961 + ] + }, + "properties": { + "openplaque:id": "54656", + "addr:full": "The Wash" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08046, + 51.79823 + ] + }, + "properties": { + "openplaque:id": "54675", + "addr:full": "Hartham Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10051, + 54.97008 + ] + }, + "properties": { + "openplaque:id": "10297", + "addr:full": "\"Robbs of Hexham", + "date_start": "48 Fore Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09883, + 54.9715 + ] + }, + "properties": { + "openplaque:id": "42615", + "addr:full": "\"Wentworth car park", + "date_start": "Alemouth Rd\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.101, + 54.9716 + ] + }, + "properties": { + "openplaque:id": "50018", + "addr:full": "Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.20796, + 53.60445 + ] + }, + "properties": { + "openplaque:id": "41383", + "addr:full": "\"Crimble Hall", + "date_start": "Crimble Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23256, + 53.56819 + ] + }, + "properties": { + "openplaque:id": "42614", + "addr:full": "Birch Services M62" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21163, + 53.59616 + ] + }, + "properties": { + "openplaque:id": "51660", + "addr:full": "\"Mutual Mills", + "date_start": "Aspinall Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.50335, + 51.32106 + ] + }, + "properties": { + "openplaque:id": "41365", + "addr:full": "Bungay's Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.74745, + 51.63131 + ] + }, + "properties": { + "openplaque:id": "12400", + "addr:full": "\"Strawberry Patch", + "date_start": "The Greenway\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73093, + 51.62103 + ] + }, + "properties": { + "openplaque:id": "12401", + "addr:full": "\"Old Mill Cottage", + "date_start": "Bassetsbury Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7921, + 51.64236 + ] + }, + "properties": { + "openplaque:id": "12622", + "addr:full": "Portway Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.75214, + 51.6304 + ] + }, + "properties": { + "openplaque:id": "5570", + "addr:full": "6 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.75025, + 51.62677 + ] + }, + "properties": { + "openplaque:id": "5572", + "addr:full": "Wycombe Abbey School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.74989, + 51.62903 + ] + }, + "properties": { + "openplaque:id": "5594", + "addr:full": "\"Bakers Oven and adjacent", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97761, + 51.22548 + ] + }, + "properties": { + "openplaque:id": "40668" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.69168, + 50.74534 + ] + }, + "properties": { + "openplaque:id": "30983", + "addr:full": "\"Southridge", + "date_start": "3 Highland Avenue \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.63804, + 53.73966 + ] + }, + "properties": { + "openplaque:id": "10115", + "addr:full": "33 Hoghton Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.08092, + 54.45973 + ] + }, + "properties": { + "openplaque:id": "10462", + "addr:full": "Ballynahinch Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.08224, + 54.46119 + ] + }, + "properties": { + "openplaque:id": "10693", + "addr:full": "\"Hillsborough fort", + "date_start": "Co Down\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.63917, + 52.87277 + ] + }, + "properties": { + "openplaque:id": "42012", + "addr:full": "Hilton House", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.37266, + 52.543 + ] + }, + "properties": { + "openplaque:id": "41629", + "addr:full": "Great Meeting Unitarian Chapel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3729, + 52.54293 + ] + }, + "properties": { + "openplaque:id": "41630", + "addr:full": "Great Meeting Unitarian Chapel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3673, + 52.54199 + ] + }, + "properties": { + "openplaque:id": "41631", + "addr:full": "\"Above archway to Cross Keys Yard", + "date_start": "Castle Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.36405, + 52.54205 + ] + }, + "properties": { + "openplaque:id": "41632", + "addr:full": "\"Queens Park Court", + "date_start": "London Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.37365, + 52.54043 + ] + }, + "properties": { + "openplaque:id": "41633", + "addr:full": "\"Elements Nightclub", + "date_start": "The Horsefair\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3738, + 52.54329 + ] + }, + "properties": { + "openplaque:id": "41634", + "addr:full": "\"Framework Knitters Museum", + "date_start": "Lower Bond Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3699, + 52.54173 + ] + }, + "properties": { + "openplaque:id": "41635", + "addr:full": "35 Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.37324, + 52.54172 + ] + }, + "properties": { + "openplaque:id": "41636", + "addr:full": "\"Natwest Bank", + "date_start": "The Borough\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.36929, + 52.54215 + ] + }, + "properties": { + "openplaque:id": "41641", + "addr:full": "\"Crown Court", + "date_start": "Castle Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.36306, + 52.54542 + ] + }, + "properties": { + "openplaque:id": "41642", + "addr:full": "Mount Grace School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.37246, + 52.54567 + ] + }, + "properties": { + "openplaque:id": "41643", + "addr:full": "\"Jilly Flowers Florist", + "date_start": "Upper Bond Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.36618, + 52.54233 + ] + }, + "properties": { + "openplaque:id": "41644", + "addr:full": "St Peter’s Catholic Primary School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.37323, + 52.54185 + ] + }, + "properties": { + "openplaque:id": "41645", + "addr:full": "\"Hansom Court", + "date_start": "The Borough\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.36903, + 52.54211 + ] + }, + "properties": { + "openplaque:id": "42878", + "addr:full": "Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.36884, + 52.54289 + ] + }, + "properties": { + "openplaque:id": "42974", + "addr:full": "\"The Greyhound", + "date_start": "New Buildings\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.33348, + 52.60122 + ] + }, + "properties": { + "openplaque:id": "43880", + "addr:full": "Mallory Park Racing Circuit", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3742, + 52.54069 + ] + }, + "properties": { + "openplaque:id": "50124", + "addr:full": "\" The Edwards Centre", + "date_start": "Regent Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.37039, + 52.54251 + ] + }, + "properties": { + "openplaque:id": "51860", + "addr:full": "\"Brooks Yard", + "date_start": "Stockwell Head\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82687, + 50.91042 + ] + }, + "properties": { + "openplaque:id": "8485", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.51067, + 51.7425 + ] + }, + "properties": { + "openplaque:id": "4858", + "addr:full": "\"Ty Mawr", + "date_start": "Off Crawshay Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2789, + 51.94732 + ] + }, + "properties": { + "openplaque:id": "9474", + "addr:full": "20 Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27617, + 51.94789 + ] + }, + "properties": { + "openplaque:id": "9475", + "addr:full": "Stairs near the River Hiz" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01204, + 51.75955 + ] + }, + "properties": { + "openplaque:id": "53199", + "addr:full": "68 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9855, + 53.46524 + ] + }, + "properties": { + "openplaque:id": "8038", + "addr:full": "Etherow Lodge", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78642, + 53.57015 + ] + }, + "properties": { + "openplaque:id": "40792", + "addr:full": "\"Picturedrome", + "date_start": "Market Walk\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79065, + 53.56852 + ] + }, + "properties": { + "openplaque:id": "41114", + "addr:full": "\"Lower Mill", + "date_start": "Lower Mill Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78505, + 53.57325 + ] + }, + "properties": { + "openplaque:id": "7522", + "addr:full": "Huddersfield Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08896, + 52.90707 + ] + }, + "properties": { + "openplaque:id": "51370", + "addr:full": "23 Lees Yard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.63221, + 53.31135 + ] + }, + "properties": { + "openplaque:id": "50188", + "addr:full": "St Cybi Churchyard near Victoria Road", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.63284, + 53.31134 + ] + }, + "properties": { + "openplaque:id": "50189", + "addr:full": "St Cybi Churchyard near Victoria Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.82933, + 54.64006 + ] + }, + "properties": { + "openplaque:id": "10969", + "addr:full": "Church Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.8307, + 54.6376 + ] + }, + "properties": { + "openplaque:id": "6994", + "addr:full": "'Fernbank' 117 Downshire Road", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.82311, + 54.64241 + ] + }, + "properties": { + "openplaque:id": "7186", + "addr:full": "9 Croft Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.83702, + 54.64147 + ] + }, + "properties": { + "openplaque:id": "7188", + "addr:full": "Hibernia Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.83297, + 54.64274 + ] + }, + "properties": { + "openplaque:id": "7212", + "addr:full": "High Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18878, + 50.79983 + ] + }, + "properties": { + "openplaque:id": "42048", + "addr:full": "\"Costa Coffee", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.55633, + 53.66089 + ] + }, + "properties": { + "openplaque:id": "11477", + "addr:full": "Tithe Barn Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.55609, + 53.66096 + ] + }, + "properties": { + "openplaque:id": "9210", + "addr:full": "Tithe Barn Street", + "date_start": "1989" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54076, + 53.65515 + ] + }, + "properties": { + "openplaque:id": "9251", + "addr:full": "Horbury Junction Industrial Estate", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11649, + 53.2081 + ] + }, + "properties": { + "openplaque:id": "3678", + "addr:full": "5 Church Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11222, + 53.20827 + ] + }, + "properties": { + "openplaque:id": "50027", + "addr:full": "40 East Street", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22046, + 51.55746 + ] + }, + "properties": { + "openplaque:id": "10554", + "addr:full": "Station Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32938, + 51.06086 + ] + }, + "properties": { + "openplaque:id": "11148", + "addr:full": "18 The Causeway" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33233, + 51.06319 + ] + }, + "properties": { + "openplaque:id": "30177", + "addr:full": "West Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33178, + 51.06316 + ] + }, + "properties": { + "openplaque:id": "30179", + "addr:full": "West Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33163, + 51.06311 + ] + }, + "properties": { + "openplaque:id": "30180", + "addr:full": "West Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33118, + 51.06303 + ] + }, + "properties": { + "openplaque:id": "30181", + "addr:full": "West Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32632, + 51.06133 + ] + }, + "properties": { + "openplaque:id": "49156" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32821, + 51.06035 + ] + }, + "properties": { + "openplaque:id": "49157" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3289, + 51.06178 + ] + }, + "properties": { + "openplaque:id": "49158" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32921, + 51.06236 + ] + }, + "properties": { + "openplaque:id": "49159" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32924, + 51.06239 + ] + }, + "properties": { + "openplaque:id": "49160" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32933, + 51.06247 + ] + }, + "properties": { + "openplaque:id": "49161" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3295, + 51.06244 + ] + }, + "properties": { + "openplaque:id": "49163" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32947, + 51.06244 + ] + }, + "properties": { + "openplaque:id": "49164" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32956, + 51.06244 + ] + }, + "properties": { + "openplaque:id": "49165" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32966, + 51.0625 + ] + }, + "properties": { + "openplaque:id": "49166" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32991, + 51.06258 + ] + }, + "properties": { + "openplaque:id": "49167" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33008, + 51.06263 + ] + }, + "properties": { + "openplaque:id": "49168" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33041, + 51.06276 + ] + }, + "properties": { + "openplaque:id": "49169" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3305, + 51.06284 + ] + }, + "properties": { + "openplaque:id": "49170" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33058, + 51.06287 + ] + }, + "properties": { + "openplaque:id": "49171" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33065, + 51.06288 + ] + }, + "properties": { + "openplaque:id": "49172" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33073, + 51.06288 + ] + }, + "properties": { + "openplaque:id": "49173" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33081, + 51.0629 + ] + }, + "properties": { + "openplaque:id": "49174" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33109, + 51.063 + ] + }, + "properties": { + "openplaque:id": "49175" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33114, + 51.06296 + ] + }, + "properties": { + "openplaque:id": "49176" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33158, + 51.06317 + ] + }, + "properties": { + "openplaque:id": "49177" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33208, + 51.06328 + ] + }, + "properties": { + "openplaque:id": "49178" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3323, + 51.06332 + ] + }, + "properties": { + "openplaque:id": "49179" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33297, + 51.06301 + ] + }, + "properties": { + "openplaque:id": "49180" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32917, + 51.06144 + ] + }, + "properties": { + "openplaque:id": "51579", + "addr:full": "9 Causeway" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32932, + 51.0593 + ] + }, + "properties": { + "openplaque:id": "51580", + "addr:full": "1 Denne Rd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1625, + 50.8237 + ] + }, + "properties": { + "openplaque:id": "1036", + "addr:full": "42 Brunswick Terrace", + "date_start": "1952" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1659, + 50.8249 + ] + }, + "properties": { + "openplaque:id": "1043", + "addr:full": "12 First Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1755, + 50.8282 + ] + }, + "properties": { + "openplaque:id": "1044", + "addr:full": "156 Church Road", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1742, + 50.8248 + ] + }, + "properties": { + "openplaque:id": "1045", + "addr:full": "\"Courtenay Tye", + "date_start": "Courtenay Terrace\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1581, + 50.8301 + ] + }, + "properties": { + "openplaque:id": "1122", + "addr:full": "St Annes Well Gardens", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2057, + 50.8333 + ] + }, + "properties": { + "openplaque:id": "1131", + "addr:full": "9 Worcester Villas" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15616, + 50.8268 + ] + }, + "properties": { + "openplaque:id": "1252", + "addr:full": "29-30 Brunswick Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1596, + 50.8243 + ] + }, + "properties": { + "openplaque:id": "1261", + "addr:full": "45 Brunswick Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1684, + 50.8287 + ] + }, + "properties": { + "openplaque:id": "1262", + "addr:full": "The Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17884, + 50.83832 + ] + }, + "properties": { + "openplaque:id": "12886", + "addr:full": "15 Frith Road", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1755, + 50.8258 + ] + }, + "properties": { + "openplaque:id": "1907", + "addr:full": "Osborne Villas" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18392, + 50.8389 + ] + }, + "properties": { + "openplaque:id": "2064", + "addr:full": "222 Old Shoreham Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.194, + 50.8295 + ] + }, + "properties": { + "openplaque:id": "2065", + "addr:full": "45 Wish Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16292, + 50.8332 + ] + }, + "properties": { + "openplaque:id": "2597", + "addr:full": "87 Lorna Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16467, + 50.8335 + ] + }, + "properties": { + "openplaque:id": "2762", + "addr:full": "\"Cambridge House", + "date_start": "Cambridge Grove\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18447, + 50.83001 + ] + }, + "properties": { + "openplaque:id": "40313", + "addr:full": "\"Aldrington House", + "date_start": "New Church Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16034, + 50.82943 + ] + }, + "properties": { + "openplaque:id": "41384", + "addr:full": "109 Lansdowne Place", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16632, + 50.82709 + ] + }, + "properties": { + "openplaque:id": "52354", + "addr:full": "14 Church Road", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17313, + 50.8317 + ] + }, + "properties": { + "openplaque:id": "6754", + "addr:full": "8 Clarendon Villas", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17748, + 50.82444 + ] + }, + "properties": { + "openplaque:id": "7542", + "addr:full": "St Aubyns Mansions", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17749, + 50.82444 + ] + }, + "properties": { + "openplaque:id": "7543", + "addr:full": "St Aubyns Mansions", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1568, + 50.8245 + ] + }, + "properties": { + "openplaque:id": "977", + "addr:full": "Waterloo Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15884, + 50.82353 + ] + }, + "properties": { + "openplaque:id": "978", + "addr:full": "2 Brunswick Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15834, + 50.8243 + ] + }, + "properties": { + "openplaque:id": "980", + "addr:full": "17 Brunswick Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1599, + 50.8237 + ] + }, + "properties": { + "openplaque:id": "985", + "addr:full": "53 Brunswick Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16104, + 50.8246 + ] + }, + "properties": { + "openplaque:id": "986", + "addr:full": "4 Lansdowne Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1585, + 50.8232 + ] + }, + "properties": { + "openplaque:id": "987", + "addr:full": "15 Brunswick Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1609, + 50.825 + ] + }, + "properties": { + "openplaque:id": "988", + "addr:full": "16 Lansdowne Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1572, + 50.8309 + ] + }, + "properties": { + "openplaque:id": "989", + "addr:full": "\"St Annes Court", + "date_start": "Nizells Avenue\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1631, + 50.8273 + ] + }, + "properties": { + "openplaque:id": "992", + "addr:full": "13 Palmeria Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.74913, + 53.44129 + ] + }, + "properties": { + "openplaque:id": "43696", + "addr:full": "King's Tree" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.20161, + 53.03543 + ] + }, + "properties": { + "openplaque:id": "27945", + "addr:full": "182 Beardall Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.809, + 53.62501 + ] + }, + "properties": { + "openplaque:id": "10981", + "addr:full": "Beaumont Park", + "date_start": "1921" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79058, + 53.6283 + ] + }, + "properties": { + "openplaque:id": "1753", + "addr:full": "Close Hill Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7875, + 53.624 + ] + }, + "properties": { + "openplaque:id": "1754", + "addr:full": "Newsome Rd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.76832, + 53.6575 + ] + }, + "properties": { + "openplaque:id": "40065", + "addr:full": "\"B&Q Car Park", + "date_start": "Leeds Road Retail Park\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78439, + 53.64843 + ] + }, + "properties": { + "openplaque:id": "43632", + "addr:full": "\"Railway Station", + "date_start": "St. George's Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33182, + 53.74322 + ] + }, + "properties": { + "openplaque:id": "11837", + "addr:full": "Bishop Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36879, + 53.76879 + ] + }, + "properties": { + "openplaque:id": "33125", + "addr:full": "\"Dennison Centre", + "date_start": "Cottingham Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35282, + 53.76801 + ] + }, + "properties": { + "openplaque:id": "39387", + "addr:full": "\"Newland House", + "date_start": "Cottingham Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33872, + 53.74369 + ] + }, + "properties": { + "openplaque:id": "40561", + "addr:full": "Carr Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33872, + 53.74369 + ] + }, + "properties": { + "openplaque:id": "40562", + "addr:full": "\"Maritime Museum", + "date_start": "Carr Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33887, + 53.7437 + ] + }, + "properties": { + "openplaque:id": "40563", + "addr:full": "\"Maritime Museum", + "date_start": "Carr Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33887, + 53.7437 + ] + }, + "properties": { + "openplaque:id": "40564", + "addr:full": "\"Maritime Museum", + "date_start": "Carr Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3356, + 53.74161 + ] + }, + "properties": { + "openplaque:id": "42641", + "addr:full": "Souht Church Side" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35899, + 53.73756 + ] + }, + "properties": { + "openplaque:id": "43973", + "addr:full": "114 Coltman Street", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36316, + 53.73531 + ] + }, + "properties": { + "openplaque:id": "44768", + "addr:full": "Hessle Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36346, + 53.7354 + ] + }, + "properties": { + "openplaque:id": "44801", + "addr:full": "Hessle Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3633, + 53.73549 + ] + }, + "properties": { + "openplaque:id": "44802", + "addr:full": "Hessle Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33293, + 53.74442 + ] + }, + "properties": { + "openplaque:id": "47027" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35224, + 53.76041 + ] + }, + "properties": { + "openplaque:id": "48750", + "addr:full": "64 Pearson Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33452, + 53.73828 + ] + }, + "properties": { + "openplaque:id": "49374", + "addr:full": "\"Riverside House", + "date_start": "Nelson Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3575, + 53.76391 + ] + }, + "properties": { + "openplaque:id": "51407", + "addr:full": "\"The Grafton", + "date_start": "Grafton Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35854, + 53.76428 + ] + }, + "properties": { + "openplaque:id": "51408" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36015, + 53.75415 + ] + }, + "properties": { + "openplaque:id": "51409" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33501, + 53.73798 + ] + }, + "properties": { + "openplaque:id": "51414", + "addr:full": "\"The Minerva Public House", + "date_start": "Pier Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33746, + 53.74107 + ] + }, + "properties": { + "openplaque:id": "51415" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37193, + 53.76734 + ] + }, + "properties": { + "openplaque:id": "51418", + "addr:full": "Newland Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30764, + 53.78198 + ] + }, + "properties": { + "openplaque:id": "51419", + "addr:full": "16 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67271, + 53.7316 + ] + }, + "properties": { + "openplaque:id": "51422", + "addr:full": "\"Main Street", + "date_start": "Broomfleet\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30752, + 53.78192 + ] + }, + "properties": { + "openplaque:id": "51558", + "addr:full": "16 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33573, + 53.74093 + ] + }, + "properties": { + "openplaque:id": "7770", + "addr:full": "Castle Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33771, + 53.74752 + ] + }, + "properties": { + "openplaque:id": "7781", + "addr:full": "\"New Theatre", + "date_start": "Kingston Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33128, + 53.74375 + ] + }, + "properties": { + "openplaque:id": "7783", + "addr:full": "Chapel Lane", + "date_start": "1994" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33905, + 53.74344 + ] + }, + "properties": { + "openplaque:id": "7784", + "addr:full": "\"Ferens Art Gallery", + "date_start": "Queen Victoria Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33527, + 53.7378 + ] + }, + "properties": { + "openplaque:id": "7786", + "addr:full": "Pier", + "date_start": "1988" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3089, + 53.75686 + ] + }, + "properties": { + "openplaque:id": "7787", + "addr:full": "365 Holderness Road", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33577, + 53.74161 + ] + }, + "properties": { + "openplaque:id": "7788", + "addr:full": "Hands on History Museum", + "date_start": "1988" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33342, + 53.75383 + ] + }, + "properties": { + "openplaque:id": "7790", + "addr:full": "Bromley Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35244, + 53.74638 + ] + }, + "properties": { + "openplaque:id": "7793", + "addr:full": "Park Street", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.334, + 53.73835 + ] + }, + "properties": { + "openplaque:id": "7795", + "addr:full": "\"Old ticket office", + "date_start": "opposite the Victoria pier\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37406, + 53.73908 + ] + }, + "properties": { + "openplaque:id": "7797", + "addr:full": "St Georges Road", + "date_start": "1988" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32219, + 53.74956 + ] + }, + "properties": { + "openplaque:id": "7798", + "addr:full": "\"Kingston Works", + "date_start": "Dansom Lane South\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33091, + 53.7435 + ] + }, + "properties": { + "openplaque:id": "7800", + "addr:full": "\"Maister House", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33795, + 53.74107 + ] + }, + "properties": { + "openplaque:id": "7802", + "addr:full": "\"Ask restaurant", + "date_start": "corner of Prince's Dockside and Castle Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32994, + 53.74626 + ] + }, + "properties": { + "openplaque:id": "7805", + "addr:full": "\"Dock Office Row", + "date_start": "opposite North Walls\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32305, + 53.78687 + ] + }, + "properties": { + "openplaque:id": "7810", + "addr:full": "\"Bransholme Library", + "date_start": "Northpoint Centre\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33936, + 53.7397 + ] + }, + "properties": { + "openplaque:id": "7811", + "addr:full": "Warehouse", + "date_start": "1997" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.29781, + 53.76224 + ] + }, + "properties": { + "openplaque:id": "7813", + "addr:full": "The windmill on Holderness Road", + "date_start": "1994" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36151, + 53.74033 + ] + }, + "properties": { + "openplaque:id": "7814", + "addr:full": "163 Coltman Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33695, + 53.74228 + ] + }, + "properties": { + "openplaque:id": "7815", + "addr:full": "\"The Mission", + "date_start": "Posterngate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37915, + 53.74465 + ] + }, + "properties": { + "openplaque:id": "7817", + "addr:full": "\"34", + "date_start": "De la Pole Avenue\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34883, + 53.74869 + ] + }, + "properties": { + "openplaque:id": "7821", + "addr:full": "Hall Street", + "date_start": "1990" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35742, + 53.74219 + ] + }, + "properties": { + "openplaque:id": "7823", + "addr:full": "Linnaeus Street", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34343, + 53.73859 + ] + }, + "properties": { + "openplaque:id": "7825", + "addr:full": "\"Recreation centre", + "date_start": "corner of Commercial Lane and Kingston Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36438, + 53.75683 + ] + }, + "properties": { + "openplaque:id": "8656", + "addr:full": "\"80", + "date_start": "Westbourne Avenue\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33765, + 53.74078 + ] + }, + "properties": { + "openplaque:id": "8732", + "addr:full": "\"Wall running between Humber Dock Street and the Marina", + "date_start": "close to the junction with Castle Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33936, + 53.7397 + ] + }, + "properties": { + "openplaque:id": "8777", + "addr:full": "Railway Street", + "date_start": "1987" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30627, + 53.78121 + ] + }, + "properties": { + "openplaque:id": "9007", + "addr:full": "\"30 Church Street", + "date_start": "Sutton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36648, + 53.75638 + ] + }, + "properties": { + "openplaque:id": "9191", + "addr:full": "89 Westbourne Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36413, + 53.7579 + ] + }, + "properties": { + "openplaque:id": "9277", + "addr:full": "\"85", + "date_start": "Park Avenue\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36185, + 53.75666 + ] + }, + "properties": { + "openplaque:id": "9278", + "addr:full": "\"27", + "date_start": "Westbourne Avenue\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.367, + 53.75806 + ] + }, + "properties": { + "openplaque:id": "9337", + "addr:full": "\"168", + "date_start": "Park Avenue\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36794, + 53.7578 + ] + }, + "properties": { + "openplaque:id": "9338", + "addr:full": "\"127", + "date_start": "Park Avenue\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37144, + 53.76543 + ] + }, + "properties": { + "openplaque:id": "9349", + "addr:full": "105 Newland Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33111, + 53.73992 + ] + }, + "properties": { + "openplaque:id": "9594", + "addr:full": "Tidal Barrage" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5159, + 51.4137 + ] + }, + "properties": { + "openplaque:id": "54291", + "addr:full": "103 High St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51561, + 51.41447 + ] + }, + "properties": { + "openplaque:id": "54292", + "addr:full": "High St." + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.50497, + 52.9508 + ] + }, + "properties": { + "openplaque:id": "10696", + "addr:full": "Old Hunstanton" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49388, + 52.951 + ] + }, + "properties": { + "openplaque:id": "3854", + "addr:full": "St Edmund's Point" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49378, + 52.9495 + ] + }, + "properties": { + "openplaque:id": "3856", + "addr:full": "Lighthouse Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48741, + 52.94208 + ] + }, + "properties": { + "openplaque:id": "49183", + "addr:full": "Cliff Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48848, + 52.94031 + ] + }, + "properties": { + "openplaque:id": "8375", + "addr:full": "Tourist Information / Town Hall - Greevegate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18448, + 52.33069 + ] + }, + "properties": { + "openplaque:id": "12096", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17957, + 52.32824 + ] + }, + "properties": { + "openplaque:id": "9758", + "addr:full": "29 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.78488, + 57.45012 + ] + }, + "properties": { + "openplaque:id": "42671", + "addr:full": "The Gordon Schools" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.78433, + 57.44697 + ] + }, + "properties": { + "openplaque:id": "50088", + "addr:full": "Duke Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3928, + 51.02777 + ] + }, + "properties": { + "openplaque:id": "11670", + "addr:full": "\"The Old Vicarage", + "date_start": "SO21 2JW\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1825, + 50.934 + ] + }, + "properties": { + "openplaque:id": "12557", + "addr:full": "\"Treeps", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.39647, + 50.8679 + ] + }, + "properties": { + "openplaque:id": "11573", + "addr:full": "Shore Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08241, + 51.07142 + ] + }, + "properties": { + "openplaque:id": "40646", + "addr:full": "52 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.45303, + 51.27622 + ] + }, + "properties": { + "openplaque:id": "42717" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.45688, + 51.56523 + ] + }, + "properties": { + "openplaque:id": "10558", + "addr:full": "Swakeleys Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.11732, + 51.21014 + ] + }, + "properties": { + "openplaque:id": "39158", + "addr:full": "4 Capstone Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82282, + 53.92339 + ] + }, + "properties": { + "openplaque:id": "11981", + "addr:full": "Wells Promenade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82145, + 53.91697 + ] + }, + "properties": { + "openplaque:id": "13096", + "addr:full": "Ilkley Moor" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8218, + 53.92063 + ] + }, + "properties": { + "openplaque:id": "1955", + "addr:full": "Crossbeck Road", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82428, + 53.92718 + ] + }, + "properties": { + "openplaque:id": "30028", + "addr:full": "Church Street (rear of All Saints Church)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82332, + 53.92676 + ] + }, + "properties": { + "openplaque:id": "30029", + "addr:full": "New Brook Street." + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.81751, + 53.92843 + ] + }, + "properties": { + "openplaque:id": "30030", + "addr:full": "Leeds Road", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82337, + 53.9259 + ] + }, + "properties": { + "openplaque:id": "7564", + "addr:full": "\"Crescent Hotel", + "date_start": "corner of Leeds Road and Brook Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.06262, + 55.61961 + ] + }, + "properties": { + "openplaque:id": "5830", + "addr:full": "\"12 High Street", + "date_start": "EH44 6HA\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.27801, + 56.8458 + ] + }, + "properties": { + "openplaque:id": "43941", + "date_start": "1997" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.27735, + 56.84526 + ] + }, + "properties": { + "openplaque:id": "48766", + "addr:full": "The Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.22593, + 57.47734 + ] + }, + "properties": { + "openplaque:id": "43725", + "addr:full": "14 Bridge Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.22941, + 57.4748 + ] + }, + "properties": { + "openplaque:id": "50973", + "addr:full": "Ardross Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.22319, + 57.47808 + ] + }, + "properties": { + "openplaque:id": "8422", + "addr:full": "\"old Customs and Excise Building (now Optical Express)", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15775, + 52.0552 + ] + }, + "properties": { + "openplaque:id": "2158", + "addr:full": "32 Foundation Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.16185, + 52.0533 + ] + }, + "properties": { + "openplaque:id": "2160", + "addr:full": "97 Fore Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15468, + 52.0578 + ] + }, + "properties": { + "openplaque:id": "2162", + "addr:full": "13 Tower Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.16009, + 52.0555 + ] + }, + "properties": { + "openplaque:id": "2164", + "addr:full": "9 Eagle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15196, + 52.0573 + ] + }, + "properties": { + "openplaque:id": "2165", + "addr:full": "2 Elm Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15391, + 52.0576 + ] + }, + "properties": { + "openplaque:id": "2166", + "addr:full": "The Walk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15598, + 52.0544 + ] + }, + "properties": { + "openplaque:id": "2167", + "addr:full": "19 Lower Brook Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.16131, + 52.0532 + ] + }, + "properties": { + "openplaque:id": "2168", + "addr:full": "90 Fore Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15295, + 52.055 + ] + }, + "properties": { + "openplaque:id": "2169", + "addr:full": "41 St Nicholas Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1598, + 52.0574 + ] + }, + "properties": { + "openplaque:id": "2170", + "addr:full": "Old Foundry Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.47694, + 52.62847 + ] + }, + "properties": { + "openplaque:id": "33112", + "addr:full": "33 Belmont Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.48689, + 52.6286 + ] + }, + "properties": { + "openplaque:id": "52117", + "addr:full": "New Road", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.48529, + 52.62768 + ] + }, + "properties": { + "openplaque:id": "8372", + "addr:full": "The Iron Bridge - Tontine Hill", + "date_start": "1979" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.48529, + 52.62768 + ] + }, + "properties": { + "openplaque:id": "8373", + "addr:full": "The Iron Bridge - Tontine Hill", + "date_start": "1979" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.48529, + 52.62768 + ] + }, + "properties": { + "openplaque:id": "8374", + "addr:full": "The Iron Bridge - Tontine Hill", + "date_start": "1979" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.49209, + 52.62945 + ] + }, + "properties": { + "openplaque:id": "9220", + "addr:full": "Museum of the Gorge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.65121, + 55.62365 + ] + }, + "properties": { + "openplaque:id": "28139", + "addr:full": "\"Drukken Cairn was near the Drukken Steps / Saint Bryde's Well", + "date_start": "relocated in 1976 to McKinnon Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.66823, + 55.61594 + ] + }, + "properties": { + "openplaque:id": "28140", + "addr:full": "\"167 High St", + "date_start": "Ayrshire" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.67957, + 55.60969 + ] + }, + "properties": { + "openplaque:id": "28148", + "addr:full": "\"Irvine harbourside (exact address TBC)", + "date_start": "Ayrshire\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.66284, + 55.61435 + ] + }, + "properties": { + "openplaque:id": "28149", + "addr:full": "\"4 Glasgow Vennel", + "date_start": "Ayrshire" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.33373, + 55.59075 + ] + }, + "properties": { + "openplaque:id": "54796", + "addr:full": "\"American Monument on the Oa", + "date_start": "Mull of Oa\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23651, + 51.82082 + ] + }, + "properties": { + "openplaque:id": "30786", + "addr:full": "\"World's End", + "date_start": "Collice Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53132, + 51.5478 + ] + }, + "properties": { + "openplaque:id": "2949", + "addr:full": "\"Pinewood Studios", + "date_start": "Pinewood Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49027, + 54.98163 + ] + }, + "properties": { + "openplaque:id": "49977", + "addr:full": "1 Wylam St", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.55509, + 55.47761 + ] + }, + "properties": { + "openplaque:id": "40479", + "addr:full": "\"27 Canongate", + "date_start": "TD8 6ER\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.55567, + 55.47733 + ] + }, + "properties": { + "openplaque:id": "42121" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35834, + 53.54385 + ] + }, + "properties": { + "openplaque:id": "40049", + "addr:full": "Fold Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11346, + 51.32141 + ] + }, + "properties": { + "openplaque:id": "49596" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90833, + 53.86834 + ] + }, + "properties": { + "openplaque:id": "12163", + "addr:full": "Cavendish St/North Queen St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.90107, + 53.86815 + ] + }, + "properties": { + "openplaque:id": "27989", + "addr:full": "Railway Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91503, + 53.85869 + ] + }, + "properties": { + "openplaque:id": "54700", + "addr:full": "Queen's Rd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91557, + 53.85369 + ] + }, + "properties": { + "openplaque:id": "8968", + "addr:full": "\"Museum of Rail Travel", + "date_start": "Ingrow\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.64088, + 51.07619 + ] + }, + "properties": { + "openplaque:id": "10481", + "addr:full": "\"Irving House", + "date_start": "Castle Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.64088, + 51.07619 + ] + }, + "properties": { + "openplaque:id": "10482", + "addr:full": "\"Irving House", + "date_start": "Castle Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.42974, + 55.59745 + ] + }, + "properties": { + "openplaque:id": "54499", + "addr:full": "The Knowes" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.43372, + 55.59893 + ] + }, + "properties": { + "openplaque:id": "54503", + "addr:full": "Bowmont Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.43266, + 55.59574 + ] + }, + "properties": { + "openplaque:id": "54506", + "addr:full": "Kelso Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.43365, + 55.59751 + ] + }, + "properties": { + "openplaque:id": "54507", + "addr:full": "\"Ednam House Hotel", + "date_start": "Bridge Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69598, + 51.8336 + ] + }, + "properties": { + "openplaque:id": "4000", + "addr:full": "London Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.74717, + 54.32931 + ] + }, + "properties": { + "openplaque:id": "11403", + "addr:full": "Stricklandgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.74646, + 54.32851 + ] + }, + "properties": { + "openplaque:id": "11407", + "addr:full": "Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.74961, + 54.33215 + ] + }, + "properties": { + "openplaque:id": "11512", + "addr:full": "Stricklandgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.74734, + 54.32401 + ] + }, + "properties": { + "openplaque:id": "11515", + "addr:full": "134 Highgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.74742, + 54.32687 + ] + }, + "properties": { + "openplaque:id": "11525", + "addr:full": "Highgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75072, + 54.32795 + ] + }, + "properties": { + "openplaque:id": "11528", + "addr:full": "Sepulchre Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.74513, + 54.31968 + ] + }, + "properties": { + "openplaque:id": "11536", + "addr:full": "Milnthorpe Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.74511, + 54.32571 + ] + }, + "properties": { + "openplaque:id": "28275", + "addr:full": "Riverside" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.74669, + 54.32355 + ] + }, + "properties": { + "openplaque:id": "30224", + "addr:full": "Highgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.74952, + 54.32646 + ] + }, + "properties": { + "openplaque:id": "30228", + "addr:full": "Beast Banks" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57892, + 52.34288 + ] + }, + "properties": { + "openplaque:id": "43731", + "addr:full": "Zizzi - King's Arms & Castle Hotel - Station Road / Warwick Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57995, + 52.34341 + ] + }, + "properties": { + "openplaque:id": "48776", + "addr:full": "Clock Tower Abbey End", + "date_start": "1973" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57979, + 52.34388 + ] + }, + "properties": { + "openplaque:id": "48777", + "addr:full": "Abbey End", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58368, + 52.34975 + ] + }, + "properties": { + "openplaque:id": "48778", + "addr:full": "39 High Street", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59236, + 52.34925 + ] + }, + "properties": { + "openplaque:id": "49062", + "addr:full": "19 Castle Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5827, + 52.34878 + ] + }, + "properties": { + "openplaque:id": "49065", + "addr:full": "Abbey Fields" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5845, + 52.34678 + ] + }, + "properties": { + "openplaque:id": "49075", + "addr:full": "Abbey Fields" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10581, + 51.32791 + ] + }, + "properties": { + "openplaque:id": "8290", + "addr:full": "\"Gardeners Tea Rooms", + "date_start": "23 Godstone Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10144, + 51.32505 + ] + }, + "properties": { + "openplaque:id": "8301", + "addr:full": "Kenley Railway Station", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.13755, + 54.5895 + ] + }, + "properties": { + "openplaque:id": "32962", + "addr:full": "East side of Derwent Water" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15672, + 54.57409 + ] + }, + "properties": { + "openplaque:id": "42327", + "addr:full": "Brandelhow Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.13695, + 54.60091 + ] + }, + "properties": { + "openplaque:id": "51103" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.72701, + 52.3982 + ] + }, + "properties": { + "openplaque:id": "4152", + "addr:full": "5 Market Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.71972, + 52.4045 + ] + }, + "properties": { + "openplaque:id": "4154", + "addr:full": "68 Bath Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73169, + 52.4012 + ] + }, + "properties": { + "openplaque:id": "4156", + "addr:full": "Lower Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.72845, + 52.40156 + ] + }, + "properties": { + "openplaque:id": "4158", + "addr:full": "\"Beech Cottage", + "date_start": "Tanners Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.74027, + 52.393 + ] + }, + "properties": { + "openplaque:id": "4162", + "addr:full": "\"Bryn Hafod", + "date_start": "Hall Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.72815, + 52.39811 + ] + }, + "properties": { + "openplaque:id": "50937", + "addr:full": "\"HSBC Bank", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.72764, + 52.40023 + ] + }, + "properties": { + "openplaque:id": "54100", + "addr:full": "Meeting Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73159, + 52.3936 + ] + }, + "properties": { + "openplaque:id": "54101", + "addr:full": "Kettering Railway Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99423, + 52.5377 + ] + }, + "properties": { + "openplaque:id": "40798", + "addr:full": "\"Village Hall", + "date_start": "Station Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99698, + 52.54286 + ] + }, + "properties": { + "openplaque:id": "10434", + "addr:full": "\"Little Lebanon", + "date_start": "70 Leicester Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99598, + 52.54457 + ] + }, + "properties": { + "openplaque:id": "50146", + "addr:full": "\"The Old House", + "date_start": "Main Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.26076, + 52.3909 + ] + }, + "properties": { + "openplaque:id": "1949", + "addr:full": "Mason Rd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.26048, + 52.38912 + ] + }, + "properties": { + "openplaque:id": "33041", + "addr:full": "Bennett Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24989, + 52.38386 + ] + }, + "properties": { + "openplaque:id": "41832", + "addr:full": "Castle Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.28909, + 51.74494 + ] + }, + "properties": { + "openplaque:id": "12610", + "addr:full": "Kidwelly Industrial Museum" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.55381, + 55.83636 + ] + }, + "properties": { + "openplaque:id": "43912", + "addr:full": "New Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.46904, + 51.91812 + ] + }, + "properties": { + "openplaque:id": "10275", + "addr:full": "Beavans Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0, + 0 + ] + }, + "properties": { + "openplaque:id": "43809", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.00844, + 54.06232 + ] + }, + "properties": { + "openplaque:id": "48702", + "addr:full": "Mourne Presbyterian Church", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.00871, + 54.06191 + ] + }, + "properties": { + "openplaque:id": "51657", + "addr:full": "Kilmorey Arms Hotel", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.54283, + 54.32186 + ] + }, + "properties": { + "openplaque:id": "7144", + "addr:full": "?", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.64896, + 54.39998 + ] + }, + "properties": { + "openplaque:id": "10465", + "addr:full": "The Church of St John the Evangelist" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.4889, + 56.13382 + ] + }, + "properties": { + "openplaque:id": "54491" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.03201, + 50.77748 + ] + }, + "properties": { + "openplaque:id": "42049", + "addr:full": "Village Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.7013, + 55.65353 + ] + }, + "properties": { + "openplaque:id": "12079", + "addr:full": "off Howgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3992, + 52.7508 + ] + }, + "properties": { + "openplaque:id": "1691", + "addr:full": "\"Bank Lane Arches Tower Gardens", + "date_start": "Millfleet\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3989, + 52.7516 + ] + }, + "properties": { + "openplaque:id": "1694", + "addr:full": "St. James' Street", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.39365, + 52.75519 + ] + }, + "properties": { + "openplaque:id": "1702", + "addr:full": "23-25 King Street", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3952, + 52.7508 + ] + }, + "properties": { + "openplaque:id": "1709", + "addr:full": "9 Nelson Street", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.39555, + 52.75062 + ] + }, + "properties": { + "openplaque:id": "1710", + "addr:full": "15 Nelson Street", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.39177, + 52.75648 + ] + }, + "properties": { + "openplaque:id": "1713", + "addr:full": "Common Staith Quay", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3987, + 52.7586 + ] + }, + "properties": { + "openplaque:id": "1717", + "addr:full": "Hextable Road", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3965, + 52.7566 + ] + }, + "properties": { + "openplaque:id": "1719", + "addr:full": "37-41 Chapel Street", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.39304, + 52.7532 + ] + }, + "properties": { + "openplaque:id": "3828", + "addr:full": "\"Bank House Hotel", + "date_start": "King's Staithe Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.39347, + 52.75419 + ] + }, + "properties": { + "openplaque:id": "3834", + "addr:full": "5 King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.39359, + 52.75498 + ] + }, + "properties": { + "openplaque:id": "3836", + "addr:full": "\"Old School Court", + "date_start": "21 King Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.39543, + 52.7569 + ] + }, + "properties": { + "openplaque:id": "3848", + "addr:full": "21 St Nicholas Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29791, + 52.6306 + ] + }, + "properties": { + "openplaque:id": "3996", + "addr:full": "Queen Street", + "date_start": "1985" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.39286, + 52.7538 + ] + }, + "properties": { + "openplaque:id": "42341", + "addr:full": "Purfleet Quay" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.39316, + 52.75214 + ] + }, + "properties": { + "openplaque:id": "42343", + "addr:full": "South Quay" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.395, + 52.75116 + ] + }, + "properties": { + "openplaque:id": "42346", + "addr:full": "2 Nelson Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.39767, + 52.75695 + ] + }, + "properties": { + "openplaque:id": "44760", + "addr:full": "Chapel Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3941, + 52.7521 + ] + }, + "properties": { + "openplaque:id": "8639", + "addr:full": "31 and 33 Queen Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.39439, + 52.75211 + ] + }, + "properties": { + "openplaque:id": "8642", + "addr:full": "\"Guildhall", + "date_start": "Saturday Market Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.39899, + 52.75161 + ] + }, + "properties": { + "openplaque:id": "9751", + "addr:full": "St James St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30225, + 51.41082 + ] + }, + "properties": { + "openplaque:id": "39310", + "addr:full": "\"In the foyer", + "date_start": "Lloyds Bank\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27546, + 51.4238 + ] + }, + "properties": { + "openplaque:id": "4872", + "addr:full": "Canbury School", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2857, + 51.4198 + ] + }, + "properties": { + "openplaque:id": "5428", + "addr:full": "\"2 Liverpool Rd", + "date_start": "Kingston Upon Thames\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.56658, + 50.34116 + ] + }, + "properties": { + "openplaque:id": "40669" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21136, + 51.29481 + ] + }, + "properties": { + "openplaque:id": "8300", + "addr:full": "Kingswood Railway Station", + "date_start": "1997" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.63719, + 56.00664 + ] + }, + "properties": { + "openplaque:id": "43931" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.57717, + 54.9044 + ] + }, + "properties": { + "openplaque:id": "11495", + "addr:full": "Arbigland Estate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24413, + 53.09804 + ] + }, + "properties": { + "openplaque:id": "49440", + "addr:full": "Kingsway", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59994, + 54.20487 + ] + }, + "properties": { + "openplaque:id": "41267", + "addr:full": "Church Brow", + "date_start": "1974" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59706, + 54.20248 + ] + }, + "properties": { + "openplaque:id": "54462", + "addr:full": "Salt Pie Lane and Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93241, + 54.27027 + ] + }, + "properties": { + "openplaque:id": "50548", + "addr:full": "\"3", + "date_start": "High Market Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.16303, + 56.11172 + ] + }, + "properties": { + "openplaque:id": "10653", + "addr:full": "\"Adam Smith Theatre", + "date_start": "Bennochy Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05551, + 54.83594 + ] + }, + "properties": { + "openplaque:id": "41953", + "addr:full": "44 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05467, + 54.83644 + ] + }, + "properties": { + "openplaque:id": "49427", + "addr:full": "18 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9597, + 58.98229 + ] + }, + "properties": { + "openplaque:id": "40475", + "addr:full": "corner of Albert Street and The Strynd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00188, + 56.6742 + ] + }, + "properties": { + "openplaque:id": "3534", + "addr:full": "9 Brechin Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00267, + 56.6701 + ] + }, + "properties": { + "openplaque:id": "3536", + "addr:full": "4 Forfar Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00285, + 56.6701 + ] + }, + "properties": { + "openplaque:id": "3538", + "addr:full": "4 Glamis Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00489, + 56.67277 + ] + }, + "properties": { + "openplaque:id": "41919", + "addr:full": "Cumberland Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0018, + 56.67407 + ] + }, + "properties": { + "openplaque:id": "42087" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00179, + 56.67406 + ] + }, + "properties": { + "openplaque:id": "42088" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00353, + 56.67308 + ] + }, + "properties": { + "openplaque:id": "42089" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00353, + 56.67308 + ] + }, + "properties": { + "openplaque:id": "42090" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00397, + 56.67271 + ] + }, + "properties": { + "openplaque:id": "42091" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00489, + 56.67277 + ] + }, + "properties": { + "openplaque:id": "42093" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00489, + 56.67278 + ] + }, + "properties": { + "openplaque:id": "42094" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0, + 0 + ] + }, + "properties": { + "openplaque:id": "12805", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47067, + 54.0063 + ] + }, + "properties": { + "openplaque:id": "12806", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.37404, + 53.30686 + ] + }, + "properties": { + "openplaque:id": "12270", + "addr:full": "\"The Old Vicarage", + "date_start": "King Street/Drury Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3754, + 53.3043 + ] + }, + "properties": { + "openplaque:id": "28040", + "addr:full": "22-24 Princess Street", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.37489, + 53.30407 + ] + }, + "properties": { + "openplaque:id": "30265", + "addr:full": "Princess Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.37026, + 53.30191 + ] + }, + "properties": { + "openplaque:id": "30268", + "addr:full": "King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.37363, + 53.30697 + ] + }, + "properties": { + "openplaque:id": "30270", + "addr:full": "\"Ruskin Rooms", + "date_start": "Drury Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.37511, + 53.306 + ] + }, + "properties": { + "openplaque:id": "30271", + "addr:full": "Tatton Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.42964, + 53.34397 + ] + }, + "properties": { + "openplaque:id": "30607", + "addr:full": "\"Mere Court Hotel", + "date_start": "Warrington Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.37931, + 53.30362 + ] + }, + "properties": { + "openplaque:id": "30896", + "addr:full": "19 Gaskell Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.37858, + 53.30393 + ] + }, + "properties": { + "openplaque:id": "30897", + "addr:full": "17 Gaskell Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.37914, + 53.30276 + ] + }, + "properties": { + "openplaque:id": "42589", + "addr:full": "15 Stanley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.37222, + 53.30333 + ] + }, + "properties": { + "openplaque:id": "970", + "addr:full": "King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.03204, + 49.16933 + ] + }, + "properties": { + "openplaque:id": "10400", + "addr:full": "La Rue du Puits Mahaut" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.50948, + 54.91824 + ] + }, + "properties": { + "openplaque:id": "7640", + "addr:full": "Lambley Viaduct", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.80689, + 54.05025 + ] + }, + "properties": { + "openplaque:id": "10029", + "addr:full": "4 Hillside" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.804, + 54.04945 + ] + }, + "properties": { + "openplaque:id": "10245", + "addr:full": "23 Castle Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.80474, + 54.04915 + ] + }, + "properties": { + "openplaque:id": "10247", + "addr:full": "24 Castle Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.80168, + 54.04985 + ] + }, + "properties": { + "openplaque:id": "10248", + "addr:full": "76 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.8008, + 54.04978 + ] + }, + "properties": { + "openplaque:id": "10249", + "addr:full": "\"Banks Lyon", + "date_start": "Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.8025, + 54.04796 + ] + }, + "properties": { + "openplaque:id": "10254", + "addr:full": "King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.8016, + 54.04702 + ] + }, + "properties": { + "openplaque:id": "10256", + "addr:full": "44 King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.80115, + 54.04892 + ] + }, + "properties": { + "openplaque:id": "10257", + "addr:full": "Market Sqare" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.80654, + 54.04826 + ] + }, + "properties": { + "openplaque:id": "10258", + "addr:full": "Meeting House Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.80367, + 54.05033 + ] + }, + "properties": { + "openplaque:id": "10259", + "addr:full": "Mitre House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.79216, + 54.04831 + ] + }, + "properties": { + "openplaque:id": "10260", + "addr:full": "Moor Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7979, + 54.04936 + ] + }, + "properties": { + "openplaque:id": "10262", + "addr:full": "Moor Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.79779, + 54.04991 + ] + }, + "properties": { + "openplaque:id": "10268", + "addr:full": "St Leonard Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.80803, + 54.04884 + ] + }, + "properties": { + "openplaque:id": "28036", + "addr:full": "Railway Station", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.80352, + 54.04864 + ] + }, + "properties": { + "openplaque:id": "9604", + "addr:full": "75 Market Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32371, + 50.82837 + ] + }, + "properties": { + "openplaque:id": "42682", + "addr:full": "Lancing Library", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99789, + 55.15019 + ] + }, + "properties": { + "openplaque:id": "12520", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.82133, + 54.85242 + ] + }, + "properties": { + "openplaque:id": "51759", + "addr:full": "\"Larne Museum and Arts Centre", + "date_start": "Victoria Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46101, + 51.77029 + ] + }, + "properties": { + "openplaque:id": "9318", + "addr:full": "Market Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.36094, + 50.63654 + ] + }, + "properties": { + "openplaque:id": "42028", + "addr:full": "\"White Hart Hotel", + "date_start": "Broad Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.79686, + 52.10913 + ] + }, + "properties": { + "openplaque:id": "51941", + "addr:full": "Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52782, + 52.2928 + ] + }, + "properties": { + "openplaque:id": "1829", + "addr:full": "10 Lansdowne Circus", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54117, + 52.2937 + ] + }, + "properties": { + "openplaque:id": "1830", + "addr:full": "Clarendon Crescent", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53889, + 52.2897 + ] + }, + "properties": { + "openplaque:id": "1831", + "addr:full": "Portland Street", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53934, + 52.29334 + ] + }, + "properties": { + "openplaque:id": "1832", + "addr:full": "Napoleon III House - Clarendon Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53668, + 52.28853 + ] + }, + "properties": { + "openplaque:id": "1833", + "addr:full": "The Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52933, + 52.2903 + ] + }, + "properties": { + "openplaque:id": "1834", + "addr:full": "Holly Walk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52931, + 52.28506 + ] + }, + "properties": { + "openplaque:id": "1835", + "addr:full": "Russell Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53589, + 52.29147 + ] + }, + "properties": { + "openplaque:id": "40274", + "addr:full": "60-62 the Parade", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53104, + 52.29235 + ] + }, + "properties": { + "openplaque:id": "40275", + "addr:full": "3 Willes Road", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53547, + 52.29203 + ] + }, + "properties": { + "openplaque:id": "40667", + "addr:full": "Lansdowne Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5394, + 52.29519 + ] + }, + "properties": { + "openplaque:id": "41800" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53253, + 52.28478 + ] + }, + "properties": { + "openplaque:id": "42014", + "addr:full": "\"Birk & Nagra Chemist", + "date_start": "Bath Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54058, + 52.28944 + ] + }, + "properties": { + "openplaque:id": "42695", + "addr:full": "Portland Place West" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53249, + 52.29093 + ] + }, + "properties": { + "openplaque:id": "42700", + "addr:full": "\"The Counting House", + "date_start": "Kenilworth Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52407, + 52.3025 + ] + }, + "properties": { + "openplaque:id": "43556", + "addr:full": "\"1 Vicarage Road", + "date_start": "Lillington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53755, + 52.29194 + ] + }, + "properties": { + "openplaque:id": "43558", + "addr:full": "37 Warwick Street", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54481, + 52.29474 + ] + }, + "properties": { + "openplaque:id": "43559", + "addr:full": "18 Gaveston Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53001, + 52.28594 + ] + }, + "properties": { + "openplaque:id": "43560", + "addr:full": "New Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53147, + 52.28536 + ] + }, + "properties": { + "openplaque:id": "43561", + "addr:full": "13 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54489, + 52.2898 + ] + }, + "properties": { + "openplaque:id": "43563", + "addr:full": "\"La Pallas", + "date_start": "1 Warwick New Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54147, + 52.29537 + ] + }, + "properties": { + "openplaque:id": "43566", + "addr:full": "27 Rugby Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53086, + 52.29223 + ] + }, + "properties": { + "openplaque:id": "43569", + "addr:full": "6 Willes Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5414, + 52.28698 + ] + }, + "properties": { + "openplaque:id": "43570", + "addr:full": "9 Victoria Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53322, + 52.2924 + ] + }, + "properties": { + "openplaque:id": "48715", + "addr:full": "5 Willes Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5268, + 52.28906 + ] + }, + "properties": { + "openplaque:id": "49184", + "addr:full": "Willes Road Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54018, + 52.28845 + ] + }, + "properties": { + "openplaque:id": "49567", + "addr:full": "Adelaide Road Bridge", + "date_start": "1891" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5401, + 52.28826 + ] + }, + "properties": { + "openplaque:id": "49568", + "addr:full": "Adelaide Road Bridge", + "date_start": "1993" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54892, + 52.28639 + ] + }, + "properties": { + "openplaque:id": "49569", + "addr:full": "Princes Drive", + "date_start": "1923" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53058, + 52.28875 + ] + }, + "properties": { + "openplaque:id": "49611", + "addr:full": "Jephson Gardens", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53052, + 52.28701 + ] + }, + "properties": { + "openplaque:id": "49612", + "addr:full": "\"Mill Bridge", + "date_start": "Jephson Gardens\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53334, + 52.28655 + ] + }, + "properties": { + "openplaque:id": "49613", + "addr:full": "\"Victoria Bridge", + "date_start": "Parade\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53348, + 52.28667 + ] + }, + "properties": { + "openplaque:id": "49614", + "addr:full": "\"Victoria Bridge", + "date_start": "Parade\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53687, + 52.28711 + ] + }, + "properties": { + "openplaque:id": "49681", + "addr:full": "\"York Promenade", + "date_start": "Spa Gardens\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53348, + 52.28899 + ] + }, + "properties": { + "openplaque:id": "52934", + "addr:full": "\"Bericote House", + "date_start": "8 Hamilton Terrace\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53913, + 52.28598 + ] + }, + "properties": { + "openplaque:id": "52935", + "addr:full": "33 Avenue Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32993, + 51.29533 + ] + }, + "properties": { + "openplaque:id": "49334", + "addr:full": "North Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.94308, + 52.03476 + ] + }, + "properties": { + "openplaque:id": "41949", + "addr:full": "Church" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22064, + 60.00652 + ] + }, + "properties": { + "openplaque:id": "40285", + "addr:full": "Sand Lodge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54153, + 53.79298 + ] + }, + "properties": { + "openplaque:id": "10171", + "addr:full": "17-19 Bridge End" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54067, + 53.79701 + ] + }, + "properties": { + "openplaque:id": "10178", + "addr:full": "15 Kirkgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.66608, + 53.78296 + ] + }, + "properties": { + "openplaque:id": "12978", + "addr:full": "\"No 34 Fulneck", + "date_start": "Pudsey\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5524, + 53.8075 + ] + }, + "properties": { + "openplaque:id": "1689", + "addr:full": "\"Parkinson Building", + "date_start": "University of Leeds\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53524, + 53.79541 + ] + }, + "properties": { + "openplaque:id": "2039", + "addr:full": "Kirkgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54168, + 53.7938 + ] + }, + "properties": { + "openplaque:id": "2433", + "addr:full": "adjacent to the Leeds Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58299, + 53.83508 + ] + }, + "properties": { + "openplaque:id": "30379", + "addr:full": "\"Gatepost", + "date_start": "The Hollies" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54048, + 53.79587 + ] + }, + "properties": { + "openplaque:id": "30413", + "addr:full": "\"Corn Exchange", + "date_start": "Cloth Hall Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53458, + 53.79392 + ] + }, + "properties": { + "openplaque:id": "30959", + "addr:full": "\"Crown Point Bridge (North side", + "date_start": "on bank of River Aire)\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.60587, + 53.82241 + ] + }, + "properties": { + "openplaque:id": "33065", + "addr:full": "\"Abbey House Museum Gardens", + "date_start": "Abbey Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5669, + 53.81454 + ] + }, + "properties": { + "openplaque:id": "40468", + "addr:full": "\"6 Ash Grove", + "date_start": "Hyde Park\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54626, + 53.79597 + ] + }, + "properties": { + "openplaque:id": "41092", + "addr:full": "Boar Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5604, + 53.81761 + ] + }, + "properties": { + "openplaque:id": "41926", + "addr:full": "56 Cliff Road", + "date_start": "1991" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53591, + 53.7955 + ] + }, + "properties": { + "openplaque:id": "42609", + "addr:full": "Kirkgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48605, + 53.82375 + ] + }, + "properties": { + "openplaque:id": "42626", + "addr:full": "junction of Dib Lane and Grange Park Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53944, + 53.79959 + ] + }, + "properties": { + "openplaque:id": "44017", + "addr:full": "\"The Old Red Bus Station", + "date_start": "Vicar Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.547, + 53.7953 + ] + }, + "properties": { + "openplaque:id": "4922", + "addr:full": "New Station Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5279, + 53.80045 + ] + }, + "properties": { + "openplaque:id": "49245", + "addr:full": "\"Bridge Community Church", + "date_start": "Rider Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.64078, + 53.83199 + ] + }, + "properties": { + "openplaque:id": "49302", + "addr:full": "Horsforth New Road Side" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5449, + 53.7979 + ] + }, + "properties": { + "openplaque:id": "4948", + "addr:full": "2 Albion Pl" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54865, + 53.8057 + ] + }, + "properties": { + "openplaque:id": "5038", + "addr:full": "Blenheim Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54067, + 53.7928 + ] + }, + "properties": { + "openplaque:id": "5050", + "addr:full": "Hunslet Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49383, + 53.80274 + ] + }, + "properties": { + "openplaque:id": "50508", + "addr:full": "\"The Old Fire Station", + "date_start": "Gipton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54627, + 53.79226 + ] + }, + "properties": { + "openplaque:id": "50816", + "addr:full": "\"Asda House", + "date_start": "Aire Riverside path.\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53503, + 53.79351 + ] + }, + "properties": { + "openplaque:id": "50817", + "addr:full": "\"under the arch of Crownpoint Bridge", + "date_start": "Aire Riverside path\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51627, + 53.7976 + ] + }, + "properties": { + "openplaque:id": "5434", + "addr:full": "\"The Irish Centre", + "date_start": "York Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52923, + 53.8157 + ] + }, + "properties": { + "openplaque:id": "826", + "addr:full": "\"5 Hamilton Avenue", + "date_start": "LS7\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.62417, + 53.8076 + ] + }, + "properties": { + "openplaque:id": "828", + "addr:full": "\"The Barley Mow Inn", + "date_start": "Town Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53382, + 53.7989 + ] + }, + "properties": { + "openplaque:id": "832", + "addr:full": "\"Outside main entrance to West Yorkshire Playhouse", + "date_start": "Quarry Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54238, + 53.7947 + ] + }, + "properties": { + "openplaque:id": "850", + "addr:full": "3 Briggate", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53386, + 53.7971 + ] + }, + "properties": { + "openplaque:id": "852", + "addr:full": "\"The Wardrobe", + "date_start": "St Peters Square (by BBC North HQ)\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5566, + 53.802 + ] + }, + "properties": { + "openplaque:id": "855", + "addr:full": "\"2 Claremont Villas", + "date_start": "Clarendon Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0525, + 53.12216 + ] + }, + "properties": { + "openplaque:id": "27997", + "addr:full": "Macclesfield Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13996, + 52.6003 + ] + }, + "properties": { + "openplaque:id": "1359", + "addr:full": "9 Fayrhurst Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12113, + 52.64457 + ] + }, + "properties": { + "openplaque:id": "1482", + "addr:full": "Munnings Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1406, + 52.6342 + ] + }, + "properties": { + "openplaque:id": "1499", + "addr:full": "\"opposite the main entrance to Holiday Inn", + "date_start": "St. Nicholas Circle\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12226, + 52.6299 + ] + }, + "properties": { + "openplaque:id": "1500", + "addr:full": "9 Prebend Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10486, + 52.615 + ] + }, + "properties": { + "openplaque:id": "1501", + "addr:full": "244 London Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12671, + 52.6274 + ] + }, + "properties": { + "openplaque:id": "1504", + "addr:full": "100 Regent Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1346, + 52.63281 + ] + }, + "properties": { + "openplaque:id": "1505", + "addr:full": "\"the former Registry Office", + "date_start": "Pocklingtons Walk\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12384, + 52.6285 + ] + }, + "properties": { + "openplaque:id": "1506", + "addr:full": "\"The Belmont Hotel", + "date_start": "18 New Walk\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14721, + 52.6297 + ] + }, + "properties": { + "openplaque:id": "1509", + "addr:full": "\"Equity Shoes", + "date_start": "Western Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1349, + 52.6404 + ] + }, + "properties": { + "openplaque:id": "1514", + "addr:full": "\"Royce Institute", + "date_start": "Crane Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1307, + 52.6399 + ] + }, + "properties": { + "openplaque:id": "1515", + "addr:full": "\"Top Hat Terrace", + "date_start": "113-117 London Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13303, + 52.63627 + ] + }, + "properties": { + "openplaque:id": "1521", + "addr:full": "\"junction of High Street", + "date_start": "Gallowtree Gate and Haymarket\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13277, + 52.63205 + ] + }, + "properties": { + "openplaque:id": "1625", + "addr:full": "Welford Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11476, + 52.65415 + ] + }, + "properties": { + "openplaque:id": "41002", + "addr:full": "\"St. Patrick’s Catholic Primary School", + "date_start": "Harrison Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10219, + 52.61373 + ] + }, + "properties": { + "openplaque:id": "41729", + "addr:full": "19 Guilford Road", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1278, + 52.62933 + ] + }, + "properties": { + "openplaque:id": "50802", + "addr:full": "New Walk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87673, + 52.75405 + ] + }, + "properties": { + "openplaque:id": "7546", + "addr:full": "King Edward VII School", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66027, + 51.91612 + ] + }, + "properties": { + "openplaque:id": "40801", + "addr:full": "8 Lake Street", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66504, + 51.91566 + ] + }, + "properties": { + "openplaque:id": "50316", + "addr:full": "Church Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17031, + 55.97576 + ] + }, + "properties": { + "openplaque:id": "50077", + "addr:full": "Shore" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73891, + 52.22721 + ] + }, + "properties": { + "openplaque:id": "31151", + "addr:full": "2 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35019, + 50.78507 + ] + }, + "properties": { + "openplaque:id": "49263" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15119, + 60.15279 + ] + }, + "properties": { + "openplaque:id": "40266", + "addr:full": "Shetland\"", + "date_start": "\"Islesburgh Community Centre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.008, + 50.87233 + ] + }, + "properties": { + "openplaque:id": "1213", + "addr:full": "High Street", + "date_start": "1988" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.00676, + 50.8707 + ] + }, + "properties": { + "openplaque:id": "1294", + "addr:full": "Southover High Street", + "date_start": "1981" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.00631, + 50.8716 + ] + }, + "properties": { + "openplaque:id": "1302", + "addr:full": "Keere Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01119, + 50.8737 + ] + }, + "properties": { + "openplaque:id": "1306", + "addr:full": "Market Street", + "date_start": "1981" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01444, + 50.8741 + ] + }, + "properties": { + "openplaque:id": "1308", + "addr:full": "Friars Walk", + "date_start": "1983" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01444, + 50.8741 + ] + }, + "properties": { + "openplaque:id": "1309", + "addr:full": "Friars Walk", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0063, + 50.8719 + ] + }, + "properties": { + "openplaque:id": "1480", + "addr:full": "Bull House", + "date_start": "1931" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.00835, + 50.87306 + ] + }, + "properties": { + "openplaque:id": "1489", + "addr:full": "Precincts Castle", + "date_start": "1988" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0101, + 50.8729 + ] + }, + "properties": { + "openplaque:id": "1490", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01013, + 50.87304 + ] + }, + "properties": { + "openplaque:id": "1491", + "addr:full": "High Street", + "date_start": "1981" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0083, + 50.87236 + ] + }, + "properties": { + "openplaque:id": "1492", + "addr:full": "Saint Martin's Lane", + "date_start": "1983" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00075, + 50.87248 + ] + }, + "properties": { + "openplaque:id": "1640", + "addr:full": "Saint Anne's Crescent", + "date_start": "1986" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0091, + 50.87307 + ] + }, + "properties": { + "openplaque:id": "1673", + "addr:full": "Castle Ditch Lane", + "date_start": "1988" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.00956, + 50.87403 + ] + }, + "properties": { + "openplaque:id": "27948", + "addr:full": "Commercial Passage" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01767, + 50.87383 + ] + }, + "properties": { + "openplaque:id": "39407", + "addr:full": "Foundry Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00224, + 50.87354 + ] + }, + "properties": { + "openplaque:id": "40048", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01075, + 50.87325 + ] + }, + "properties": { + "openplaque:id": "43702", + "addr:full": "44 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.00928, + 50.8722 + ] + }, + "properties": { + "openplaque:id": "49135" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.00667, + 50.86927 + ] + }, + "properties": { + "openplaque:id": "49142" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82785, + 52.68356 + ] + }, + "properties": { + "openplaque:id": "30128", + "addr:full": "Market Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8328, + 52.68489 + ] + }, + "properties": { + "openplaque:id": "30211", + "addr:full": "Beacon St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.84967, + 52.69239 + ] + }, + "properties": { + "openplaque:id": "49733", + "addr:full": "Lyncroft House", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82914, + 52.68172 + ] + }, + "properties": { + "openplaque:id": "8609", + "addr:full": "St John Street", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83027, + 52.68285 + ] + }, + "properties": { + "openplaque:id": "8611", + "addr:full": "11 Bird Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83003, + 52.6828 + ] + }, + "properties": { + "openplaque:id": "8612", + "addr:full": "\"George Hotel", + "date_start": "12 and 14 Bird Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83215, + 52.68423 + ] + }, + "properties": { + "openplaque:id": "8614", + "addr:full": "Near the Garden of Rememberance (and Causeway Bridge) - Bird Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82349, + 52.68384 + ] + }, + "properties": { + "openplaque:id": "8615", + "addr:full": "50 Tamworth Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.833, + 52.68344 + ] + }, + "properties": { + "openplaque:id": "8621", + "addr:full": "Museum Gardens (on the plinth below the statue of Captain Smith)", + "date_start": "1914" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8308, + 52.68339 + ] + }, + "properties": { + "openplaque:id": "8622", + "addr:full": "off Bird Street (opposite New Minster House)", + "date_start": "1976" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82774, + 52.68072 + ] + }, + "properties": { + "openplaque:id": "8625", + "addr:full": "\"The Old Grammar School", + "date_start": "St John Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82774, + 52.68423 + ] + }, + "properties": { + "openplaque:id": "8650", + "addr:full": "\"Quonians House", + "date_start": "8 Dam Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.54644, + 53.23743 + ] + }, + "properties": { + "openplaque:id": "13119", + "addr:full": "\"Elm House", + "date_start": "Upper Long Leys Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53641, + 53.23396 + ] + }, + "properties": { + "openplaque:id": "27883", + "addr:full": "6 Minster Yard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53881, + 53.23412 + ] + }, + "properties": { + "openplaque:id": "30209", + "addr:full": "33 Steep Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53784, + 53.23441 + ] + }, + "properties": { + "openplaque:id": "32936", + "addr:full": "19 Minster Yard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53843, + 53.23296 + ] + }, + "properties": { + "openplaque:id": "39339", + "addr:full": "Steep Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53961, + 53.23136 + ] + }, + "properties": { + "openplaque:id": "39341", + "addr:full": "The Cardinal's Hat Plaque" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.54036, + 53.2292 + ] + }, + "properties": { + "openplaque:id": "39342", + "addr:full": "Lincoln Guildhall Saltergate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.54144, + 53.22678 + ] + }, + "properties": { + "openplaque:id": "39343", + "addr:full": "\"St. Mary le Wigford’s Church", + "date_start": "Saint Mary's Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53293, + 53.23326 + ] + }, + "properties": { + "openplaque:id": "39344", + "addr:full": "Pottergate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53773, + 53.22999 + ] + }, + "properties": { + "openplaque:id": "39346", + "addr:full": "Free School Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53866, + 53.23233 + ] + }, + "properties": { + "openplaque:id": "39349", + "addr:full": "2/3 Steep Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0813, + 51.01268 + ] + }, + "properties": { + "openplaque:id": "49140" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.04796, + 54.51293 + ] + }, + "properties": { + "openplaque:id": "10463", + "addr:full": "\"Post office", + "date_start": "Linenhall Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.04839, + 54.51051 + ] + }, + "properties": { + "openplaque:id": "10909", + "addr:full": "Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.04074, + 54.5124 + ] + }, + "properties": { + "openplaque:id": "7226", + "addr:full": "\"Castle House", + "date_start": "Castle Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.04135, + 54.51202 + ] + }, + "properties": { + "openplaque:id": "8421", + "addr:full": "\"Town Hall", + "date_start": "Castle Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.4698, + 50.4472 + ] + }, + "properties": { + "openplaque:id": "3670", + "addr:full": "\"Liskeard Station", + "date_start": "Station Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6463, + 54.43238 + ] + }, + "properties": { + "openplaque:id": "29930", + "addr:full": "Littlebeck Lane", + "date_start": "1935" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.64247, + 54.43714 + ] + }, + "properties": { + "openplaque:id": "43650", + "addr:full": "Red Barn Farm" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08273, + 53.66092 + ] + }, + "properties": { + "openplaque:id": "4168", + "addr:full": "\"New England Furniture Shop", + "date_start": "Todmorden Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09015, + 53.66034 + ] + }, + "properties": { + "openplaque:id": "4172", + "addr:full": "\"St James' Church", + "date_start": "Calderbrook\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53114, + 50.81129 + ] + }, + "properties": { + "openplaque:id": "12088", + "addr:full": "St. Flora's Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53311, + 50.8077 + ] + }, + "properties": { + "openplaque:id": "1801", + "addr:full": "19-27 St Winefrides Road", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99588, + 53.40583 + ] + }, + "properties": { + "openplaque:id": "10889", + "addr:full": "Liver Building" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97351, + 53.40136 + ] + }, + "properties": { + "openplaque:id": "10890", + "addr:full": "34 Rodney Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98368, + 53.41167 + ] + }, + "properties": { + "openplaque:id": "10891", + "addr:full": "Holy Cross RC School", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.91189, + 53.35887 + ] + }, + "properties": { + "openplaque:id": "10893", + "addr:full": "Opposite Cressington Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98398, + 53.40389 + ] + }, + "properties": { + "openplaque:id": "10899", + "addr:full": "Bluecoat Chambers" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.95198, + 53.47505 + ] + }, + "properties": { + "openplaque:id": "10901", + "addr:full": "Aintree Race Course" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99158, + 53.43665 + ] + }, + "properties": { + "openplaque:id": "12649", + "addr:full": "\"Leeds Liverpool Canal", + "date_start": "Bank Hall Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.95667, + 53.40748 + ] + }, + "properties": { + "openplaque:id": "12926", + "addr:full": "\"The Williamson Tunnels", + "date_start": "Smithdown Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.95872, + 53.40389 + ] + }, + "properties": { + "openplaque:id": "12927", + "addr:full": "\"The Williamson Tunnels Heritage Centre", + "date_start": "Smithdown Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.93325, + 53.50564 + ] + }, + "properties": { + "openplaque:id": "1383", + "addr:full": "\"The Hollies", + "date_start": "Station Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96489, + 53.4033 + ] + }, + "properties": { + "openplaque:id": "1386", + "addr:full": "19 Abercromby Square", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89508, + 53.4259 + ] + }, + "properties": { + "openplaque:id": "1387", + "addr:full": "2 Zig Zag Road", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96457, + 53.3995 + ] + }, + "properties": { + "openplaque:id": "1389", + "addr:full": "171 Chatham Street", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.95022, + 53.3856 + ] + }, + "properties": { + "openplaque:id": "1396", + "addr:full": "28 Ullet Road", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.92677, + 53.38524 + ] + }, + "properties": { + "openplaque:id": "1406", + "addr:full": "Greenbank Lane", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.88382, + 53.3786 + ] + }, + "properties": { + "openplaque:id": "1407", + "addr:full": "251 Menlove Avenue", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96362, + 53.4057 + ] + }, + "properties": { + "openplaque:id": "1410", + "addr:full": "\"University Quadrangle", + "date_start": "University of Liverpool\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96399, + 53.3981 + ] + }, + "properties": { + "openplaque:id": "1412", + "addr:full": "40 Falkner Square", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97896, + 53.40756 + ] + }, + "properties": { + "openplaque:id": "28189", + "addr:full": "Liverpool Lime Street Station", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9919, + 53.39936 + ] + }, + "properties": { + "openplaque:id": "28193", + "addr:full": "\"Britannia Pavilion", + "date_start": "Albert Dock\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9918, + 53.40096 + ] + }, + "properties": { + "openplaque:id": "28198", + "addr:full": "\"Edward Pavilion", + "date_start": "Albert Dock\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99303, + 53.4014 + ] + }, + "properties": { + "openplaque:id": "28206", + "addr:full": "\"Merseyside Maritime Museum", + "date_start": "Hartley Quay" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99302, + 53.40127 + ] + }, + "properties": { + "openplaque:id": "28207", + "addr:full": "\"Merseyside Maritime Museum", + "date_start": "Hartley Quay" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99297, + 53.40489 + ] + }, + "properties": { + "openplaque:id": "30132", + "addr:full": "Hood Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99389, + 53.40484 + ] + }, + "properties": { + "openplaque:id": "30202", + "addr:full": "\"Georges Dock Building", + "date_start": "Georges Dock Way\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.95451, + 53.40494 + ] + }, + "properties": { + "openplaque:id": "30385", + "addr:full": "4 Overton Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98034, + 53.4097 + ] + }, + "properties": { + "openplaque:id": "30386", + "addr:full": "\"Picton Library", + "date_start": "William Brown Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.91673, + 53.3588 + ] + }, + "properties": { + "openplaque:id": "30392", + "addr:full": "Grassendale Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.79784, + 53.33422 + ] + }, + "properties": { + "openplaque:id": "30394", + "addr:full": "5 Church End", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97809, + 53.39879 + ] + }, + "properties": { + "openplaque:id": "30407", + "addr:full": "9 Nelson Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97705, + 53.39954 + ] + }, + "properties": { + "openplaque:id": "30423", + "addr:full": "10 Nelson Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9667, + 53.3957 + ] + }, + "properties": { + "openplaque:id": "3702", + "addr:full": "\"The Nightingale Lodge", + "date_start": "1 Princes Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97299, + 53.40328 + ] + }, + "properties": { + "openplaque:id": "39147", + "addr:full": "4 Rodney Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98224, + 53.40313 + ] + }, + "properties": { + "openplaque:id": "39151", + "addr:full": "18 Seel Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98224, + 53.40313 + ] + }, + "properties": { + "openplaque:id": "39152", + "addr:full": "18 Seel Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98224, + 53.40313 + ] + }, + "properties": { + "openplaque:id": "39153", + "addr:full": "18 Seel Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98224, + 53.40313 + ] + }, + "properties": { + "openplaque:id": "39154", + "addr:full": "18 Seel Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.85487, + 53.33757 + ] + }, + "properties": { + "openplaque:id": "39459", + "addr:full": "Liverpool John Lennon Airport" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99227, + 53.40683 + ] + }, + "properties": { + "openplaque:id": "39759", + "addr:full": "\"Martins Bank Building", + "date_start": "Dale Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99536, + 53.40227 + ] + }, + "properties": { + "openplaque:id": "39760", + "addr:full": "\"Pilotage Building", + "date_start": "Canning Dock\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99548, + 53.40708 + ] + }, + "properties": { + "openplaque:id": "39761", + "addr:full": "\"Boundary Wall", + "date_start": "St Nicholas Church" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9972, + 53.40465 + ] + }, + "properties": { + "openplaque:id": "39893", + "addr:full": "\"Mersey Ferries", + "date_start": "Pier Head\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97918, + 53.4022 + ] + }, + "properties": { + "openplaque:id": "40083", + "addr:full": "51 Seel Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97272, + 53.40752 + ] + }, + "properties": { + "openplaque:id": "40245", + "addr:full": "19 Bronte Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97771, + 53.40493 + ] + }, + "properties": { + "openplaque:id": "40806", + "addr:full": "\"051 Cinema", + "date_start": "junction of Brownlow Hill and Mount Pleasant\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97595, + 53.40188 + ] + }, + "properties": { + "openplaque:id": "41198", + "addr:full": "\"The Havelock Building", + "date_start": "130 Bold Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9817, + 53.40873 + ] + }, + "properties": { + "openplaque:id": "42424", + "addr:full": "\"A park bench", + "date_start": "St John's Gardens\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.91554, + 53.39726 + ] + }, + "properties": { + "openplaque:id": "42522", + "addr:full": "\"The Coffee House", + "date_start": "Church Road North\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96615, + 53.40514 + ] + }, + "properties": { + "openplaque:id": "42525", + "addr:full": "\"The Sphinx Bar", + "date_start": "Liverpool Guild" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97042, + 53.39864 + ] + }, + "properties": { + "openplaque:id": "43781", + "addr:full": "17 Canning Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97542, + 53.4018 + ] + }, + "properties": { + "openplaque:id": "4958", + "addr:full": "Berry St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98689, + 53.40665 + ] + }, + "properties": { + "openplaque:id": "4960", + "addr:full": "Temple Court" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97331, + 53.4016 + ] + }, + "properties": { + "openplaque:id": "4962", + "addr:full": "Rodney Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98179, + 53.40947 + ] + }, + "properties": { + "openplaque:id": "49685", + "addr:full": "\"World Museum", + "date_start": "William Brown Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96759, + 53.43781 + ] + }, + "properties": { + "openplaque:id": "49686", + "addr:full": "\"Goodison Avenue", + "date_start": "Everton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.90767, + 53.38737 + ] + }, + "properties": { + "openplaque:id": "50527", + "addr:full": "28 Hillside Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.88969, + 53.35776 + ] + }, + "properties": { + "openplaque:id": "50590", + "addr:full": "South Liverpool Parkway", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.05334, + 53.39969 + ] + }, + "properties": { + "openplaque:id": "50843", + "addr:full": "\"Co-Op Portland Academy", + "date_start": "Laird Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97736, + 53.40264 + ] + }, + "properties": { + "openplaque:id": "50930", + "addr:full": "96 Bold Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9904, + 53.40533 + ] + }, + "properties": { + "openplaque:id": "51735", + "addr:full": "52-54 Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96767, + 53.43875 + ] + }, + "properties": { + "openplaque:id": "53350", + "addr:full": "\"Winslow Hotel", + "date_start": "Goodison Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.04137, + 53.42122 + ] + }, + "properties": { + "openplaque:id": "54009", + "addr:full": "The Grosvenor Ballroom (inside)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.04145, + 53.42118 + ] + }, + "properties": { + "openplaque:id": "54010", + "addr:full": "The Grosvenor Ballroom" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99313, + 53.40617 + ] + }, + "properties": { + "openplaque:id": "54070", + "addr:full": "Water Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98644, + 53.40687 + ] + }, + "properties": { + "openplaque:id": "54085", + "addr:full": "Stanley Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98832, + 53.40557 + ] + }, + "properties": { + "openplaque:id": "54098", + "addr:full": "24 North John Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.90129, + 53.4587 + ] + }, + "properties": { + "openplaque:id": "54449", + "addr:full": "St Swithin's Cemetery" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.91671, + 53.37859 + ] + }, + "properties": { + "openplaque:id": "54523", + "addr:full": "\"102 Rose Lane", + "date_start": "Mossley Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96762, + 53.438 + ] + }, + "properties": { + "openplaque:id": "5560", + "addr:full": "Goodison Park Stadium" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9674, + 53.438 + ] + }, + "properties": { + "openplaque:id": "5562", + "addr:full": "Goodison Park Stadium" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9729, + 53.4025 + ] + }, + "properties": { + "openplaque:id": "6744", + "addr:full": "9 Rodney Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97891, + 53.40517 + ] + }, + "properties": { + "openplaque:id": "6770", + "addr:full": "Lewis's Department Store", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96744, + 53.40822 + ] + }, + "properties": { + "openplaque:id": "7581", + "addr:full": "70 Pembroke Place", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96598, + 53.40314 + ] + }, + "properties": { + "openplaque:id": "7630", + "addr:full": "Oxford Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99141, + 53.39961 + ] + }, + "properties": { + "openplaque:id": "7632", + "addr:full": "Britannia Pavillion Albert Dock" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9673, + 53.40335 + ] + }, + "properties": { + "openplaque:id": "7861", + "addr:full": "26 Oxford Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97394, + 53.39982 + ] + }, + "properties": { + "openplaque:id": "7862", + "addr:full": "62 Rodney Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99103, + 53.40721 + ] + }, + "properties": { + "openplaque:id": "7867", + "addr:full": "1 Dale Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99101, + 53.40722 + ] + }, + "properties": { + "openplaque:id": "7869", + "addr:full": "1 Dale Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99275, + 53.40642 + ] + }, + "properties": { + "openplaque:id": "7870", + "addr:full": "\"India Buildings", + "date_start": "Water Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99278, + 53.40639 + ] + }, + "properties": { + "openplaque:id": "7871", + "addr:full": "\"India Buildings", + "date_start": "Water Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99113, + 53.40648 + ] + }, + "properties": { + "openplaque:id": "7872", + "addr:full": "22 Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99205, + 53.40706 + ] + }, + "properties": { + "openplaque:id": "7875", + "addr:full": "\"Martin's Bank Building", + "date_start": "Exchange Street West\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9904, + 53.40505 + ] + }, + "properties": { + "openplaque:id": "7876", + "addr:full": "\"Queen Victoria Monument", + "date_start": "Derby Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99134, + 53.4071 + ] + }, + "properties": { + "openplaque:id": "7878", + "addr:full": "\"Liverpool Town Hall", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9733, + 53.40108 + ] + }, + "properties": { + "openplaque:id": "7882", + "addr:full": "35 Rodney Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9734, + 53.40095 + ] + }, + "properties": { + "openplaque:id": "7883", + "addr:full": "43 Rodney Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99274, + 53.40788 + ] + }, + "properties": { + "openplaque:id": "7884", + "addr:full": "Exchange Buildings 10 Chapel Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97199, + 53.39503 + ] + }, + "properties": { + "openplaque:id": "7885", + "addr:full": "34 Upper Parliament Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99111, + 53.40726 + ] + }, + "properties": { + "openplaque:id": "7886", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97079, + 53.40362 + ] + }, + "properties": { + "openplaque:id": "7887", + "addr:full": "82 Mount Pleasant" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9721, + 53.40098 + ] + }, + "properties": { + "openplaque:id": "7891", + "addr:full": "1 Hope Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97031, + 53.40135 + ] + }, + "properties": { + "openplaque:id": "7892", + "addr:full": "\"Liverpool Philharmonic Hall", + "date_start": "Hope Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97047, + 53.40167 + ] + }, + "properties": { + "openplaque:id": "7893", + "addr:full": "36 Hope St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97702, + 53.40139 + ] + }, + "properties": { + "openplaque:id": "7898", + "addr:full": "Seel Street (back of BT Call Centre Wood Street)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97208, + 53.40187 + ] + }, + "properties": { + "openplaque:id": "7900", + "addr:full": "15 Hardman Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99017, + 53.40551 + ] + }, + "properties": { + "openplaque:id": "7902", + "addr:full": "55 Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97625, + 53.40441 + ] + }, + "properties": { + "openplaque:id": "7904", + "addr:full": "\"Roscoe Memorial Gardens", + "date_start": "Mount Pleasant\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99096, + 53.40712 + ] + }, + "properties": { + "openplaque:id": "7905", + "addr:full": "7 Dale Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99288, + 53.40648 + ] + }, + "properties": { + "openplaque:id": "7906", + "addr:full": "7 Water Street (Fenwick Street)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99151, + 53.4068 + ] + }, + "properties": { + "openplaque:id": "7907", + "addr:full": "1 Water Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99421, + 53.4061 + ] + }, + "properties": { + "openplaque:id": "7908", + "addr:full": "\"The Tower Building", + "date_start": "22 Water Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.994, + 53.40608 + ] + }, + "properties": { + "openplaque:id": "7909", + "addr:full": "\"The Tower Building", + "date_start": "22 Water Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97625, + 53.40441 + ] + }, + "properties": { + "openplaque:id": "7911", + "addr:full": "\"Roscoe Gardens", + "date_start": "Mount Pleasant\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99114, + 53.40723 + ] + }, + "properties": { + "openplaque:id": "7912", + "addr:full": "1 Dale Street (High Street)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98448, + 53.40929 + ] + }, + "properties": { + "openplaque:id": "7916", + "addr:full": "above the mouth of the Queensway tunnel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99002, + 53.40559 + ] + }, + "properties": { + "openplaque:id": "7920", + "addr:full": "\"Harrington Street - Pearl Assurance House", + "date_start": "2 Derby Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99344, + 53.40764 + ] + }, + "properties": { + "openplaque:id": "7921", + "addr:full": "1-3 Rumford Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98393, + 53.40531 + ] + }, + "properties": { + "openplaque:id": "7923", + "addr:full": "\"Marks & Spencers", + "date_start": "35 Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99167, + 53.40579 + ] + }, + "properties": { + "openplaque:id": "7924", + "addr:full": "\"Corn Exchange", + "date_start": "Fenwick Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9915, + 53.40579 + ] + }, + "properties": { + "openplaque:id": "7927", + "addr:full": "\"Fenwick Street - Heywood Building", + "date_start": "5 Brunswick Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98354, + 53.40439 + ] + }, + "properties": { + "openplaque:id": "7928", + "addr:full": "\"Bluecoat Chambers", + "date_start": "School Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98361, + 53.40434 + ] + }, + "properties": { + "openplaque:id": "7929", + "addr:full": "\"Bluecoat Chambers", + "date_start": "School Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98393, + 53.40408 + ] + }, + "properties": { + "openplaque:id": "7930", + "addr:full": "\"Garden of Bluecoat Chambers", + "date_start": "School Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98382, + 53.40406 + ] + }, + "properties": { + "openplaque:id": "7931", + "addr:full": "\"Garden of Bluecoat Chambers", + "date_start": "School Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99037, + 53.40614 + ] + }, + "properties": { + "openplaque:id": "7932", + "addr:full": "\"Cook Street - Bank of England", + "date_start": "31 Castle Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.93801, + 53.38969 + ] + }, + "properties": { + "openplaque:id": "7933", + "addr:full": "\"Ullet Road Church", + "date_start": "57 Ullet Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.95743, + 53.38076 + ] + }, + "properties": { + "openplaque:id": "7934", + "addr:full": "\"The Turner Home Lodge", + "date_start": "Dingle Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96977, + 53.41357 + ] + }, + "properties": { + "openplaque:id": "7935", + "addr:full": "\"St. Francis Xavier's Church", + "date_start": "11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.91233, + 53.43223 + ] + }, + "properties": { + "openplaque:id": "7936", + "addr:full": "\"8 Hayman's Green", + "date_start": "West Derby\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98285, + 53.4052 + ] + }, + "properties": { + "openplaque:id": "7942", + "addr:full": "53-57 Church St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99292, + 53.40973 + ] + }, + "properties": { + "openplaque:id": "7944", + "addr:full": "\"Orleans House", + "date_start": "Edmund St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99292, + 53.40974 + ] + }, + "properties": { + "openplaque:id": "7955", + "addr:full": "\"Orleans House", + "date_start": "Edmund St\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98874, + 53.40784 + ] + }, + "properties": { + "openplaque:id": "7956", + "addr:full": "\"Prudential Assurance Building", + "date_start": "30-38 Dale Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98392, + 53.40452 + ] + }, + "properties": { + "openplaque:id": "7958", + "addr:full": "\"School Lane", + "date_start": "Athenaeum 18 Church Alley\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9821, + 53.4073 + ] + }, + "properties": { + "openplaque:id": "7959", + "addr:full": "\"The Fall Well", + "date_start": "St. Johns Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98566, + 53.40921 + ] + }, + "properties": { + "openplaque:id": "7960", + "addr:full": "111 Dale Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99217, + 53.40466 + ] + }, + "properties": { + "openplaque:id": "7967", + "addr:full": "Albion House 30 James Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99276, + 53.40657 + ] + }, + "properties": { + "openplaque:id": "7968", + "addr:full": "14 Water Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99319, + 53.40646 + ] + }, + "properties": { + "openplaque:id": "7969", + "addr:full": "14 Water Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98624, + 53.40726 + ] + }, + "properties": { + "openplaque:id": "7970", + "addr:full": "Met Quarter Victoria Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97799, + 53.40475 + ] + }, + "properties": { + "openplaque:id": "7971", + "addr:full": "\"Lewis's Department Store", + "date_start": "4 Renshaw Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96725, + 53.40608 + ] + }, + "properties": { + "openplaque:id": "7972", + "addr:full": "\"Walker Engineering Building", + "date_start": "University of Liverpool" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96711, + 53.4061 + ] + }, + "properties": { + "openplaque:id": "7973", + "addr:full": "\"Victoria Building", + "date_start": "University of Liverpool" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96844, + 53.40569 + ] + }, + "properties": { + "openplaque:id": "7974", + "addr:full": "\"Metropolitan Cathedral Crypt", + "date_start": "Brownlow Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99781, + 53.40591 + ] + }, + "properties": { + "openplaque:id": "8041", + "addr:full": "Pier Head", + "date_start": "1944" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98082, + 53.40733 + ] + }, + "properties": { + "openplaque:id": "8042", + "addr:full": "St. John's Market" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97396, + 53.40865 + ] + }, + "properties": { + "openplaque:id": "8062", + "addr:full": "17 Seymour Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98429, + 53.40991 + ] + }, + "properties": { + "openplaque:id": "8063", + "addr:full": "1 Trueman Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96679, + 53.39579 + ] + }, + "properties": { + "openplaque:id": "8065", + "addr:full": "\"The Nightingale House", + "date_start": "1 Princes Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97291, + 53.40303 + ] + }, + "properties": { + "openplaque:id": "8066", + "addr:full": "\"Roscoe Court", + "date_start": "4 Rodney Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99544, + 53.40223 + ] + }, + "properties": { + "openplaque:id": "8069", + "addr:full": "\"Museum of Liverpool", + "date_start": "near Canning Half Tide Basin River Entrance\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98171, + 53.42196 + ] + }, + "properties": { + "openplaque:id": "8072", + "addr:full": "\"Throstles Nest Hotel", + "date_start": "344 Scotland Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96623, + 53.40342 + ] + }, + "properties": { + "openplaque:id": "8079", + "addr:full": "\"University of Liverpool Sports Centre", + "date_start": "Oxford Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9769, + 53.38012 + ] + }, + "properties": { + "openplaque:id": "8177", + "addr:full": "Riverside Walk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98309, + 53.40948 + ] + }, + "properties": { + "openplaque:id": "8180", + "addr:full": "Queensway Tunnel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.95784, + 53.38038 + ] + }, + "properties": { + "openplaque:id": "8181", + "addr:full": "\"Alfred Stocks Court", + "date_start": "Turner Close\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.94683, + 53.40267 + ] + }, + "properties": { + "openplaque:id": "8182", + "addr:full": "Edge Hill Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.03117, + 53.47425 + ] + }, + "properties": { + "openplaque:id": "8187", + "addr:full": "17 Marine Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98851, + 53.43222 + ] + }, + "properties": { + "openplaque:id": "8188", + "addr:full": "\"Leeds Liverpool Canal", + "date_start": "300 metres North of Sandhills Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96095, + 53.43185 + ] + }, + "properties": { + "openplaque:id": "8214", + "addr:full": "\"Liverpool Football Club", + "date_start": "Anfield Rd\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96179, + 53.42996 + ] + }, + "properties": { + "openplaque:id": "8215", + "addr:full": "\"Liverpool Football Club", + "date_start": "Walton Breck Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98084, + 53.40874 + ] + }, + "properties": { + "openplaque:id": "8216", + "addr:full": "St John's Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.95789, + 53.4154 + ] + }, + "properties": { + "openplaque:id": "8217", + "addr:full": "\"Liverpool Olympia", + "date_start": "West Derby Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97814, + 53.41128 + ] + }, + "properties": { + "openplaque:id": "8233", + "addr:full": "\"Building Workers Memorial", + "date_start": "Hunter Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.94293, + 53.3904 + ] + }, + "properties": { + "openplaque:id": "8234", + "addr:full": "18 Brompton Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99039, + 53.39974 + ] + }, + "properties": { + "openplaque:id": "8489", + "addr:full": "Salthouse Quay", + "date_start": "1987" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98525, + 53.42153 + ] + }, + "properties": { + "openplaque:id": "9105", + "addr:full": "\"The Silvestrin Social Club", + "date_start": "Silvester Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98398, + 53.40389 + ] + }, + "properties": { + "openplaque:id": "9107", + "addr:full": "\"Bluecoat Chambers", + "date_start": "School Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97965, + 53.41026 + ] + }, + "properties": { + "openplaque:id": "9108", + "addr:full": "\"Walker Art Gallery", + "date_start": "William Brown Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.978, + 53.40812 + ] + }, + "properties": { + "openplaque:id": "9109", + "addr:full": "\"Lime Street Station", + "date_start": "Lime Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97845, + 53.40813 + ] + }, + "properties": { + "openplaque:id": "9111", + "addr:full": "\"Lime Street Station", + "date_start": "Lime Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96777, + 53.40864 + ] + }, + "properties": { + "openplaque:id": "9112", + "addr:full": "70 Pembroke Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99427, + 53.40113 + ] + }, + "properties": { + "openplaque:id": "9305", + "addr:full": "\"Hartley Bridge", + "date_start": "Albert Dock\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99421, + 53.40115 + ] + }, + "properties": { + "openplaque:id": "9306", + "addr:full": "\"Hartley Bridge", + "date_start": "Albert Dock\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97056, + 53.38964 + ] + }, + "properties": { + "openplaque:id": "9520", + "addr:full": "\"The Globe", + "date_start": "Combermere Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97053, + 53.38965 + ] + }, + "properties": { + "openplaque:id": "9521", + "addr:full": "\"The Globe", + "date_start": "Combermere Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98117, + 53.40635 + ] + }, + "properties": { + "openplaque:id": "9792", + "addr:full": "St. John's Market" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.1995, + 49.9592 + ] + }, + "properties": { + "openplaque:id": "2385", + "addr:full": "Bass Point" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.11531, + 53.12145 + ] + }, + "properties": { + "openplaque:id": "50329", + "addr:full": "National Slate Museum - Gilfach Ddu" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36651, + 51.42435 + ] + }, + "properties": { + "openplaque:id": "53352", + "addr:full": "Penn-on", + "date_start": "2020" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.79226, + 51.99411 + ] + }, + "properties": { + "openplaque:id": "50960", + "addr:full": "33 High Street", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.83566, + 53.32725 + ] + }, + "properties": { + "openplaque:id": "10645", + "addr:full": "\"Victoria Station", + "date_start": "Church Walks\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.8292, + 53.3237 + ] + }, + "properties": { + "openplaque:id": "11887", + "addr:full": "Mostyn Street", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.82909, + 53.32851 + ] + }, + "properties": { + "openplaque:id": "27930", + "addr:full": "?", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.83017, + 53.32643 + ] + }, + "properties": { + "openplaque:id": "49464", + "addr:full": "North Shore Beach on the Promenade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.82862, + 53.32904 + ] + }, + "properties": { + "openplaque:id": "49864", + "addr:full": "Happy Valley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.83654, + 53.32706 + ] + }, + "properties": { + "openplaque:id": "53149", + "addr:full": "Llwynon Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.83654, + 53.32706 + ] + }, + "properties": { + "openplaque:id": "53150", + "addr:full": "Llwynon Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.1364, + 51.682 + ] + }, + "properties": { + "openplaque:id": "1110", + "addr:full": "\"Tinopolis Studio", + "date_start": "Water Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.1443, + 51.6992 + ] + }, + "properties": { + "openplaque:id": "1111", + "addr:full": "\"The Verandah Restaurant", + "date_start": "Bridge Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.1682, + 51.6792 + ] + }, + "properties": { + "openplaque:id": "4122", + "addr:full": "38 Princess St", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.15019, + 51.66827 + ] + }, + "properties": { + "openplaque:id": "41798" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.16265, + 51.67866 + ] + }, + "properties": { + "openplaque:id": "42829", + "addr:full": "33 Station Road", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.15804, + 51.65861 + ] + }, + "properties": { + "openplaque:id": "42830", + "addr:full": "\"Machynys", + "date_start": "Millennium Coastal Path\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.18841, + 51.7266 + ] + }, + "properties": { + "openplaque:id": "42832", + "addr:full": "\"The Stag Public House", + "date_start": "Five Roads\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.15417, + 51.67514 + ] + }, + "properties": { + "openplaque:id": "42834", + "addr:full": "Tyisha Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.16905, + 51.67659 + ] + }, + "properties": { + "openplaque:id": "42836", + "addr:full": "\"Union Bridge", + "date_start": "Queen Victoria Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.16281, + 51.68283 + ] + }, + "properties": { + "openplaque:id": "42847", + "addr:full": "\"Parish Hall", + "date_start": "Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.16425, + 51.68207 + ] + }, + "properties": { + "openplaque:id": "42848", + "addr:full": "Llanelli Town Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.16236, + 51.68011 + ] + }, + "properties": { + "openplaque:id": "42856", + "addr:full": "Murray Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.16025, + 51.68079 + ] + }, + "properties": { + "openplaque:id": "42857", + "addr:full": "46 Murray Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.15752, + 51.68132 + ] + }, + "properties": { + "openplaque:id": "42858", + "addr:full": "Pottery Street", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.20834, + 53.22132 + ] + }, + "properties": { + "openplaque:id": "50834" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.5424, + 52.4491 + ] + }, + "properties": { + "openplaque:id": "1079", + "addr:full": "Short Bridge Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.48776, + 51.40859 + ] + }, + "properties": { + "openplaque:id": "42481" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.48859, + 51.4075 + ] + }, + "properties": { + "openplaque:id": "42489" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.48703, + 51.41247 + ] + }, + "properties": { + "openplaque:id": "54461" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.63828, + 52.10742 + ] + }, + "properties": { + "openplaque:id": "11710", + "addr:full": "\"Neuadd Arms", + "date_start": "The Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.00059, + 52.22589 + ] + }, + "properties": { + "openplaque:id": "8252", + "addr:full": "B4578" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67752, + 50.99765 + ] + }, + "properties": { + "openplaque:id": "1371", + "addr:full": "EH Shepard's House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.88271, + 54.56775 + ] + }, + "properties": { + "openplaque:id": "42199", + "addr:full": "\"Hummersea Farm", + "date_start": "Hummersea Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1875, + 51.5352 + ] + }, + "properties": { + "openplaque:id": "10", + "addr:full": "4 Greville Place", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20573, + 51.4942 + ] + }, + "properties": { + "openplaque:id": "100", + "addr:full": "\"51 Avonmore Road", + "date_start": "Hammersmith and Fulham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37068, + 51.57418 + ] + }, + "properties": { + "openplaque:id": "10002", + "addr:full": "\"The Ace Bar", + "date_start": "Alexandra Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27328, + 51.50779 + ] + }, + "properties": { + "openplaque:id": "10003", + "addr:full": "\"High Street", + "date_start": "Harrow on the Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28831, + 51.50316 + ] + }, + "properties": { + "openplaque:id": "10007", + "addr:full": "\"74 Gunnersbury Avenue", + "date_start": "W5\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.29829, + 51.5185 + ] + }, + "properties": { + "openplaque:id": "10009", + "addr:full": "\"Ealing Cricket Club", + "date_start": "Corfton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30284, + 51.5129 + ] + }, + "properties": { + "openplaque:id": "10011", + "addr:full": "\"Ealing Broadway Centre", + "date_start": "W5\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30825, + 51.5289 + ] + }, + "properties": { + "openplaque:id": "10013", + "addr:full": "\"Brentham Club", + "date_start": "Meadvale Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28126, + 51.50912 + ] + }, + "properties": { + "openplaque:id": "10014", + "addr:full": "\"Twyford C of E High School", + "date_start": "Twyford Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23834, + 51.48599 + ] + }, + "properties": { + "openplaque:id": "10015", + "addr:full": "\"Woolborough House", + "date_start": "39 Lonsdale Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23814, + 51.48599 + ] + }, + "properties": { + "openplaque:id": "10016", + "addr:full": "\"Woolborough House", + "date_start": "39 Lonsdale Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0363, + 51.5317 + ] + }, + "properties": { + "openplaque:id": "10017", + "addr:full": "\"Vernon Hall", + "date_start": "Roman Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20506, + 51.65285 + ] + }, + "properties": { + "openplaque:id": "10020", + "addr:full": "\"Cattley Close", + "date_start": "Wood Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20506, + 51.65285 + ] + }, + "properties": { + "openplaque:id": "10021", + "addr:full": "\"Cattley Close", + "date_start": "Wood Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05666, + 51.40734 + ] + }, + "properties": { + "openplaque:id": "10022", + "addr:full": "\"Caveside Close", + "date_start": "Chislehurst\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11915, + 51.5581 + ] + }, + "properties": { + "openplaque:id": "10023", + "addr:full": "\"Bowman’s Mews", + "date_start": "Seven Sisters Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.29995, + 51.62802 + ] + }, + "properties": { + "openplaque:id": "10024", + "addr:full": "\"Brockley Hill", + "date_start": "Stanmore\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07451, + 51.51785 + ] + }, + "properties": { + "openplaque:id": "10026", + "addr:full": "\"Brune House", + "date_start": "Toynbee Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.29016, + 51.41176 + ] + }, + "properties": { + "openplaque:id": "10027", + "addr:full": "\"Buick House", + "date_start": "London Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17938, + 51.4836 + ] + }, + "properties": { + "openplaque:id": "10028", + "addr:full": "\"7 Hobury Street", + "date_start": "SW10\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399, + 51.41639 + ] + }, + "properties": { + "openplaque:id": "10034", + "addr:full": "\"Coombe House", + "date_start": "Devey Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07066, + 51.58812 + ] + }, + "properties": { + "openplaque:id": "10035", + "addr:full": "\"Cooke Estate", + "date_start": "316 Tottenham High Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23558, + 51.49058 + ] + }, + "properties": { + "openplaque:id": "10036", + "addr:full": "\"Coach House", + "date_start": "26 Upper Mall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09231, + 51.41366 + ] + }, + "properties": { + "openplaque:id": "10040", + "addr:full": "\"39 Beulah Hill", + "date_start": "Upper Norwood" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17726, + 51.63012 + ] + }, + "properties": { + "openplaque:id": "10042", + "addr:full": "\"35 Totteridge Lane", + "date_start": "Whetstone" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1737, + 51.4917 + ] + }, + "properties": { + "openplaque:id": "10052", + "addr:full": "\"36 Onslow Square", + "date_start": "South Kensington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15511, + 51.52276 + ] + }, + "properties": { + "openplaque:id": "10058", + "addr:full": "\"Madame Tussaud's London", + "date_start": "Marylebone Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22819, + 51.49714 + ] + }, + "properties": { + "openplaque:id": "10086", + "addr:full": "\"3 Grove Studios", + "date_start": "Adie Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14514, + 51.57911 + ] + }, + "properties": { + "openplaque:id": "10087", + "addr:full": "\"34 Wood Lane", + "date_start": "Highgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05529, + 51.4542 + ] + }, + "properties": { + "openplaque:id": "10089", + "addr:full": "\"55 Archery Road", + "date_start": "Eltham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26967, + 51.46001 + ] + }, + "properties": { + "openplaque:id": "10090", + "addr:full": "\"55 York Avenue", + "date_start": "Mortlake" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13359, + 51.54405 + ] + }, + "properties": { + "openplaque:id": "10091", + "addr:full": "\"57 Murray Street", + "date_start": "Camden\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22802, + 51.42068 + ] + }, + "properties": { + "openplaque:id": "10092", + "addr:full": "\"6 Woodhayes Road", + "date_start": "SW19\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0384, + 51.60785 + ] + }, + "properties": { + "openplaque:id": "10093", + "addr:full": "\"6 Station Terrace", + "date_start": "Snakes Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19265, + 51.58 + ] + }, + "properties": { + "openplaque:id": "10095", + "addr:full": "\"7 Willifield Way", + "date_start": "Golders Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16998, + 51.48601 + ] + }, + "properties": { + "openplaque:id": "10096", + "addr:full": "\"64 Glebe Place", + "date_start": "SW3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16999, + 51.4859 + ] + }, + "properties": { + "openplaque:id": "10097", + "addr:full": "\"64 Glebe Place", + "date_start": "SW3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16999, + 51.48594 + ] + }, + "properties": { + "openplaque:id": "10098", + "addr:full": "\"66 Glebe Place", + "date_start": "SW3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19665, + 51.66081 + ] + }, + "properties": { + "openplaque:id": "10099", + "addr:full": "\"Livingstone Cottage", + "date_start": "Hadley Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12459, + 51.50737 + ] + }, + "properties": { + "openplaque:id": "101", + "addr:full": "\"32 Craven Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09664, + 51.49062 + ] + }, + "properties": { + "openplaque:id": "10100", + "addr:full": "\"Walworth Road", + "date_start": "SE17\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06, + 51.42936 + ] + }, + "properties": { + "openplaque:id": "10127", + "addr:full": "\"7 Jews Walk", + "date_start": "Sydenham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20259, + 51.51139 + ] + }, + "properties": { + "openplaque:id": "10128", + "addr:full": "\"7 Kensington Park Gardens", + "date_start": "Notting Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20076, + 51.57665 + ] + }, + "properties": { + "openplaque:id": "10129", + "addr:full": "\"69 Wentworth Road", + "date_start": "Golders Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13909, + 51.4875 + ] + }, + "properties": { + "openplaque:id": "102", + "addr:full": "\"15 Ranelagh Road", + "date_start": "Pimlico" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05995, + 51.42063 + ] + }, + "properties": { + "openplaque:id": "10273", + "addr:full": "\"77 Lawrie Park Road", + "date_start": "Sydenham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11228, + 51.58575 + ] + }, + "properties": { + "openplaque:id": "10274", + "addr:full": "\"7 Tottenham Lane", + "date_start": "N8\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03033, + 51.35868 + ] + }, + "properties": { + "openplaque:id": "10276", + "addr:full": "\"Addington Village Road", + "date_start": "Addington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17465, + 51.48361 + ] + }, + "properties": { + "openplaque:id": "10284", + "addr:full": "\"Allen House", + "date_start": "Beaufort Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18204, + 51.48885 + ] + }, + "properties": { + "openplaque:id": "10285", + "addr:full": "\"Christie Cottage", + "date_start": "Cresswell Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.02065, + 51.5983 + ] + }, + "properties": { + "openplaque:id": "10294", + "addr:full": "\"Woodford Parish Church Memorial Hall", + "date_start": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2088, + 51.65298 + ] + }, + "properties": { + "openplaque:id": "10295", + "addr:full": "\"Wood Street", + "date_start": "Barnet\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16923, + 51.4983 + ] + }, + "properties": { + "openplaque:id": "103", + "addr:full": "\"25 Brompton Square", + "date_start": "SW3 Kensington & Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20011, + 51.49697 + ] + }, + "properties": { + "openplaque:id": "10308", + "addr:full": "\"62 South Edwardes Square", + "date_start": "W8\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.00586, + 51.53687 + ] + }, + "properties": { + "openplaque:id": "10309", + "addr:full": "\"Arthingworth Street", + "date_start": "E15\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07851, + 51.51798 + ] + }, + "properties": { + "openplaque:id": "10310", + "addr:full": "\"Astral House", + "date_start": "129 Middlesex Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19505, + 51.59669 + ] + }, + "properties": { + "openplaque:id": "10311", + "addr:full": "\"Avenue House", + "date_start": "East End Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09418, + 51.56904 + ] + }, + "properties": { + "openplaque:id": "10312", + "addr:full": "\"Banstead Court", + "date_start": "Green Lanes" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21316, + 51.49146 + ] + }, + "properties": { + "openplaque:id": "10313", + "addr:full": "\"Barons Keep", + "date_start": "Gliddon Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28156, + 51.51106 + ] + }, + "properties": { + "openplaque:id": "10326", + "addr:full": "\"32 Twyford Avenue", + "date_start": "Acton W3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13102, + 51.46324 + ] + }, + "properties": { + "openplaque:id": "10346", + "addr:full": "\"Cato Road", + "date_start": "SW4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2077, + 51.48881 + ] + }, + "properties": { + "openplaque:id": "10347", + "addr:full": "\"Charleville Road", + "date_start": "W14\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09204, + 51.51174 + ] + }, + "properties": { + "openplaque:id": "10348", + "addr:full": "nr Cloak Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22696, + 51.42308 + ] + }, + "properties": { + "openplaque:id": "10350", + "addr:full": "\"Chester House", + "date_start": "Westside Common" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19076, + 51.52617 + ] + }, + "properties": { + "openplaque:id": "10353", + "addr:full": "\"BBC Maida Vale Studio", + "date_start": "Delaware Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14839, + 51.61498 + ] + }, + "properties": { + "openplaque:id": "10355", + "addr:full": "\"Christ Church", + "date_start": "Friern Barnet Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08463, + 51.63934 + ] + }, + "properties": { + "openplaque:id": "10358", + "addr:full": "\"Cunard Crescent/Bush Hill Road", + "date_start": "N21\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22822, + 51.59133 + ] + }, + "properties": { + "openplaque:id": "10359", + "addr:full": "\"Church Farmhouse Museum", + "date_start": "Greyhound Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27452, + 51.60701 + ] + }, + "properties": { + "openplaque:id": "10362", + "addr:full": "\"Corner of Deansbrook and Edgware Roads", + "date_start": "Edgware\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02606, + 51.47899 + ] + }, + "properties": { + "openplaque:id": "10364", + "addr:full": "\"Deptford Station", + "date_start": "Deptford High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00333, + 51.46409 + ] + }, + "properties": { + "openplaque:id": "10365", + "addr:full": "\"Dowson Court", + "date_start": "Belmont Grove" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.24193, + 51.55113 + ] + }, + "properties": { + "openplaque:id": "10366", + "addr:full": "\"Dudden Hill Lane", + "date_start": "NW10\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11223, + 51.53273 + ] + }, + "properties": { + "openplaque:id": "10367", + "addr:full": "\"Elizabeth Garrett Anderson School", + "date_start": "Donegal Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05608, + 51.51115 + ] + }, + "properties": { + "openplaque:id": "10381", + "addr:full": "\"Noble Court", + "date_start": "Cable Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.06254, + 51.5629 + ] + }, + "properties": { + "openplaque:id": "10394", + "addr:full": "\"Empress Avenue", + "date_start": "Ilford\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17946, + 51.50504 + ] + }, + "properties": { + "openplaque:id": "10396", + "addr:full": "\"Ferry Lane", + "date_start": "Rainham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33767, + 51.57252 + ] + }, + "properties": { + "openplaque:id": "10398", + "addr:full": "\"First Grove Hill", + "date_start": "Harrow\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19297, + 51.52663 + ] + }, + "properties": { + "openplaque:id": "104", + "addr:full": "\"130 Elgin Avenue", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19447, + 51.55643 + ] + }, + "properties": { + "openplaque:id": "10414", + "addr:full": "\"298 Finchley Road", + "date_start": "Hampstead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19987, + 51.41816 + ] + }, + "properties": { + "openplaque:id": "10415", + "addr:full": "\"17 Palmerstone Road", + "date_start": "Wimbledon\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18187, + 51.56956 + ] + }, + "properties": { + "openplaque:id": "10421", + "addr:full": "\"Gates House", + "date_start": "Wyldes Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19931, + 51.66157 + ] + }, + "properties": { + "openplaque:id": "10422", + "addr:full": "\"Grandon", + "date_start": "Hadley Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.02696, + 51.57723 + ] + }, + "properties": { + "openplaque:id": "10425", + "addr:full": "\"Grove House", + "date_start": "2 Grove Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21783, + 51.58574 + ] + }, + "properties": { + "openplaque:id": "10429", + "addr:full": "\"Hendon School", + "date_start": "Golders Rise" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09464, + 51.507 + ] + }, + "properties": { + "openplaque:id": "10430", + "addr:full": "\"Park Street", + "date_start": "SE1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06654, + 51.5366 + ] + }, + "properties": { + "openplaque:id": "10432", + "addr:full": "\"Pownall Road", + "date_start": "E8\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11764, + 51.49898 + ] + }, + "properties": { + "openplaque:id": "10433", + "addr:full": "\"St Thomas' Hospital", + "date_start": "Lambeth\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03457, + 51.59407 + ] + }, + "properties": { + "openplaque:id": "10440", + "addr:full": "\"Higham Hill Road", + "date_start": "E17\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23439, + 51.62124 + ] + }, + "properties": { + "openplaque:id": "10441", + "addr:full": "\"Oak Cottage", + "date_start": "Hammers Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.02287, + 51.32703 + ] + }, + "properties": { + "openplaque:id": "10451", + "addr:full": "\"Main Road", + "date_start": "Biggin Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.02288, + 51.327 + ] + }, + "properties": { + "openplaque:id": "10452", + "addr:full": "\"Main Road", + "date_start": "Biggin Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17364, + 51.4498 + ] + }, + "properties": { + "openplaque:id": "10477", + "addr:full": "\"Lloyd George Mansions", + "date_start": "191 Trinity Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06579, + 51.51495 + ] + }, + "properties": { + "openplaque:id": "10478", + "addr:full": "\"London Guildhall University", + "date_start": "Commercial Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21844, + 51.49542 + ] + }, + "properties": { + "openplaque:id": "10480", + "addr:full": "\"St Paul’s Girls School", + "date_start": "Brook Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.03899, + 51.36562 + ] + }, + "properties": { + "openplaque:id": "10483", + "addr:full": "\"Towerfields", + "date_start": "Westerham Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.222, + 51.4483 + ] + }, + "properties": { + "openplaque:id": "10484", + "addr:full": "\"Tibbet’s Corner", + "date_start": "Putney Heath" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17554, + 51.5553 + ] + }, + "properties": { + "openplaque:id": "105", + "addr:full": "\"Greenhill", + "date_start": "Hampstead High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00278, + 51.53891 + ] + }, + "properties": { + "openplaque:id": "10542", + "addr:full": "\"Jupp Street", + "date_start": "E15\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22513, + 51.49105 + ] + }, + "properties": { + "openplaque:id": "10543", + "addr:full": "\"Queen Caroline Street", + "date_start": "W6\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20909, + 51.4677 + ] + }, + "properties": { + "openplaque:id": "10544", + "addr:full": "\"Railway Arch", + "date_start": "Ranelagh Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05242, + 51.50159 + ] + }, + "properties": { + "openplaque:id": "10545", + "addr:full": "\"Railway Avenue", + "date_start": "SE16\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23375, + 51.60856 + ] + }, + "properties": { + "openplaque:id": "10546", + "addr:full": "\"Randall Court", + "date_start": "Page Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18209, + 51.6163 + ] + }, + "properties": { + "openplaque:id": "10551", + "addr:full": "\"St John the Evangelist Churchyard", + "date_start": "Havering-atte-Bower\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31414, + 51.47816 + ] + }, + "properties": { + "openplaque:id": "10561", + "addr:full": "\"The Art Centre", + "date_start": "Syon House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2279, + 51.59119 + ] + }, + "properties": { + "openplaque:id": "10571", + "addr:full": "\"The Greyhound", + "date_start": "Church End" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01052, + 51.46949 + ] + }, + "properties": { + "openplaque:id": "10574", + "addr:full": "\"The Princess of Wales", + "date_start": "Montpelier Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22151, + 51.58908 + ] + }, + "properties": { + "openplaque:id": "10575", + "addr:full": "\"The Quadrant", + "date_start": "Hendon" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23288, + 51.62131 + ] + }, + "properties": { + "openplaque:id": "10578", + "addr:full": "\"The Ridgeway", + "date_start": "Mill Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23706, + 51.49049 + ] + }, + "properties": { + "openplaque:id": "10582", + "addr:full": "\"Upper Mall", + "date_start": "W6\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15003, + 51.5171 + ] + }, + "properties": { + "openplaque:id": "106", + "addr:full": "\"7 Bentinck Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14217, + 51.54767 + ] + }, + "properties": { + "openplaque:id": "10624", + "addr:full": "24 Anglers Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22766, + 51.51365 + ] + }, + "properties": { + "openplaque:id": "10643", + "addr:full": "\"BBC Media Village", + "date_start": "201 Wood Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15947, + 51.52501 + ] + }, + "properties": { + "openplaque:id": "10672", + "addr:full": "\"2 Clarence Terrace", + "date_start": "Regents Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15835, + 51.51859 + ] + }, + "properties": { + "openplaque:id": "107", + "addr:full": "\"65 Gloucester Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15161, + 51.51297 + ] + }, + "properties": { + "openplaque:id": "10762", + "addr:full": "Brown Hart Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10208, + 51.52125 + ] + }, + "properties": { + "openplaque:id": "10775", + "addr:full": "33 St John's Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10672, + 51.53276 + ] + }, + "properties": { + "openplaque:id": "10776", + "addr:full": "\"Old Red Lion", + "date_start": "Angel\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13017, + 51.49683 + ] + }, + "properties": { + "openplaque:id": "10779", + "addr:full": "Great Peter Street / St Anne's Street junction" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1689, + 51.49894 + ] + }, + "properties": { + "openplaque:id": "10799", + "addr:full": "\"Ennismore Street", + "date_start": "\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21183, + 51.5205 + ] + }, + "properties": { + "openplaque:id": "108", + "addr:full": "\"239 Ladbroke Grove", + "date_start": "W10 Kensington & Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12862, + 51.5177 + ] + }, + "properties": { + "openplaque:id": "1081", + "addr:full": "100 Gt Russell Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12914, + 51.5176 + ] + }, + "properties": { + "openplaque:id": "1082", + "addr:full": "106 Gt Russell Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30652, + 51.52681 + ] + }, + "properties": { + "openplaque:id": "10827", + "addr:full": "\"223 Pitshanger Lane", + "date_start": "Ealing\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14957, + 51.59235 + ] + }, + "properties": { + "openplaque:id": "10845", + "addr:full": "\"Fortismere School", + "date_start": "Tetherdown" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28333, + 51.59003 + ] + }, + "properties": { + "openplaque:id": "10847", + "addr:full": "\"The Kingswood Centre", + "date_start": "Honeypot Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13347, + 51.53119 + ] + }, + "properties": { + "openplaque:id": "1085", + "addr:full": "\"Oakshott Court", + "date_start": "Werrington Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12984, + 51.52499 + ] + }, + "properties": { + "openplaque:id": "1088", + "addr:full": "33 Tavistock Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12989, + 51.52009 + ] + }, + "properties": { + "openplaque:id": "1089", + "addr:full": "10 Gower Street", + "date_start": "1984" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09123, + 51.5141 + ] + }, + "properties": { + "openplaque:id": "1090", + "addr:full": "6 Frederick's Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08919, + 51.51362 + ] + }, + "properties": { + "openplaque:id": "1091", + "addr:full": "\"Prince's Street", + "date_start": "London" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10795, + 51.5137 + ] + }, + "properties": { + "openplaque:id": "1092", + "addr:full": "\"6 Bouverie St", + "date_start": "EC4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11059, + 51.5125 + ] + }, + "properties": { + "openplaque:id": "1093", + "addr:full": "\"2 Crown Office Row", + "date_start": "Temple\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17062, + 51.493 + ] + }, + "properties": { + "openplaque:id": "1094", + "addr:full": "\"21 Pelham Crescent", + "date_start": "SW7\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13506, + 51.51386 + ] + }, + "properties": { + "openplaque:id": "1098", + "addr:full": "\"22 Berwick Street", + "date_start": "W1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13765, + 51.5118 + ] + }, + "properties": { + "openplaque:id": "1099", + "addr:full": "32-33 Golden Square", + "date_start": "1995" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20133, + 51.52452 + ] + }, + "properties": { + "openplaque:id": "10990", + "addr:full": "Walterton Rd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1576, + 51.5149 + ] + }, + "properties": { + "openplaque:id": "11", + "addr:full": "12 Seymour Street", + "date_start": "1911" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31659, + 51.44971 + ] + }, + "properties": { + "openplaque:id": "110", + "addr:full": "\"South End House", + "date_start": "Montpelier Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17684, + 51.4876 + ] + }, + "properties": { + "openplaque:id": "1100", + "addr:full": "\"34 Elm Park Gardens", + "date_start": "SW10\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08838, + 51.50669 + ] + }, + "properties": { + "openplaque:id": "11006", + "addr:full": "\"London Bridge", + "date_start": "Southwark\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17684, + 51.4876 + ] + }, + "properties": { + "openplaque:id": "1101", + "addr:full": "\"32 Elm Park Gardens", + "date_start": "SW10\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1378, + 51.5122 + ] + }, + "properties": { + "openplaque:id": "1102", + "addr:full": "Carnaby Street", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13176, + 51.5139 + ] + }, + "properties": { + "openplaque:id": "1104", + "addr:full": "Frith Street W1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07683, + 51.55041 + ] + }, + "properties": { + "openplaque:id": "11041", + "addr:full": "22-31 Templeton Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1337, + 51.5158 + ] + }, + "properties": { + "openplaque:id": "1105", + "addr:full": "28 Dean Street W1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.00458, + 51.48008 + ] + }, + "properties": { + "openplaque:id": "1107", + "addr:full": "\"Maze Hill", + "date_start": "Greenwich\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30568, + 51.5086 + ] + }, + "properties": { + "openplaque:id": "111", + "addr:full": "\"Ealing film Studios", + "date_start": "Ealing Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12593, + 51.5123 + ] + }, + "properties": { + "openplaque:id": "1112", + "addr:full": "\"132-135 Long Acre", + "date_start": "WC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1396, + 51.52258 + ] + }, + "properties": { + "openplaque:id": "1113", + "addr:full": "\"Boston House", + "date_start": "37 Fitzroy Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11958, + 51.51182 + ] + }, + "properties": { + "openplaque:id": "1114", + "addr:full": "Wellington Street WC2" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12293, + 51.51072 + ] + }, + "properties": { + "openplaque:id": "1115", + "addr:full": "10 Maiden Lane WC2", + "date_start": "1994" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1372, + 51.5265 + ] + }, + "properties": { + "openplaque:id": "1117", + "addr:full": "183 Gower Street", + "date_start": "1950" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15253, + 51.50824 + ] + }, + "properties": { + "openplaque:id": "1118", + "addr:full": "15 South Street", + "date_start": "1974" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2176, + 51.52533 + ] + }, + "properties": { + "openplaque:id": "11181", + "addr:full": "\"Canal Way", + "date_start": "Kensington and Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07503, + 51.50762 + ] + }, + "properties": { + "openplaque:id": "11184", + "addr:full": "\"Medieval Palace", + "date_start": "Tower of London\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1454, + 51.4531 + ] + }, + "properties": { + "openplaque:id": "112", + "addr:full": "\"17 Englewood Road", + "date_start": "Lambeth" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16325, + 51.4976 + ] + }, + "properties": { + "openplaque:id": "1120", + "addr:full": "16 Walton Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03817, + 51.47545 + ] + }, + "properties": { + "openplaque:id": "11221", + "addr:full": "\"Iceland", + "date_start": "formerly Woolworths" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15185, + 51.495 + ] + }, + "properties": { + "openplaque:id": "1127", + "addr:full": "44 Eaton Square", + "date_start": "1970" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1495, + 51.4937 + ] + }, + "properties": { + "openplaque:id": "1128", + "addr:full": "121 Ebury Street", + "date_start": "1937" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15649, + 51.50176 + ] + }, + "properties": { + "openplaque:id": "1129", + "addr:full": "\"8 Wilton Place", + "date_start": "SW1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03731, + 51.50635 + ] + }, + "properties": { + "openplaque:id": "11309", + "addr:full": "Lavender Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03719, + 51.50673 + ] + }, + "properties": { + "openplaque:id": "11311", + "addr:full": "Lavender Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12823, + 51.52105 + ] + }, + "properties": { + "openplaque:id": "11328", + "addr:full": "\"Senate House", + "date_start": "University of London" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14882, + 51.4616 + ] + }, + "properties": { + "openplaque:id": "1133", + "addr:full": "\"47 North Side", + "date_start": "Clapham Common\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05354, + 51.4952 + ] + }, + "properties": { + "openplaque:id": "1137", + "addr:full": "\"36 Gomm Road", + "date_start": "Bermondsey\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03223, + 51.49287 + ] + }, + "properties": { + "openplaque:id": "11370", + "addr:full": "Deptford Wharf" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00318, + 51.49197 + ] + }, + "properties": { + "openplaque:id": "11375", + "addr:full": "Mariners Mews / Sextant Avenue", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00929, + 51.48657 + ] + }, + "properties": { + "openplaque:id": "11376", + "addr:full": "Saunders Ness Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02579, + 51.50168 + ] + }, + "properties": { + "openplaque:id": "11377", + "addr:full": "Junction of Westferry Road/Cuba Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02599, + 51.49981 + ] + }, + "properties": { + "openplaque:id": "11378", + "addr:full": "25 Westferry Road", + "date_start": "1878" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06863, + 51.4741 + ] + }, + "properties": { + "openplaque:id": "1138", + "addr:full": "\"Manze's Pie and Mash shop", + "date_start": "105 Peckham High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33623, + 51.40649 + ] + }, + "properties": { + "openplaque:id": "11386", + "addr:full": "\"Hampton Court Green", + "date_start": "Hampton Court Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06681, + 51.4811 + ] + }, + "properties": { + "openplaque:id": "1139", + "addr:full": "\"Leyton Square", + "date_start": "Peckham Park Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05974, + 51.50313 + ] + }, + "properties": { + "openplaque:id": "11393", + "addr:full": "Wapping High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21735, + 51.4602 + ] + }, + "properties": { + "openplaque:id": "114", + "addr:full": "\"11 Putney Hill", + "date_start": "SW15 Wandsworth\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0956, + 51.4879 + ] + }, + "properties": { + "openplaque:id": "1141", + "addr:full": "\"East Street", + "date_start": "Walworth" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09199, + 51.50705 + ] + }, + "properties": { + "openplaque:id": "1145", + "addr:full": "\"Clink Prison Museum", + "date_start": "Soho Wharf" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1001, + 51.5007 + ] + }, + "properties": { + "openplaque:id": "1146", + "addr:full": "\"113 Webber Street", + "date_start": "Borough" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14724, + 51.57052 + ] + }, + "properties": { + "openplaque:id": "11466", + "addr:full": "\"The Angel Inn", + "date_start": "37 Highgate High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09013, + 51.5052 + ] + }, + "properties": { + "openplaque:id": "1147", + "addr:full": "\"Borough Market", + "date_start": "8 Southwark Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18772, + 51.5374 + ] + }, + "properties": { + "openplaque:id": "11473", + "addr:full": "\"Kington House", + "date_start": "Mortimer Crescent\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07606, + 51.5002 + ] + }, + "properties": { + "openplaque:id": "1149", + "addr:full": "\"Arch", + "date_start": "Druid Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21644, + 51.5786 + ] + }, + "properties": { + "openplaque:id": "115", + "addr:full": "\"93 Shirehall Park", + "date_start": "Hendon" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0849, + 51.47537 + ] + }, + "properties": { + "openplaque:id": "1154", + "addr:full": "\"Flats at St Giles’s hospital", + "date_start": "St Giles's Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07616, + 51.4476 + ] + }, + "properties": { + "openplaque:id": "1156", + "addr:full": "\"142 Court Lane", + "date_start": "Dulwich\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0841, + 51.4628 + ] + }, + "properties": { + "openplaque:id": "1157", + "addr:full": "\"Dulwich Hamlet Football Ground", + "date_start": "Edgar Kail Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0746, + 51.4494 + ] + }, + "properties": { + "openplaque:id": "1158", + "addr:full": "\"Popular 354 Lordship Lane", + "date_start": "East Dulwich" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20138, + 51.45656 + ] + }, + "properties": { + "openplaque:id": "11581", + "addr:full": "\"Wandsworth Fire Station", + "date_start": "West Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01564, + 51.51104 + ] + }, + "properties": { + "openplaque:id": "11583", + "addr:full": "\"Poplar Fire Station", + "date_start": "East India Dock Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05507, + 51.51712 + ] + }, + "properties": { + "openplaque:id": "11584", + "addr:full": "Sidney Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00523, + 51.49033 + ] + }, + "properties": { + "openplaque:id": "11585", + "addr:full": "\"St Lukes C of E Primary School", + "date_start": "91 Saundersness Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12513, + 51.52517 + ] + }, + "properties": { + "openplaque:id": "11587", + "addr:full": "60 Marchmont Street", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12421, + 51.52161 + ] + }, + "properties": { + "openplaque:id": "11588", + "addr:full": "156 Southampton Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08184, + 51.4491 + ] + }, + "properties": { + "openplaque:id": "1159", + "addr:full": "\"3 Court Lane Gardens", + "date_start": "Court Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11108, + 51.5221 + ] + }, + "properties": { + "openplaque:id": "11596", + "addr:full": "10 Laystall Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11811, + 51.51166 + ] + }, + "properties": { + "openplaque:id": "11603", + "addr:full": "148 Strand" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05382, + 51.49418 + ] + }, + "properties": { + "openplaque:id": "1163", + "addr:full": "\"Café Gallery", + "date_start": "Park Approach" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07467, + 51.5575 + ] + }, + "properties": { + "openplaque:id": "11634", + "addr:full": "\"Coronation Avenue", + "date_start": "1 Victorian Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14233, + 51.52442 + ] + }, + "properties": { + "openplaque:id": "1166", + "addr:full": "\"Diorama Theatre", + "date_start": "Triton Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12323, + 51.51752 + ] + }, + "properties": { + "openplaque:id": "11683", + "addr:full": "Bury Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16862, + 51.53646 + ] + }, + "properties": { + "openplaque:id": "11692", + "addr:full": "22 Woronzow Road", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13803, + 51.52348 + ] + }, + "properties": { + "openplaque:id": "117", + "addr:full": "\"58 Grafton Way", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09682, + 51.51694 + ] + }, + "properties": { + "openplaque:id": "11701", + "addr:full": "DZ Bank Building - 10 Aldersgate Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00693, + 51.47976 + ] + }, + "properties": { + "openplaque:id": "11712", + "addr:full": "\"Statue of King William IV", + "date_start": "Greenwich Park\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00788, + 51.48363 + ] + }, + "properties": { + "openplaque:id": "11717", + "addr:full": "Obelisk monument to Bellot - Greenwich", + "date_start": "1853" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1924, + 51.60112 + ] + }, + "properties": { + "openplaque:id": "11724", + "addr:full": "Finchley Central Tube Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15283, + 51.44324 + ] + }, + "properties": { + "openplaque:id": "11725", + "addr:full": "Balham Tube Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14006, + 51.49531 + ] + }, + "properties": { + "openplaque:id": "11726", + "addr:full": "\"1-12 Morpeth Mansions", + "date_start": "Morpeth Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17558, + 51.55898 + ] + }, + "properties": { + "openplaque:id": "11728", + "addr:full": "\"1 Well Mount Studios", + "date_start": "Well Mount" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1018, + 51.51672 + ] + }, + "properties": { + "openplaque:id": "11729", + "addr:full": "\"10 Giltspur Street", + "date_start": "EC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12813, + 51.51306 + ] + }, + "properties": { + "openplaque:id": "11730", + "addr:full": "26 West Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01061, + 51.46188 + ] + }, + "properties": { + "openplaque:id": "11751", + "addr:full": "\"M&S", + "date_start": "122 Lewisham High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15732, + 51.48998 + ] + }, + "properties": { + "openplaque:id": "11753", + "addr:full": "Turk's Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01058, + 51.46184 + ] + }, + "properties": { + "openplaque:id": "11754", + "addr:full": "\"pavement outside M&S", + "date_start": "Lewisham High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20195, + 51.50623 + ] + }, + "properties": { + "openplaque:id": "1178", + "addr:full": "\"Aubrey Walk", + "date_start": "Kensington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18867, + 51.6112 + ] + }, + "properties": { + "openplaque:id": "1179", + "addr:full": "\"60 Court House Gardens", + "date_start": "West Finchley\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13124, + 51.5065 + ] + }, + "properties": { + "openplaque:id": "118", + "addr:full": "11 Carlton House Terrace", + "date_start": "1925" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13383, + 51.5132 + ] + }, + "properties": { + "openplaque:id": "1182", + "addr:full": "\"The site of the Marquee Club", + "date_start": "90 Wardour Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16836, + 51.52484 + ] + }, + "properties": { + "openplaque:id": "11854", + "addr:full": "\"Lisson Grove/Lilestone St", + "date_start": "Lisson Green Estate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12767, + 51.50766 + ] + }, + "properties": { + "openplaque:id": "11860", + "addr:full": "Trafalgar Square / Whitehall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12591, + 51.52544 + ] + }, + "properties": { + "openplaque:id": "11862", + "addr:full": "36 Tavistock Place", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20828, + 51.41165 + ] + }, + "properties": { + "openplaque:id": "11881", + "addr:full": "\"Long Lodge", + "date_start": "Kingston Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19166, + 51.5014 + ] + }, + "properties": { + "openplaque:id": "11891", + "addr:full": "\"The Roof Garden", + "date_start": "Kensington High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11683, + 51.41641 + ] + }, + "properties": { + "openplaque:id": "119", + "addr:full": "\"45 The Chase", + "date_start": "Norbury" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18366, + 51.5268 + ] + }, + "properties": { + "openplaque:id": "12", + "addr:full": "\"75 Warrington Crescent", + "date_start": "Maida Vale" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16142, + 51.49197 + ] + }, + "properties": { + "openplaque:id": "120", + "addr:full": "\"25 Draycott Place", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26703, + 51.49588 + ] + }, + "properties": { + "openplaque:id": "12025", + "addr:full": "\"4 Fairlawn Grove", + "date_start": "Chiswick\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07189, + 51.52101 + ] + }, + "properties": { + "openplaque:id": "12035", + "addr:full": "\"#8bitlane", + "date_start": "Dray Walk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07511, + 51.4282 + ] + }, + "properties": { + "openplaque:id": "1204", + "addr:full": "17 Sydenham Hill SE26", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05202, + 51.50081 + ] + }, + "properties": { + "openplaque:id": "12070", + "addr:full": "Rotherhithe tube station", + "date_start": "1993" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05508, + 51.54556 + ] + }, + "properties": { + "openplaque:id": "12077", + "addr:full": "\"Hackney Empire Theatre", + "date_start": "291 Mare St\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14843, + 51.4978 + ] + }, + "properties": { + "openplaque:id": "12090", + "addr:full": "\"4 Hobart Place", + "date_start": "SW1W 0HU\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14572, + 51.46206 + ] + }, + "properties": { + "openplaque:id": "121", + "addr:full": "\"The Elms", + "date_start": "29 -32 Clapham Common North Side" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13079, + 51.5084 + ] + }, + "properties": { + "openplaque:id": "122", + "addr:full": "23 Suffolk Street", + "date_start": "1905" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15653, + 51.5204 + ] + }, + "properties": { + "openplaque:id": "12247", + "addr:full": "94 Baker Street", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00681, + 51.57004 + ] + }, + "properties": { + "openplaque:id": "12256", + "addr:full": "\"Wesley Road", + "date_start": "Leyton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30895, + 51.48299 + ] + }, + "properties": { + "openplaque:id": "12260", + "addr:full": "\"367 High St A315", + "date_start": "Brentford\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10598, + 51.55703 + ] + }, + "properties": { + "openplaque:id": "12262", + "addr:full": "166 Drayton Park", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02678, + 51.464 + ] + }, + "properties": { + "openplaque:id": "123", + "addr:full": "\"6 Tressillian Crescent", + "date_start": "SE4 Lewisham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11404, + 51.52696 + ] + }, + "properties": { + "openplaque:id": "1239", + "addr:full": "\"Travel Lodge Farringdon", + "date_start": "10-42 King's Cross Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26844, + 51.47798 + ] + }, + "properties": { + "openplaque:id": "12397", + "addr:full": "\"Cavendish Road", + "date_start": "Chiswick\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15825, + 51.45012 + ] + }, + "properties": { + "openplaque:id": "124", + "addr:full": "\"99 Nightingale Lane", + "date_start": "Wandsworth\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14639, + 51.50698 + ] + }, + "properties": { + "openplaque:id": "1241", + "addr:full": "10 Curzon Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13535, + 51.51612 + ] + }, + "properties": { + "openplaque:id": "12419", + "addr:full": "\"The 100 Club", + "date_start": "100 Oxford Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10857, + 51.52609 + ] + }, + "properties": { + "openplaque:id": "1243", + "addr:full": "\"56 Exmouth Market", + "date_start": "EC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22916, + 51.547 + ] + }, + "properties": { + "openplaque:id": "12435", + "addr:full": "\"Old Library building", + "date_start": "High Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07314, + 51.42638 + ] + }, + "properties": { + "openplaque:id": "12443", + "addr:full": "110 Westwood Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15752, + 51.52245 + ] + }, + "properties": { + "openplaque:id": "1246", + "addr:full": "\"Chiltern Court", + "date_start": "Baker Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19048, + 51.50083 + ] + }, + "properties": { + "openplaque:id": "125", + "addr:full": "\"40 Kensington Square", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12942, + 51.51366 + ] + }, + "properties": { + "openplaque:id": "12534", + "addr:full": "84 Charing Cross Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17678, + 51.5012 + ] + }, + "properties": { + "openplaque:id": "126", + "addr:full": "\"Albert Hall Mansions", + "date_start": "Kensington Gore" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12931, + 51.5173 + ] + }, + "properties": { + "openplaque:id": "1266", + "addr:full": "\"14 Great Russell Street", + "date_start": "WC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10272, + 51.51336 + ] + }, + "properties": { + "openplaque:id": "1267", + "addr:full": "\"7 Ludgate Broadway", + "date_start": "Ludgate Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17438, + 51.56952 + ] + }, + "properties": { + "openplaque:id": "1269", + "addr:full": "\"Spaniards Road", + "date_start": "Hampstead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18083, + 51.49533 + ] + }, + "properties": { + "openplaque:id": "1270", + "addr:full": "\"Queens Gate", + "date_start": "South Kensington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17667, + 51.5165 + ] + }, + "properties": { + "openplaque:id": "12719", + "addr:full": "Paddington Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09179, + 51.5071 + ] + }, + "properties": { + "openplaque:id": "12745", + "addr:full": "Clink Street (SE1 9DG)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13197, + 51.51155 + ] + }, + "properties": { + "openplaque:id": "12760", + "addr:full": "Gerrard Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13224, + 51.51151 + ] + }, + "properties": { + "openplaque:id": "12761", + "addr:full": "\"41-43 Wardour Street", + "date_start": "W1D 6PY\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13227, + 51.51157 + ] + }, + "properties": { + "openplaque:id": "12762", + "addr:full": "Wardour St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12422, + 51.52665 + ] + }, + "properties": { + "openplaque:id": "12797", + "addr:full": "61 Judd Street", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14166, + 51.51889 + ] + }, + "properties": { + "openplaque:id": "128", + "addr:full": "\"40 Langham Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19141, + 51.51442 + ] + }, + "properties": { + "openplaque:id": "12832", + "addr:full": "\"Hyde Park Hotel", + "date_start": "Bayswater\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12259, + 51.5261 + ] + }, + "properties": { + "openplaque:id": "12863", + "addr:full": "\"13 Wakefield Street", + "date_start": "WC1N 1PF\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21005, + 51.4986 + ] + }, + "properties": { + "openplaque:id": "1289", + "addr:full": "35 Russell Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11836, + 51.50156 + ] + }, + "properties": { + "openplaque:id": "129", + "addr:full": "\"Main Entrance", + "date_start": "County Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32146, + 51.47109 + ] + }, + "properties": { + "openplaque:id": "1290", + "addr:full": "\"Church Street", + "date_start": "Isleworth\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13221, + 51.50051 + ] + }, + "properties": { + "openplaque:id": "1291", + "addr:full": "8 Queen Anne's Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14164, + 51.5229 + ] + }, + "properties": { + "openplaque:id": "1293", + "addr:full": "\"141 Cleveland Street", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20662, + 51.55191 + ] + }, + "properties": { + "openplaque:id": "12945", + "addr:full": "\"13 Minster Road", + "date_start": "NW2 3SE\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30234, + 51.45633 + ] + }, + "properties": { + "openplaque:id": "1296", + "addr:full": "\"Petersham Road", + "date_start": "Richmond\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1613, + 51.48944 + ] + }, + "properties": { + "openplaque:id": "1297", + "addr:full": "\"29 Royal Avenue", + "date_start": "SW3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15843, + 51.5238 + ] + }, + "properties": { + "openplaque:id": "1298", + "addr:full": "221b Baker Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15658, + 51.52041 + ] + }, + "properties": { + "openplaque:id": "1299", + "addr:full": "94 Baker Street", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13246, + 51.5006 + ] + }, + "properties": { + "openplaque:id": "130", + "addr:full": "16 Queen Anne's Gate", + "date_start": "1975" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03242, + 51.51247 + ] + }, + "properties": { + "openplaque:id": "13030", + "addr:full": "\"East End Maternity Hospital", + "date_start": "384-398 Commercial Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13567, + 51.50933 + ] + }, + "properties": { + "openplaque:id": "13056", + "addr:full": "\"Eagle Place", + "date_start": "SW1Y 6LT\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1821, + 51.5574 + ] + }, + "properties": { + "openplaque:id": "131", + "addr:full": "\"108 Frognal", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14159, + 51.51464 + ] + }, + "properties": { + "openplaque:id": "13118", + "addr:full": "252 Regent Street", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08523, + 51.44936 + ] + }, + "properties": { + "openplaque:id": "1312", + "addr:full": "\"73 Dulwich Village", + "date_start": "Dulwich\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13392, + 51.5002 + ] + }, + "properties": { + "openplaque:id": "1316", + "addr:full": "50 Queen Anne's Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14866, + 51.50744 + ] + }, + "properties": { + "openplaque:id": "1318", + "addr:full": "\"Charles St", + "date_start": "W1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15299, + 51.56467 + ] + }, + "properties": { + "openplaque:id": "132", + "addr:full": "\"31 Highgate West Hill", + "date_start": "Highgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14839, + 51.5072 + ] + }, + "properties": { + "openplaque:id": "1320", + "addr:full": "\"6 Chesterfield Street W1", + "date_start": "Mayfair\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.138, + 51.5231 + ] + }, + "properties": { + "openplaque:id": "1322", + "addr:full": "\"Whitfield Street", + "date_start": "WC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12651, + 51.49611 + ] + }, + "properties": { + "openplaque:id": "1324", + "addr:full": "Smith Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12711, + 51.4963 + ] + }, + "properties": { + "openplaque:id": "1325", + "addr:full": "\"5 Smith Square", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15993, + 51.48526 + ] + }, + "properties": { + "openplaque:id": "1326", + "addr:full": "Tite Street SW3" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10121, + 51.51441 + ] + }, + "properties": { + "openplaque:id": "1327", + "addr:full": "Stationers’ Hall Court" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10826, + 51.5145 + ] + }, + "properties": { + "openplaque:id": "1328", + "addr:full": "\"Johnson's Court", + "date_start": "Fleet Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12545, + 51.5184 + ] + }, + "properties": { + "openplaque:id": "133", + "addr:full": "\"77 Great Russell Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08785, + 51.51293 + ] + }, + "properties": { + "openplaque:id": "1330", + "addr:full": "\"72 Lombard Street", + "date_start": "EC3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08552, + 51.512 + ] + }, + "properties": { + "openplaque:id": "1331", + "addr:full": "\"15 Lombard Street", + "date_start": "EC3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08582, + 51.512 + ] + }, + "properties": { + "openplaque:id": "1332", + "addr:full": "\"32 Lombard Street", + "date_start": "EC3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17757, + 51.56024 + ] + }, + "properties": { + "openplaque:id": "134", + "addr:full": "\"4 Holford Road", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17598, + 51.4817 + ] + }, + "properties": { + "openplaque:id": "135", + "addr:full": "\"109 Cheyne Walk", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08913, + 51.39095 + ] + }, + "properties": { + "openplaque:id": "136", + "addr:full": "\"30 Dagnall Park", + "date_start": "South Norwood" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17526, + 51.60691 + ] + }, + "properties": { + "openplaque:id": "1363", + "addr:full": "\"in the grounds of Finchley Memorial Hospital", + "date_start": "Granville Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10862, + 51.51478 + ] + }, + "properties": { + "openplaque:id": "1364", + "addr:full": "17 Gough Square", + "date_start": "1898" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17055, + 51.4868 + ] + }, + "properties": { + "openplaque:id": "1367", + "addr:full": "\"211 Kings Road", + "date_start": "Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17055, + 51.4868 + ] + }, + "properties": { + "openplaque:id": "1368", + "addr:full": "\"211 Kings Road", + "date_start": "Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22104, + 51.4211 + ] + }, + "properties": { + "openplaque:id": "1369", + "addr:full": "\"Lauriston Road", + "date_start": "Merton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07319, + 51.5197 + ] + }, + "properties": { + "openplaque:id": "137", + "addr:full": "2 Princelet Street", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2239, + 51.4233 + ] + }, + "properties": { + "openplaque:id": "1370", + "addr:full": "\"Southside", + "date_start": "Merton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16018, + 51.5229 + ] + }, + "properties": { + "openplaque:id": "1372", + "addr:full": "Dorset Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.123, + 51.5208 + ] + }, + "properties": { + "openplaque:id": "1375", + "addr:full": "\"Southampton Row", + "date_start": "Camden\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12939, + 51.51861 + ] + }, + "properties": { + "openplaque:id": "1376", + "addr:full": "48 Bedford Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18145, + 51.5 + ] + }, + "properties": { + "openplaque:id": "138", + "addr:full": "\"28 Hyde Park Gate", + "date_start": "Kensington Gore" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16039, + 51.5155 + ] + }, + "properties": { + "openplaque:id": "139", + "addr:full": "\"20 Upper Berkeley Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15486, + 51.5379 + ] + }, + "properties": { + "openplaque:id": "140", + "addr:full": "\"2 Albert Terrace", + "date_start": "Primrose Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18729, + 51.48662 + ] + }, + "properties": { + "openplaque:id": "142", + "addr:full": "\"57 Redcliffe Gardens", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00054, + 51.408 + ] + }, + "properties": { + "openplaque:id": "1420", + "addr:full": "\"58 Ravensbourne Avenue", + "date_start": "Shortlands" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07682, + 51.3936 + ] + }, + "properties": { + "openplaque:id": "1421", + "addr:full": "\"49 Towncourt Crescent", + "date_start": "Petts Wood" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.03989, + 51.3755 + ] + }, + "properties": { + "openplaque:id": "1424", + "addr:full": "\"'The Glebe'", + "date_start": "Oakley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34228, + 51.40514 + ] + }, + "properties": { + "openplaque:id": "143", + "addr:full": "\"The Old Court House", + "date_start": "Hampton Court Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2255, + 51.49046 + ] + }, + "properties": { + "openplaque:id": "144", + "addr:full": "\"Temple Lodge", + "date_start": "51 Queen Caroline Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1489, + 51.51426 + ] + }, + "properties": { + "openplaque:id": "145", + "addr:full": "\"34 South Molton Street", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11515, + 51.52464 + ] + }, + "properties": { + "openplaque:id": "146", + "addr:full": "\"20 Calthorpe Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14764, + 51.46559 + ] + }, + "properties": { + "openplaque:id": "147", + "addr:full": "\"81 The Chase", + "date_start": "Clapham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14835, + 51.50748 + ] + }, + "properties": { + "openplaque:id": "148", + "addr:full": "\"20 Charles Street", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14725, + 51.5794 + ] + }, + "properties": { + "openplaque:id": "1483", + "addr:full": "Muswell Hill Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14776, + 51.4978 + ] + }, + "properties": { + "openplaque:id": "149", + "addr:full": "\"4 Grosvenor Gardens", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14425, + 51.51353 + ] + }, + "properties": { + "openplaque:id": "15", + "addr:full": "21 Hanover Square", + "date_start": "1978" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14183, + 51.4963 + ] + }, + "properties": { + "openplaque:id": "150", + "addr:full": "\"22 Carlisle Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16838, + 51.4994 + ] + }, + "properties": { + "openplaque:id": "151", + "addr:full": "\"51 Rutland Gate", + "date_start": "Hyde Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16997, + 51.4846 + ] + }, + "properties": { + "openplaque:id": "153", + "addr:full": "\"22 Upper Cheyne Row", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1313, + 51.5212 + ] + }, + "properties": { + "openplaque:id": "1534", + "addr:full": "24 Gower Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13249, + 51.5118 + ] + }, + "properties": { + "openplaque:id": "154", + "addr:full": "\"41-43 Wardour Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1813, + 51.5374 + ] + }, + "properties": { + "openplaque:id": "155", + "addr:full": "\"42 Clifton Hill", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21507, + 51.5069 + ] + }, + "properties": { + "openplaque:id": "156", + "addr:full": "17 St Anns Villas", + "date_start": "1965" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17676, + 51.56208 + ] + }, + "properties": { + "openplaque:id": "157", + "addr:full": "\"Hollycot'", + "date_start": "Vale of Health" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12408, + 51.50709 + ] + }, + "properties": { + "openplaque:id": "1570", + "addr:full": "25 Craven Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16379, + 51.5205 + ] + }, + "properties": { + "openplaque:id": "158", + "addr:full": "\"136 Seymour Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13049, + 51.5092 + ] + }, + "properties": { + "openplaque:id": "159", + "addr:full": "\"27 Whitcomb Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3318, + 51.4421 + ] + }, + "properties": { + "openplaque:id": "16", + "addr:full": "\"St James Independent School for Boys", + "date_start": "Pope's Villa" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14632, + 51.51957 + ] + }, + "properties": { + "openplaque:id": "160", + "addr:full": "\"61 New Cavendish Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12988, + 51.52414 + ] + }, + "properties": { + "openplaque:id": "161", + "addr:full": "\"51 Gordon Square", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35932, + 51.4155 + ] + }, + "properties": { + "openplaque:id": "1619", + "addr:full": "\"78 High Street", + "date_start": "Hampton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00448, + 51.57856 + ] + }, + "properties": { + "openplaque:id": "163", + "addr:full": "\"25 Carnarvon Road", + "date_start": "Waltham Forest" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20502, + 51.49897 + ] + }, + "properties": { + "openplaque:id": "1643", + "addr:full": "8 Melbury Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16036, + 51.51332 + ] + }, + "properties": { + "openplaque:id": "1644", + "addr:full": "Edgware Road", + "date_start": "1965" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1734, + 51.5589 + ] + }, + "properties": { + "openplaque:id": "165", + "addr:full": "\"40 Well Walk", + "date_start": "NW3 1BX\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18258, + 51.49732 + ] + }, + "properties": { + "openplaque:id": "1652", + "addr:full": "5 Petersham Mews", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13299, + 51.51847 + ] + }, + "properties": { + "openplaque:id": "166", + "addr:full": "\"15 Percy Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13327, + 51.4549 + ] + }, + "properties": { + "openplaque:id": "167", + "addr:full": "\"13 Rodenhurst Road", + "date_start": "Clapham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20509, + 51.49887 + ] + }, + "properties": { + "openplaque:id": "168", + "addr:full": "\"2b Melbury Road", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14149, + 51.5701 + ] + }, + "properties": { + "openplaque:id": "169", + "addr:full": "\"65 Cromwell Avenue", + "date_start": "Highgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14554, + 51.5216 + ] + }, + "properties": { + "openplaque:id": "1690", + "addr:full": "\"Foyer of the Institute of Physics", + "date_start": "76 Portland Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18195, + 51.49247 + ] + }, + "properties": { + "openplaque:id": "17", + "addr:full": "\"22 Hereford Square", + "date_start": "Kensington and Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16021, + 51.5168 + ] + }, + "properties": { + "openplaque:id": "170", + "addr:full": "\"1 Bryanston Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19078, + 51.50546 + ] + }, + "properties": { + "openplaque:id": "171", + "addr:full": "Kensington Palace Gardens", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12615, + 51.5058 + ] + }, + "properties": { + "openplaque:id": "172", + "addr:full": "\"Ministry of Agriculture Building", + "date_start": "Whitehall Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1408, + 51.51485 + ] + }, + "properties": { + "openplaque:id": "173", + "addr:full": "\"10 Argyll Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1325, + 51.5136 + ] + }, + "properties": { + "openplaque:id": "174", + "addr:full": "\"33 Dean Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14874, + 51.52147 + ] + }, + "properties": { + "openplaque:id": "175", + "addr:full": "\"115a Harley Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11455, + 51.5546 + ] + }, + "properties": { + "openplaque:id": "1755", + "addr:full": "304b Holloway Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07251, + 51.5199 + ] + }, + "properties": { + "openplaque:id": "1757", + "addr:full": "17 Princelet Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1695, + 51.55639 + ] + }, + "properties": { + "openplaque:id": "1758", + "addr:full": "23 Downshire Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0934, + 51.5462 + ] + }, + "properties": { + "openplaque:id": "176", + "addr:full": "\"52 Canonbury Park South", + "date_start": "Islington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20436, + 51.51476 + ] + }, + "properties": { + "openplaque:id": "1760", + "addr:full": "Portobello Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.019, + 51.4884 + ] + }, + "properties": { + "openplaque:id": "1762", + "addr:full": "\"Burrell's Wharf", + "date_start": "Westferry Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23091, + 51.4273 + ] + }, + "properties": { + "openplaque:id": "177", + "addr:full": "\"9 North View", + "date_start": "Wimbledon Common" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19593, + 51.5054 + ] + }, + "properties": { + "openplaque:id": "178", + "addr:full": "\"58 Sheffield Terrace", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17935, + 51.5372 + ] + }, + "properties": { + "openplaque:id": "179", + "addr:full": "\"6 Carlton Hill", + "date_start": "St John's Wood" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15938, + 51.4613 + ] + }, + "properties": { + "openplaque:id": "18", + "addr:full": "\"110 North Side", + "date_start": "Clapham Common" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16319, + 51.45984 + ] + }, + "properties": { + "openplaque:id": "180", + "addr:full": "\"61 Shelgate Road", + "date_start": "SW11 Wandsworth\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14505, + 51.5083 + ] + }, + "properties": { + "openplaque:id": "181", + "addr:full": "\"The Lansdowne Club", + "date_start": "9 Fitzmaurice Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18305, + 51.5608 + ] + }, + "properties": { + "openplaque:id": "182", + "addr:full": "\"The Chestnuts", + "date_start": "1 Branch Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11446, + 51.52131 + ] + }, + "properties": { + "openplaque:id": "183", + "addr:full": "\"22 Theobalds Road", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13284, + 51.5227 + ] + }, + "properties": { + "openplaque:id": "184", + "addr:full": "\"91 Gower Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.29031, + 51.5057 + ] + }, + "properties": { + "openplaque:id": "1842", + "addr:full": "\"Gunnersbury Drive", + "date_start": "Ealing\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18479, + 51.56862 + ] + }, + "properties": { + "openplaque:id": "1847", + "addr:full": "\"St Anthony’s School", + "date_start": "Ivy House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.24212, + 51.48995 + ] + }, + "properties": { + "openplaque:id": "1854", + "addr:full": "\"3 Hammersmith Terrace", + "date_start": "Hammersmith\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21557, + 51.4666 + ] + }, + "properties": { + "openplaque:id": "1859", + "addr:full": "\"Kenilworth Court", + "date_start": "Lower Richmond Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12965, + 51.51989 + ] + }, + "properties": { + "openplaque:id": "186", + "addr:full": "\"2 Gower Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13284, + 51.51255 + ] + }, + "properties": { + "openplaque:id": "1869", + "addr:full": "\"59 Old Compton St", + "date_start": "Soho\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15719, + 51.46419 + ] + }, + "properties": { + "openplaque:id": "187", + "addr:full": "\"24 Sugden Road", + "date_start": "SW11 Wandsworth\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08966, + 51.5135 + ] + }, + "properties": { + "openplaque:id": "1870", + "addr:full": "\"Poultry", + "date_start": "EC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13593, + 51.5463 + ] + }, + "properties": { + "openplaque:id": "189", + "addr:full": "\"50 Lawford Road", + "date_start": "Kentish Town\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18912, + 51.51088 + ] + }, + "properties": { + "openplaque:id": "1895", + "addr:full": "9 Orme Court", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18072, + 51.49971 + ] + }, + "properties": { + "openplaque:id": "1896", + "addr:full": "11 Queen's Gate Mews", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13883, + 51.5342 + ] + }, + "properties": { + "openplaque:id": "1898", + "addr:full": "\"Mornington Cresent Underground Station", + "date_start": "Chalk Farm Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1542, + 51.5184 + ] + }, + "properties": { + "openplaque:id": "19", + "addr:full": "\"48 Blandford Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07052, + 51.5947 + ] + }, + "properties": { + "openplaque:id": "190", + "addr:full": "\"7 Bruce Grove", + "date_start": "Tottenham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0101, + 51.4655 + ] + }, + "properties": { + "openplaque:id": "1900", + "addr:full": "\"5 Bennett Park", + "date_start": "Blackheath\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1812, + 51.5801 + ] + }, + "properties": { + "openplaque:id": "1901", + "addr:full": "10 Grey Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20157, + 51.5073 + ] + }, + "properties": { + "openplaque:id": "191", + "addr:full": "\"9 Campden Hill Square", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20315, + 51.5197 + ] + }, + "properties": { + "openplaque:id": "192", + "addr:full": "\"40 St Luke's Road", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20962, + 51.4905 + ] + }, + "properties": { + "openplaque:id": "193", + "addr:full": "\"53 Talgarth Road", + "date_start": "Hammersmith and Fulham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14497, + 51.52949 + ] + }, + "properties": { + "openplaque:id": "194", + "addr:full": "\"27 Chester Terrace", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08924, + 51.5054 + ] + }, + "properties": { + "openplaque:id": "1940", + "addr:full": "\"Borough High Street", + "date_start": "Camberwell\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08571, + 51.5111 + ] + }, + "properties": { + "openplaque:id": "1942", + "addr:full": "\"51 Gracechurch Street", + "date_start": "EC3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08924, + 51.5129 + ] + }, + "properties": { + "openplaque:id": "1943", + "addr:full": "Mansion House Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0857, + 51.5134 + ] + }, + "properties": { + "openplaque:id": "1944", + "addr:full": "39 Cornhill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12428, + 51.51024 + ] + }, + "properties": { + "openplaque:id": "1945", + "addr:full": "6 Chandos Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12334, + 51.51059 + ] + }, + "properties": { + "openplaque:id": "1946", + "addr:full": "\"Stage Door", + "date_start": "Adelphi Theatre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1238, + 51.512 + ] + }, + "properties": { + "openplaque:id": "1947", + "addr:full": "\"King Street", + "date_start": "Covent Garden\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17675, + 51.4904 + ] + }, + "properties": { + "openplaque:id": "195", + "addr:full": "\"5 Onslow Gardens", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12716, + 51.5127 + ] + }, + "properties": { + "openplaque:id": "1956", + "addr:full": "Upper St. Martin's Lane", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12686, + 51.5138 + ] + }, + "properties": { + "openplaque:id": "1958", + "addr:full": "Earlham Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15223, + 51.51208 + ] + }, + "properties": { + "openplaque:id": "196", + "addr:full": "\"18 Grosvenor Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13106, + 51.5143 + ] + }, + "properties": { + "openplaque:id": "1960", + "addr:full": "Greek Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13065, + 51.51387 + ] + }, + "properties": { + "openplaque:id": "1961", + "addr:full": "18 Greek Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13669, + 51.5134 + ] + }, + "properties": { + "openplaque:id": "1962", + "addr:full": "Broadwick Street", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14048, + 51.5142 + ] + }, + "properties": { + "openplaque:id": "1964", + "addr:full": "Argyll Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13715, + 51.5083 + ] + }, + "properties": { + "openplaque:id": "1965", + "addr:full": "\"Cavendish Hotel", + "date_start": "Jermyn Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13186, + 51.5084 + ] + }, + "properties": { + "openplaque:id": "1967", + "addr:full": "Charles II Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13142, + 51.50789 + ] + }, + "properties": { + "openplaque:id": "1968", + "addr:full": "Haymarket" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14848, + 51.5158 + ] + }, + "properties": { + "openplaque:id": "197", + "addr:full": "\"50 Welbeck Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13611, + 51.5059 + ] + }, + "properties": { + "openplaque:id": "1970", + "addr:full": "80 Pall Mall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12955, + 51.51979 + ] + }, + "properties": { + "openplaque:id": "1973", + "addr:full": "11 Bedford Square", + "date_start": "1903" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19422, + 51.5028 + ] + }, + "properties": { + "openplaque:id": "198", + "addr:full": "\"37 Holland Street", + "date_start": "Kensington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15896, + 51.49666 + ] + }, + "properties": { + "openplaque:id": "1983", + "addr:full": "76 Sloane Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.175, + 51.5695 + ] + }, + "properties": { + "openplaque:id": "199", + "addr:full": "\"Heath End House", + "date_start": "Spaniards Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1253, + 51.5251 + ] + }, + "properties": { + "openplaque:id": "1991", + "addr:full": "57 Marchment Street", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09916, + 51.5436 + ] + }, + "properties": { + "openplaque:id": "1992", + "addr:full": "27B Canonbury Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15986, + 51.5187 + ] + }, + "properties": { + "openplaque:id": "1994", + "addr:full": "34 Montagu Square", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.04356, + 51.55042 + ] + }, + "properties": { + "openplaque:id": "1995", + "addr:full": "\"25 Albany Road", + "date_start": "Newham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13579, + 51.50585 + ] + }, + "properties": { + "openplaque:id": "2", + "addr:full": "80 - 82 Pall Mall", + "date_start": "1951" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09514, + 51.45753 + ] + }, + "properties": { + "openplaque:id": "20", + "addr:full": "\"51 Herne Hill", + "date_start": "Southwark" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13482, + 51.5079 + ] + }, + "properties": { + "openplaque:id": "200", + "addr:full": "\"4 St James's Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14786, + 51.5062 + ] + }, + "properties": { + "openplaque:id": "2001", + "addr:full": "\"The Shepherd’s Tavern", + "date_start": "50 Hertford Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16764, + 51.617 + ] + }, + "properties": { + "openplaque:id": "2002", + "addr:full": "85 Torrington Park", + "date_start": "1995" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19571, + 51.4895 + ] + }, + "properties": { + "openplaque:id": "2003", + "addr:full": "67 Eardley Crescent", + "date_start": "1995" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32248, + 51.4288 + ] + }, + "properties": { + "openplaque:id": "2006", + "addr:full": "\"Teddington Studios", + "date_start": "Broom Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32248, + 51.4288 + ] + }, + "properties": { + "openplaque:id": "2007", + "addr:full": "\"Teddington Studios", + "date_start": "Broom Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32248, + 51.4288 + ] + }, + "properties": { + "openplaque:id": "2008", + "addr:full": "\"Teddington Studios", + "date_start": "Broom Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32248, + 51.4288 + ] + }, + "properties": { + "openplaque:id": "2009", + "addr:full": "\"Teddington Studios", + "date_start": "Broom Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15188, + 51.51654 + ] + }, + "properties": { + "openplaque:id": "201", + "addr:full": "\"3 Manchester Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32248, + 51.4288 + ] + }, + "properties": { + "openplaque:id": "2010", + "addr:full": "\"Teddington Studios", + "date_start": "Broom Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32248, + 51.4288 + ] + }, + "properties": { + "openplaque:id": "2011", + "addr:full": "\"Teddington Studios", + "date_start": "Broom Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32248, + 51.4288 + ] + }, + "properties": { + "openplaque:id": "2012", + "addr:full": "\"Teddington Studios", + "date_start": "Broom Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32248, + 51.4288 + ] + }, + "properties": { + "openplaque:id": "2013", + "addr:full": "\"Teddington Studios", + "date_start": "Broom Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32248, + 51.4288 + ] + }, + "properties": { + "openplaque:id": "2014", + "addr:full": "\"Teddington Studios", + "date_start": "Broom Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17854, + 51.5343 + ] + }, + "properties": { + "openplaque:id": "2026", + "addr:full": "14 Langford Place", + "date_start": "1994" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18484, + 51.51995 + ] + }, + "properties": { + "openplaque:id": "2027", + "addr:full": "1 Westbourne Terrace Road", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17418, + 51.48196 + ] + }, + "properties": { + "openplaque:id": "203", + "addr:full": "\"96 Cheyne Walk", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14078, + 51.50707 + ] + }, + "properties": { + "openplaque:id": "204", + "addr:full": "\"5 Arlington Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21957, + 51.42585 + ] + }, + "properties": { + "openplaque:id": "205", + "addr:full": "\"Eagle House", + "date_start": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17639, + 51.4901 + ] + }, + "properties": { + "openplaque:id": "206", + "addr:full": "\"24 Onslow Gardens", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12928, + 51.52072 + ] + }, + "properties": { + "openplaque:id": "2067", + "addr:full": "\"Senate House", + "date_start": "University of London" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1807, + 51.56491 + ] + }, + "properties": { + "openplaque:id": "207", + "addr:full": "\"Inverforth House", + "date_start": "North End Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18488, + 51.4929 + ] + }, + "properties": { + "openplaque:id": "208", + "addr:full": "\"39 Harrington Gardens", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14139, + 51.494 + ] + }, + "properties": { + "openplaque:id": "209", + "addr:full": "\"17 Gillingham Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.29632, + 51.51324 + ] + }, + "properties": { + "openplaque:id": "21", + "addr:full": "\"2 North Common Road", + "date_start": "W5 Ealing\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07625, + 51.4722 + ] + }, + "properties": { + "openplaque:id": "210", + "addr:full": "\"78 Denman Road", + "date_start": "Southwark" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19231, + 51.4947 + ] + }, + "properties": { + "openplaque:id": "211", + "addr:full": "\"173 Cromwell Road", + "date_start": "SW5 Kensington & Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09635, + 51.45744 + ] + }, + "properties": { + "openplaque:id": "212", + "addr:full": "\"26 Herne Hill", + "date_start": "Lambeth" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14421, + 51.52211 + ] + }, + "properties": { + "openplaque:id": "2121", + "addr:full": "\"84 Hallam Street", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14775, + 51.5207 + ] + }, + "properties": { + "openplaque:id": "2122", + "addr:full": "90 Harley Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14884, + 51.5178 + ] + }, + "properties": { + "openplaque:id": "2124", + "addr:full": "\"54 Queen Anne Street", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14952, + 51.5182 + ] + }, + "properties": { + "openplaque:id": "2125", + "addr:full": "\"29 Welbeck Street", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.175, + 51.4818 + ] + }, + "properties": { + "openplaque:id": "2127", + "addr:full": "104 Cheyne Walk", + "date_start": "1973" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15252, + 51.51744 + ] + }, + "properties": { + "openplaque:id": "2128", + "addr:full": "3 Spanish Place", + "date_start": "1963" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16077, + 51.4857 + ] + }, + "properties": { + "openplaque:id": "2129", + "addr:full": "38 Tite Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15754, + 51.5405 + ] + }, + "properties": { + "openplaque:id": "213", + "addr:full": "\"122 Regent's Park Road", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19481, + 51.5064 + ] + }, + "properties": { + "openplaque:id": "214", + "addr:full": "\"4 Bedford Gardens", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16353, + 51.51302 + ] + }, + "properties": { + "openplaque:id": "2146", + "addr:full": "\"Tyburn Convent", + "date_start": "Bayswater Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11781, + 51.5273 + ] + }, + "properties": { + "openplaque:id": "216", + "addr:full": "\"33 Ampton Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12539, + 51.52871 + ] + }, + "properties": { + "openplaque:id": "217", + "addr:full": "\"Queen Alexandra Mansions", + "date_start": "Bidborough Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18245, + 51.5765 + ] + }, + "properties": { + "openplaque:id": "218", + "addr:full": "\"48 Wildwood Road", + "date_start": "Barnet" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2737, + 51.4842 + ] + }, + "properties": { + "openplaque:id": "219", + "addr:full": "\"58 Grove Park Terrace", + "date_start": "Hounslow" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34256, + 51.5706 + ] + }, + "properties": { + "openplaque:id": "2191", + "addr:full": "\"Byron House", + "date_start": "Clonmel Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17755, + 51.54831 + ] + }, + "properties": { + "openplaque:id": "2194", + "addr:full": "20 Maresfield Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08419, + 51.41372 + ] + }, + "properties": { + "openplaque:id": "2197", + "addr:full": "\"140 Church Road", + "date_start": "Upper Norwood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17737, + 51.5242 + ] + }, + "properties": { + "openplaque:id": "2198", + "addr:full": "2 Maida Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14836, + 51.50709 + ] + }, + "properties": { + "openplaque:id": "22", + "addr:full": "\"4 Chesterfield Street", + "date_start": "Mayfair" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1493, + 51.4941 + ] + }, + "properties": { + "openplaque:id": "220", + "addr:full": "\"109 Ebury Street", + "date_start": "Victoria" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17887, + 51.5296 + ] + }, + "properties": { + "openplaque:id": "221", + "addr:full": "\"10 Hall Road", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11473, + 51.52922 + ] + }, + "properties": { + "openplaque:id": "2210", + "addr:full": "16 Percy Circus" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12572, + 51.52595 + ] + }, + "properties": { + "openplaque:id": "2218", + "addr:full": "87 Marchmont Street", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14596, + 51.51667 + ] + }, + "properties": { + "openplaque:id": "222", + "addr:full": "\"18 Cavendish Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12514, + 51.52472 + ] + }, + "properties": { + "openplaque:id": "2222", + "addr:full": "41 Marchmont Street", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12516, + 51.52476 + ] + }, + "properties": { + "openplaque:id": "2226", + "addr:full": "43 Marchmont Street", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14157, + 51.5559 + ] + }, + "properties": { + "openplaque:id": "223", + "addr:full": "\"60 Burghley Road", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15075, + 51.5387 + ] + }, + "properties": { + "openplaque:id": "2230", + "addr:full": "11 St Mark's Crescent", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13646, + 51.5423 + ] + }, + "properties": { + "openplaque:id": "224", + "addr:full": "\"135 St Pancras Way", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16147, + 51.5231 + ] + }, + "properties": { + "openplaque:id": "2242", + "addr:full": "18 Dorset Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16176, + 51.52258 + ] + }, + "properties": { + "openplaque:id": "2246", + "addr:full": "28 Dorset Square", + "date_start": "1963" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15456, + 51.4511 + ] + }, + "properties": { + "openplaque:id": "225", + "addr:full": "\"40 Nightingale Lane", + "date_start": "Clapham South" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14578, + 51.5186 + ] + }, + "properties": { + "openplaque:id": "2250", + "addr:full": "2 Mansfield Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12648, + 51.5181 + ] + }, + "properties": { + "openplaque:id": "226", + "addr:full": "\"46 Great Russell Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14643, + 51.5343 + ] + }, + "properties": { + "openplaque:id": "227", + "addr:full": "\"197 Albany Street", + "date_start": "Regent's Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22223, + 51.4465 + ] + }, + "properties": { + "openplaque:id": "228", + "addr:full": "\"Fairlawns", + "date_start": "89 Wimbledon Parkside" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18835, + 51.4967 + ] + }, + "properties": { + "openplaque:id": "229", + "addr:full": "\"100 Cornwall Gardens", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27412, + 51.5065 + ] + }, + "properties": { + "openplaque:id": "2298", + "addr:full": "\"16 Mill Hill Park", + "date_start": "Acton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15899, + 51.49672 + ] + }, + "properties": { + "openplaque:id": "23", + "addr:full": "\"76 Sloane Street", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17455, + 51.5594 + ] + }, + "properties": { + "openplaque:id": "230", + "addr:full": "\"7 Well Road", + "date_start": "Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10619, + 51.5139 + ] + }, + "properties": { + "openplaque:id": "2306", + "addr:full": "4 Salisbury Court" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17942, + 51.55931 + ] + }, + "properties": { + "openplaque:id": "231", + "addr:full": "\"New Grove House", + "date_start": "28 Hampstead Grove" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16528, + 51.4791 + ] + }, + "properties": { + "openplaque:id": "232", + "addr:full": "\"63 Albany Mansions", + "date_start": "Albert Bridge Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12458, + 51.5115 + ] + }, + "properties": { + "openplaque:id": "233", + "addr:full": "\"31 King Street", + "date_start": "Covent Garden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14009, + 51.50543 + ] + }, + "properties": { + "openplaque:id": "234", + "addr:full": "\"28 St James's Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08898, + 51.4895 + ] + }, + "properties": { + "openplaque:id": "236", + "addr:full": "\"153a East Street", + "date_start": "Walworth" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12972, + 0 + ] + }, + "properties": { + "openplaque:id": "2365", + "addr:full": "\"Central St Martin's College", + "date_start": "107-111 Charing Cross Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14914, + 51.50544 + ] + }, + "properties": { + "openplaque:id": "237", + "addr:full": "\"20 Hertford Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15881, + 51.5143 + ] + }, + "properties": { + "openplaque:id": "238", + "addr:full": "\"30 Seymour Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09822, + 51.5153 + ] + }, + "properties": { + "openplaque:id": "2389", + "addr:full": "Newgate Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1499, + 51.5723 + ] + }, + "properties": { + "openplaque:id": "239", + "addr:full": "\"Byron Cottage", + "date_start": "17 North Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16879, + 51.51293 + ] + }, + "properties": { + "openplaque:id": "240", + "addr:full": "\"Chester House", + "date_start": "Clarendon Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12208, + 51.50966 + ] + }, + "properties": { + "openplaque:id": "241", + "addr:full": "\"8 Adam Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14593, + 51.52158 + ] + }, + "properties": { + "openplaque:id": "242", + "addr:full": "\"63 Portland Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3445, + 51.40692 + ] + }, + "properties": { + "openplaque:id": "2429", + "addr:full": "\"Hampton Court Road", + "date_start": "TW12\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20206, + 51.49924 + ] + }, + "properties": { + "openplaque:id": "243", + "addr:full": "\"18 Melbury Road", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1349, + 51.4889 + ] + }, + "properties": { + "openplaque:id": "244", + "addr:full": "\"33 St George's Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14763, + 51.51701 + ] + }, + "properties": { + "openplaque:id": "245", + "addr:full": "\"6 Wimpole Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1886, + 51.4966 + ] + }, + "properties": { + "openplaque:id": "2453", + "addr:full": "\"52 Cornwall Gardens", + "date_start": "Kensington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.03297, + 51.4855 + ] + }, + "properties": { + "openplaque:id": "246", + "addr:full": "67 Charlton Church Lane", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1904, + 51.5008 + ] + }, + "properties": { + "openplaque:id": "247", + "addr:full": "\"41 Kensington Square", + "date_start": "Kensington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14699, + 51.51182 + ] + }, + "properties": { + "openplaque:id": "248", + "addr:full": "\"21/22 Grosvenor Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1589, + 51.52041 + ] + }, + "properties": { + "openplaque:id": "2485", + "addr:full": "\"102 Gloucester Place", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16309, + 51.516 + ] + }, + "properties": { + "openplaque:id": "2493", + "addr:full": "\"147 George Street", + "date_start": "W1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14753, + 51.5064 + ] + }, + "properties": { + "openplaque:id": "2497", + "addr:full": "17 Trebeck Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1632, + 51.5279 + ] + }, + "properties": { + "openplaque:id": "25", + "addr:full": "13 Hanover Terrace", + "date_start": "1966" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07002, + 51.516 + ] + }, + "properties": { + "openplaque:id": "250", + "addr:full": "\"Whitechapel Library", + "date_start": "77 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14509, + 51.5235 + ] + }, + "properties": { + "openplaque:id": "2501", + "addr:full": "12 Park Crescent", + "date_start": "1915" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14907, + 51.5239 + ] + }, + "properties": { + "openplaque:id": "2505", + "addr:full": "2 Brunswick Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14975, + 51.5242 + ] + }, + "properties": { + "openplaque:id": "2509", + "addr:full": "19 York Terrace East" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14212, + 51.5067 + ] + }, + "properties": { + "openplaque:id": "251", + "addr:full": "\"22 Arlington Street", + "date_start": "(Plaque on rear of building overlooking Queen's Walk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15253, + 51.51744 + ] + }, + "properties": { + "openplaque:id": "252", + "addr:full": "\"3 Spanish Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07184, + 51.5212 + ] + }, + "properties": { + "openplaque:id": "254", + "addr:full": "\"The Directors’ House", + "date_start": "Old Truman Brewery" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20723, + 51.4954 + ] + }, + "properties": { + "openplaque:id": "255", + "addr:full": "\"7 Addison Bridge Place", + "date_start": "Hammersmith and Fulham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25224, + 51.47282 + ] + }, + "properties": { + "openplaque:id": "2553", + "addr:full": "\"10 The Terrace", + "date_start": "Barnes" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32947, + 51.4674 + ] + }, + "properties": { + "openplaque:id": "2557", + "addr:full": "\"Twickenham Road", + "date_start": "Isleworth\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22433, + 51.4339 + ] + }, + "properties": { + "openplaque:id": "257", + "addr:full": "\"Beech Holme", + "date_start": "49 Wimbledon Parkside" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1826, + 51.5543 + ] + }, + "properties": { + "openplaque:id": "259", + "addr:full": "\"71 Frognal", + "date_start": "Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14637, + 51.49696 + ] + }, + "properties": { + "openplaque:id": "26", + "addr:full": "\"32 Grosvenor Gardens", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0034, + 51.4754 + ] + }, + "properties": { + "openplaque:id": "260", + "addr:full": "\"Ranger’s House", + "date_start": "Chesterfield Walk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14253, + 51.5103 + ] + }, + "properties": { + "openplaque:id": "261", + "addr:full": "15a Grafton Street", + "date_start": "1950" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13415, + 51.51111 + ] + }, + "properties": { + "openplaque:id": "262", + "addr:full": "\"Lyric Theatre (rear portion)", + "date_start": "Great Windmill Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18294, + 51.5113 + ] + }, + "properties": { + "openplaque:id": "263", + "addr:full": "74 Lancaster Gate", + "date_start": "1977" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16339, + 51.52719 + ] + }, + "properties": { + "openplaque:id": "264", + "addr:full": "\"10 Kent Terrace", + "date_start": "Regent's Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.202, + 51.5068 + ] + }, + "properties": { + "openplaque:id": "265", + "addr:full": "\"23 Campden Hill Square", + "date_start": "Kensington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17411, + 51.57052 + ] + }, + "properties": { + "openplaque:id": "266", + "addr:full": "\"Bedegar's Lea", + "date_start": "Hampstead Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16358, + 51.4963 + ] + }, + "properties": { + "openplaque:id": "267", + "addr:full": "\"8 Lennox Gardens", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16005, + 51.4497 + ] + }, + "properties": { + "openplaque:id": "2677", + "addr:full": "\"Nightingale House", + "date_start": "Nightingale Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1405, + 51.51788 + ] + }, + "properties": { + "openplaque:id": "268", + "addr:full": "\"44 Mortimer Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16096, + 51.51355 + ] + }, + "properties": { + "openplaque:id": "269", + "addr:full": "2 Connaught Place", + "date_start": "1962" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1447, + 51.5225 + ] + }, + "properties": { + "openplaque:id": "27", + "addr:full": "110 Hallam Street", + "date_start": "1906" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16249, + 51.4968 + ] + }, + "properties": { + "openplaque:id": "271", + "addr:full": "\"57 Pont Street", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13685, + 51.5171 + ] + }, + "properties": { + "openplaque:id": "272", + "addr:full": "\" 71 Berners Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13895, + 51.5448 + ] + }, + "properties": { + "openplaque:id": "273", + "addr:full": "\"9 Rochester Terrace", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17356, + 51.49177 + ] + }, + "properties": { + "openplaque:id": "2734", + "addr:full": "34 Onslow Square", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.00962, + 51.453 + ] + }, + "properties": { + "openplaque:id": "274", + "addr:full": "\"13 Handen Road", + "date_start": "SE12 Lewisham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12993, + 51.51964 + ] + }, + "properties": { + "openplaque:id": "276", + "addr:full": "13 Bedford Square", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.131, + 51.5087 + ] + }, + "properties": { + "openplaque:id": "2766", + "addr:full": "Suffolk Street", + "date_start": "1995" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12759, + 51.49725 + ] + }, + "properties": { + "openplaque:id": "277", + "addr:full": "6 Barton Street", + "date_start": "1995" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.132, + 51.5102 + ] + }, + "properties": { + "openplaque:id": "2770", + "addr:full": "\"Prince of Wales Theatre", + "date_start": "Coventry Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14485, + 51.5058 + ] + }, + "properties": { + "openplaque:id": "278", + "addr:full": "\"Naval and Military Club", + "date_start": "94 Piccadilly" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15592, + 51.50991 + ] + }, + "properties": { + "openplaque:id": "2781", + "addr:full": "90 Park Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15617, + 51.51 + ] + }, + "properties": { + "openplaque:id": "2785", + "addr:full": "93 Park Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16208, + 51.4633 + ] + }, + "properties": { + "openplaque:id": "279", + "addr:full": "\"33 Lavender Gardens", + "date_start": "SW11 Wandsworth\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19455, + 51.49567 + ] + }, + "properties": { + "openplaque:id": "27933", + "addr:full": "\"91 Lexham Gardens", + "date_start": "Kensington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20038, + 51.5193 + ] + }, + "properties": { + "openplaque:id": "28", + "addr:full": "\"23 Aldridge Road Villas", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23179, + 51.5039 + ] + }, + "properties": { + "openplaque:id": "280", + "addr:full": "\"49 St Stephen's Avenue", + "date_start": "W12 Hammersmith & Fulham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12791, + 51.51282 + ] + }, + "properties": { + "openplaque:id": "28028", + "addr:full": "\"St Martin's Theatre", + "date_start": "West St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13319, + 51.5257 + ] + }, + "properties": { + "openplaque:id": "28029", + "addr:full": "25 Gordon Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18044, + 51.5574 + ] + }, + "properties": { + "openplaque:id": "2805", + "addr:full": "\"7 Mount Vernon", + "date_start": "Hampstead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18059, + 51.5572 + ] + }, + "properties": { + "openplaque:id": "2809", + "addr:full": "\"16 Holly Walk", + "date_start": "Hampstead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13788, + 51.5118 + ] + }, + "properties": { + "openplaque:id": "281", + "addr:full": "\"31 Golden Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18237, + 51.57744 + ] + }, + "properties": { + "openplaque:id": "282", + "addr:full": "\"15 Wildwood Road", + "date_start": "Barnet" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09273, + 51.52262 + ] + }, + "properties": { + "openplaque:id": "28220", + "addr:full": "\"Whitecross St", + "date_start": "EC1Y 8NR\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36025, + 51.41077 + ] + }, + "properties": { + "openplaque:id": "28247", + "addr:full": "\"Molesey Hurst", + "date_start": "West Molesey\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19904, + 51.5114 + ] + }, + "properties": { + "openplaque:id": "2825", + "addr:full": "\"22 Portobello Road", + "date_start": "Notting Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09794, + 51.5574 + ] + }, + "properties": { + "openplaque:id": "28269", + "addr:full": "86 Highbury Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11245, + 51.5122 + ] + }, + "properties": { + "openplaque:id": "2829", + "addr:full": "31 Essex Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17629, + 51.56 + ] + }, + "properties": { + "openplaque:id": "283", + "addr:full": "\"5 Cannon Place", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09676, + 51.5166 + ] + }, + "properties": { + "openplaque:id": "2845", + "addr:full": "\"Aldersgate Street", + "date_start": "EC1A 4JA\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.134, + 51.4963 + ] + }, + "properties": { + "openplaque:id": "2849", + "addr:full": "\"Grey Coat Hospital", + "date_start": "Greycoat Pl\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12174, + 51.5195 + ] + }, + "properties": { + "openplaque:id": "285", + "addr:full": "\"Central School of Arts and Crafts", + "date_start": "Southampton Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12368, + 51.5081 + ] + }, + "properties": { + "openplaque:id": "286", + "addr:full": "\"43 Villiers Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1609, + 51.4858 + ] + }, + "properties": { + "openplaque:id": "287", + "addr:full": "\"34 Tite Street", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13747, + 51.51142 + ] + }, + "properties": { + "openplaque:id": "2885", + "addr:full": "\"23 Golden Square", + "date_start": "Soho" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1223, + 51.5144 + ] + }, + "properties": { + "openplaque:id": "2889", + "addr:full": "69-75 Long Acre", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18444, + 51.527 + ] + }, + "properties": { + "openplaque:id": "289", + "addr:full": "\"182 Sutherland Avenue", + "date_start": "Maida Vale" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14224, + 51.51746 + ] + }, + "properties": { + "openplaque:id": "2893", + "addr:full": "97 Mortimer Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17238, + 51.5549 + ] + }, + "properties": { + "openplaque:id": "2897", + "addr:full": "\"1 Pilgrim's Lane", + "date_start": "Hampstead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17352, + 51.559 + ] + }, + "properties": { + "openplaque:id": "29", + "addr:full": "\"13 Well Walk", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1785, + 51.56106 + ] + }, + "properties": { + "openplaque:id": "2901", + "addr:full": "\"East Heath Road", + "date_start": "Hampstead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18197, + 51.5575 + ] + }, + "properties": { + "openplaque:id": "2905", + "addr:full": "108 Frognal" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18228, + 51.5572 + ] + }, + "properties": { + "openplaque:id": "2909", + "addr:full": "106 Frognal" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14069, + 51.5112 + ] + }, + "properties": { + "openplaque:id": "291", + "addr:full": "\"17 Savile Row", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17953, + 51.5555 + ] + }, + "properties": { + "openplaque:id": "2913", + "addr:full": "\"Church Row", + "date_start": "Hampstead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1264, + 51.5143 + ] + }, + "properties": { + "openplaque:id": "2917", + "addr:full": "Neal's Yard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1264, + 51.5143 + ] + }, + "properties": { + "openplaque:id": "2921", + "addr:full": "Neal's Yard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1888, + 51.5018 + ] + }, + "properties": { + "openplaque:id": "2925", + "addr:full": "\"Kensington Court", + "date_start": "Kensington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1898, + 51.5003 + ] + }, + "properties": { + "openplaque:id": "2929", + "addr:full": "\"Kensington Square", + "date_start": "Kensington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1415, + 51.4992 + ] + }, + "properties": { + "openplaque:id": "293", + "addr:full": "\"16 Stafford Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10458, + 51.51523 + ] + }, + "properties": { + "openplaque:id": "2933", + "addr:full": "Farringdon Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14284, + 51.51699 + ] + }, + "properties": { + "openplaque:id": "2941", + "addr:full": "309 Regent Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1428, + 51.51688 + ] + }, + "properties": { + "openplaque:id": "2945", + "addr:full": "309 Regent Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13991, + 51.5326 + ] + }, + "properties": { + "openplaque:id": "295", + "addr:full": "\"6 Mornington Crescent", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13933, + 51.50593 + ] + }, + "properties": { + "openplaque:id": "297", + "addr:full": "\"4 St James's Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15136, + 51.49792 + ] + }, + "properties": { + "openplaque:id": "298", + "addr:full": "\"16 Eaton Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16715, + 51.5242 + ] + }, + "properties": { + "openplaque:id": "299", + "addr:full": "\"116 Lisson Grove", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22613, + 51.50998 + ] + }, + "properties": { + "openplaque:id": "29922", + "addr:full": "BBC Television Centre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22613, + 51.50998 + ] + }, + "properties": { + "openplaque:id": "29926", + "addr:full": "BBC TV Centre fountain" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13499, + 51.4986 + ] + }, + "properties": { + "openplaque:id": "2993", + "addr:full": "Caxton Hall", + "date_start": "1991" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13073, + 51.5119 + ] + }, + "properties": { + "openplaque:id": "2997", + "addr:full": "40 Gerrard Street", + "date_start": "1992" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15245, + 51.51607 + ] + }, + "properties": { + "openplaque:id": "3", + "addr:full": "4 Duke Street", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28856, + 51.5254 + ] + }, + "properties": { + "openplaque:id": "30", + "addr:full": "\"37 The Ridings", + "date_start": "Ealing\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14795, + 51.50567 + ] + }, + "properties": { + "openplaque:id": "300", + "addr:full": "\"10 Hertford Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09109, + 51.52643 + ] + }, + "properties": { + "openplaque:id": "30003", + "addr:full": "Bath Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17762, + 51.5323 + ] + }, + "properties": { + "openplaque:id": "3005", + "addr:full": "\"Abbey Road Studios", + "date_start": "Abbey Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12153, + 51.50753 + ] + }, + "properties": { + "openplaque:id": "30069", + "addr:full": "Embankment" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13125, + 51.51117 + ] + }, + "properties": { + "openplaque:id": "30073", + "addr:full": "Leicester Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12779, + 51.51157 + ] + }, + "properties": { + "openplaque:id": "30090", + "addr:full": "21 Cranbourne Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12834, + 51.51157 + ] + }, + "properties": { + "openplaque:id": "30091", + "addr:full": "Charing Cross Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12027, + 51.51253 + ] + }, + "properties": { + "openplaque:id": "30096", + "addr:full": "23 Catherine Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07236, + 51.416 + ] + }, + "properties": { + "openplaque:id": "301", + "addr:full": "\"5 Hamlet Road", + "date_start": "Upper Norwood" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18349, + 51.5209 + ] + }, + "properties": { + "openplaque:id": "3013", + "addr:full": "Warwick Crescent", + "date_start": "1993" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13012, + 51.489 + ] + }, + "properties": { + "openplaque:id": "30137", + "addr:full": "Horseferry Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12943, + 51.49737 + ] + }, + "properties": { + "openplaque:id": "30139", + "addr:full": "Great Smith Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01442, + 51.47699 + ] + }, + "properties": { + "openplaque:id": "30152", + "addr:full": "\"Entrance to Greenwich Park", + "date_start": "Charlton Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14326, + 51.51727 + ] + }, + "properties": { + "openplaque:id": "3017", + "addr:full": "3 Cavendish Place", + "date_start": "1994" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.193, + 51.50233 + ] + }, + "properties": { + "openplaque:id": "302", + "addr:full": "\"10 Kensington Church Walk", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09932, + 51.5157 + ] + }, + "properties": { + "openplaque:id": "30206", + "addr:full": "Newgate Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14918, + 51.52054 + ] + }, + "properties": { + "openplaque:id": "3021", + "addr:full": "\"2 Upper Wimpole Street", + "date_start": "Paddington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.134, + 51.50982 + ] + }, + "properties": { + "openplaque:id": "30241", + "addr:full": "\"The Criterion Restaurant", + "date_start": "224 Piccadilly\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09708, + 51.51332 + ] + }, + "properties": { + "openplaque:id": "30275", + "addr:full": "\"St Paul's Churchyard Gardens", + "date_start": "Cannon Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08142, + 51.50998 + ] + }, + "properties": { + "openplaque:id": "30276", + "addr:full": "St Dunstan in the East" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08411, + 51.51342 + ] + }, + "properties": { + "openplaque:id": "30278", + "addr:full": "Gracechurch Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1923, + 51.5276 + ] + }, + "properties": { + "openplaque:id": "3029", + "addr:full": "\"117 Wymering Mansions", + "date_start": "Wymering Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05037, + 51.54858 + ] + }, + "properties": { + "openplaque:id": "30293", + "addr:full": "2 Homerton High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17377, + 51.49167 + ] + }, + "properties": { + "openplaque:id": "303", + "addr:full": "\"38 Onslow Square", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08268, + 51.49624 + ] + }, + "properties": { + "openplaque:id": "30328", + "addr:full": "Tower Bridge Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16071, + 51.5202 + ] + }, + "properties": { + "openplaque:id": "3033", + "addr:full": "\"51 York Street", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18211, + 51.5312 + ] + }, + "properties": { + "openplaque:id": "3037", + "addr:full": "\"103 Hamilton Terrace", + "date_start": "Paddington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12249, + 51.55193 + ] + }, + "properties": { + "openplaque:id": "30375", + "addr:full": "\"3 Hungerford Road", + "date_start": "Lower Holloway" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17979, + 51.524 + ] + }, + "properties": { + "openplaque:id": "3041", + "addr:full": "\"8 Randolph Mews", + "date_start": "Paddington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01829, + 51.37992 + ] + }, + "properties": { + "openplaque:id": "30417", + "addr:full": "\"25 Hayes Street", + "date_start": "Hayes" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12822, + 51.51083 + ] + }, + "properties": { + "openplaque:id": "30419", + "addr:full": "\"Charing Cross Mansions", + "date_start": "26 Charing Cross Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18852, + 51.5176 + ] + }, + "properties": { + "openplaque:id": "3045", + "addr:full": "\"Porchester Road", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14276, + 51.51699 + ] + }, + "properties": { + "openplaque:id": "30467", + "addr:full": "\"University of Westminster", + "date_start": "309 Regent Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12471, + 51.45197 + ] + }, + "properties": { + "openplaque:id": "30478", + "addr:full": "\"H.M. Prison Brixton", + "date_start": "Jebb Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15347, + 51.5084 + ] + }, + "properties": { + "openplaque:id": "3049", + "addr:full": "Aldford House", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02299, + 51.58887 + ] + }, + "properties": { + "openplaque:id": "30506", + "addr:full": "\"Brookdale Road", + "date_start": "Walthamstow\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15127, + 51.5167 + ] + }, + "properties": { + "openplaque:id": "3053", + "addr:full": "\"12 Mandeville Place", + "date_start": "Paddington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15982, + 51.52218 + ] + }, + "properties": { + "openplaque:id": "30544", + "addr:full": "\"Dorset House", + "date_start": "Gloucester Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19439, + 51.49566 + ] + }, + "properties": { + "openplaque:id": "30549", + "addr:full": "\"101 Lexham Gardens", + "date_start": "Earls Court\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15562, + 51.52283 + ] + }, + "properties": { + "openplaque:id": "30556", + "addr:full": "\"Farley Court", + "date_start": "Allsop Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14965, + 51.52095 + ] + }, + "properties": { + "openplaque:id": "3057", + "addr:full": "\"18 Upper Wimpole Street", + "date_start": "Paddington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07887, + 51.42206 + ] + }, + "properties": { + "openplaque:id": "30599", + "addr:full": "45 Farquar Road", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06095, + 51.4542 + ] + }, + "properties": { + "openplaque:id": "306", + "addr:full": "\"5 Colyton Road", + "date_start": "Southwark" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15468, + 51.5197 + ] + }, + "properties": { + "openplaque:id": "3061", + "addr:full": "\"1a Dorset Street", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16056, + 51.4543 + ] + }, + "properties": { + "openplaque:id": "30634", + "addr:full": "111 Broomwood Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15819, + 51.513 + ] + }, + "properties": { + "openplaque:id": "3065", + "addr:full": "140 Park Lane", + "date_start": "1997" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12838, + 51.4962 + ] + }, + "properties": { + "openplaque:id": "3069", + "addr:full": "57A Tufton Street", + "date_start": "1997" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13013, + 51.52441 + ] + }, + "properties": { + "openplaque:id": "307", + "addr:full": "\"46 Gordon Square", + "date_start": "Bloomsbury" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17042, + 51.5333 + ] + }, + "properties": { + "openplaque:id": "3073", + "addr:full": "St John's Wood High Street", + "date_start": "1997" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1806, + 51.49687 + ] + }, + "properties": { + "openplaque:id": "30758", + "addr:full": "20 Queen's Gate Place", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12574, + 51.501 + ] + }, + "properties": { + "openplaque:id": "3077", + "addr:full": "\"12 Bridge Street", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14008, + 51.51923 + ] + }, + "properties": { + "openplaque:id": "308", + "addr:full": "\"37 Foley Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15609, + 51.51127 + ] + }, + "properties": { + "openplaque:id": "3081", + "addr:full": "22 Upper Brook Street", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18629, + 51.5341 + ] + }, + "properties": { + "openplaque:id": "3085", + "addr:full": "\"92 Carlton Hill", + "date_start": "Paddington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13149, + 51.52558 + ] + }, + "properties": { + "openplaque:id": "309", + "addr:full": "\"8 Taviton Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14643, + 51.5178 + ] + }, + "properties": { + "openplaque:id": "3093", + "addr:full": "\"25 Harley Street", + "date_start": "Paddington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22464, + 51.49309 + ] + }, + "properties": { + "openplaque:id": "30958", + "addr:full": "Hammersmith Broadway", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12796, + 51.5119 + ] + }, + "properties": { + "openplaque:id": "3097", + "addr:full": "12 Great Newport Street", + "date_start": "1995" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1885, + 51.4971 + ] + }, + "properties": { + "openplaque:id": "31", + "addr:full": "\"Braemar Mansions", + "date_start": "95 Cornwall Gardens\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14416, + 51.51676 + ] + }, + "properties": { + "openplaque:id": "310", + "addr:full": "\"5 Cavendish Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12515, + 51.52512 + ] + }, + "properties": { + "openplaque:id": "31006", + "addr:full": "56 Marchmont Street", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22149, + 51.50027 + ] + }, + "properties": { + "openplaque:id": "31010", + "addr:full": "\"5 Netherwood Road", + "date_start": "W14\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09559, + 51.55482 + ] + }, + "properties": { + "openplaque:id": "31011", + "addr:full": "\"8 Highbury Grange", + "date_start": "Highbury" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0598, + 51.51704 + ] + }, + "properties": { + "openplaque:id": "31014", + "addr:full": "\"St Philip’s Vicarage", + "date_start": "Newark Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2553, + 51.48709 + ] + }, + "properties": { + "openplaque:id": "31015", + "addr:full": "\"Hogarth House", + "date_start": "Hogarth Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12448, + 51.51186 + ] + }, + "properties": { + "openplaque:id": "31016", + "addr:full": "\"St Paul’s Church", + "date_start": "Covent Garden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1569, + 51.54262 + ] + }, + "properties": { + "openplaque:id": "31017", + "addr:full": "\"10 King Henry’s Road", + "date_start": "NW3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18146, + 51.55792 + ] + }, + "properties": { + "openplaque:id": "31018", + "addr:full": "\"Coombe Edge", + "date_start": "Oak Hill Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16736, + 51.57157 + ] + }, + "properties": { + "openplaque:id": "31019", + "addr:full": "\"Kenwood House", + "date_start": "Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1554, + 51.54551 + ] + }, + "properties": { + "openplaque:id": "31020", + "addr:full": "\"60 Haverstock Hill", + "date_start": "NW3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20063, + 51.55062 + ] + }, + "properties": { + "openplaque:id": "31021", + "addr:full": "\"15 Ravenshaw Street", + "date_start": "West Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18591, + 51.5575 + ] + }, + "properties": { + "openplaque:id": "31022", + "addr:full": "\"9 Oak Hill Park", + "date_start": "Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16636, + 51.55399 + ] + }, + "properties": { + "openplaque:id": "31023", + "addr:full": "\"31 Pond Street", + "date_start": "Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15525, + 51.54872 + ] + }, + "properties": { + "openplaque:id": "31024", + "addr:full": "\"101–108 Maitland Park Road", + "date_start": "Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17427, + 51.55535 + ] + }, + "properties": { + "openplaque:id": "31031", + "addr:full": "\"1 Hampstead High Street", + "date_start": "NW3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14975, + 51.55671 + ] + }, + "properties": { + "openplaque:id": "31032", + "addr:full": "\"41 Parliament Hill Mansions", + "date_start": "Lissenden Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12291, + 51.52068 + ] + }, + "properties": { + "openplaque:id": "31033", + "addr:full": "\"Hotel Bedford", + "date_start": "Southampton Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14165, + 51.53937 + ] + }, + "properties": { + "openplaque:id": "31034", + "addr:full": "\"141 Bayham Street", + "date_start": "NW1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10967, + 51.51854 + ] + }, + "properties": { + "openplaque:id": "31035", + "addr:full": "\"Prudential Buildings", + "date_start": "138–142 Holborn" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14169, + 51.53427 + ] + }, + "properties": { + "openplaque:id": "31036", + "addr:full": "\"11 Albert Street", + "date_start": "Camden Town" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11409, + 51.51876 + ] + }, + "properties": { + "openplaque:id": "31039", + "addr:full": "\"4 Warwick Court", + "date_start": "Holborn" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.06368, + 51.4787 + ] + }, + "properties": { + "openplaque:id": "31041", + "addr:full": "\"Eglinton Road School", + "date_start": "SE18\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05302, + 51.45869 + ] + }, + "properties": { + "openplaque:id": "31042", + "addr:full": "\"44 Craigton Road", + "date_start": "Eltham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12892, + 51.5112 + ] + }, + "properties": { + "openplaque:id": "3105", + "addr:full": "38-44 Cranbourn Street", + "date_start": "1995" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11522, + 51.52174 + ] + }, + "properties": { + "openplaque:id": "31050", + "addr:full": "\"32 John Street", + "date_start": "WC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14042, + 51.51438 + ] + }, + "properties": { + "openplaque:id": "31086", + "addr:full": "Sutherland House in Argyll Street", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15213, + 51.5095 + ] + }, + "properties": { + "openplaque:id": "3109", + "addr:full": "44 Mount Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13342, + 51.5232 + ] + }, + "properties": { + "openplaque:id": "31096", + "addr:full": "105 Gower Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13523, + 51.52521 + ] + }, + "properties": { + "openplaque:id": "31097", + "addr:full": "Gower Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09818, + 51.55386 + ] + }, + "properties": { + "openplaque:id": "31124", + "addr:full": "\"Highbury Barn Tavern", + "date_start": "Highbury Grove" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15172, + 51.5094 + ] + }, + "properties": { + "openplaque:id": "3113", + "addr:full": "57-58 South Audley Street", + "date_start": "1992" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09225, + 51.51144 + ] + }, + "properties": { + "openplaque:id": "31137", + "addr:full": "\"St Michael Paternoster Church", + "date_start": "College Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18429, + 51.5011 + ] + }, + "properties": { + "openplaque:id": "31138", + "addr:full": "2 Palace Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19143, + 51.50106 + ] + }, + "properties": { + "openplaque:id": "31139", + "addr:full": "\"The Roof Garden", + "date_start": "Kensington High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12368, + 51.5111 + ] + }, + "properties": { + "openplaque:id": "3117", + "addr:full": "10 Henrietta Street", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21076, + 51.4917 + ] + }, + "properties": { + "openplaque:id": "312", + "addr:full": "\"69 Gunterstone Road", + "date_start": "Hammersmith and Fulham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12383, + 51.5104 + ] + }, + "properties": { + "openplaque:id": "3121", + "addr:full": "\"21 Maiden Lane", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14516, + 51.5113 + ] + }, + "properties": { + "openplaque:id": "3125", + "addr:full": "30 Bourdon Street", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12684, + 51.50997 + ] + }, + "properties": { + "openplaque:id": "31253", + "addr:full": "London Coliseum Theatre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15779, + 51.52228 + ] + }, + "properties": { + "openplaque:id": "3129", + "addr:full": "\"185 Baker Street", + "date_start": "Paddington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15159, + 51.50877 + ] + }, + "properties": { + "openplaque:id": "31295", + "addr:full": "64 South Audley Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15445, + 51.5402 + ] + }, + "properties": { + "openplaque:id": "313", + "addr:full": "\"23 Fitzroy Road", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12715, + 51.5118 + ] + }, + "properties": { + "openplaque:id": "3137", + "addr:full": "\"78 St Martin's Lane", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12919, + 51.52862 + ] + }, + "properties": { + "openplaque:id": "31394", + "addr:full": "\"Christopher Place", + "date_start": "Chalton St\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17968, + 51.52157 + ] + }, + "properties": { + "openplaque:id": "314", + "addr:full": "\"10 Howley Place", + "date_start": "W2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12567, + 51.51164 + ] + }, + "properties": { + "openplaque:id": "31431", + "addr:full": "Rose Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12485, + 51.52484 + ] + }, + "properties": { + "openplaque:id": "31441", + "addr:full": "Marchmont Street", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14635, + 51.52028 + ] + }, + "properties": { + "openplaque:id": "3145", + "addr:full": "39 Weymouth Mews", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09144, + 51.52389 + ] + }, + "properties": { + "openplaque:id": "31461", + "addr:full": "126 Whitecross St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34457, + 51.5469 + ] + }, + "properties": { + "openplaque:id": "31463", + "addr:full": "\"Howdens Joinery", + "date_start": "Oldfirled Lane North" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05384, + 51.5017 + ] + }, + "properties": { + "openplaque:id": "31469", + "addr:full": "Rotherhithe Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18141, + 51.56805 + ] + }, + "properties": { + "openplaque:id": "31497", + "addr:full": "\"Wildwood Terrace", + "date_start": "NW3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16774, + 51.5132 + ] + }, + "properties": { + "openplaque:id": "315", + "addr:full": "\"12 Hyde Park Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12966, + 51.51518 + ] + }, + "properties": { + "openplaque:id": "31504", + "addr:full": "Denmark Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05089, + 51.497 + ] + }, + "properties": { + "openplaque:id": "31505", + "addr:full": "\"Old Dock Offices", + "date_start": "Surrey Quays Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05267, + 51.49981 + ] + }, + "properties": { + "openplaque:id": "31509", + "addr:full": "Albion Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.116, + 51.5123 + ] + }, + "properties": { + "openplaque:id": "3153", + "addr:full": "Strand Underground Station (disused)", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14538, + 51.52058 + ] + }, + "properties": { + "openplaque:id": "316", + "addr:full": "\"41 Portland Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1899, + 51.5106 + ] + }, + "properties": { + "openplaque:id": "3161", + "addr:full": "12 Orme Square", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11557, + 51.51496 + ] + }, + "properties": { + "openplaque:id": "31631", + "addr:full": "10 Portugal Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15649, + 51.5173 + ] + }, + "properties": { + "openplaque:id": "3165", + "addr:full": "\"102 George Street", + "date_start": "Paddington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14754, + 51.5582 + ] + }, + "properties": { + "openplaque:id": "31677", + "addr:full": "19 Grove Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17126, + 51.5019 + ] + }, + "properties": { + "openplaque:id": "3169", + "addr:full": "\"Kingston House North", + "date_start": "Prince's Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07318, + 51.4333 + ] + }, + "properties": { + "openplaque:id": "317", + "addr:full": "\"3 Crescent Wood Road", + "date_start": "Sydenham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16964, + 51.5239 + ] + }, + "properties": { + "openplaque:id": "3173", + "addr:full": "\"38 Church Street", + "date_start": "Paddington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08093, + 51.41113 + ] + }, + "properties": { + "openplaque:id": "31769", + "addr:full": "110 Auckland Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12021, + 51.51775 + ] + }, + "properties": { + "openplaque:id": "318", + "addr:full": "\"119 High Holborn", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14122, + 51.5086 + ] + }, + "properties": { + "openplaque:id": "31861", + "addr:full": "\"14 Albemarle Street", + "date_start": "Mayfair\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01453, + 51.5265 + ] + }, + "properties": { + "openplaque:id": "319", + "addr:full": "\"Kingsley Hall", + "date_start": "Powis Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16727, + 51.4852 + ] + }, + "properties": { + "openplaque:id": "32", + "addr:full": "\"33 Oakley Gardens", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10854, + 51.5353 + ] + }, + "properties": { + "openplaque:id": "320", + "addr:full": "26 Batchelor Street", + "date_start": "1976" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11755, + 51.4734 + ] + }, + "properties": { + "openplaque:id": "321", + "addr:full": "\"27 Stockwell Park Road", + "date_start": "Lambeth" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14708, + 51.5192 + ] + }, + "properties": { + "openplaque:id": "322", + "addr:full": "\"63 Harley Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2012, + 51.452 + ] + }, + "properties": { + "openplaque:id": "323", + "addr:full": "\"Holly Lodge", + "date_start": "31 Wimbledon Park Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23914, + 51.6097 + ] + }, + "properties": { + "openplaque:id": "324", + "addr:full": "\"32 Parkside", + "date_start": "Barnet" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35886, + 51.4125 + ] + }, + "properties": { + "openplaque:id": "325", + "addr:full": "\"Garrick's Villa", + "date_start": "Hampton Court Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18113, + 51.5678 + ] + }, + "properties": { + "openplaque:id": "326", + "addr:full": "\"19 North End", + "date_start": "Hampstead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0007, + 51.4678 + ] + }, + "properties": { + "openplaque:id": "327", + "addr:full": "\"2 Eliot Place", + "date_start": "Blackheath" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16608, + 51.51319 + ] + }, + "properties": { + "openplaque:id": "328", + "addr:full": "\"18 Albion Mews", + "date_start": "W2 Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1898, + 51.5003 + ] + }, + "properties": { + "openplaque:id": "329", + "addr:full": "\"17 Kensington Square", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05301, + 51.50158 + ] + }, + "properties": { + "openplaque:id": "32919", + "addr:full": "Tunnel Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14366, + 51.51986 + ] + }, + "properties": { + "openplaque:id": "32926", + "addr:full": "96 New Cavendish Street", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14422, + 51.49493 + ] + }, + "properties": { + "openplaque:id": "32932", + "addr:full": "\"Platform 8", + "date_start": "Victoria Station\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15064, + 51.50848 + ] + }, + "properties": { + "openplaque:id": "32950", + "addr:full": "38 South Street", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06273, + 51.60606 + ] + }, + "properties": { + "openplaque:id": "32968", + "addr:full": "\"77 Northumberland Park", + "date_start": "Tottenham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1125, + 51.51267 + ] + }, + "properties": { + "openplaque:id": "32988", + "addr:full": "Devereux Court" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10417, + 51.512 + ] + }, + "properties": { + "openplaque:id": "32989", + "addr:full": "New Bridge Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17227, + 51.4867 + ] + }, + "properties": { + "openplaque:id": "33", + "addr:full": "\"6 Carlyle Square", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13925, + 51.46194 + ] + }, + "properties": { + "openplaque:id": "330", + "addr:full": "\"5 The Pavement", + "date_start": "Clapham Common" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13895, + 51.51246 + ] + }, + "properties": { + "openplaque:id": "33059", + "addr:full": "9 Kingly Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16415, + 51.48954 + ] + }, + "properties": { + "openplaque:id": "33084", + "addr:full": "\"47 Markham Square", + "date_start": "Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13083, + 51.5088 + ] + }, + "properties": { + "openplaque:id": "331", + "addr:full": "\"15 Suffolk Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20919, + 51.4245 + ] + }, + "properties": { + "openplaque:id": "33130", + "addr:full": "\"3 St Mary's Road", + "date_start": "Wimbledon" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15901, + 51.54574 + ] + }, + "properties": { + "openplaque:id": "33134", + "addr:full": "\"31 Steeles Road", + "date_start": "Chalk Farm" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15836, + 51.54558 + ] + }, + "properties": { + "openplaque:id": "33135", + "addr:full": "\"1 Eton Villas", + "date_start": "Chalk Farm" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1508, + 51.53886 + ] + }, + "properties": { + "openplaque:id": "33136", + "addr:full": "\"13 St Mark's Crescent", + "date_start": "Primrose Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13881, + 51.57294 + ] + }, + "properties": { + "openplaque:id": "33137", + "addr:full": "\"30 Langdon Park Road", + "date_start": "Highgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37494, + 51.59413 + ] + }, + "properties": { + "openplaque:id": "33138", + "addr:full": "\"The Fives Court", + "date_start": "Moss Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10376, + 51.53615 + ] + }, + "properties": { + "openplaque:id": "33139", + "addr:full": "\"72A Upper Street", + "date_start": "Islington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17391, + 51.4852 + ] + }, + "properties": { + "openplaque:id": "33140", + "addr:full": "\"Paultons House", + "date_start": "Paultons Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3356, + 51.42936 + ] + }, + "properties": { + "openplaque:id": "33142", + "addr:full": "\"82 Waldegrave Road", + "date_start": "Teddington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26723, + 51.46424 + ] + }, + "properties": { + "openplaque:id": "33144", + "addr:full": "\"Cedar Court", + "date_start": "Sheen Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09233, + 51.44965 + ] + }, + "properties": { + "openplaque:id": "33145", + "addr:full": "\"84 Burbage Road", + "date_start": "Herne Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16193, + 51.47355 + ] + }, + "properties": { + "openplaque:id": "33146", + "addr:full": "\"55 Brynmaer Road", + "date_start": "Battersea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15779, + 51.52303 + ] + }, + "properties": { + "openplaque:id": "33147", + "addr:full": "\"Chiltern Court", + "date_start": "Baker Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1618, + 51.51896 + ] + }, + "properties": { + "openplaque:id": "33148", + "addr:full": "14 Wyndham Place", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12488, + 51.52319 + ] + }, + "properties": { + "openplaque:id": "33150", + "addr:full": "48 Bernard Street", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12267, + 51.53099 + ] + }, + "properties": { + "openplaque:id": "33152", + "addr:full": "York Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09536, + 51.63942 + ] + }, + "properties": { + "openplaque:id": "33153", + "addr:full": "96 Green Dragon Lane", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11731, + 51.52414 + ] + }, + "properties": { + "openplaque:id": "33162", + "addr:full": "Guilford Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12149, + 51.51189 + ] + }, + "properties": { + "openplaque:id": "33216", + "addr:full": "Covent Garden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14035, + 51.51583 + ] + }, + "properties": { + "openplaque:id": "33218", + "addr:full": "Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12855, + 51.51144 + ] + }, + "properties": { + "openplaque:id": "33246", + "addr:full": "\"Hippodrome Casino (ex Theatre)", + "date_start": "Cranbourne Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13073, + 51.51023 + ] + }, + "properties": { + "openplaque:id": "33252", + "addr:full": "\"Fanum House", + "date_start": "Leicester Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18244, + 51.4916 + ] + }, + "properties": { + "openplaque:id": "333", + "addr:full": "\"31 Rosary Gardens", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15763, + 51.5452 + ] + }, + "properties": { + "openplaque:id": "334", + "addr:full": "\"9 Eton Villas", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23763, + 51.49056 + ] + }, + "properties": { + "openplaque:id": "335", + "addr:full": "\"48 Upper Mall", + "date_start": "Hammersmith" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16207, + 51.546 + ] + }, + "properties": { + "openplaque:id": "336", + "addr:full": "\"16 Chalcot Gardens", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.146, + 51.51304 + ] + }, + "properties": { + "openplaque:id": "337", + "addr:full": "\"25 Brook Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20196, + 51.4993 + ] + }, + "properties": { + "openplaque:id": "338", + "addr:full": "\"31 Melbury Road", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2082, + 51.40948 + ] + }, + "properties": { + "openplaque:id": "339", + "addr:full": "\"Rutlish School", + "date_start": "Manor House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17915, + 51.51516 + ] + }, + "properties": { + "openplaque:id": "34", + "addr:full": "60 Westbourne Terrace", + "date_start": "1961" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19735, + 51.5042 + ] + }, + "properties": { + "openplaque:id": "341", + "addr:full": "80 Campden Hill Road", + "date_start": "1973" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20147, + 51.5121 + ] + }, + "properties": { + "openplaque:id": "342", + "addr:full": "39 Chepstow Villas", + "date_start": "1959" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14922, + 51.51257 + ] + }, + "properties": { + "openplaque:id": "343", + "addr:full": "\"76 Brook Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0039, + 51.475 + ] + }, + "properties": { + "openplaque:id": "344", + "addr:full": "\"Ranger’s House", + "date_start": "Chesterfield Walk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05876, + 51.4278 + ] + }, + "properties": { + "openplaque:id": "345", + "addr:full": "\"12 Westwood Hill", + "date_start": "SE26 Lewisham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16953, + 51.54092 + ] + }, + "properties": { + "openplaque:id": "347", + "addr:full": "\"7 Harley Road", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1109, + 51.48934 + ] + }, + "properties": { + "openplaque:id": "3476", + "addr:full": "287 Kennington Road Kennington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10993, + 51.4874 + ] + }, + "properties": { + "openplaque:id": "3478", + "addr:full": "\"39 Methley Street", + "date_start": "Kennington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12496, + 51.50761 + ] + }, + "properties": { + "openplaque:id": "348", + "addr:full": "\"36 Craven Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06759, + 51.5623 + ] + }, + "properties": { + "openplaque:id": "3480", + "addr:full": "\"25 Stoke Newington Common", + "date_start": "Clapton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11258, + 51.47782 + ] + }, + "properties": { + "openplaque:id": "3482", + "addr:full": "\"Glenshaw Mansions", + "date_start": "Mowll Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14678, + 51.513 + ] + }, + "properties": { + "openplaque:id": "349", + "addr:full": "\"39 Brook Street", + "date_start": "Mayfair" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1903, + 51.4946 + ] + }, + "properties": { + "openplaque:id": "35", + "addr:full": "\"153 Cromwell Road", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11933, + 51.4707 + ] + }, + "properties": { + "openplaque:id": "350", + "addr:full": "\"18 Burnley Road", + "date_start": "Stockwell" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1284, + 51.4963 + ] + }, + "properties": { + "openplaque:id": "351", + "addr:full": "\"Tufton Court", + "date_start": "Tufton Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11593, + 51.5155 + ] + }, + "properties": { + "openplaque:id": "352", + "addr:full": "\"59-60 Lincoln's Inn Fields", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30459, + 51.3734 + ] + }, + "properties": { + "openplaque:id": "353", + "addr:full": "\"207 Hook Road", + "date_start": "Chessington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23091, + 51.4273 + ] + }, + "properties": { + "openplaque:id": "354", + "addr:full": "\"8 North View", + "date_start": "Wimbledon Common" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19593, + 51.5054 + ] + }, + "properties": { + "openplaque:id": "355", + "addr:full": "\"34 Sheffield Terrace", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16788, + 51.49931 + ] + }, + "properties": { + "openplaque:id": "356", + "addr:full": "\"42 Rutland Gate", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14621, + 51.51928 + ] + }, + "properties": { + "openplaque:id": "357", + "addr:full": "\"13 Mansfield Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27198, + 51.4825 + ] + }, + "properties": { + "openplaque:id": "358", + "addr:full": "\"19 Grove Park Gardens", + "date_start": "Hounslow\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16683, + 51.5137 + ] + }, + "properties": { + "openplaque:id": "359", + "addr:full": "\"13 Albion Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1178, + 51.5253 + ] + }, + "properties": { + "openplaque:id": "36", + "addr:full": "\"21 Mecklenburgh Square", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15048, + 51.50864 + ] + }, + "properties": { + "openplaque:id": "360", + "addr:full": "43 South Street", + "date_start": "1984" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21128, + 51.5054 + ] + }, + "properties": { + "openplaque:id": "362", + "addr:full": "161 Holland Park Avenue", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20826, + 51.5141 + ] + }, + "properties": { + "openplaque:id": "363", + "addr:full": "\"60 Elgin Crescent", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08204, + 51.489 + ] + }, + "properties": { + "openplaque:id": "3630", + "addr:full": "42 Surrey Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16525, + 51.4889 + ] + }, + "properties": { + "openplaque:id": "364", + "addr:full": "\"152 King's Road", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14258, + 51.5195 + ] + }, + "properties": { + "openplaque:id": "3652", + "addr:full": "103 Great Portland Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15602, + 51.5125 + ] + }, + "properties": { + "openplaque:id": "366", + "addr:full": "\"46 Green Street", + "date_start": "Mayfair" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16999, + 51.4841 + ] + }, + "properties": { + "openplaque:id": "3660", + "addr:full": "24 Cheyne Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14911, + 51.52 + ] + }, + "properties": { + "openplaque:id": "368", + "addr:full": "\"50 Wimpole Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18088, + 51.4874 + ] + }, + "properties": { + "openplaque:id": "369", + "addr:full": "\"14 Harley Gardens", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07898, + 51.5433 + ] + }, + "properties": { + "openplaque:id": "3690", + "addr:full": "\"Mortimer Road", + "date_start": "Hackney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07977, + 51.4977 + ] + }, + "properties": { + "openplaque:id": "3692", + "addr:full": "\"Shortwave Cinema", + "date_start": "Bermondsey Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12289, + 51.52265 + ] + }, + "properties": { + "openplaque:id": "3696", + "addr:full": "\"Queen Court", + "date_start": "Guildford Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13634, + 51.5217 + ] + }, + "properties": { + "openplaque:id": "3698", + "addr:full": "33 Fitzroy Square", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1453, + 51.5208 + ] + }, + "properties": { + "openplaque:id": "37", + "addr:full": "\"47 Portland Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14247, + 51.51973 + ] + }, + "properties": { + "openplaque:id": "370", + "addr:full": "\"122 Great Portland Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17508, + 51.56086 + ] + }, + "properties": { + "openplaque:id": "371", + "addr:full": "\"17 East Heath Road", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1106, + 51.4966 + ] + }, + "properties": { + "openplaque:id": "372", + "addr:full": "\"100 Lambeth Road", + "date_start": "Lambeth" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18981, + 51.50128 + ] + }, + "properties": { + "openplaque:id": "3724", + "addr:full": "\"16 Young Street", + "date_start": "Kensington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06728, + 51.51095 + ] + }, + "properties": { + "openplaque:id": "3726", + "addr:full": "\"Cable Street", + "date_start": "Tower Hamlets\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07933, + 51.5731 + ] + }, + "properties": { + "openplaque:id": "373", + "addr:full": "\"50 Durley Road", + "date_start": "Stamford Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05517, + 51.54849 + ] + }, + "properties": { + "openplaque:id": "3734", + "addr:full": "\"373-5 Mare Street", + "date_start": "The Narroway\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01233, + 51.4657 + ] + }, + "properties": { + "openplaque:id": "3736", + "addr:full": "\"47 Bennett Park", + "date_start": "Blackheath\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.179, + 51.5136 + ] + }, + "properties": { + "openplaque:id": "374", + "addr:full": "\"34 Craven Road", + "date_start": "Paddington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14402, + 51.59 + ] + }, + "properties": { + "openplaque:id": "3740", + "addr:full": "\"74 to 80 Muswell Hill Broadway", + "date_start": "Muswell Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1418, + 51.5976 + ] + }, + "properties": { + "openplaque:id": "3742", + "addr:full": "\"51 Alexandra Park Road", + "date_start": "Muswell Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13677, + 51.5874 + ] + }, + "properties": { + "openplaque:id": "3744", + "addr:full": "\"14 Cranmore Way", + "date_start": "Muswell Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06727, + 51.58512 + ] + }, + "properties": { + "openplaque:id": "3748", + "addr:full": "\" Ship Inn Yard near High Cross United Reform Church", + "date_start": "310 High Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1869, + 51.5 + ] + }, + "properties": { + "openplaque:id": "375", + "addr:full": "\"6 Douro Place", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15766, + 51.5903 + ] + }, + "properties": { + "openplaque:id": "3752", + "addr:full": "\"Highwood Lodge", + "date_start": "85 Fortis Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1224, + 51.5765 + ] + }, + "properties": { + "openplaque:id": "3754", + "addr:full": "\"Cecile House", + "date_start": "104 Crouch Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09016, + 51.58144 + ] + }, + "properties": { + "openplaque:id": "3756", + "addr:full": "\"St John's Lodge", + "date_start": "Hanger Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06792, + 51.5986 + ] + }, + "properties": { + "openplaque:id": "3758", + "addr:full": "1A Lansdowne Road N17", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1709, + 51.4842 + ] + }, + "properties": { + "openplaque:id": "376", + "addr:full": "\"16 Lawrence Street", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13598, + 51.5869 + ] + }, + "properties": { + "openplaque:id": "3762", + "addr:full": "\"33 Etheldene Avenue", + "date_start": "N10\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07717, + 51.5982 + ] + }, + "properties": { + "openplaque:id": "3764", + "addr:full": "\" \"\"Lord's Meade\"\" formerly partly on the site of 1 Lordsmead Road", + "date_start": "N17\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11955, + 51.5875 + ] + }, + "properties": { + "openplaque:id": "3766", + "addr:full": "\"32 High Street", + "date_start": "Hornsey" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0812, + 51.4241 + ] + }, + "properties": { + "openplaque:id": "377", + "addr:full": "39 Colby Road", + "date_start": "1963" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12802, + 51.52206 + ] + }, + "properties": { + "openplaque:id": "3774", + "addr:full": "Russell Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1375, + 51.5123 + ] + }, + "properties": { + "openplaque:id": "378", + "addr:full": "\" 41 Beak Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15656, + 51.5225 + ] + }, + "properties": { + "openplaque:id": "3784", + "addr:full": "\"Baker Street Station", + "date_start": "Marylebone Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16038, + 51.5198 + ] + }, + "properties": { + "openplaque:id": "3786", + "addr:full": "27 Upper Montagu Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17965, + 51.5216 + ] + }, + "properties": { + "openplaque:id": "3788", + "addr:full": "10 Howley Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1432, + 51.4898 + ] + }, + "properties": { + "openplaque:id": "379", + "addr:full": "\"95 Cambridge Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17736, + 51.5283 + ] + }, + "properties": { + "openplaque:id": "3790", + "addr:full": "\"20 Hamilton Terrace", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18153, + 51.5307 + ] + }, + "properties": { + "openplaque:id": "3794", + "addr:full": "\"93 Hamilton Terrace", + "date_start": "St John's Wood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14905, + 51.496 + ] + }, + "properties": { + "openplaque:id": "38", + "addr:full": "2 Chester Square", + "date_start": "1954" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17391, + 51.48202 + ] + }, + "properties": { + "openplaque:id": "380", + "addr:full": "\"93 Cheyne Walk", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12687, + 51.5147 + ] + }, + "properties": { + "openplaque:id": "3802", + "addr:full": "13 Monmouth St", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1842, + 51.5242 + ] + }, + "properties": { + "openplaque:id": "381", + "addr:full": "\"2 Warrington Cresent", + "date_start": "Maida Vale" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31336, + 51.4392 + ] + }, + "properties": { + "openplaque:id": "382", + "addr:full": "\"Grey Court", + "date_start": "Ham Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19965, + 51.49893 + ] + }, + "properties": { + "openplaque:id": "383", + "addr:full": "\"Melbury Court", + "date_start": "Kensington High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06532, + 51.4458 + ] + }, + "properties": { + "openplaque:id": "384", + "addr:full": "\"58 Underhill Road", + "date_start": "Dulwich" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1773, + 51.5271 + ] + }, + "properties": { + "openplaque:id": "385", + "addr:full": "\"17 Hamilton Terrace", + "date_start": "St John's Wood" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18256, + 51.49037 + ] + }, + "properties": { + "openplaque:id": "387", + "addr:full": "\"1 Drayton Gardens", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20303, + 51.49861 + ] + }, + "properties": { + "openplaque:id": "389", + "addr:full": "12 Holland Park Road", + "date_start": "1958" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17982, + 51.5575 + ] + }, + "properties": { + "openplaque:id": "39", + "addr:full": "\"Mount Vernon", + "date_start": "Mount Vernon House\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0272, + 51.50239 + ] + }, + "properties": { + "openplaque:id": "39058", + "addr:full": "Silvertown" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17408, + 51.48444 + ] + }, + "properties": { + "openplaque:id": "39067", + "addr:full": "\"9 Paultons Square", + "date_start": "Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11938, + 51.47762 + ] + }, + "properties": { + "openplaque:id": "39070", + "addr:full": "\"27 Albert Square", + "date_start": "Lambeth" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15683, + 51.52266 + ] + }, + "properties": { + "openplaque:id": "39089", + "addr:full": "\"Siddons Lane", + "date_start": "Marylebone" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13392, + 51.5136 + ] + }, + "properties": { + "openplaque:id": "391", + "addr:full": "\"163 Wardour Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13998, + 51.50549 + ] + }, + "properties": { + "openplaque:id": "39104", + "addr:full": "\"29 St James's Place", + "date_start": "SW1A\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1269, + 51.50751 + ] + }, + "properties": { + "openplaque:id": "39106", + "addr:full": "\"Grand Buildings", + "date_start": "1-3 Strand" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13405, + 51.51774 + ] + }, + "properties": { + "openplaque:id": "39112", + "addr:full": "\"25 Rathbone Place", + "date_start": "Fitzrovia\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13405, + 51.51774 + ] + }, + "properties": { + "openplaque:id": "39113", + "addr:full": "25 Rathbone Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13725, + 51.50647 + ] + }, + "properties": { + "openplaque:id": "39115", + "addr:full": "Almack House", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06373, + 51.49798 + ] + }, + "properties": { + "openplaque:id": "39136", + "addr:full": "Jamaica Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.139, + 51.51989 + ] + }, + "properties": { + "openplaque:id": "39174", + "addr:full": "\"John Astor House", + "date_start": "Middlesex Hospital" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14045, + 51.5226 + ] + }, + "properties": { + "openplaque:id": "392", + "addr:full": "29 Fitzroy Square", + "date_start": "1951" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1254, + 51.52534 + ] + }, + "properties": { + "openplaque:id": "39223", + "addr:full": "65 Marchmont Street", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12509, + 51.52472 + ] + }, + "properties": { + "openplaque:id": "39225", + "addr:full": "43 Marchmont St", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12517, + 51.52491 + ] + }, + "properties": { + "openplaque:id": "39226", + "addr:full": "47 Marchmont St", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.00065, + 51.54051 + ] + }, + "properties": { + "openplaque:id": "39228", + "addr:full": "\"28 Broadway", + "date_start": "Stratford\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12535, + 51.52524 + ] + }, + "properties": { + "openplaque:id": "39231", + "addr:full": "63 Marchmont St", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12547, + 51.5255 + ] + }, + "properties": { + "openplaque:id": "39232", + "addr:full": "71 Marchmont St", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12514, + 51.52481 + ] + }, + "properties": { + "openplaque:id": "39233", + "addr:full": "43 Marchmont St", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12516, + 51.52518 + ] + }, + "properties": { + "openplaque:id": "39237", + "addr:full": "58 Marchmont Street", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12545, + 51.52543 + ] + }, + "properties": { + "openplaque:id": "39238", + "addr:full": "76 Marchmont St", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12508, + 51.52472 + ] + }, + "properties": { + "openplaque:id": "39239", + "addr:full": "39A Marchmont St", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12593, + 51.5115 + ] + }, + "properties": { + "openplaque:id": "39247", + "addr:full": "\"Waterstones", + "date_start": "Garrick Street \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11372, + 51.52828 + ] + }, + "properties": { + "openplaque:id": "39252", + "addr:full": "\"19 Wharton Street", + "date_start": "Islington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13628, + 51.51264 + ] + }, + "properties": { + "openplaque:id": "39256", + "addr:full": "18 Great Pulteney Street W1", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09771, + 51.46692 + ] + }, + "properties": { + "openplaque:id": "39270", + "addr:full": "\"38 Southwell Road", + "date_start": "Camberwell" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12325, + 51.5083 + ] + }, + "properties": { + "openplaque:id": "39296", + "addr:full": "\"15 Buckingham Street", + "date_start": "WC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06441, + 51.5217 + ] + }, + "properties": { + "openplaque:id": "393", + "addr:full": "\"71 Vallance Road", + "date_start": "Tower Hamlets" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12448, + 51.50573 + ] + }, + "properties": { + "openplaque:id": "39301", + "addr:full": "\"2 Whitehall Court", + "date_start": "SW1A \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14833, + 51.50414 + ] + }, + "properties": { + "openplaque:id": "39309", + "addr:full": "127 Piccadilly" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1705, + 51.52382 + ] + }, + "properties": { + "openplaque:id": "39366", + "addr:full": "34 Salisbury Street", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13418, + 51.50049 + ] + }, + "properties": { + "openplaque:id": "39390", + "addr:full": "\"40 Queen Anne's Gate", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17843, + 51.55549 + ] + }, + "properties": { + "openplaque:id": "39394", + "addr:full": "Rosslyn Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16374, + 51.51298 + ] + }, + "properties": { + "openplaque:id": "39397", + "addr:full": "\"Tyburn Convent", + "date_start": "Bayswater Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14792, + 51.46612 + ] + }, + "properties": { + "openplaque:id": "39456", + "addr:full": "\"103 The Chase", + "date_start": "Clapham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14743, + 51.4959 + ] + }, + "properties": { + "openplaque:id": "395", + "addr:full": "22 Ebury Street", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10425, + 51.5127 + ] + }, + "properties": { + "openplaque:id": "3950", + "addr:full": "14 New Bridge Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1096, + 51.5154 + ] + }, + "properties": { + "openplaque:id": "3954", + "addr:full": "Fetter Lane", + "date_start": "1992" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14626, + 51.58248 + ] + }, + "properties": { + "openplaque:id": "39558", + "addr:full": "\"60 Muswell Hill Road", + "date_start": "Highgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10171, + 51.51606 + ] + }, + "properties": { + "openplaque:id": "3956", + "addr:full": "\"The Old Bailey", + "date_start": "Newgate Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21775, + 51.42891 + ] + }, + "properties": { + "openplaque:id": "39563", + "addr:full": "\"42 Marryat Road", + "date_start": "Wimbledon" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10059, + 51.5159 + ] + }, + "properties": { + "openplaque:id": "3958", + "addr:full": "Newgate Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16118, + 51.4886 + ] + }, + "properties": { + "openplaque:id": "396", + "addr:full": "\"18 St Leonard's Terrace", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09872, + 51.51597 + ] + }, + "properties": { + "openplaque:id": "3962", + "addr:full": "\"King Edward Street", + "date_start": "EC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10011, + 51.519 + ] + }, + "properties": { + "openplaque:id": "3964", + "addr:full": "\"43 Cloth Court", + "date_start": "Cloth Fair\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15369, + 51.49703 + ] + }, + "properties": { + "openplaque:id": "39651", + "addr:full": "\"Lowndes Cottage", + "date_start": "8 Lowndes Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09709, + 51.51818 + ] + }, + "properties": { + "openplaque:id": "3966", + "addr:full": "\"London House", + "date_start": "172 Aldersgate Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06977, + 51.56353 + ] + }, + "properties": { + "openplaque:id": "39671", + "addr:full": "\"16 Alkham Road", + "date_start": "Hackney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09674, + 51.51717 + ] + }, + "properties": { + "openplaque:id": "3968", + "addr:full": "\"10 Aldersgate Street", + "date_start": "EC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20233, + 51.42644 + ] + }, + "properties": { + "openplaque:id": "39682", + "addr:full": "\"103 Woodside", + "date_start": "Wimbledon SW19\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.02344, + 51.47456 + ] + }, + "properties": { + "openplaque:id": "39684", + "addr:full": "\"74 Shooters Hill", + "date_start": "Blackheath" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15311, + 51.44343 + ] + }, + "properties": { + "openplaque:id": "39694", + "addr:full": "Balham High Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17768, + 51.5472 + ] + }, + "properties": { + "openplaque:id": "397", + "addr:full": "\"4 Maresfield Gardens", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08858, + 51.5173 + ] + }, + "properties": { + "openplaque:id": "3972", + "addr:full": "\"72 Moorgate", + "date_start": "EC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12605, + 51.5254 + ] + }, + "properties": { + "openplaque:id": "39744", + "addr:full": "32 Tavistock Place", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1261, + 51.52555 + ] + }, + "properties": { + "openplaque:id": "39745", + "addr:full": "31 Tavistock Place", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20011, + 51.57233 + ] + }, + "properties": { + "openplaque:id": "39757", + "addr:full": "\"37 Woodstock Road", + "date_start": "Golders Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12421, + 51.51902 + ] + }, + "properties": { + "openplaque:id": "39777", + "addr:full": "72/73 Great Russell Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.29807, + 51.4554 + ] + }, + "properties": { + "openplaque:id": "398", + "addr:full": "\"5 Montague Road", + "date_start": "Richmond Upon Thames\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13395, + 51.52369 + ] + }, + "properties": { + "openplaque:id": "39817", + "addr:full": "\"129 Gower Street", + "date_start": "Fitzrovia\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20858, + 51.51393 + ] + }, + "properties": { + "openplaque:id": "39818", + "addr:full": "\"79 Elgin Crescent", + "date_start": "Notting Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05066, + 51.45761 + ] + }, + "properties": { + "openplaque:id": "39857", + "addr:full": "19 Hichisson Road", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11259, + 51.4788 + ] + }, + "properties": { + "openplaque:id": "39859", + "addr:full": "\"8 Crewdson Road", + "date_start": "the Oval\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1694, + 51.55635 + ] + }, + "properties": { + "openplaque:id": "39865", + "addr:full": "\"25 Downshire Hill", + "date_start": "Hampstead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16627, + 51.4969 + ] + }, + "properties": { + "openplaque:id": "39866", + "addr:full": "\"18 Yeoman’s Row", + "date_start": "Knightsbridge\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13005, + 51.51833 + ] + }, + "properties": { + "openplaque:id": "399", + "addr:full": "42 Bedford Square", + "date_start": "1978" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17519, + 51.49544 + ] + }, + "properties": { + "openplaque:id": "4", + "addr:full": "\"21 Cromwell Road", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1523, + 51.49609 + ] + }, + "properties": { + "openplaque:id": "40", + "addr:full": "93 Eaton Square", + "date_start": "1969" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09582, + 51.45335 + ] + }, + "properties": { + "openplaque:id": "40008", + "addr:full": "2 Warmington Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14781, + 51.52082 + ] + }, + "properties": { + "openplaque:id": "40089", + "addr:full": "94 Harley Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.177, + 51.52683 + ] + }, + "properties": { + "openplaque:id": "40091", + "addr:full": "\"10 Hamilton Terrace", + "date_start": "St Johns Wood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20114, + 51.4979 + ] + }, + "properties": { + "openplaque:id": "401", + "addr:full": "12 Earls Terrace", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2796, + 51.55721 + ] + }, + "properties": { + "openplaque:id": "40113", + "addr:full": "Wembley Stadium", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11518, + 51.46232 + ] + }, + "properties": { + "openplaque:id": "40115", + "addr:full": "\"Iceland", + "date_start": "Electric Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15089, + 51.50255 + ] + }, + "properties": { + "openplaque:id": "40120", + "addr:full": "\"Wellington Arch", + "date_start": "Hyde Park Corner\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12826, + 51.52479 + ] + }, + "properties": { + "openplaque:id": "40123", + "addr:full": "\"Memorial to Louisa Brandreth Aldrich-Blake - Tavistock Square", + "date_start": "WC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14453, + 51.5063 + ] + }, + "properties": { + "openplaque:id": "402", + "addr:full": "46 Clarges Street", + "date_start": "1950" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31115, + 51.39656 + ] + }, + "properties": { + "openplaque:id": "40255", + "addr:full": "\"Ravensview Court", + "date_start": "Portsmouth Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17328, + 51.4945 + ] + }, + "properties": { + "openplaque:id": "403", + "addr:full": "\"18 Thurloe Street", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13024, + 51.52014 + ] + }, + "properties": { + "openplaque:id": "40314", + "addr:full": "11 Gower Street", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19569, + 51.56029 + ] + }, + "properties": { + "openplaque:id": "40322", + "addr:full": "19 Briardale Gardens", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.04737, + 51.54263 + ] + }, + "properties": { + "openplaque:id": "40333", + "addr:full": "\"41 Cassland Road", + "date_start": "Hackney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13422, + 51.50723 + ] + }, + "properties": { + "openplaque:id": "40334", + "addr:full": "\"Norfolk House", + "date_start": "31 St James's Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17823, + 51.5149 + ] + }, + "properties": { + "openplaque:id": "404", + "addr:full": "\"44 Westbourne Terrace", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15084, + 51.57303 + ] + }, + "properties": { + "openplaque:id": "40422", + "addr:full": "\"12 North Road", + "date_start": "Highgate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15544, + 51.49367 + ] + }, + "properties": { + "openplaque:id": "40455", + "addr:full": "\"23 Cliveden Place", + "date_start": "Belgravia SW1W\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12944, + 51.52981 + ] + }, + "properties": { + "openplaque:id": "40482", + "addr:full": "St Pancras Station", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18332, + 51.51791 + ] + }, + "properties": { + "openplaque:id": "405", + "addr:full": "\"1 Orsett Terrace", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10274, + 51.522 + ] + }, + "properties": { + "openplaque:id": "40526" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09728, + 51.51705 + ] + }, + "properties": { + "openplaque:id": "40533", + "addr:full": "Postman's Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.02727, + 51.4795 + ] + }, + "properties": { + "openplaque:id": "406", + "addr:full": "\"'High Combe'", + "date_start": "145 Carlton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1244, + 51.60734 + ] + }, + "properties": { + "openplaque:id": "40664", + "addr:full": "Bounds Green Underground Station", + "date_start": "1994" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12943, + 51.5198 + ] + }, + "properties": { + "openplaque:id": "4068", + "addr:full": "Montague Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23524, + 51.50041 + ] + }, + "properties": { + "openplaque:id": "40680", + "addr:full": "Shepherd's Bush" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07042, + 51.44528 + ] + }, + "properties": { + "openplaque:id": "40681", + "addr:full": "\"67 Overhill Road", + "date_start": "East Dulwich\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33559, + 51.50876 + ] + }, + "properties": { + "openplaque:id": "40684", + "addr:full": "\"76 Uxbridge Road", + "date_start": "Hanwell\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17041, + 51.5556 + ] + }, + "properties": { + "openplaque:id": "407", + "addr:full": "\"47 Downshire Hill", + "date_start": "Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12746, + 51.5221 + ] + }, + "properties": { + "openplaque:id": "4070", + "addr:full": "Russell Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18768, + 51.64653 + ] + }, + "properties": { + "openplaque:id": "40700", + "addr:full": "\"Everyman Barnet", + "date_start": "Western Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12288, + 51.51338 + ] + }, + "properties": { + "openplaque:id": "40720", + "addr:full": "Floral Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17194, + 51.5324 + ] + }, + "properties": { + "openplaque:id": "408", + "addr:full": "\"24 Wellington Road", + "date_start": "St John's Wood" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16406, + 51.58856 + ] + }, + "properties": { + "openplaque:id": "40821", + "addr:full": "\"High Road", + "date_start": "East Finchley\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11527, + 51.46124 + ] + }, + "properties": { + "openplaque:id": "40822", + "addr:full": "\"The Ritzy Cinema", + "date_start": "Brixton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14048, + 51.52262 + ] + }, + "properties": { + "openplaque:id": "409", + "addr:full": "\"29 Fitzroy Square", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21827, + 51.46051 + ] + }, + "properties": { + "openplaque:id": "40941", + "addr:full": "\"Above archway leading to ‘Crescent Stables’ next to Bright Cook House", + "date_start": "139 Upper Richmond Road SW15\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08798, + 51.51336 + ] + }, + "properties": { + "openplaque:id": "40985", + "addr:full": "Cornhill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3003, + 51.3997 + ] + }, + "properties": { + "openplaque:id": "41", + "addr:full": "\"58 Cranes Park", + "date_start": "Surbiton" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10159, + 51.5491 + ] + }, + "properties": { + "openplaque:id": "410", + "addr:full": "\"25 Highbury Place", + "date_start": "Islington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16703, + 51.49397 + ] + }, + "properties": { + "openplaque:id": "41010", + "addr:full": "\"32 Donne Place", + "date_start": "Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12485, + 51.51864 + ] + }, + "properties": { + "openplaque:id": "41015", + "addr:full": "\"66 Great Russell Street", + "date_start": "Bloomsbury\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14134, + 51.52344 + ] + }, + "properties": { + "openplaque:id": "41020", + "addr:full": "\"27 Conway Street", + "date_start": "Fitzrovia\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18072, + 51.55696 + ] + }, + "properties": { + "openplaque:id": "41021", + "addr:full": "\"55 Heath Street", + "date_start": "Hampstead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07846, + 51.52625 + ] + }, + "properties": { + "openplaque:id": "41027", + "addr:full": "Rivington Street", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01247, + 51.5842 + ] + }, + "properties": { + "openplaque:id": "41041", + "addr:full": "\"National Spiritualist Church", + "date_start": "Vestry Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15136, + 51.49792 + ] + }, + "properties": { + "openplaque:id": "411", + "addr:full": "\"15 Eaton Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01299, + 51.57155 + ] + }, + "properties": { + "openplaque:id": "41101", + "addr:full": "\"Leytonstone House", + "date_start": "High Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0047, + 51.59497 + ] + }, + "properties": { + "openplaque:id": "41102", + "addr:full": "\"16 MacDonald Road", + "date_start": "Walthamstow\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13187, + 51.51096 + ] + }, + "properties": { + "openplaque:id": "41199", + "addr:full": "\"Morden & Lea", + "date_start": "17 Wardour St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15289, + 51.4945 + ] + }, + "properties": { + "openplaque:id": "412", + "addr:full": "\"54 Eaton Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17355, + 51.48461 + ] + }, + "properties": { + "openplaque:id": "41227", + "addr:full": "\"48 Paultons Square", + "date_start": "Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17355, + 51.48461 + ] + }, + "properties": { + "openplaque:id": "41228", + "addr:full": "\"48 Paultons Square", + "date_start": "Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18541, + 51.49943 + ] + }, + "properties": { + "openplaque:id": "41230", + "addr:full": "\"3 Kensington Gate", + "date_start": "Kensington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15138, + 51.4954 + ] + }, + "properties": { + "openplaque:id": "413", + "addr:full": "\"37 Eaton Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26553, + 51.48868 + ] + }, + "properties": { + "openplaque:id": "41326", + "addr:full": "\"51 Barrowgate Road", + "date_start": "Chiswick\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01955, + 51.58514 + ] + }, + "properties": { + "openplaque:id": "41334", + "addr:full": "\"Central Parade", + "date_start": "Hoe Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16336, + 51.49421 + ] + }, + "properties": { + "openplaque:id": "41351", + "addr:full": "\"24 Halsey Street", + "date_start": "Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25207, + 51.53718 + ] + }, + "properties": { + "openplaque:id": "41385", + "addr:full": "\"Connaught Road", + "date_start": "Harlesdon\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17636, + 51.56313 + ] + }, + "properties": { + "openplaque:id": "41398", + "addr:full": "\"Rose Cottage", + "date_start": "Vale Of Health\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11109, + 51.5312 + ] + }, + "properties": { + "openplaque:id": "414", + "addr:full": "\"4 Claremont Square", + "date_start": "Islington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12521, + 51.5127 + ] + }, + "properties": { + "openplaque:id": "41422", + "addr:full": "\"118 Long Acre", + "date_start": "Covent Garden\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16837, + 51.49136 + ] + }, + "properties": { + "openplaque:id": "41423", + "addr:full": "\"8 Marlborough Street", + "date_start": "Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12218, + 51.51107 + ] + }, + "properties": { + "openplaque:id": "41463", + "addr:full": "\"22-23 Southampton Street", + "date_start": "Covent Garden\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13855, + 51.51158 + ] + }, + "properties": { + "openplaque:id": "41469", + "addr:full": "\"20 Warwick Street", + "date_start": "Soho\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19336, + 51.5078 + ] + }, + "properties": { + "openplaque:id": "415", + "addr:full": "\"57 Palace Gardens Terrace", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08896, + 51.45227 + ] + }, + "properties": { + "openplaque:id": "41513", + "addr:full": "\"14 Westwood Hill", + "date_start": "Sydenham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09105, + 51.52846 + ] + }, + "properties": { + "openplaque:id": "41578", + "addr:full": "\"43 Waverley Gardens", + "date_start": "Barking\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16989, + 51.49896 + ] + }, + "properties": { + "openplaque:id": "41595", + "addr:full": "34 Ennismore Gardens", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18295, + 51.5107 + ] + }, + "properties": { + "openplaque:id": "416", + "addr:full": "\"100 Bayswater Road", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17851, + 51.56107 + ] + }, + "properties": { + "openplaque:id": "41696", + "addr:full": "\"Bell Moor House", + "date_start": "East Heath Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17385, + 51.56983 + ] + }, + "properties": { + "openplaque:id": "41698", + "addr:full": "\"Toll Gate House", + "date_start": "Spaniards Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00733, + 51.47844 + ] + }, + "properties": { + "openplaque:id": "417", + "addr:full": "\"26 Croom's Hill", + "date_start": "Greenwich\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10915, + 51.52589 + ] + }, + "properties": { + "openplaque:id": "41743", + "addr:full": "59-61 Exmouth Market" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35463, + 51.4286 + ] + }, + "properties": { + "openplaque:id": "4176", + "addr:full": "\"114 High Street", + "date_start": "Hampton Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41016, + 51.45373 + ] + }, + "properties": { + "openplaque:id": "41802", + "addr:full": "\"22 Gladstone Avenue", + "date_start": "Feltham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10147, + 51.51258 + ] + }, + "properties": { + "openplaque:id": "41820", + "addr:full": "5 St Andrew's Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17754, + 51.51208 + ] + }, + "properties": { + "openplaque:id": "41868", + "addr:full": "\"The Windmill", + "date_start": "Notting Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17754, + 51.51208 + ] + }, + "properties": { + "openplaque:id": "41869", + "addr:full": "\"The Windmill", + "date_start": "Notting Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13666, + 51.5203 + ] + }, + "properties": { + "openplaque:id": "419", + "addr:full": "\"81 Charlotte Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11116, + 51.5325 + ] + }, + "properties": { + "openplaque:id": "4190", + "addr:full": "\"28 Penton Street", + "date_start": "Islington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10993, + 51.57316 + ] + }, + "properties": { + "openplaque:id": "41917", + "addr:full": "\"73 Lancaster Road", + "date_start": "Stroud Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1771, + 51.52726 + ] + }, + "properties": { + "openplaque:id": "42", + "addr:full": "\"20 Hamilton Terrace", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34398, + 51.60151 + ] + }, + "properties": { + "openplaque:id": "42005", + "addr:full": "\"59 Weald Lane", + "date_start": "Harrow\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13231, + 51.51971 + ] + }, + "properties": { + "openplaque:id": "42006", + "addr:full": "Alfred Place", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17041, + 51.42905 + ] + }, + "properties": { + "openplaque:id": "42013", + "addr:full": "\"934 Garratt Lane", + "date_start": "Tooting\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23319, + 51.49277 + ] + }, + "properties": { + "openplaque:id": "42059", + "addr:full": "\"Inside The Salutation Inn", + "date_start": "King Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02613, + 51.52693 + ] + }, + "properties": { + "openplaque:id": "42077", + "addr:full": "32 Bow Road", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20932, + 51.49572 + ] + }, + "properties": { + "openplaque:id": "42078", + "addr:full": "\"11a Palace Mansions", + "date_start": "Hammersmith Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17379, + 51.4843 + ] + }, + "properties": { + "openplaque:id": "42098", + "addr:full": "\"14 Paultons Square", + "date_start": "Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26793, + 51.5659 + ] + }, + "properties": { + "openplaque:id": "421", + "addr:full": "\"11 Forty Lane", + "date_start": "Wembley Brent\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12177, + 51.51957 + ] + }, + "properties": { + "openplaque:id": "42173", + "addr:full": "70 Southampton Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15962, + 51.49707 + ] + }, + "properties": { + "openplaque:id": "422", + "addr:full": "\"Cadogan Hotel", + "date_start": "21 Pont Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19311, + 51.48922 + ] + }, + "properties": { + "openplaque:id": "42207", + "addr:full": "St Cuthbert with St Matthias Primary School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09849, + 51.51899 + ] + }, + "properties": { + "openplaque:id": "42211", + "addr:full": "Worshipful Company of Information Technologists" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08686, + 51.51298 + ] + }, + "properties": { + "openplaque:id": "42265", + "addr:full": "Change Alley EC3" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13381, + 51.49392 + ] + }, + "properties": { + "openplaque:id": "42277" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08697, + 51.47438 + ] + }, + "properties": { + "openplaque:id": "42313", + "addr:full": "Benhill Road", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12523, + 51.5186 + ] + }, + "properties": { + "openplaque:id": "4234", + "addr:full": "67-70 Great Russell Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16749, + 51.52201 + ] + }, + "properties": { + "openplaque:id": "42349", + "addr:full": "33 Daventry Street", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1279, + 51.52641 + ] + }, + "properties": { + "openplaque:id": "42358", + "addr:full": "4 Burton Place", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12599, + 51.52643 + ] + }, + "properties": { + "openplaque:id": "42359", + "addr:full": "\"2 Burton Crescent", + "date_start": "later named Cartwright Gardens\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11733, + 51.52468 + ] + }, + "properties": { + "openplaque:id": "42360", + "addr:full": "30 Doughty Street", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0467, + 51.52809 + ] + }, + "properties": { + "openplaque:id": "42368", + "addr:full": "93 Montpelier Gardens", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16237, + 51.47947 + ] + }, + "properties": { + "openplaque:id": "42372", + "addr:full": "Battersea Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18133, + 51.49964 + ] + }, + "properties": { + "openplaque:id": "42373", + "addr:full": "22 Hyde Park Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14987, + 51.50631 + ] + }, + "properties": { + "openplaque:id": "42389", + "addr:full": "1 Derby Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17337, + 51.53238 + ] + }, + "properties": { + "openplaque:id": "4242", + "addr:full": "1 Cavendish Avenue", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09562, + 51.51669 + ] + }, + "properties": { + "openplaque:id": "42426", + "addr:full": "Noble Street EC2V" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10154, + 51.53343 + ] + }, + "properties": { + "openplaque:id": "42429", + "addr:full": "\"22 Noel Road", + "date_start": "Islington N1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09309, + 51.51638 + ] + }, + "properties": { + "openplaque:id": "42430", + "addr:full": "\"St Mary Aldermanbury's Garden", + "date_start": "Love Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13229, + 51.50663 + ] + }, + "properties": { + "openplaque:id": "42442", + "addr:full": "Waterloo Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07843, + 51.50299 + ] + }, + "properties": { + "openplaque:id": "42456", + "addr:full": "Queen Elizabeth Street SE1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16175, + 51.5588 + ] + }, + "properties": { + "openplaque:id": "4246", + "addr:full": "77 Parliament Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12237, + 51.51122 + ] + }, + "properties": { + "openplaque:id": "4248", + "addr:full": "\"27 Southampton Street", + "date_start": "Covent Garden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14806, + 51.51926 + ] + }, + "properties": { + "openplaque:id": "42496", + "addr:full": "\"51 New Cavendish Street", + "date_start": "Marylebone\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14402, + 51.51862 + ] + }, + "properties": { + "openplaque:id": "42497" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14404, + 51.51862 + ] + }, + "properties": { + "openplaque:id": "42498" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14064, + 51.51466 + ] + }, + "properties": { + "openplaque:id": "425", + "addr:full": "8 Argyll Street", + "date_start": "1983" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.00741, + 51.56007 + ] + }, + "properties": { + "openplaque:id": "4250", + "addr:full": "\"527-529 High Road", + "date_start": "Leytonstone\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20011, + 51.57233 + ] + }, + "properties": { + "openplaque:id": "42502", + "addr:full": "\"42 Woodstock Road", + "date_start": "Golders Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15036, + 51.52065 + ] + }, + "properties": { + "openplaque:id": "4252", + "addr:full": "4 Beaumont Street", + "date_start": "1964" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13792, + 51.5236 + ] + }, + "properties": { + "openplaque:id": "4254", + "addr:full": "58 Grafton Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12711, + 51.50629 + ] + }, + "properties": { + "openplaque:id": "42545" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12551, + 51.49964 + ] + }, + "properties": { + "openplaque:id": "42548" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12546, + 51.49983 + ] + }, + "properties": { + "openplaque:id": "42551", + "addr:full": "Westminster Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12543, + 51.49978 + ] + }, + "properties": { + "openplaque:id": "42553", + "addr:full": "Westminster Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12542, + 51.49979 + ] + }, + "properties": { + "openplaque:id": "42554", + "addr:full": "Westminster Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12542, + 51.49979 + ] + }, + "properties": { + "openplaque:id": "42555", + "addr:full": "Westminster Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12542, + 51.49979 + ] + }, + "properties": { + "openplaque:id": "42556", + "addr:full": "Westminster Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12542, + 51.49979 + ] + }, + "properties": { + "openplaque:id": "42557", + "addr:full": "Westminster Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13894, + 51.5236 + ] + }, + "properties": { + "openplaque:id": "4256", + "addr:full": "145 Whitfield Street", + "date_start": "1989" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13003, + 51.4997 + ] + }, + "properties": { + "openplaque:id": "42562", + "addr:full": "Tothill Street", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13005, + 51.49963 + ] + }, + "properties": { + "openplaque:id": "42564", + "addr:full": "Tothill Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13707, + 51.49718 + ] + }, + "properties": { + "openplaque:id": "42565", + "addr:full": "Victoria Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14537, + 51.50708 + ] + }, + "properties": { + "openplaque:id": "4258", + "addr:full": "\"17 Clarges Street", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11631, + 51.52347 + ] + }, + "properties": { + "openplaque:id": "426", + "addr:full": "\"48 Doughty Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15047, + 51.5066 + ] + }, + "properties": { + "openplaque:id": "4260", + "addr:full": "\"77 South Audley Street", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15256, + 51.51202 + ] + }, + "properties": { + "openplaque:id": "4262", + "addr:full": "20 Grosvenor Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.003, + 51.55195 + ] + }, + "properties": { + "openplaque:id": "42631", + "addr:full": "\"Ashlin Road", + "date_start": "E15\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15021, + 51.511 + ] + }, + "properties": { + "openplaque:id": "4264", + "addr:full": "48 Grosvenor Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15008, + 51.5122 + ] + }, + "properties": { + "openplaque:id": "4266", + "addr:full": "7 Grosvenor Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16463, + 51.47692 + ] + }, + "properties": { + "openplaque:id": "427", + "addr:full": "67 Albert Bridge Road", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14022, + 51.5109 + ] + }, + "properties": { + "openplaque:id": "4270", + "addr:full": "12 Savile Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12754, + 51.49718 + ] + }, + "properties": { + "openplaque:id": "42718", + "addr:full": "\"16 Cowley Street", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10109, + 51.57396 + ] + }, + "properties": { + "openplaque:id": "42733", + "addr:full": "Finsbury Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13778, + 51.5118 + ] + }, + "properties": { + "openplaque:id": "4274", + "addr:full": "33 Golden Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00082, + 51.5843 + ] + }, + "properties": { + "openplaque:id": "42748", + "addr:full": "\"247-251 Wood Street", + "date_start": "Walthamstow\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13139, + 51.5117 + ] + }, + "properties": { + "openplaque:id": "4276", + "addr:full": "\"Gerrard Street", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23661, + 51.4946 + ] + }, + "properties": { + "openplaque:id": "428", + "addr:full": "\"19 Ravenscourt Road", + "date_start": "Hammersmith and Fulham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13226, + 51.51189 + ] + }, + "properties": { + "openplaque:id": "4280", + "addr:full": "Shaftesbury Ave" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12537, + 51.52543 + ] + }, + "properties": { + "openplaque:id": "42818", + "addr:full": "\"66 Marchmont Street", + "date_start": "WC1N 1AB\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10191, + 51.52755 + ] + }, + "properties": { + "openplaque:id": "42823", + "addr:full": "\"15 Northampton Square", + "date_start": "Islington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12488, + 51.5275 + ] + }, + "properties": { + "openplaque:id": "42824", + "addr:full": "\"91", + "date_start": "Judd Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11217, + 51.47826 + ] + }, + "properties": { + "openplaque:id": "42876", + "addr:full": "\"Glenshaw Mansions", + "date_start": "Brixton Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18357, + 51.4923 + ] + }, + "properties": { + "openplaque:id": "429", + "addr:full": "\"24 Wetherby Gardens", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.03629, + 51.5378 + ] + }, + "properties": { + "openplaque:id": "42929", + "addr:full": "\"18 Waterloo Road", + "date_start": "E6 1AP\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14797, + 51.51366 + ] + }, + "properties": { + "openplaque:id": "4298", + "addr:full": "17 South Molton Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1742, + 51.4875 + ] + }, + "properties": { + "openplaque:id": "43", + "addr:full": "\"155 Old Church Street", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14607, + 51.51062 + ] + }, + "properties": { + "openplaque:id": "4300", + "addr:full": "24 Berkeley Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18084, + 51.5214 + ] + }, + "properties": { + "openplaque:id": "4302", + "addr:full": "8 Warwick Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17192, + 51.5019 + ] + }, + "properties": { + "openplaque:id": "4304", + "addr:full": "\"14 Prince's Gate", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18042, + 51.5008 + ] + }, + "properties": { + "openplaque:id": "4306", + "addr:full": "\"1 and 2 Queen's Gate", + "date_start": "Kensington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15176, + 51.52203 + ] + }, + "properties": { + "openplaque:id": "4308", + "addr:full": "\"St Marylebone School", + "date_start": "Marylebone High St\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15025, + 51.4951 + ] + }, + "properties": { + "openplaque:id": "431", + "addr:full": "\"24 Chester Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10112, + 51.51084 + ] + }, + "properties": { + "openplaque:id": "4310", + "addr:full": "Upper Thames Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0983, + 51.5126 + ] + }, + "properties": { + "openplaque:id": "4312", + "addr:full": "Peter’s Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18475, + 51.5534 + ] + }, + "properties": { + "openplaque:id": "4314", + "addr:full": "\"21 Langland Gardens", + "date_start": "Camden\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1525, + 51.4913 + ] + }, + "properties": { + "openplaque:id": "4316", + "addr:full": "180 Ebury Street", + "date_start": "1939" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1485, + 51.4959 + ] + }, + "properties": { + "openplaque:id": "4318", + "addr:full": "77 Chester Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1293, + 51.51865 + ] + }, + "properties": { + "openplaque:id": "432", + "addr:full": "49 Bedford Square", + "date_start": "1985" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14927, + 51.4987 + ] + }, + "properties": { + "openplaque:id": "4320", + "addr:full": "8 Wilton Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18784, + 51.61566 + ] + }, + "properties": { + "openplaque:id": "43327", + "addr:full": "\"Wimbush House", + "date_start": "Westbury Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12422, + 51.49738 + ] + }, + "properties": { + "openplaque:id": "43333", + "addr:full": "\"Thames Embankment", + "date_start": "Victoria Tower Gardens South" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12459, + 51.49622 + ] + }, + "properties": { + "openplaque:id": "43334" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13223, + 51.49973 + ] + }, + "properties": { + "openplaque:id": "43365", + "addr:full": "41 Tothill Street", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08033, + 51.52712 + ] + }, + "properties": { + "openplaque:id": "43446", + "addr:full": "333 Old Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07139, + 51.45934 + ] + }, + "properties": { + "openplaque:id": "43482", + "addr:full": "47 Crystal Palace Road", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18423, + 51.52437 + ] + }, + "properties": { + "openplaque:id": "43486", + "addr:full": "2 Warrington Crescent", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.133, + 51.51854 + ] + }, + "properties": { + "openplaque:id": "43487", + "addr:full": "15 Percy Street Fitzrovia", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13022, + 51.52436 + ] + }, + "properties": { + "openplaque:id": "43488", + "addr:full": "\"46 Gordon Square", + "date_start": "Bloomsbury\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12998, + 51.52415 + ] + }, + "properties": { + "openplaque:id": "43489", + "addr:full": "\"51 Gordon Square", + "date_start": "Bloomsbury\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1942, + 51.50283 + ] + }, + "properties": { + "openplaque:id": "43490", + "addr:full": "37 Holland Street Kensington", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20198, + 51.50686 + ] + }, + "properties": { + "openplaque:id": "43491", + "addr:full": "\"23 Campden Hill Square", + "date_start": "Holland Park\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16815, + 51.49146 + ] + }, + "properties": { + "openplaque:id": "43492", + "addr:full": "\"8 Marlborough Street", + "date_start": "Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16847, + 51.4976 + ] + }, + "properties": { + "openplaque:id": "435", + "addr:full": "\"6 Brompton Square", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19086, + 51.5006 + ] + }, + "properties": { + "openplaque:id": "4350", + "addr:full": "33 Kensington Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18883, + 51.5005 + ] + }, + "properties": { + "openplaque:id": "4352", + "addr:full": "\"Esmond Court", + "date_start": "Thackeray St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15435, + 51.50057 + ] + }, + "properties": { + "openplaque:id": "4356", + "addr:full": "33 Wilton Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19294, + 51.45871 + ] + }, + "properties": { + "openplaque:id": "43574", + "addr:full": "Armoury Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15222, + 51.49876 + ] + }, + "properties": { + "openplaque:id": "4358", + "addr:full": "34 Belgrave Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15921, + 51.5208 + ] + }, + "properties": { + "openplaque:id": "436", + "addr:full": "\"117 Gloucester Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15626, + 51.50009 + ] + }, + "properties": { + "openplaque:id": "4360", + "addr:full": "2 Wilton Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16377, + 51.4921 + ] + }, + "properties": { + "openplaque:id": "4362", + "addr:full": "\"Avenue Court", + "date_start": "Draycott Avenue\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15766, + 51.4972 + ] + }, + "properties": { + "openplaque:id": "4364", + "addr:full": "30 Cadogan Place", + "date_start": "1975" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03316, + 51.49928 + ] + }, + "properties": { + "openplaque:id": "43641", + "addr:full": "Barnards Wharf" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21107, + 51.5049 + ] + }, + "properties": { + "openplaque:id": "4366", + "addr:full": "17 Holland Park Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19675, + 51.566 + ] + }, + "properties": { + "openplaque:id": "437", + "addr:full": "\"Hodford Lodge", + "date_start": "2 Hodford Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03736, + 51.47586 + ] + }, + "properties": { + "openplaque:id": "43711", + "addr:full": "323 New Cross Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19583, + 51.50393 + ] + }, + "properties": { + "openplaque:id": "43735", + "addr:full": "10 Observatory Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0114, + 51.56436 + ] + }, + "properties": { + "openplaque:id": "43738", + "addr:full": "\"Davies Lane", + "date_start": "Leytonstone\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.00432, + 51.45719 + ] + }, + "properties": { + "openplaque:id": "4374", + "addr:full": "\"Manor House", + "date_start": "Lee" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05541, + 51.4415 + ] + }, + "properties": { + "openplaque:id": "4376", + "addr:full": "\"2 Manor Mount", + "date_start": "Forest Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0899, + 51.51274 + ] + }, + "properties": { + "openplaque:id": "43768", + "addr:full": "Walbrook" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0035, + 51.46413 + ] + }, + "properties": { + "openplaque:id": "4378", + "addr:full": "\"Dowson Court", + "date_start": "Belmont Grove" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18774, + 51.52762 + ] + }, + "properties": { + "openplaque:id": "43798", + "addr:full": "\"Lauderdale Mansions", + "date_start": "Lauderdale Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14308, + 51.55469 + ] + }, + "properties": { + "openplaque:id": "43799", + "addr:full": "56 Lady Somerset Road", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1265, + 51.4318 + ] + }, + "properties": { + "openplaque:id": "438", + "addr:full": "\"13 Pendennis Road", + "date_start": "Streatham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03887, + 51.4753 + ] + }, + "properties": { + "openplaque:id": "4380", + "addr:full": "\"Iceland", + "date_start": "formerly Woolworths" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.00399, + 51.57138 + ] + }, + "properties": { + "openplaque:id": "43801", + "addr:full": "\"69 Wallwood Road", + "date_start": "Leytonstone\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18588, + 51.49986 + ] + }, + "properties": { + "openplaque:id": "43811", + "addr:full": "\"27 Victoria Road", + "date_start": "Kensington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20722, + 51.56787 + ] + }, + "properties": { + "openplaque:id": "43812", + "addr:full": "139 Hendon Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2105, + 51.4619 + ] + }, + "properties": { + "openplaque:id": "43813", + "addr:full": "\"25 Winthorpe Road", + "date_start": "Putney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14039, + 51.53402 + ] + }, + "properties": { + "openplaque:id": "43814", + "addr:full": "\"31 Mornington Crescent", + "date_start": "Camden\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26789, + 51.45863 + ] + }, + "properties": { + "openplaque:id": "43815", + "addr:full": "287 Sheen Lane", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00898, + 51.4575 + ] + }, + "properties": { + "openplaque:id": "4382", + "addr:full": "\"8 Lingards Road", + "date_start": "Lewisham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.04178, + 51.4264 + ] + }, + "properties": { + "openplaque:id": "4384", + "addr:full": "\"208 Sydenham Road", + "date_start": "Sydenham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05639, + 51.4337 + ] + }, + "properties": { + "openplaque:id": "4386", + "addr:full": "20 Sydenham Park Road", + "date_start": "1987" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09948, + 51.54363 + ] + }, + "properties": { + "openplaque:id": "43869", + "addr:full": "27b Canonbury Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02491, + 51.4567 + ] + }, + "properties": { + "openplaque:id": "4388", + "addr:full": "\"148 Ladywell Road", + "date_start": "Lewisham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14083, + 51.523 + ] + }, + "properties": { + "openplaque:id": "439", + "addr:full": "21 Fitzroy Square", + "date_start": "1965" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01896, + 51.4664 + ] + }, + "properties": { + "openplaque:id": "4392", + "addr:full": "\"28 Elswick Road", + "date_start": "Lewisham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27804, + 51.48434 + ] + }, + "properties": { + "openplaque:id": "43948", + "addr:full": "\"11 Strand on the Green", + "date_start": "Chiswick\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.04609, + 51.4776 + ] + }, + "properties": { + "openplaque:id": "4396", + "addr:full": "\"13 Camplin Street", + "date_start": "New Cross\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17698, + 51.49328 + ] + }, + "properties": { + "openplaque:id": "43972", + "addr:full": "\"7 Reece Mews", + "date_start": "South Kensington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13834, + 51.50561 + ] + }, + "properties": { + "openplaque:id": "43987", + "addr:full": "78 St James's Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17992, + 51.5459 + ] + }, + "properties": { + "openplaque:id": "44", + "addr:full": "1 Broadhurst Gardens", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14897, + 51.5198 + ] + }, + "properties": { + "openplaque:id": "440", + "addr:full": "\"36 Wimpole Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02086, + 51.4693 + ] + }, + "properties": { + "openplaque:id": "4400", + "addr:full": "\"16 Bolden Street", + "date_start": "Deptford\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21693, + 51.42507 + ] + }, + "properties": { + "openplaque:id": "44019", + "addr:full": "\"21A High Street", + "date_start": "Wimbledon\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02827, + 51.58431 + ] + }, + "properties": { + "openplaque:id": "44031", + "addr:full": "\"6 Somers Road", + "date_start": "Walthamstow\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.04476, + 51.44623 + ] + }, + "properties": { + "openplaque:id": "4404", + "addr:full": "\"Bovill Road", + "date_start": "Forest Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11335, + 51.4644 + ] + }, + "properties": { + "openplaque:id": "441", + "addr:full": "\"14 Dover Mansions", + "date_start": "Canterbury Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19548, + 51.5056 + ] + }, + "properties": { + "openplaque:id": "442", + "addr:full": "\"19 Sheffield Terrace", + "date_start": "W8 Kensington & Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13129, + 51.51338 + ] + }, + "properties": { + "openplaque:id": "444", + "addr:full": "\"22 Frith Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17989, + 51.55815 + ] + }, + "properties": { + "openplaque:id": "446", + "addr:full": "\"Bolton House", + "date_start": "Windmill Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34921, + 51.39319 + ] + }, + "properties": { + "openplaque:id": "44672", + "addr:full": "\"205 Ember Lane", + "date_start": "East Molesey\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15104, + 51.52403 + ] + }, + "properties": { + "openplaque:id": "447", + "addr:full": "\"20 York Terrace East", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11624, + 51.52356 + ] + }, + "properties": { + "openplaque:id": "44728", + "addr:full": "48 Doughty Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21147, + 51.51031 + ] + }, + "properties": { + "openplaque:id": "44729", + "addr:full": "Walmer Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17813, + 51.49981 + ] + }, + "properties": { + "openplaque:id": "44741", + "addr:full": "\"Imperial College London", + "date_start": "Prince Consort Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08572, + 51.50927 + ] + }, + "properties": { + "openplaque:id": "44758", + "addr:full": "Lower Thames Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11829, + 51.52188 + ] + }, + "properties": { + "openplaque:id": "44788", + "addr:full": "Rugby Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1459, + 51.5227 + ] + }, + "properties": { + "openplaque:id": "448", + "addr:full": "\"98 Portland Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.009, + 51.46545 + ] + }, + "properties": { + "openplaque:id": "44813", + "addr:full": "\"30-32 Selwyn Court", + "date_start": "Blackheath\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.02665, + 51.5358 + ] + }, + "properties": { + "openplaque:id": "449", + "addr:full": "\"1 Lawrence Road", + "date_start": "West Ham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12839, + 51.5219 + ] + }, + "properties": { + "openplaque:id": "4490", + "addr:full": "Russell Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15898, + 51.52004 + ] + }, + "properties": { + "openplaque:id": "45", + "addr:full": "99 Gloucester Place", + "date_start": "1924" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10068, + 51.5434 + ] + }, + "properties": { + "openplaque:id": "450", + "addr:full": "\"8 Canonbury Square", + "date_start": "Islington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10245, + 51.5364 + ] + }, + "properties": { + "openplaque:id": "452", + "addr:full": "\"10-11 Islington Green", + "date_start": "Islington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15054, + 51.50631 + ] + }, + "properties": { + "openplaque:id": "453", + "addr:full": "\"19 Curzon Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1601, + 51.4615 + ] + }, + "properties": { + "openplaque:id": "454", + "addr:full": "\"113 Clapham Common North Side", + "date_start": "SW4 Wandsworth\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14425, + 51.51721 + ] + }, + "properties": { + "openplaque:id": "455", + "addr:full": "\"14 Cavendish Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14251, + 51.48943 + ] + }, + "properties": { + "openplaque:id": "456", + "addr:full": "\"114 Cambridge Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15814, + 51.4752 + ] + }, + "properties": { + "openplaque:id": "458", + "addr:full": "\"49 Overstrand Mansions", + "date_start": "Prince of Wales Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1923, + 51.503 + ] + }, + "properties": { + "openplaque:id": "4588", + "addr:full": "13 Holland Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1189, + 51.5123 + ] + }, + "properties": { + "openplaque:id": "459", + "addr:full": "\"11 Aldwych", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18644, + 51.5352 + ] + }, + "properties": { + "openplaque:id": "46", + "addr:full": "114 Clifton Hill", + "date_start": "1973" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34269, + 51.565 + ] + }, + "properties": { + "openplaque:id": "461", + "addr:full": "\"Duneaves", + "date_start": "Mount Park Road Harrow\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12943, + 51.5153 + ] + }, + "properties": { + "openplaque:id": "464", + "addr:full": "\"5 Denmark Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15698, + 51.5213 + ] + }, + "properties": { + "openplaque:id": "465", + "addr:full": "\"120 Baker Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18872, + 51.4919 + ] + }, + "properties": { + "openplaque:id": "467", + "addr:full": "\"19 Collingham Gardens", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17621, + 51.537 + ] + }, + "properties": { + "openplaque:id": "468", + "addr:full": "\"28 Finchley Road", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0931, + 51.51264 + ] + }, + "properties": { + "openplaque:id": "46999", + "addr:full": "69 Watling Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14003, + 51.5234 + ] + }, + "properties": { + "openplaque:id": "47", + "addr:full": "9 Fitzroy Square", + "date_start": "1995" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13428, + 51.5462 + ] + }, + "properties": { + "openplaque:id": "470", + "addr:full": "\"Camden School for Girls", + "date_start": "Sandall Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09156, + 51.50169 + ] + }, + "properties": { + "openplaque:id": "47000", + "addr:full": "Angel Yard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0746, + 51.5144 + ] + }, + "properties": { + "openplaque:id": "4704", + "addr:full": "\"88 Aldgate High Street", + "date_start": "EC3N 1LH\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11082, + 51.5138 + ] + }, + "properties": { + "openplaque:id": "4706", + "addr:full": "18 Fleet Street", + "date_start": "1965" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09013, + 51.5178 + ] + }, + "properties": { + "openplaque:id": "4708", + "addr:full": "Fore Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2014, + 51.4979 + ] + }, + "properties": { + "openplaque:id": "471", + "addr:full": "\"14 Earls Terrace", + "date_start": "Kensington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08846, + 51.51478 + ] + }, + "properties": { + "openplaque:id": "4710", + "addr:full": "Tokenhouse Yard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09522, + 51.51176 + ] + }, + "properties": { + "openplaque:id": "4712", + "addr:full": "\"Cleary Gardens", + "date_start": "Huggin Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08413, + 51.51545 + ] + }, + "properties": { + "openplaque:id": "4716", + "addr:full": "\"International Finance Centre", + "date_start": "Old Broad Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08887, + 51.5134 + ] + }, + "properties": { + "openplaque:id": "4718", + "addr:full": "Tower Bridge Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07676, + 51.51043 + ] + }, + "properties": { + "openplaque:id": "472", + "addr:full": "\"43 Trinity Square", + "date_start": "Tower Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10083, + 51.5128 + ] + }, + "properties": { + "openplaque:id": "4720", + "addr:full": "5 Wardrobe Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09425, + 51.5131 + ] + }, + "properties": { + "openplaque:id": "4722", + "addr:full": "61 Watling Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09441, + 51.5141 + ] + }, + "properties": { + "openplaque:id": "4724", + "addr:full": "\"Bow Bells House", + "date_start": "Bread Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08697, + 51.5115 + ] + }, + "properties": { + "openplaque:id": "4726", + "addr:full": "27 Clement's Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17685, + 51.48124 + ] + }, + "properties": { + "openplaque:id": "473", + "addr:full": "\"120 Cheyne Walk", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15119, + 51.5231 + ] + }, + "properties": { + "openplaque:id": "4734", + "addr:full": "Marylebone High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15924, + 51.4918 + ] + }, + "properties": { + "openplaque:id": "4736", + "addr:full": "\"31 King's Road", + "date_start": "Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17196, + 51.5553 + ] + }, + "properties": { + "openplaque:id": "474", + "addr:full": "\"2B Pilgrims Lane", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18398, + 51.5115 + ] + }, + "properties": { + "openplaque:id": "475", + "addr:full": "\"3 Porchester Terrace", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15526, + 51.5201 + ] + }, + "properties": { + "openplaque:id": "4756", + "addr:full": "\"6 St Andrew's Mansions", + "date_start": "Dorset Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18147, + 51.5009 + ] + }, + "properties": { + "openplaque:id": "476", + "addr:full": "\"9 Hyde Park Gate", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14572, + 51.509 + ] + }, + "properties": { + "openplaque:id": "477", + "addr:full": "\"50 Berkeley Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09545, + 51.3646 + ] + }, + "properties": { + "openplaque:id": "478", + "addr:full": "44 St Peter's Road Croydon", + "date_start": "1979" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06269, + 51.6254 + ] + }, + "properties": { + "openplaque:id": "479", + "addr:full": "\"Lamb's Cottage", + "date_start": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00298, + 51.4744 + ] + }, + "properties": { + "openplaque:id": "48", + "addr:full": "\"Macartney House", + "date_start": "Greenwich Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20859, + 51.4898 + ] + }, + "properties": { + "openplaque:id": "480", + "addr:full": "\"20 Baron's Court Road", + "date_start": "Hammersmith and Fulham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22393, + 51.50326 + ] + }, + "properties": { + "openplaque:id": "4800", + "addr:full": "Shepherd's Bush Empire" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15138, + 51.5014 + ] + }, + "properties": { + "openplaque:id": "481", + "addr:full": "\"6 Grosvenor Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1399, + 51.5235 + ] + }, + "properties": { + "openplaque:id": "482", + "addr:full": "\"7 Fitzroy Square", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10268, + 51.52764 + ] + }, + "properties": { + "openplaque:id": "4820", + "addr:full": "\"City University buildings", + "date_start": "Northampton Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1015, + 51.5354 + ] + }, + "properties": { + "openplaque:id": "4822", + "addr:full": "\"54 Colebrooke Row", + "date_start": "Islington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.105, + 51.5283 + ] + }, + "properties": { + "openplaque:id": "4824", + "addr:full": "\"Spa Green Estate", + "date_start": "St John's Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10581, + 51.5228 + ] + }, + "properties": { + "openplaque:id": "4826", + "addr:full": "\"8 Sekforde Street", + "date_start": "Clerkenwell\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21626, + 51.5793 + ] + }, + "properties": { + "openplaque:id": "483", + "addr:full": "\"6 Haslemere Avenue", + "date_start": "Hendon" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1399, + 51.5235 + ] + }, + "properties": { + "openplaque:id": "484", + "addr:full": "\"56 Fitzroy Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05326, + 51.46746 + ] + }, + "properties": { + "openplaque:id": "4848", + "addr:full": "\"The Edens", + "date_start": "Well Hall Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10598, + 51.4567 + ] + }, + "properties": { + "openplaque:id": "485", + "addr:full": "\"165 Railton Road", + "date_start": "Brixton" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01043, + 51.4781 + ] + }, + "properties": { + "openplaque:id": "4852", + "addr:full": "\"Greenwich Dance Agency", + "date_start": "The Borough Halls" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19824, + 51.5052 + ] + }, + "properties": { + "openplaque:id": "4860", + "addr:full": "\"4 Airlie Gardens", + "date_start": "Campden Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07634, + 51.418 + ] + }, + "properties": { + "openplaque:id": "4862", + "addr:full": "\"28 Cintra Park", + "date_start": "Upper Norwood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28567, + 51.485 + ] + }, + "properties": { + "openplaque:id": "4864", + "addr:full": "\"49 Kew Green", + "date_start": "Kew\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12916, + 51.52663 + ] + }, + "properties": { + "openplaque:id": "48667", + "addr:full": "\"6 Woburn Walk", + "date_start": "Kings Cross\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16645, + 51.48889 + ] + }, + "properties": { + "openplaque:id": "48677", + "addr:full": "10 Burnsall Street", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06202, + 51.5165 + ] + }, + "properties": { + "openplaque:id": "4868", + "addr:full": "\"91 Ashfield Street", + "date_start": "Tower Hamlets\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19936, + 51.4969 + ] + }, + "properties": { + "openplaque:id": "487", + "addr:full": "\"1 Pembroke Cottages", + "date_start": "Edwardes Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31318, + 51.52165 + ] + }, + "properties": { + "openplaque:id": "48718", + "addr:full": "\"8 Castlebar Hill", + "date_start": "Ealing\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10988, + 51.51871 + ] + }, + "properties": { + "openplaque:id": "48763" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13001, + 51.52018 + ] + }, + "properties": { + "openplaque:id": "488", + "addr:full": "\"14 Gower Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13658, + 51.5068 + ] + }, + "properties": { + "openplaque:id": "489", + "addr:full": "\"1c King Street", + "date_start": "St James's" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18121, + 51.5561 + ] + }, + "properties": { + "openplaque:id": "49", + "addr:full": "8 Frognal Gardens", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08916, + 51.5438 + ] + }, + "properties": { + "openplaque:id": "490", + "addr:full": "\"136 Englefield Road", + "date_start": "Islington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19558, + 51.5496 + ] + }, + "properties": { + "openplaque:id": "491", + "addr:full": "\"31 Pandora Road", + "date_start": "West Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14313, + 51.50673 + ] + }, + "properties": { + "openplaque:id": "49153" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14379, + 51.49805 + ] + }, + "properties": { + "openplaque:id": "49155" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15411, + 51.4531 + ] + }, + "properties": { + "openplaque:id": "492", + "addr:full": "\"3 Thurleigh Avenue", + "date_start": "Balham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17706, + 51.5519 + ] + }, + "properties": { + "openplaque:id": "4924", + "addr:full": "\"44 Netherhall Gardens", + "date_start": "Frognal" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21231, + 51.50657 + ] + }, + "properties": { + "openplaque:id": "49260", + "addr:full": "25 Addison Avenue", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21237, + 51.4335 + ] + }, + "properties": { + "openplaque:id": "49285", + "addr:full": "\"Church Road", + "date_start": "Wimbledon\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19483, + 51.50725 + ] + }, + "properties": { + "openplaque:id": "49291", + "addr:full": "Kensington Wine Rooms", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16899, + 51.4855 + ] + }, + "properties": { + "openplaque:id": "493", + "addr:full": "87 Oakley Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09538, + 51.52173 + ] + }, + "properties": { + "openplaque:id": "49340", + "addr:full": "Fann Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17598, + 51.4817 + ] + }, + "properties": { + "openplaque:id": "494", + "addr:full": "\"108 Cheyne Walk", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17846, + 51.42746 + ] + }, + "properties": { + "openplaque:id": "49417", + "addr:full": "\"143 Fountain Road", + "date_start": "Tooting\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16399, + 51.48932 + ] + }, + "properties": { + "openplaque:id": "49439", + "addr:full": "\"50 Smith Street", + "date_start": "Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12083, + 51.52326 + ] + }, + "properties": { + "openplaque:id": "49462", + "addr:full": "Corner of Lansdowne Terrace and Guilford Street WC1", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14199, + 51.50825 + ] + }, + "properties": { + "openplaque:id": "49470", + "addr:full": "\"The ARTS CLUB", + "date_start": "40 Dover St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1517, + 51.50885 + ] + }, + "properties": { + "openplaque:id": "49476", + "addr:full": "\"Grosvenor Chapel", + "date_start": "24 S Audley St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14933, + 51.50632 + ] + }, + "properties": { + "openplaque:id": "49477", + "addr:full": "\"17 Trebeck Street", + "date_start": "Mayfair\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26733, + 51.49207 + ] + }, + "properties": { + "openplaque:id": "495", + "addr:full": "\"Arlington Park Mansions", + "date_start": "Sutton Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14102, + 51.54901 + ] + }, + "properties": { + "openplaque:id": "4950", + "addr:full": "\"Dartmouth Road", + "date_start": "Kentish Town\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13753, + 51.51953 + ] + }, + "properties": { + "openplaque:id": "49501", + "addr:full": "22 Cleveland Street", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07002, + 51.39663 + ] + }, + "properties": { + "openplaque:id": "49503", + "addr:full": "\"118 Portland Road", + "date_start": "South Norwood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1176, + 51.53921 + ] + }, + "properties": { + "openplaque:id": "4952", + "addr:full": "13-15 Bingfield Street", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11172, + 51.55861 + ] + }, + "properties": { + "openplaque:id": "4954", + "addr:full": "\"Sobell Leisure Centre", + "date_start": "Hornsey Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17213, + 51.4865 + ] + }, + "properties": { + "openplaque:id": "4956", + "addr:full": "\"2 Carlyle Square", + "date_start": "SW3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14458, + 51.52269 + ] + }, + "properties": { + "openplaque:id": "49572", + "addr:full": "\"105 Hallam Street", + "date_start": "W1W 5LT\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1816, + 51.51729 + ] + }, + "properties": { + "openplaque:id": "49573", + "addr:full": "124 Westbourne Terrace W2 6QJ", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1541, + 51.51653 + ] + }, + "properties": { + "openplaque:id": "49578", + "addr:full": "\"Orchard Court", + "date_start": "corner of Fitzhardinge Street and Seymour Mews" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17935, + 51.4873 + ] + }, + "properties": { + "openplaque:id": "496", + "addr:full": "\"Donovan Court", + "date_start": "Drayton Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20343, + 51.51377 + ] + }, + "properties": { + "openplaque:id": "4964", + "addr:full": "Portobello Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20231, + 51.49955 + ] + }, + "properties": { + "openplaque:id": "49647", + "addr:full": "\"14 Melbury Road", + "date_start": "Kensington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17365, + 51.44813 + ] + }, + "properties": { + "openplaque:id": "49659", + "addr:full": "\"14 Lyford Road", + "date_start": "Wandsworth\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20136, + 51.507 + ] + }, + "properties": { + "openplaque:id": "4966", + "addr:full": "\"17 Campden Hill Square", + "date_start": "Kensington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1632, + 51.55017 + ] + }, + "properties": { + "openplaque:id": "49660", + "addr:full": "\"4 Downside Crescent", + "date_start": "Hampstead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15841, + 51.45957 + ] + }, + "properties": { + "openplaque:id": "49673", + "addr:full": "\"5 Canford Road", + "date_start": "Battersea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14418, + 51.43948 + ] + }, + "properties": { + "openplaque:id": "49674", + "addr:full": "\"15 Dornton Road", + "date_start": "SW12\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15807, + 51.47941 + ] + }, + "properties": { + "openplaque:id": "49675", + "addr:full": "\"Near to Bandstand in Battersea Park", + "date_start": "SW11\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20241, + 51.45669 + ] + }, + "properties": { + "openplaque:id": "49676", + "addr:full": "\"47 West Hill", + "date_start": "SW18\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.24008, + 51.45015 + ] + }, + "properties": { + "openplaque:id": "49677", + "addr:full": "\"8 Roehampton High Street", + "date_start": "SW15\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.171, + 51.42484 + ] + }, + "properties": { + "openplaque:id": "49679", + "addr:full": "181-183 Tooting High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20074, + 51.5086 + ] + }, + "properties": { + "openplaque:id": "4968", + "addr:full": "Notting Hill Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15864, + 51.42572 + ] + }, + "properties": { + "openplaque:id": "49680", + "addr:full": "\"Church Lane", + "date_start": "SW17\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13853, + 51.5404 + ] + }, + "properties": { + "openplaque:id": "497", + "addr:full": "\"13 Lyme Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16665, + 51.5291 + ] + }, + "properties": { + "openplaque:id": "4970", + "addr:full": "\"Park Road", + "date_start": "St. Johns Wood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17772, + 51.54702 + ] + }, + "properties": { + "openplaque:id": "4972", + "addr:full": "\"6 and 4 Maresfield Avenue", + "date_start": "Hampstead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17288, + 51.56041 + ] + }, + "properties": { + "openplaque:id": "4974", + "addr:full": "\"22 The Pryors", + "date_start": "East Heath Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10438, + 51.33064 + ] + }, + "properties": { + "openplaque:id": "49746", + "addr:full": "\"32 St James' Road", + "date_start": "Purley\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17426, + 51.55799 + ] + }, + "properties": { + "openplaque:id": "4976", + "addr:full": "\"Well Walk", + "date_start": "Hampstead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41002, + 51.60037 + ] + }, + "properties": { + "openplaque:id": "4978", + "addr:full": "\"Northwood Hills Pub (Namaste Lounge)", + "date_start": "Northwood Hills\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20184, + 51.5481 + ] + }, + "properties": { + "openplaque:id": "498", + "addr:full": "\"10 Fordwych Road", + "date_start": "West Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18117, + 51.55952 + ] + }, + "properties": { + "openplaque:id": "4982", + "addr:full": "\"2 Lower Terrace", + "date_start": "Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14556, + 51.53747 + ] + }, + "properties": { + "openplaque:id": "49871", + "addr:full": "\"The Dublin Castle Public House", + "date_start": "94 Parkway" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12597, + 51.6321 + ] + }, + "properties": { + "openplaque:id": "49875", + "addr:full": "\"Hobart Court", + "date_start": "51" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08987, + 51.51812 + ] + }, + "properties": { + "openplaque:id": "49878", + "addr:full": "Moorgate Underground Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18522, + 51.51212 + ] + }, + "properties": { + "openplaque:id": "499", + "addr:full": "\"38 Queensborough Terrace", + "date_start": "Bayswater" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11218, + 51.5161 + ] + }, + "properties": { + "openplaque:id": "4994", + "addr:full": "Chancery Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13165, + 51.51565 + ] + }, + "properties": { + "openplaque:id": "5", + "addr:full": "\" 20 Soho Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14634, + 51.5093 + ] + }, + "properties": { + "openplaque:id": "50", + "addr:full": "45 Berkeley Square", + "date_start": "1953" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18792, + 51.5001 + ] + }, + "properties": { + "openplaque:id": "500", + "addr:full": "\"3 Kensington Court Gardens", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2953, + 51.3857 + ] + }, + "properties": { + "openplaque:id": "50049", + "addr:full": "\"Ivey House", + "date_start": "Hollyfield Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13191, + 51.49103 + ] + }, + "properties": { + "openplaque:id": "50073", + "addr:full": "\"105 Regency Street", + "date_start": "Pimlico\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13311, + 51.52805 + ] + }, + "properties": { + "openplaque:id": "50085", + "addr:full": "\"Euston Station", + "date_start": "Euston Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17008, + 51.4223 + ] + }, + "properties": { + "openplaque:id": "501", + "addr:full": "\"46 Longley Road", + "date_start": "Tooting" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02991, + 51.5329 + ] + }, + "properties": { + "openplaque:id": "50114", + "addr:full": "564 Roman Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02991, + 51.5329 + ] + }, + "properties": { + "openplaque:id": "50115", + "addr:full": "564 Roman Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11738, + 51.52394 + ] + }, + "properties": { + "openplaque:id": "50136", + "addr:full": "10 Guilford Street", + "date_start": "1990" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08797, + 51.48215 + ] + }, + "properties": { + "openplaque:id": "50145", + "addr:full": "\"Burgess Park", + "date_start": "Albany Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0078, + 51.4611 + ] + }, + "properties": { + "openplaque:id": "502", + "addr:full": "\"9 Gilmore Road", + "date_start": "SE13 Lewisham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26393, + 51.4821 + ] + }, + "properties": { + "openplaque:id": "5022", + "addr:full": "\"Chiswick House", + "date_start": "Staveley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10914, + 51.52189 + ] + }, + "properties": { + "openplaque:id": "5024", + "addr:full": "\"57d Hatton Garden", + "date_start": "EC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15531, + 51.4951 + ] + }, + "properties": { + "openplaque:id": "5026", + "addr:full": "\"99 Eaton Place", + "date_start": "SW1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1551, + 51.4964 + ] + }, + "properties": { + "openplaque:id": "5028", + "addr:full": "\"3 Lyall Street", + "date_start": "SW1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13014, + 51.51829 + ] + }, + "properties": { + "openplaque:id": "503", + "addr:full": "41 Bedford Square", + "date_start": "1976" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17244, + 51.4849 + ] + }, + "properties": { + "openplaque:id": "5032", + "addr:full": "\"49 Old Church Street", + "date_start": "Chelsea SW3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.04103, + 51.4742 + ] + }, + "properties": { + "openplaque:id": "5034", + "addr:full": "\"Haberdashers Aske's School", + "date_start": "Jerningham Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11461, + 51.4826 + ] + }, + "properties": { + "openplaque:id": "5036", + "addr:full": "\"Oval House", + "date_start": "52-54 Kennington Oval" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19259, + 51.49787 + ] + }, + "properties": { + "openplaque:id": "50394", + "addr:full": "\"1 Scarsdale Villas", + "date_start": "Kensington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12274, + 51.5094 + ] + }, + "properties": { + "openplaque:id": "504", + "addr:full": "\"16 John Adam Street", + "date_start": "Adelphi" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1658, + 51.48391 + ] + }, + "properties": { + "openplaque:id": "505", + "addr:full": "\"16 Cheyne Walk", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18295, + 51.5239 + ] + }, + "properties": { + "openplaque:id": "506", + "addr:full": "\"9 Clifton Gardens", + "date_start": "Maida Vale" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11076, + 51.5301 + ] + }, + "properties": { + "openplaque:id": "5062", + "addr:full": "69-71 Amwell Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02726, + 51.53956 + ] + }, + "properties": { + "openplaque:id": "5066", + "addr:full": "\"129 Cadogan Terrace", + "date_start": "Bow\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08333, + 51.56058 + ] + }, + "properties": { + "openplaque:id": "50670", + "addr:full": "\"233 Albion Road", + "date_start": "Stoke Newington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15407, + 51.54163 + ] + }, + "properties": { + "openplaque:id": "50683", + "addr:full": "\"110 Gloucester Avenue", + "date_start": "Primrose Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18065, + 51.565 + ] + }, + "properties": { + "openplaque:id": "507", + "addr:full": "\"Inverforth House", + "date_start": "North End Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15178, + 51.5701 + ] + }, + "properties": { + "openplaque:id": "5070", + "addr:full": "\"3 The Grove", + "date_start": "Highgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14954, + 51.5744 + ] + }, + "properties": { + "openplaque:id": "5072", + "addr:full": "\"92 North Road", + "date_start": "N6\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08536, + 51.42128 + ] + }, + "properties": { + "openplaque:id": "50750", + "addr:full": "\"14 Highland Road", + "date_start": "Upper Norwood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16484, + 51.54073 + ] + }, + "properties": { + "openplaque:id": "50751", + "addr:full": "\"9 Elsworthy Terrace", + "date_start": "Primrose Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08801, + 51.51261 + ] + }, + "properties": { + "openplaque:id": "50759", + "addr:full": "Post Office Court" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01677, + 51.58266 + ] + }, + "properties": { + "openplaque:id": "50762", + "addr:full": "\"37 First Avenue", + "date_start": "Walthamstow\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01909, + 51.42926 + ] + }, + "properties": { + "openplaque:id": "50771", + "addr:full": "120 Farmstead Road", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19558, + 51.50625 + ] + }, + "properties": { + "openplaque:id": "50780", + "addr:full": "\"27 Bedford Gardens", + "date_start": "Campden Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08797, + 51.48215 + ] + }, + "properties": { + "openplaque:id": "50795", + "addr:full": "\"Burgess Park", + "date_start": "Albany Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05521, + 51.49762 + ] + }, + "properties": { + "openplaque:id": "50799", + "addr:full": "52 Culling Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08835, + 51.618 + ] + }, + "properties": { + "openplaque:id": "50808", + "addr:full": "\"Gates to Tatem Park Recreation Ground", + "date_start": "Hedge Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12434, + 51.52227 + ] + }, + "properties": { + "openplaque:id": "50810", + "addr:full": "71 Russell Square", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11441, + 51.47429 + ] + }, + "properties": { + "openplaque:id": "50822", + "addr:full": "\"26 Hillyard Street", + "date_start": "Brixton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03025, + 51.51097 + ] + }, + "properties": { + "openplaque:id": "50823", + "addr:full": "\"St Anne's Church boundary wall", + "date_start": "Three Colt Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18116, + 51.56714 + ] + }, + "properties": { + "openplaque:id": "50829", + "addr:full": "\"Terrace House", + "date_start": "North End Avenue\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17606, + 51.4862 + ] + }, + "properties": { + "openplaque:id": "50830", + "addr:full": "\"1 The Vale", + "date_start": "Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15949, + 51.46486 + ] + }, + "properties": { + "openplaque:id": "50833", + "addr:full": "177 Lavender Hill", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08252, + 51.50974 + ] + }, + "properties": { + "openplaque:id": "50837", + "addr:full": "St Dunstan’s Hill", + "date_start": "1983" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09051, + 51.51578 + ] + }, + "properties": { + "openplaque:id": "50845", + "addr:full": "12-15 Mason’s Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12834, + 51.52438 + ] + }, + "properties": { + "openplaque:id": "50847", + "addr:full": "52 Tavistock Square (now Tavistock Hotel)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09632, + 51.52546 + ] + }, + "properties": { + "openplaque:id": "50884", + "addr:full": "43-45 Central Street", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11688, + 51.49362 + ] + }, + "properties": { + "openplaque:id": "50942", + "addr:full": "\"Old Paradise Street", + "date_start": "Lambeth\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12803, + 51.48023 + ] + }, + "properties": { + "openplaque:id": "50943", + "addr:full": "\"Sainsbury’s Nine Elms", + "date_start": "80 Wandsworth Rd\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12827, + 51.47981 + ] + }, + "properties": { + "openplaque:id": "50944", + "addr:full": "\"Sainsbury's garage", + "date_start": "90-92 Wandsworth Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07801, + 51.51376 + ] + }, + "properties": { + "openplaque:id": "50958", + "addr:full": "Mitre Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18498, + 51.4827 + ] + }, + "properties": { + "openplaque:id": "51", + "addr:full": "\"14 Gunter Grove", + "date_start": "Kensington and Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07465, + 51.51933 + ] + }, + "properties": { + "openplaque:id": "51006", + "addr:full": "Commercial Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08224, + 51.53983 + ] + }, + "properties": { + "openplaque:id": "51048", + "addr:full": "50 Lawford Road", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14539, + 51.5285 + ] + }, + "properties": { + "openplaque:id": "511", + "addr:full": "\"13 Chester Terrace", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02017, + 51.50746 + ] + }, + "properties": { + "openplaque:id": "51184", + "addr:full": "Docklands Light Railway (on train 136)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15319, + 51.5221 + ] + }, + "properties": { + "openplaque:id": "512", + "addr:full": "\"37 Nottingham Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10714, + 51.5141 + ] + }, + "properties": { + "openplaque:id": "5128", + "addr:full": "\"67 Fleet Street", + "date_start": "EC4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31745, + 51.4507 + ] + }, + "properties": { + "openplaque:id": "5130", + "addr:full": "\"15 Montpelier Row", + "date_start": "Twickenham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13029, + 51.51728 + ] + }, + "properties": { + "openplaque:id": "51326", + "addr:full": "\"Central YMCA", + "date_start": "111 Great Russell Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02092, + 51.47988 + ] + }, + "properties": { + "openplaque:id": "51346" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02624, + 51.59837 + ] + }, + "properties": { + "openplaque:id": "51358", + "addr:full": "\"Roger Ascham Primary School", + "date_start": "Waltham Forest\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15055, + 51.50671 + ] + }, + "properties": { + "openplaque:id": "51379", + "addr:full": "15 Stanhope Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08346, + 51.52972 + ] + }, + "properties": { + "openplaque:id": "51380", + "addr:full": "\"Haberdashers Place", + "date_start": "Pitfield Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05416, + 51.55461 + ] + }, + "properties": { + "openplaque:id": "51398", + "addr:full": "\"126-128 Lower Clapton Road", + "date_start": "Clapton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1852, + 51.4955 + ] + }, + "properties": { + "openplaque:id": "514", + "addr:full": "6 Grenville Place", + "date_start": "1951" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05097, + 51.49697 + ] + }, + "properties": { + "openplaque:id": "5142", + "addr:full": "\"Surrey Quays", + "date_start": "Deal Porters Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20263, + 51.5689 + ] + }, + "properties": { + "openplaque:id": "51445", + "addr:full": "\"41 The Vale", + "date_start": "Golders Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10645, + 51.5141 + ] + }, + "properties": { + "openplaque:id": "51465", + "addr:full": "81 Fleet Street", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10571, + 51.43253 + ] + }, + "properties": { + "openplaque:id": "51475", + "addr:full": "\"25 Devane Way", + "date_start": "West Norwood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09633, + 51.5332 + ] + }, + "properties": { + "openplaque:id": "51482", + "addr:full": "Regent's Canal" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21339, + 51.46509 + ] + }, + "properties": { + "openplaque:id": "51496", + "addr:full": "\"Brewhouse Lane", + "date_start": "Putney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08634, + 51.51232 + ] + }, + "properties": { + "openplaque:id": "51502", + "addr:full": "Lombard Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18709, + 51.56813 + ] + }, + "properties": { + "openplaque:id": "51521", + "addr:full": "Golders Hill Park", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10154, + 51.51721 + ] + }, + "properties": { + "openplaque:id": "51565", + "addr:full": "12 Cock Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14848, + 51.5158 + ] + }, + "properties": { + "openplaque:id": "516", + "addr:full": "\"48 Welbeck Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15366, + 51.48683 + ] + }, + "properties": { + "openplaque:id": "51689", + "addr:full": "RHS Chelsea", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12915, + 51.59444 + ] + }, + "properties": { + "openplaque:id": "517", + "addr:full": "\"Alexandra Palace", + "date_start": "Wood Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11082, + 51.52503 + ] + }, + "properties": { + "openplaque:id": "5172", + "addr:full": "\"Farringdon Road", + "date_start": "EC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01339, + 51.58054 + ] + }, + "properties": { + "openplaque:id": "51721", + "addr:full": "18 Grosvenor Park Road", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17293, + 51.51715 + ] + }, + "properties": { + "openplaque:id": "5174", + "addr:full": "\"St Mary's Hospital", + "date_start": "Praed Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12185, + 51.51015 + ] + }, + "properties": { + "openplaque:id": "5176", + "addr:full": "\"80 The Strand", + "date_start": "W1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22972, + 51.58074 + ] + }, + "properties": { + "openplaque:id": "51766", + "addr:full": "\"35 Crespigny Road", + "date_start": "Hendon\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21738, + 51.4955 + ] + }, + "properties": { + "openplaque:id": "518", + "addr:full": "\"56 Brook Green", + "date_start": "Hammersmith and Fulham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17835, + 51.51185 + ] + }, + "properties": { + "openplaque:id": "51829", + "addr:full": "\"14 Lancaster Gate", + "date_start": "Bayswater" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14479, + 51.51946 + ] + }, + "properties": { + "openplaque:id": "51838", + "addr:full": "21 Portland Place", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20127, + 51.4964 + ] + }, + "properties": { + "openplaque:id": "5184", + "addr:full": "27 Edwardes Square", + "date_start": "1993" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1482, + 51.52419 + ] + }, + "properties": { + "openplaque:id": "51840", + "addr:full": "7 Park Square West", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19699, + 51.51494 + ] + }, + "properties": { + "openplaque:id": "51841", + "addr:full": "\"152 Westbourne Grove", + "date_start": "Notting Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09333, + 51.41528 + ] + }, + "properties": { + "openplaque:id": "51844", + "addr:full": "Beulah Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23151, + 51.4377 + ] + }, + "properties": { + "openplaque:id": "5188", + "addr:full": "\"Mill House", + "date_start": "Wimbledon\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00085, + 51.4866 + ] + }, + "properties": { + "openplaque:id": "51898", + "addr:full": "4-6 Ballast Quay" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18457, + 51.51321 + ] + }, + "properties": { + "openplaque:id": "51912", + "addr:full": "\"38 Porchester Terrace", + "date_start": "Bayswater\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01658, + 51.63417 + ] + }, + "properties": { + "openplaque:id": "51929", + "addr:full": "\"8 Rangers Road", + "date_start": "Chingford\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28719, + 51.52153 + ] + }, + "properties": { + "openplaque:id": "51953", + "addr:full": "\"37 Audley Road", + "date_start": "Ealing\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.29496, + 51.50657 + ] + }, + "properties": { + "openplaque:id": "51954", + "addr:full": "\"9 Elm Crescent", + "date_start": "Ealing\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26873, + 51.50848 + ] + }, + "properties": { + "openplaque:id": "51955", + "addr:full": "\"96 Churchfield Road", + "date_start": "Ealing\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3075, + 51.5259 + ] + }, + "properties": { + "openplaque:id": "51956", + "addr:full": "\"4 Woodfield Avenue", + "date_start": "Ealing\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28773, + 51.51039 + ] + }, + "properties": { + "openplaque:id": "51957", + "addr:full": "\"Grimshaw & Co", + "date_start": "Fordhook Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30064, + 51.51365 + ] + }, + "properties": { + "openplaque:id": "51959", + "addr:full": "\"5 Windsor Road", + "date_start": "Ealing\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26222, + 51.50877 + ] + }, + "properties": { + "openplaque:id": "51960", + "addr:full": "Acton Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05197, + 51.4962 + ] + }, + "properties": { + "openplaque:id": "51966", + "addr:full": "\"Orchard House", + "date_start": "Lower Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14704, + 51.53529 + ] + }, + "properties": { + "openplaque:id": "52", + "addr:full": "\"15 Gloucester Gate", + "date_start": "(Albany Street frontage)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16952, + 51.448 + ] + }, + "properties": { + "openplaque:id": "520", + "addr:full": "\"3 Routh Road", + "date_start": "Wandsworth Common" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15732, + 51.54273 + ] + }, + "properties": { + "openplaque:id": "52072", + "addr:full": "\"10 King Henry's Rd", + "date_start": "Primrose Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05517, + 51.54852 + ] + }, + "properties": { + "openplaque:id": "5208", + "addr:full": "\"387a Mare Street", + "date_start": "Hackney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18072, + 51.5679 + ] + }, + "properties": { + "openplaque:id": "521", + "addr:full": "\"'Old Wyldes'", + "date_start": "North End" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15254, + 51.5162 + ] + }, + "properties": { + "openplaque:id": "5212", + "addr:full": "\"4", + "date_start": "Duke Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17599, + 51.54495 + ] + }, + "properties": { + "openplaque:id": "52120", + "addr:full": "\"Sprinkles Gelato", + "date_start": "4-6 Northways Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17024, + 51.54717 + ] + }, + "properties": { + "openplaque:id": "52126", + "addr:full": "\"Belsize Square Synagogue", + "date_start": "Belsize Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16109, + 51.49445 + ] + }, + "properties": { + "openplaque:id": "52127", + "addr:full": "72 Cadogan Square", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14882, + 51.5716 + ] + }, + "properties": { + "openplaque:id": "522", + "addr:full": "\"22 Southwood Lane", + "date_start": "N6 Haringey\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14796, + 51.46622 + ] + }, + "properties": { + "openplaque:id": "52203", + "addr:full": "\"107 The Chase", + "date_start": "Clapham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09907, + 51.5126 + ] + }, + "properties": { + "openplaque:id": "5224", + "addr:full": "\"Knightrider Street", + "date_start": "EC4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16403, + 51.48941 + ] + }, + "properties": { + "openplaque:id": "52245", + "addr:full": "138a King's Road", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12868, + 51.5255 + ] + }, + "properties": { + "openplaque:id": "5226", + "addr:full": "\"BMA House", + "date_start": "Tavistock Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0281, + 51.52652 + ] + }, + "properties": { + "openplaque:id": "52291", + "addr:full": "\"25-33 Bow Rd", + "date_start": "Bow\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02322, + 51.52754 + ] + }, + "properties": { + "openplaque:id": "52292", + "addr:full": "\"111-117 Bow Rd", + "date_start": "Bow\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2073, + 51.4954 + ] + }, + "properties": { + "openplaque:id": "523", + "addr:full": "\"5 Addison Bridge Place", + "date_start": "Hammersmith and Fulham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17393, + 51.5288 + ] + }, + "properties": { + "openplaque:id": "5230", + "addr:full": "\"Lord's Cricket Ground", + "date_start": "St John's Wood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09303, + 51.50591 + ] + }, + "properties": { + "openplaque:id": "52328", + "addr:full": "Maiden Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0779, + 51.50979 + ] + }, + "properties": { + "openplaque:id": "52359", + "addr:full": "Trinity Square Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16793, + 51.48465 + ] + }, + "properties": { + "openplaque:id": "52362", + "addr:full": "\"42 Oakley Street", + "date_start": "Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18479, + 51.56862 + ] + }, + "properties": { + "openplaque:id": "52363", + "addr:full": "\"St Anthony’s School", + "date_start": "Ivy House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16836, + 51.49656 + ] + }, + "properties": { + "openplaque:id": "52364", + "addr:full": "\"Flat 1", + "date_start": "63 Egerton Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11535, + 51.4745 + ] + }, + "properties": { + "openplaque:id": "524", + "addr:full": "\"87 Hackford Road", + "date_start": "Lambeth" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10604, + 51.51334 + ] + }, + "properties": { + "openplaque:id": "5248", + "addr:full": "Dorset Rise" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14596, + 51.51929 + ] + }, + "properties": { + "openplaque:id": "525", + "addr:full": "\"20 Mansfield Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10433, + 51.5142 + ] + }, + "properties": { + "openplaque:id": "5252", + "addr:full": "\"12 Ludgate Circus", + "date_start": "EC4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09962, + 51.51414 + ] + }, + "properties": { + "openplaque:id": "5254", + "addr:full": "\"Juxon House", + "date_start": "St Paul's Churchyard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09837, + 51.5133 + ] + }, + "properties": { + "openplaque:id": "5256", + "addr:full": "\"St Paul's Churchyard Gardens", + "date_start": "Cannon Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11926, + 51.52568 + ] + }, + "properties": { + "openplaque:id": "5258", + "addr:full": "\"44 Mecklenburgh Square", + "date_start": "WC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13103, + 51.5117 + ] + }, + "properties": { + "openplaque:id": "526", + "addr:full": "\"43 Gerrard Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18599, + 51.4979 + ] + }, + "properties": { + "openplaque:id": "5260", + "addr:full": "\"52 Victoria Road", + "date_start": "W8\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13076, + 51.51191 + ] + }, + "properties": { + "openplaque:id": "52651", + "addr:full": "\"39 Gerrard Street", + "date_start": "Soho\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18492, + 51.5006 + ] + }, + "properties": { + "openplaque:id": "5266", + "addr:full": "\"29 De Vere Gardens", + "date_start": "W8\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31349, + 51.54203 + ] + }, + "properties": { + "openplaque:id": "52673", + "addr:full": "\"38 Jordan Road", + "date_start": "Perivale\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10859, + 51.4979 + ] + }, + "properties": { + "openplaque:id": "5268", + "addr:full": "\"131 St George's Road", + "date_start": "SE1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10362, + 51.5241 + ] + }, + "properties": { + "openplaque:id": "52697", + "addr:full": "Hayward's Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05402, + 51.50042 + ] + }, + "properties": { + "openplaque:id": "5270", + "addr:full": "\"The Old Mortuary", + "date_start": "off St Marychurch Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08602, + 51.5038 + ] + }, + "properties": { + "openplaque:id": "5272", + "addr:full": "\"Stainer Street", + "date_start": "SE1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05419, + 51.50135 + ] + }, + "properties": { + "openplaque:id": "5274", + "addr:full": "\"The Church of St Mary The Virgin", + "date_start": "St Marychurch Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17639, + 51.4851 + ] + }, + "properties": { + "openplaque:id": "5276", + "addr:full": "\"96 Chelsea Park Gardens", + "date_start": "SW3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00448, + 51.4669 + ] + }, + "properties": { + "openplaque:id": "528", + "addr:full": "\"11 Granville Park", + "date_start": "SE13 Lewisham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.015, + 51.4087 + ] + }, + "properties": { + "openplaque:id": "5280", + "addr:full": "\"51 Tweedy Road", + "date_start": "Bromley" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23314, + 51.4902 + ] + }, + "properties": { + "openplaque:id": "5282", + "addr:full": "\"Kensington Rowing Club", + "date_start": "Lower Mall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10491, + 51.47163 + ] + }, + "properties": { + "openplaque:id": "52823", + "addr:full": "\"Longfield Hall", + "date_start": "50 Knatchbull Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.06238, + 51.48834 + ] + }, + "properties": { + "openplaque:id": "52837", + "addr:full": "\"nr Royal Artillery Barracks", + "date_start": "Greenwich\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18146, + 51.5003 + ] + }, + "properties": { + "openplaque:id": "5284", + "addr:full": "\"18 Hyde Park Gate", + "date_start": "SW7\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01885, + 51.4675 + ] + }, + "properties": { + "openplaque:id": "5286", + "addr:full": "\"17 Morden Road", + "date_start": "Blackheath" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12914, + 51.52258 + ] + }, + "properties": { + "openplaque:id": "52868", + "addr:full": "23 Russell Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15017, + 51.51706 + ] + }, + "properties": { + "openplaque:id": "5288", + "addr:full": "\"17 Bentinck Street", + "date_start": "W1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01279, + 51.60032 + ] + }, + "properties": { + "openplaque:id": "529", + "addr:full": "\"42 Oak Hill Gardens", + "date_start": "Woodford Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09416, + 51.5222 + ] + }, + "properties": { + "openplaque:id": "5290", + "addr:full": "\"Fortune Street", + "date_start": "EC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0103, + 51.4782 + ] + }, + "properties": { + "openplaque:id": "5292", + "addr:full": "\"wall of Burney Street Garden", + "date_start": "on the corner of Burney Street and Royal Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14864, + 51.5057 + ] + }, + "properties": { + "openplaque:id": "52939", + "addr:full": "38 Hertford Street", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16315, + 51.48403 + ] + }, + "properties": { + "openplaque:id": "52949", + "addr:full": "\"Delahay House", + "date_start": "15 Chelsea Embankment\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17334, + 51.55772 + ] + }, + "properties": { + "openplaque:id": "52953", + "addr:full": "\"50 Willow Road", + "date_start": "Hampstead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10407, + 51.5234 + ] + }, + "properties": { + "openplaque:id": "5296", + "addr:full": "\"Jerusalem Passage", + "date_start": "Clerkenwell\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10303, + 51.5273 + ] + }, + "properties": { + "openplaque:id": "5298", + "addr:full": "\"Northhampton Square", + "date_start": "Islington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03735, + 51.5278 + ] + }, + "properties": { + "openplaque:id": "530", + "addr:full": "\"Railway Bridge", + "date_start": "Grove Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10855, + 51.5267 + ] + }, + "properties": { + "openplaque:id": "5302", + "addr:full": "\"Finsbury Town Hall", + "date_start": "Roseberry Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11084, + 51.5283 + ] + }, + "properties": { + "openplaque:id": "5304", + "addr:full": "\"Naoroji Street", + "date_start": "Islington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13144, + 51.52402 + ] + }, + "properties": { + "openplaque:id": "53047", + "addr:full": "Gordon Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09748, + 51.5216 + ] + }, + "properties": { + "openplaque:id": "5306", + "addr:full": "Goswell Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12475, + 51.51894 + ] + }, + "properties": { + "openplaque:id": "53073", + "addr:full": "\" 65 Great Russell Street", + "date_start": "Holborn\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09672, + 51.5172 + ] + }, + "properties": { + "openplaque:id": "5308", + "addr:full": "\"10 Aldersgate Street", + "date_start": "London\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07589, + 51.51397 + ] + }, + "properties": { + "openplaque:id": "53088", + "addr:full": "\"Dorsett City Hotel", + "date_start": "9 Aldgate High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12741, + 51.518 + ] + }, + "properties": { + "openplaque:id": "531", + "addr:full": "\"91 Great Russell Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10447, + 51.532 + ] + }, + "properties": { + "openplaque:id": "5312", + "addr:full": "\"4 Duncan Terrace", + "date_start": "Islington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10952, + 51.5303 + ] + }, + "properties": { + "openplaque:id": "5314", + "addr:full": "\"60 Myddelton Square", + "date_start": "Islington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0873, + 51.51303 + ] + }, + "properties": { + "openplaque:id": "53190", + "addr:full": "Change Alley EC3" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13073, + 51.51837 + ] + }, + "properties": { + "openplaque:id": "532", + "addr:full": "35 Bedford Square", + "date_start": "1962" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10965, + 51.51793 + ] + }, + "properties": { + "openplaque:id": "53222", + "addr:full": "23 Holborn" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12941, + 51.51809 + ] + }, + "properties": { + "openplaque:id": "53224", + "addr:full": "\"Flat 93", + "date_start": "Bedford Court Mansions" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16869, + 51.51917 + ] + }, + "properties": { + "openplaque:id": "53259", + "addr:full": "254 Edgware Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12023, + 51.53168 + ] + }, + "properties": { + "openplaque:id": "53267", + "addr:full": "6 Keystone Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33528, + 51.4381 + ] + }, + "properties": { + "openplaque:id": "5328", + "addr:full": "\"Strawberry Hill House", + "date_start": "Strawberry Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20747, + 51.5132 + ] + }, + "properties": { + "openplaque:id": "533", + "addr:full": "\"117 Lansdowne Road", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05694, + 51.4763 + ] + }, + "properties": { + "openplaque:id": "5330", + "addr:full": "29 Woolwich Common" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09228, + 51.51493 + ] + }, + "properties": { + "openplaque:id": "53322", + "addr:full": "King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12159, + 51.52142 + ] + }, + "properties": { + "openplaque:id": "53360", + "addr:full": "\"The Italian Hospital", + "date_start": "Queen Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16075, + 51.53956 + ] + }, + "properties": { + "openplaque:id": "53361", + "addr:full": "Primrose Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1952, + 51.49787 + ] + }, + "properties": { + "openplaque:id": "53372", + "addr:full": "51 Abingdon Villas" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18144, + 51.4996 + ] + }, + "properties": { + "openplaque:id": "53374", + "addr:full": "22 Hyde Park Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19097, + 51.51713 + ] + }, + "properties": { + "openplaque:id": "53376", + "addr:full": "\"Celtic Farm Road", + "date_start": "Rainham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1804, + 51.43196 + ] + }, + "properties": { + "openplaque:id": "53386", + "addr:full": "\"Holborn Almshouses", + "date_start": "Garratt Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10295, + 51.51139 + ] + }, + "properties": { + "openplaque:id": "53396", + "addr:full": "\"Blackfriars Station", + "date_start": "Queen Victoria Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16462, + 51.51529 + ] + }, + "properties": { + "openplaque:id": "534", + "addr:full": "\"16 Portsea Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10296, + 51.534 + ] + }, + "properties": { + "openplaque:id": "53403", + "addr:full": "\"Church of St. John The Evangelist", + "date_start": "Duncan Terrace\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18035, + 51.49686 + ] + }, + "properties": { + "openplaque:id": "53423", + "addr:full": "QUEENS GATE PLACE MEWS ARCH" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1326, + 51.52354 + ] + }, + "properties": { + "openplaque:id": "53425", + "addr:full": "Foster Court Malet Place", + "date_start": "1933" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0296, + 51.50914 + ] + }, + "properties": { + "openplaque:id": "53426", + "addr:full": "Limehouse Causeway", + "date_start": "1904" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11474, + 51.55469 + ] + }, + "properties": { + "openplaque:id": "53431", + "addr:full": "\"Bench outside 304 Holloway Road", + "date_start": "N7.\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13157, + 51.52968 + ] + }, + "properties": { + "openplaque:id": "53448", + "addr:full": "St. Joseph's Flats Drummond Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18881, + 51.53515 + ] + }, + "properties": { + "openplaque:id": "53456", + "addr:full": "136 Maida Vale", + "date_start": "1954" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16596, + 51.48387 + ] + }, + "properties": { + "openplaque:id": "53458", + "addr:full": "\"17 Cheyne Walk", + "date_start": "Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09258, + 51.51727 + ] + }, + "properties": { + "openplaque:id": "53459", + "addr:full": "1A Aldermanbury Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11565, + 51.51495 + ] + }, + "properties": { + "openplaque:id": "53461", + "addr:full": "10 Portugal Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.02077, + 51.5982 + ] + }, + "properties": { + "openplaque:id": "53468", + "addr:full": "\"St Mary's Church", + "date_start": "207 High Rd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15213, + 51.4974 + ] + }, + "properties": { + "openplaque:id": "535", + "addr:full": "\"29 Eaton Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09037, + 51.51303 + ] + }, + "properties": { + "openplaque:id": "53525", + "addr:full": "\"City of London Magistrates' Court", + "date_start": "Queen Victoria Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17036, + 51.54761 + ] + }, + "properties": { + "openplaque:id": "53576", + "addr:full": "46 Belsize Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12436, + 51.51888 + ] + }, + "properties": { + "openplaque:id": "53579", + "addr:full": "67-70 Great Russell Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10315, + 51.51292 + ] + }, + "properties": { + "openplaque:id": "53580", + "addr:full": "\"Apothecaries Hall", + "date_start": "Blackfriars Hall\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1236, + 51.54709 + ] + }, + "properties": { + "openplaque:id": "53584", + "addr:full": "\"The Clocktower", + "date_start": "Caledonian Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00693, + 51.53445 + ] + }, + "properties": { + "openplaque:id": "53586", + "addr:full": "Carpenters Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13012, + 51.50788 + ] + }, + "properties": { + "openplaque:id": "53587", + "addr:full": "\"Oceanic House", + "date_start": "1 Cockspur Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12491, + 51.5472 + ] + }, + "properties": { + "openplaque:id": "53589", + "addr:full": "\"58-44 Chris Pullen Way", + "date_start": "Market Estate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1279, + 51.52023 + ] + }, + "properties": { + "openplaque:id": "53596", + "addr:full": "\"British Museum", + "date_start": "Montague Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1626, + 51.49273 + ] + }, + "properties": { + "openplaque:id": "53597", + "addr:full": "\"St. Joseph’s cottages", + "date_start": "Cadogan Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17891, + 51.4944 + ] + }, + "properties": { + "openplaque:id": "536", + "addr:full": "\"79 Queen’s Gate", + "date_start": "SW7 Kensington & Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1671, + 51.48324 + ] + }, + "properties": { + "openplaque:id": "53600", + "addr:full": "Albert Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05308, + 51.46436 + ] + }, + "properties": { + "openplaque:id": "53676", + "addr:full": "Linden Grove" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09482, + 51.48236 + ] + }, + "properties": { + "openplaque:id": "53677", + "addr:full": "64 Camberwell Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32395, + 51.47096 + ] + }, + "properties": { + "openplaque:id": "53690" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30399, + 51.48409 + ] + }, + "properties": { + "openplaque:id": "53691", + "addr:full": "Brentford High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07953, + 51.51077 + ] + }, + "properties": { + "openplaque:id": "53694" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11144, + 51.46194 + ] + }, + "properties": { + "openplaque:id": "53697", + "addr:full": "Coldharbour Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15461, + 51.52047 + ] + }, + "properties": { + "openplaque:id": "53710", + "addr:full": "Paddington Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0925, + 51.51806 + ] + }, + "properties": { + "openplaque:id": "53711", + "addr:full": "St Alphage Garden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15451, + 51.57938 + ] + }, + "properties": { + "openplaque:id": "53720", + "addr:full": "\"Storey Rd", + "date_start": "North Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15538, + 51.56357 + ] + }, + "properties": { + "openplaque:id": "53732", + "addr:full": "\"30 Millfield Lane", + "date_start": "Highgate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14885, + 51.57102 + ] + }, + "properties": { + "openplaque:id": "53734", + "addr:full": "\"88 Highgate High Street", + "date_start": "Highgate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.149, + 51.57162 + ] + }, + "properties": { + "openplaque:id": "53737", + "addr:full": "\"22 Southwood Lane", + "date_start": "Highgate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14748, + 51.57776 + ] + }, + "properties": { + "openplaque:id": "53741", + "addr:full": "\"355 Archway Road", + "date_start": "Highgate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15356, + 51.57839 + ] + }, + "properties": { + "openplaque:id": "53742", + "addr:full": "\"107 North Hill", + "date_start": "Highgate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07553, + 51.54974 + ] + }, + "properties": { + "openplaque:id": "53746", + "addr:full": "John Campbell Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1466, + 51.45645 + ] + }, + "properties": { + "openplaque:id": "53782", + "addr:full": "\"Broadway Shopping Centre", + "date_start": "Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16262, + 51.51269 + ] + }, + "properties": { + "openplaque:id": "53788", + "addr:full": "Hyde Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10855, + 51.5306 + ] + }, + "properties": { + "openplaque:id": "53789", + "addr:full": "43-53 Myddelton Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.04405, + 51.52231 + ] + }, + "properties": { + "openplaque:id": "53791", + "addr:full": "\"Albert Stern House", + "date_start": "253 Mile End Road \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22266, + 51.4602 + ] + }, + "properties": { + "openplaque:id": "538", + "addr:full": "\"26 Gwendolen Avenue", + "date_start": "Putney" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01094, + 51.5152 + ] + }, + "properties": { + "openplaque:id": "5384", + "addr:full": "\"Old Palace School", + "date_start": "St Leonards Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17121, + 51.4827 + ] + }, + "properties": { + "openplaque:id": "5386", + "addr:full": "\"opposite Chelsea Old Church", + "date_start": "Old Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16998, + 51.487 + ] + }, + "properties": { + "openplaque:id": "5388", + "addr:full": "\"Chelsea Fire Station", + "date_start": "Kings Road SW3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00803, + 51.4794 + ] + }, + "properties": { + "openplaque:id": "539", + "addr:full": "\"6 Crooms Hill", + "date_start": "SE10 Greenwich\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03118, + 51.5307 + ] + }, + "properties": { + "openplaque:id": "5394", + "addr:full": "\"Athelstane Grove", + "date_start": "Bow\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07724, + 51.5102 + ] + }, + "properties": { + "openplaque:id": "5396", + "addr:full": "\"Trinity House", + "date_start": "Trinity Square EC3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10916, + 51.49308 + ] + }, + "properties": { + "openplaque:id": "53985", + "addr:full": "32 St Mary's Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05251, + 51.52055 + ] + }, + "properties": { + "openplaque:id": "54", + "addr:full": "\"88 Mile End Road", + "date_start": "Tower Hamlets\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17277, + 51.4853 + ] + }, + "properties": { + "openplaque:id": "540", + "addr:full": "\"56 Old Church Street", + "date_start": "Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03472, + 51.4079 + ] + }, + "properties": { + "openplaque:id": "5400", + "addr:full": "\"Beckenham Fire Station", + "date_start": "Beckenham Road BR3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07578, + 51.40033 + ] + }, + "properties": { + "openplaque:id": "54005", + "addr:full": "South Norwood Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18039, + 51.49692 + ] + }, + "properties": { + "openplaque:id": "54021", + "addr:full": "13 Queens Gate Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14012, + 51.51269 + ] + }, + "properties": { + "openplaque:id": "54036", + "addr:full": "Regents Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18643, + 51.4905 + ] + }, + "properties": { + "openplaque:id": "5406", + "addr:full": "\"Bousfield Primary School", + "date_start": "South Bolton Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01392, + 51.4659 + ] + }, + "properties": { + "openplaque:id": "541", + "addr:full": "\"4 Pond Road", + "date_start": "Blackheath\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11941, + 51.50975 + ] + }, + "properties": { + "openplaque:id": "54108", + "addr:full": "\"Savoy Hill", + "date_start": "Savoy Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08274, + 51.5136 + ] + }, + "properties": { + "openplaque:id": "5412", + "addr:full": "\"145 Leadenhall Street", + "date_start": "EC3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13189, + 51.52583 + ] + }, + "properties": { + "openplaque:id": "54159", + "addr:full": "\"4 Taviton Street", + "date_start": "Bloomsbury\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02748, + 51.5268 + ] + }, + "properties": { + "openplaque:id": "54161", + "addr:full": "Pedestal at junction of Bow Road and Hartley Grove" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02271, + 51.52778 + ] + }, + "properties": { + "openplaque:id": "54163", + "addr:full": "121 Bow Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14094, + 51.50606 + ] + }, + "properties": { + "openplaque:id": "54165", + "addr:full": "\"Over-Seas House", + "date_start": "Park Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17659, + 51.46094 + ] + }, + "properties": { + "openplaque:id": "54187", + "addr:full": "\"5 Louvaine Road", + "date_start": "Battersea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19027, + 51.49506 + ] + }, + "properties": { + "openplaque:id": "54199", + "addr:full": "\"1 Lexham Gardens", + "date_start": "Kensington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14907, + 51.5178 + ] + }, + "properties": { + "openplaque:id": "542", + "addr:full": "\"58 Queen Anne Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12613, + 51.47695 + ] + }, + "properties": { + "openplaque:id": "54200", + "addr:full": "14 Lansdowne Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08595, + 51.43438 + ] + }, + "properties": { + "openplaque:id": "54208", + "addr:full": "\"43 Alleyn Park", + "date_start": "Dulwich\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17585, + 51.53697 + ] + }, + "properties": { + "openplaque:id": "54218", + "addr:full": "\"28 Finchley Road", + "date_start": "Westminster\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28597, + 51.4198 + ] + }, + "properties": { + "openplaque:id": "5426", + "addr:full": "\"2 Liverpool Rd", + "date_start": "Kingston Upon Thames\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12633, + 51.51155 + ] + }, + "properties": { + "openplaque:id": "54273", + "addr:full": "\"The Garrick Club", + "date_start": "15 Garrick Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13498, + 51.50896 + ] + }, + "properties": { + "openplaque:id": "54275", + "addr:full": "113 Jermyn Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07627, + 51.47181 + ] + }, + "properties": { + "openplaque:id": "54297", + "addr:full": "55 Denman Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12785, + 51.4975 + ] + }, + "properties": { + "openplaque:id": "543", + "addr:full": "\"14 Barton Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3075, + 51.4081 + ] + }, + "properties": { + "openplaque:id": "5430", + "addr:full": "\"30 High Street", + "date_start": "Kingston upon Thames\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17205, + 51.53461 + ] + }, + "properties": { + "openplaque:id": "54309", + "addr:full": "\"24 St Ann's Terrace", + "date_start": "St John’s Wood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17121, + 51.4933 + ] + }, + "properties": { + "openplaque:id": "54310", + "addr:full": "\"8 Pelham Place", + "date_start": "Kensington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12683, + 51.49447 + ] + }, + "properties": { + "openplaque:id": "54324", + "addr:full": "Dean Ryle Street", + "date_start": "2020" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06303, + 51.5637 + ] + }, + "properties": { + "openplaque:id": "5436", + "addr:full": "\"58 Geldeston Road", + "date_start": "Cazenove\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13578, + 51.50584 + ] + }, + "properties": { + "openplaque:id": "54386", + "addr:full": "\"Schomberg House", + "date_start": "80–82 Pall Mall\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17136, + 51.49113 + ] + }, + "properties": { + "openplaque:id": "54388", + "addr:full": "22 Bury Walk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1492, + 51.51509 + ] + }, + "properties": { + "openplaque:id": "544", + "addr:full": "\"7 Stratford Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.24803, + 51.53699 + ] + }, + "properties": { + "openplaque:id": "54415", + "addr:full": "\"Tavistock Hall", + "date_start": "Tavistock Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18586, + 51.52764 + ] + }, + "properties": { + "openplaque:id": "54421", + "addr:full": "\"Lauderdale Mansions", + "date_start": "Lauderdale Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22876, + 51.4605 + ] + }, + "properties": { + "openplaque:id": "54432", + "addr:full": "\"8 Campion Road", + "date_start": "Putney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19768, + 51.58044 + ] + }, + "properties": { + "openplaque:id": "54440", + "addr:full": "\"60 Temple Fortune Lane", + "date_start": "NW11\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19891, + 51.51569 + ] + }, + "properties": { + "openplaque:id": "54441", + "addr:full": "\"22 Artesian Road", + "date_start": "W2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31647, + 51.4538 + ] + }, + "properties": { + "openplaque:id": "545", + "addr:full": "\"40 Sandycoombe Road", + "date_start": "Twickenham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14353, + 51.46314 + ] + }, + "properties": { + "openplaque:id": "54581", + "addr:full": "35 Macaulay Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14094, + 51.46316 + ] + }, + "properties": { + "openplaque:id": "54582", + "addr:full": "33 The Pavement" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10626, + 51.45681 + ] + }, + "properties": { + "openplaque:id": "54594", + "addr:full": "151 Railton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12504, + 51.50304 + ] + }, + "properties": { + "openplaque:id": "546", + "addr:full": "\"2 Richmond Terrace", + "date_start": "Whitehall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14543, + 51.46215 + ] + }, + "properties": { + "openplaque:id": "54642", + "addr:full": "Chase Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07608, + 51.5243 + ] + }, + "properties": { + "openplaque:id": "54690", + "addr:full": "10 Redchurch Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.04775, + 51.52769 + ] + }, + "properties": { + "openplaque:id": "54709", + "addr:full": "11-55 Morpeth Street", + "date_start": "1989" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01735, + 51.52627 + ] + }, + "properties": { + "openplaque:id": "54710", + "addr:full": "92 Bruce Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0546, + 51.55781 + ] + }, + "properties": { + "openplaque:id": "54714", + "addr:full": "\"19 Thistlewaite Road", + "date_start": "Lower Clapton" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10393, + 51.56452 + ] + }, + "properties": { + "openplaque:id": "54719", + "addr:full": "\"3 Blackstock Road", + "date_start": "Finsbury Park\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06693, + 51.54721 + ] + }, + "properties": { + "openplaque:id": "54720", + "addr:full": "\"26 Dalston Lane", + "date_start": "Hackney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06977, + 51.56353 + ] + }, + "properties": { + "openplaque:id": "54741", + "addr:full": "\"16 Alkham Road", + "date_start": "Hackney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00691, + 51.48347 + ] + }, + "properties": { + "openplaque:id": "54742", + "addr:full": "\"Trinity Laban", + "date_start": "King Charles Court" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18482, + 51.43379 + ] + }, + "properties": { + "openplaque:id": "54744", + "addr:full": "\"Burmester House", + "date_start": "Garratt Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12617, + 51.5048 + ] + }, + "properties": { + "openplaque:id": "5476", + "addr:full": "Horse Guards Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1241, + 51.51823 + ] + }, + "properties": { + "openplaque:id": "548", + "addr:full": "\"34 Russell Chambers", + "date_start": "Bury Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09201, + 51.56648 + ] + }, + "properties": { + "openplaque:id": "54853", + "addr:full": "\"19 Colenso Road", + "date_start": "Seven Kings\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17848, + 51.56105 + ] + }, + "properties": { + "openplaque:id": "54855", + "addr:full": "\"Bell Moor flats", + "date_start": "2a East Heath Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11891, + 51.46096 + ] + }, + "properties": { + "openplaque:id": "54866", + "addr:full": "\"16-18 Trinity Gardens", + "date_start": "Brixton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14203, + 51.51879 + ] + }, + "properties": { + "openplaque:id": "549", + "addr:full": "\"94 Great Portland Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0792, + 51.5563 + ] + }, + "properties": { + "openplaque:id": "5494", + "addr:full": "\"31 Nevill Road", + "date_start": "Hackney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.24459, + 51.472 + ] + }, + "properties": { + "openplaque:id": "5496", + "addr:full": "\"3 Beverley Close", + "date_start": "Barnes\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18489, + 51.48293 + ] + }, + "properties": { + "openplaque:id": "54961", + "addr:full": "\"1 Gunter Grove", + "date_start": "Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31398, + 51.49682 + ] + }, + "properties": { + "openplaque:id": "54985", + "addr:full": "\"Ealing Fields High School", + "date_start": "Little Ealing Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16079, + 51.4943 + ] + }, + "properties": { + "openplaque:id": "55", + "addr:full": "75 Cadogan Square", + "date_start": "1958" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13369, + 51.50563 + ] + }, + "properties": { + "openplaque:id": "550", + "addr:full": "4 Carlton Gardens", + "date_start": "1984" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02119, + 51.52809 + ] + }, + "properties": { + "openplaque:id": "55006", + "addr:full": "145 Bow Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06568, + 51.5921 + ] + }, + "properties": { + "openplaque:id": "55014", + "addr:full": "\"The Anglican Church of the Good Shepherd", + "date_start": "Mitchley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14833, + 51.50704 + ] + }, + "properties": { + "openplaque:id": "55017", + "addr:full": "\"3 Chesterfield Street", + "date_start": "Mayfair\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0017, + 51.40202 + ] + }, + "properties": { + "openplaque:id": "55019", + "addr:full": "\"16 Church Street", + "date_start": "Bromley\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21851, + 51.49638 + ] + }, + "properties": { + "openplaque:id": "55088", + "addr:full": "\"53 Caithness Road", + "date_start": "Hammersmith\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17405, + 51.4873 + ] + }, + "properties": { + "openplaque:id": "551", + "addr:full": "\"127 Old Church Street", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16001, + 51.4544 + ] + }, + "properties": { + "openplaque:id": "552", + "addr:full": "111 Broomwood Road", + "date_start": "1906" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15845, + 51.5208 + ] + }, + "properties": { + "openplaque:id": "553", + "addr:full": "20 York Street", + "date_start": "1961" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13306, + 51.51848 + ] + }, + "properties": { + "openplaque:id": "554", + "addr:full": "\"14 Percy Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13031, + 51.509 + ] + }, + "properties": { + "openplaque:id": "5554", + "addr:full": "Whitcomb Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19485, + 51.5029 + ] + }, + "properties": { + "openplaque:id": "556", + "addr:full": "56 Hornton Street", + "date_start": "1961" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2861, + 51.48395 + ] + }, + "properties": { + "openplaque:id": "558", + "addr:full": "\"Eastside House", + "date_start": "22 Kew Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13326, + 51.52322 + ] + }, + "properties": { + "openplaque:id": "559", + "addr:full": "\"Biological Sciences Building", + "date_start": "University College" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18081, + 51.5346 + ] + }, + "properties": { + "openplaque:id": "560", + "addr:full": "38 Marlborough Place", + "date_start": "1910" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1519, + 51.5166 + ] + }, + "properties": { + "openplaque:id": "561", + "addr:full": "\"2 Manchester Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28228, + 51.48665 + ] + }, + "properties": { + "openplaque:id": "563", + "addr:full": "\"65 Strand-on-the-Green", + "date_start": "Chiswick\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17619, + 51.4742 + ] + }, + "properties": { + "openplaque:id": "564", + "addr:full": "\"Battersea Vicarage", + "date_start": "42 Vicarage Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1765, + 51.562 + ] + }, + "properties": { + "openplaque:id": "565", + "addr:full": "\"3 Villas on the Health", + "date_start": "Vale of Heath" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19973, + 51.5076 + ] + }, + "properties": { + "openplaque:id": "566", + "addr:full": "\"19 Campden Hill Gardens", + "date_start": "Kensington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17882, + 51.5342 + ] + }, + "properties": { + "openplaque:id": "567", + "addr:full": "\"16 Langford Place", + "date_start": "St John's Wood" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.129, + 51.5193 + ] + }, + "properties": { + "openplaque:id": "568", + "addr:full": "6 Bedford Square", + "date_start": "1954" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17656, + 51.5325 + ] + }, + "properties": { + "openplaque:id": "569", + "addr:full": "\"44 Grove End Road", + "date_start": "St John's Wood" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21297, + 51.50866 + ] + }, + "properties": { + "openplaque:id": "57", + "addr:full": "31 St James’s Gardens", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.176, + 51.563 + ] + }, + "properties": { + "openplaque:id": "570", + "addr:full": "\"1 Byron Villas", + "date_start": "Vale of Health" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11873, + 51.51892 + ] + }, + "properties": { + "openplaque:id": "571", + "addr:full": "\"Summit House", + "date_start": "Red Lion Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08713, + 51.52354 + ] + }, + "properties": { + "openplaque:id": "572", + "addr:full": "\"47 City Road", + "date_start": "Islington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15971, + 51.5184 + ] + }, + "properties": { + "openplaque:id": "573", + "addr:full": "\"39 Montagu Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13278, + 51.50056 + ] + }, + "properties": { + "openplaque:id": "575", + "addr:full": "20 Queen Anne's Gate", + "date_start": "1925" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07892, + 51.5621 + ] + }, + "properties": { + "openplaque:id": "576", + "addr:full": "\"95 Stoke Newington Church Street", + "date_start": "Hackney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13084, + 51.5232 + ] + }, + "properties": { + "openplaque:id": "577", + "addr:full": "\"30 Torrington Square", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17506, + 51.5603 + ] + }, + "properties": { + "openplaque:id": "578", + "addr:full": "\"Cannon Hall", + "date_start": "14 Cannon Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20919, + 51.4245 + ] + }, + "properties": { + "openplaque:id": "579", + "addr:full": "\"3 St Mary's Road", + "date_start": "Wimbledon" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18006, + 51.55956 + ] + }, + "properties": { + "openplaque:id": "58", + "addr:full": "Admirals Walk", + "date_start": "1910" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13715, + 51.5143 + ] + }, + "properties": { + "openplaque:id": "580", + "addr:full": "\"15 Poland Street", + "date_start": "W1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18403, + 51.5361 + ] + }, + "properties": { + "openplaque:id": "581", + "addr:full": "\"Clifton Hill Studios", + "date_start": "95a Clifton Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20927, + 51.5102 + ] + }, + "properties": { + "openplaque:id": "582", + "addr:full": "\"50 Clarendon Road", + "date_start": "Holland Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08797, + 51.526 + ] + }, + "properties": { + "openplaque:id": "5822", + "addr:full": "\"112 City Road", + "date_start": "EC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.24175, + 51.4975 + ] + }, + "properties": { + "openplaque:id": "583", + "addr:full": "11 Ravenscourt Square", + "date_start": "1952" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16686, + 51.4995 + ] + }, + "properties": { + "openplaque:id": "584", + "addr:full": "\"1 Sterling Street", + "date_start": "off Montpelier Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18228, + 51.5572 + ] + }, + "properties": { + "openplaque:id": "585", + "addr:full": "\"97 Frognal", + "date_start": "Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20539, + 51.5139 + ] + }, + "properties": { + "openplaque:id": "5858", + "addr:full": "\"12 Arundel Gardens", + "date_start": "Notting Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13788, + 51.5128 + ] + }, + "properties": { + "openplaque:id": "586", + "addr:full": "\"54 Broadwick Street", + "date_start": "Soho" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11721, + 51.3563 + ] + }, + "properties": { + "openplaque:id": "5862", + "addr:full": "\"Airport House", + "date_start": "Purley Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.03239, + 51.6091 + ] + }, + "properties": { + "openplaque:id": "589", + "addr:full": "\"17 Monkhams Avenue", + "date_start": "Woodford Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11717, + 51.52179 + ] + }, + "properties": { + "openplaque:id": "59", + "addr:full": "24 Great James Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14689, + 51.52281 + ] + }, + "properties": { + "openplaque:id": "591", + "addr:full": "\"19 Park Crescent", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14436, + 51.5364 + ] + }, + "properties": { + "openplaque:id": "592", + "addr:full": "\"54 Delancey Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34912, + 51.44385 + ] + }, + "properties": { + "openplaque:id": "5920", + "addr:full": "\"Brinsworth House", + "date_start": "Twickenham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34912, + 51.44385 + ] + }, + "properties": { + "openplaque:id": "5924", + "addr:full": "\"Brinsworth House", + "date_start": "Twickenham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "5926", + "addr:full": "BBC Television Centre", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "5928", + "addr:full": "BBC Television Centre", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14696, + 51.5118 + ] + }, + "properties": { + "openplaque:id": "593", + "addr:full": "\"60 Grosvenor Street", + "date_start": "Mayfair" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "5930", + "addr:full": "BBC Television Centre", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "5932", + "addr:full": "BBC Television Centre", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34912, + 51.44385 + ] + }, + "properties": { + "openplaque:id": "5934", + "addr:full": "\"Brinsworth House", + "date_start": "Twickenham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14371, + 51.51841 + ] + }, + "properties": { + "openplaque:id": "5936", + "addr:full": "BBC Radio Theatre Broadcasting House", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14371, + 51.51841 + ] + }, + "properties": { + "openplaque:id": "5938", + "addr:full": "BBC Radio Theatre Broadcasting House", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14371, + 51.51841 + ] + }, + "properties": { + "openplaque:id": "5940", + "addr:full": "BBC Radio Theatre Broadcasting House", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14371, + 51.51841 + ] + }, + "properties": { + "openplaque:id": "5942", + "addr:full": "BBC Radio Theatre Broadcasting House", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14371, + 51.51841 + ] + }, + "properties": { + "openplaque:id": "5944", + "addr:full": "BBC Radio Theatre Broadcasting House", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14371, + 51.51841 + ] + }, + "properties": { + "openplaque:id": "5946", + "addr:full": "BBC Radio Theatre Broadcasting House", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14371, + 51.51841 + ] + }, + "properties": { + "openplaque:id": "5948", + "addr:full": "BBC Radio Theatre Broadcasting House", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14609, + 51.51302 + ] + }, + "properties": { + "openplaque:id": "595", + "addr:full": "\"23 Brook Street", + "date_start": "Mayfair" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14371, + 51.51841 + ] + }, + "properties": { + "openplaque:id": "5950", + "addr:full": "BBC Radio Theatre Broadcasting House", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32175, + 51.42852 + ] + }, + "properties": { + "openplaque:id": "5956", + "addr:full": "Teddington Studios", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "5958", + "addr:full": "BBC Television Centre", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "5960", + "addr:full": "BBC Television Centre", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "5962", + "addr:full": "BBC Television Centre", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "5964", + "addr:full": "BBC Television Centre", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "5966", + "addr:full": "BBC Television Centre", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "5968", + "addr:full": "BBC Television Centre", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1435, + 51.5073 + ] + }, + "properties": { + "openplaque:id": "597", + "addr:full": "\"The May Fair Hotel", + "date_start": "Stratton Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22533, + 51.5105 + ] + }, + "properties": { + "openplaque:id": "5970", + "addr:full": "BBC Television Centre", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "5972", + "addr:full": "BBC Television Centre", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14052, + 51.5146 + ] + }, + "properties": { + "openplaque:id": "5974", + "addr:full": "London Palladium W1", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.24329, + 51.4768 + ] + }, + "properties": { + "openplaque:id": "598", + "addr:full": "\"39 Westmoreland Road", + "date_start": "Barnes" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.03837, + 51.53195 + ] + }, + "properties": { + "openplaque:id": "5984", + "addr:full": "\"West Ham Utd FC", + "date_start": "Upton Park\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "5986", + "addr:full": "BBC Television Centre", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "5988", + "addr:full": "BBC Television Centre", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13628, + 51.5074 + ] + }, + "properties": { + "openplaque:id": "599", + "addr:full": "\"12 St James's Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "5990", + "addr:full": "BBC Television Centre", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "5992", + "addr:full": "BBC Television Centre", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "5994", + "addr:full": "BBC Television Centre", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14371, + 51.51841 + ] + }, + "properties": { + "openplaque:id": "5996", + "addr:full": "BBC Broadcasting House", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19656, + 51.49983 + ] + }, + "properties": { + "openplaque:id": "5998", + "addr:full": "\"43–52 Stafford Court", + "date_start": "Kensington High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15294, + 51.50806 + ] + }, + "properties": { + "openplaque:id": "6", + "addr:full": "10 South Street", + "date_start": "1955" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15473, + 51.4975 + ] + }, + "properties": { + "openplaque:id": "60", + "addr:full": "\"37 Chesham Place", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14052, + 51.5146 + ] + }, + "properties": { + "openplaque:id": "6000", + "addr:full": "London Palladium W1", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "6004", + "addr:full": "BBC Television Centre", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51 + ] + }, + "properties": { + "openplaque:id": "6006", + "addr:full": "BBC Television Centre", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "6008", + "addr:full": "BBC Television Centre", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "6010", + "addr:full": "BBC Television Centre", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "6012", + "addr:full": "BBC Television Centre", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14371, + 51.51841 + ] + }, + "properties": { + "openplaque:id": "6014", + "addr:full": "BBC Radio Theatre W1", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14371, + 51.51841 + ] + }, + "properties": { + "openplaque:id": "6016", + "addr:full": "BBC Radio Theatre W1", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14371, + 51.51841 + ] + }, + "properties": { + "openplaque:id": "6018", + "addr:full": "BBC Radio Theatre W1", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03963, + 51.51756 + ] + }, + "properties": { + "openplaque:id": "602", + "addr:full": "\"58 Solent House", + "date_start": "Ben Jonson Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22442, + 51.49036 + ] + }, + "properties": { + "openplaque:id": "6020", + "addr:full": "\"Apollo", + "date_start": "Hammersmith (Formerly the Gaumont)\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22583, + 51.51001 + ] + }, + "properties": { + "openplaque:id": "6024", + "addr:full": "BBC Television Centre", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16777, + 51.53406 + ] + }, + "properties": { + "openplaque:id": "6028", + "addr:full": "\"RAK Studios", + "date_start": "St Johns Wood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15716, + 51.51259 + ] + }, + "properties": { + "openplaque:id": "603", + "addr:full": "\"17 Dunraven Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.29777, + 51.4626 + ] + }, + "properties": { + "openplaque:id": "6030", + "addr:full": "\"8 Sydney Road", + "date_start": "Richmond\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34912, + 51.44385 + ] + }, + "properties": { + "openplaque:id": "6034", + "addr:full": "\"Brinsworth House", + "date_start": "Twickenham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.03784, + 51.53131 + ] + }, + "properties": { + "openplaque:id": "6036", + "addr:full": "West Ham Utd. Boleyn Ground", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34912, + 51.44382 + ] + }, + "properties": { + "openplaque:id": "6038", + "addr:full": "\"Brinsworth House", + "date_start": "Twickenham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13216, + 51.5158 + ] + }, + "properties": { + "openplaque:id": "604", + "addr:full": "\"14 Soho Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.03846, + 51.53216 + ] + }, + "properties": { + "openplaque:id": "6040", + "addr:full": "West Ham Utd. Boleyn Ground", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17871, + 51.5246 + ] + }, + "properties": { + "openplaque:id": "6042", + "addr:full": "\"4 Roberts Close", + "date_start": "W9\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34912, + 51.44385 + ] + }, + "properties": { + "openplaque:id": "6044", + "addr:full": "\"Brinsworth House", + "date_start": "Twickenham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34912, + 51.44385 + ] + }, + "properties": { + "openplaque:id": "6046", + "addr:full": "\"Brinsworth House", + "date_start": "Twickenham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09311, + 51.51629 + ] + }, + "properties": { + "openplaque:id": "6048", + "addr:full": "\"Aldermanbury", + "date_start": "EC2V\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10925, + 51.5134 + ] + }, + "properties": { + "openplaque:id": "6054", + "addr:full": "\"1 Mitre Court Buildings", + "date_start": "EC4Y 7BS\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12347, + 51.5082 + ] + }, + "properties": { + "openplaque:id": "606", + "addr:full": "12 Buckingham Street", + "date_start": "1947" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10118, + 51.5122 + ] + }, + "properties": { + "openplaque:id": "6062", + "addr:full": "146 Queen Victoria Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09692, + 51.5118 + ] + }, + "properties": { + "openplaque:id": "6064", + "addr:full": "\"101 Queen Victoria Street", + "date_start": "EC4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09217, + 51.5156 + ] + }, + "properties": { + "openplaque:id": "6066", + "addr:full": "\"Guildhall Yard", + "date_start": "EC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10657, + 51.51417 + ] + }, + "properties": { + "openplaque:id": "6068", + "addr:full": "76 Fleet Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09539, + 51.5152 + ] + }, + "properties": { + "openplaque:id": "6070", + "addr:full": "\"Priest Court", + "date_start": "32 Gutter Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10677, + 51.51213 + ] + }, + "properties": { + "openplaque:id": "6074", + "addr:full": "\"Carmelite Street", + "date_start": "EC4Y 0BS\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09396, + 51.51448 + ] + }, + "properties": { + "openplaque:id": "6076", + "addr:full": "Milk Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08955, + 51.5207 + ] + }, + "properties": { + "openplaque:id": "608", + "addr:full": "\"21-23 Chiswell Street", + "date_start": "Islington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08568, + 51.51295 + ] + }, + "properties": { + "openplaque:id": "6080", + "addr:full": "\"St. Michael's Alley", + "date_start": "Cornhill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09314, + 51.5181 + ] + }, + "properties": { + "openplaque:id": "6082", + "addr:full": "\"Wood Street", + "date_start": "EC2Y 5BA\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08293, + 51.51466 + ] + }, + "properties": { + "openplaque:id": "6084", + "addr:full": "\"Crosby Square", + "date_start": "EC3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08541, + 51.5115 + ] + }, + "properties": { + "openplaque:id": "6086", + "addr:full": "\"Gracechurch Street", + "date_start": "EC3V\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09266, + 51.51793 + ] + }, + "properties": { + "openplaque:id": "6088", + "addr:full": "\"St Alphage Garden", + "date_start": "EC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1005, + 51.5121 + ] + }, + "properties": { + "openplaque:id": "6090", + "addr:full": "Queen Victoria Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10762, + 51.5145 + ] + }, + "properties": { + "openplaque:id": "6092", + "addr:full": "3 Bolt Court" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09214, + 51.5112 + ] + }, + "properties": { + "openplaque:id": "6094", + "addr:full": "\"College Hill", + "date_start": "EC4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09451, + 51.5198 + ] + }, + "properties": { + "openplaque:id": "6098", + "addr:full": "\"Barbican", + "date_start": "EC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1557, + 51.54086 + ] + }, + "properties": { + "openplaque:id": "61", + "addr:full": "3 Chalcot Square", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13246, + 51.5006 + ] + }, + "properties": { + "openplaque:id": "610", + "addr:full": "16 Queen Anne's Gate", + "date_start": "1975" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08943, + 51.5149 + ] + }, + "properties": { + "openplaque:id": "6102", + "addr:full": "\"5 Lothbury", + "date_start": "EC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10991, + 51.51812 + ] + }, + "properties": { + "openplaque:id": "6104", + "addr:full": "\"142 Holborn", + "date_start": "EC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07558, + 51.51389 + ] + }, + "properties": { + "openplaque:id": "6106", + "addr:full": "\"2 Aldgate High Street", + "date_start": "EC3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0947, + 51.5123 + ] + }, + "properties": { + "openplaque:id": "6108", + "addr:full": "\"90 Queen Victoria Street", + "date_start": "EC4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18685, + 51.4898 + ] + }, + "properties": { + "openplaque:id": "611", + "addr:full": "\"8 South Bolton Gardens", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10172, + 51.51635 + ] + }, + "properties": { + "openplaque:id": "6110", + "addr:full": "\"2 Giltspur Street", + "date_start": "EC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09182, + 51.51544 + ] + }, + "properties": { + "openplaque:id": "6114", + "addr:full": "\"Guildhall Yard", + "date_start": "EC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09171, + 51.51548 + ] + }, + "properties": { + "openplaque:id": "6116", + "addr:full": "\"Guildhall Yard", + "date_start": "EC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09214, + 51.5112 + ] + }, + "properties": { + "openplaque:id": "6118", + "addr:full": "\"20 College Hill", + "date_start": "EC4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25324, + 51.4916 + ] + }, + "properties": { + "openplaque:id": "612", + "addr:full": "\"62 Cranbrook Road", + "date_start": "Chiswick" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09673, + 51.51123 + ] + }, + "properties": { + "openplaque:id": "6120", + "addr:full": "\"24/25 Upper Thames Street", + "date_start": "EC4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09172, + 51.5132 + ] + }, + "properties": { + "openplaque:id": "6122", + "addr:full": "\"Pancras Lane", + "date_start": "EC4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08863, + 51.51773 + ] + }, + "properties": { + "openplaque:id": "6126", + "addr:full": "\"85 Moorgate", + "date_start": "EC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08459, + 51.51268 + ] + }, + "properties": { + "openplaque:id": "6128", + "addr:full": "Gracechurch Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09195, + 51.51048 + ] + }, + "properties": { + "openplaque:id": "6130", + "addr:full": "\"Upper Thames Street", + "date_start": "EC4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.089, + 51.5109 + ] + }, + "properties": { + "openplaque:id": "6132", + "addr:full": "\"Laurence Pountney Hill", + "date_start": "EC4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0857, + 51.50929 + ] + }, + "properties": { + "openplaque:id": "6134", + "addr:full": "\"Lower Thames Street", + "date_start": "EC3R 6DN\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09065, + 51.51343 + ] + }, + "properties": { + "openplaque:id": "6136", + "addr:full": "\"1 Poultry", + "date_start": "EC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10203, + 51.514 + ] + }, + "properties": { + "openplaque:id": "6138", + "addr:full": "\"Ludgate", + "date_start": "EC4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08932, + 51.51066 + ] + }, + "properties": { + "openplaque:id": "6140", + "addr:full": "\"Suffolk Lane", + "date_start": "EC4R\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08175, + 51.5158 + ] + }, + "properties": { + "openplaque:id": "6142", + "addr:full": "\"Clerk's Place", + "date_start": "EC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09441, + 51.5162 + ] + }, + "properties": { + "openplaque:id": "6144", + "addr:full": "\"Wood Street", + "date_start": "EC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10804, + 51.5141 + ] + }, + "properties": { + "openplaque:id": "6146", + "addr:full": "62 Fleet Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08148, + 51.51501 + ] + }, + "properties": { + "openplaque:id": "6148", + "addr:full": "Great St Helen's" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14133, + 51.4897 + ] + }, + "properties": { + "openplaque:id": "615", + "addr:full": "\"63 St George's Drive", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10088, + 51.5155 + ] + }, + "properties": { + "openplaque:id": "6150", + "addr:full": "\"Warwick Lane", + "date_start": "EC4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10806, + 51.51423 + ] + }, + "properties": { + "openplaque:id": "6152", + "addr:full": "Fleet Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07925, + 51.51048 + ] + }, + "properties": { + "openplaque:id": "6154", + "addr:full": "\"Seething Lane", + "date_start": "EC3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08945, + 51.5177 + ] + }, + "properties": { + "openplaque:id": "6158", + "addr:full": "\"London Wall", + "date_start": "EC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09349, + 51.5149 + ] + }, + "properties": { + "openplaque:id": "6160", + "addr:full": "20 Milk Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07439, + 51.5193 + ] + }, + "properties": { + "openplaque:id": "6164", + "addr:full": "\"Spital Square", + "date_start": "E1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0841, + 51.5106 + ] + }, + "properties": { + "openplaque:id": "6166", + "addr:full": "\"16 Eastcheap", + "date_start": "EC3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08562, + 51.5142 + ] + }, + "properties": { + "openplaque:id": "6168", + "addr:full": "\"52 Threadneedle Street", + "date_start": "EC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17923, + 51.5482 + ] + }, + "properties": { + "openplaque:id": "617", + "addr:full": "\"10 Netherhall Gardens", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08617, + 51.51014 + ] + }, + "properties": { + "openplaque:id": "6176", + "addr:full": "\"Monument Street", + "date_start": "EC4R\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08387, + 51.5118 + ] + }, + "properties": { + "openplaque:id": "6178", + "addr:full": "\"23 Lime Street", + "date_start": "EC3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16268, + 51.5277 + ] + }, + "properties": { + "openplaque:id": "618", + "addr:full": "\"10 Hanover Terrace", + "date_start": "Regent's Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08457, + 51.5102 + ] + }, + "properties": { + "openplaque:id": "6182", + "addr:full": "\"Botolph Lane", + "date_start": "EC3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07827, + 51.51407 + ] + }, + "properties": { + "openplaque:id": "6184", + "addr:full": "\"Mitre Square", + "date_start": "EC3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09083, + 51.51176 + ] + }, + "properties": { + "openplaque:id": "6186", + "addr:full": "Canon Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1561, + 51.5408 + ] + }, + "properties": { + "openplaque:id": "619", + "addr:full": "\"37 Chalcot Crescent", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19577, + 51.5018 + ] + }, + "properties": { + "openplaque:id": "62", + "addr:full": "29 Campden Hill Road", + "date_start": "1994" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08111, + 51.5139 + ] + }, + "properties": { + "openplaque:id": "6202", + "addr:full": "10 St Mary Axe" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17484, + 51.49517 + ] + }, + "properties": { + "openplaque:id": "621", + "addr:full": "\"5 Cromwell Place", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08714, + 51.51212 + ] + }, + "properties": { + "openplaque:id": "6214", + "addr:full": "\"Nicholas Lane", + "date_start": "EC3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19137, + 51.5529 + ] + }, + "properties": { + "openplaque:id": "622", + "addr:full": "\"78 Marlborough Mansions", + "date_start": "Cannon Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10785, + 51.51465 + ] + }, + "properties": { + "openplaque:id": "6220", + "addr:full": "Bolt Court" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09169, + 51.51194 + ] + }, + "properties": { + "openplaque:id": "6222", + "addr:full": "\"Cannon Street", + "date_start": "EC4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07855, + 51.5203 + ] + }, + "properties": { + "openplaque:id": "6224", + "addr:full": "\"7 Spital Yard", + "date_start": "EC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07922, + 51.5138 + ] + }, + "properties": { + "openplaque:id": "6226", + "addr:full": "\"Creechurch Lane", + "date_start": "EC3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09897, + 51.51831 + ] + }, + "properties": { + "openplaque:id": "6228", + "addr:full": "\"Shaftesbury Place", + "date_start": "EC2Y 8AA\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.24243, + 51.48989 + ] + }, + "properties": { + "openplaque:id": "623", + "addr:full": "\"7 Hammersmith Terrace", + "date_start": "Hammersmith and Fulham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11068, + 51.5184 + ] + }, + "properties": { + "openplaque:id": "6232", + "addr:full": "\"39 Brooke Street", + "date_start": "EC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09039, + 51.5135 + ] + }, + "properties": { + "openplaque:id": "6234", + "addr:full": "\"Poultry", + "date_start": "EC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09223, + 51.5116 + ] + }, + "properties": { + "openplaque:id": "6236", + "addr:full": "\"College Hill", + "date_start": "EC4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07929, + 51.5133 + ] + }, + "properties": { + "openplaque:id": "6238", + "addr:full": "Leadenhall Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16278, + 51.5279 + ] + }, + "properties": { + "openplaque:id": "624", + "addr:full": "\"11 Hanover Terrace", + "date_start": "Regent's Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09102, + 51.5162 + ] + }, + "properties": { + "openplaque:id": "6240", + "addr:full": "22 Basinghall Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08183, + 51.51326 + ] + }, + "properties": { + "openplaque:id": "6242", + "addr:full": "\"Lime Street", + "date_start": "EC3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19851, + 51.6043 + ] + }, + "properties": { + "openplaque:id": "6256", + "addr:full": "\"Dollis Road", + "date_start": "Barnet\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20913, + 51.4898 + ] + }, + "properties": { + "openplaque:id": "626", + "addr:full": "\"32 Baron's Court Road", + "date_start": "Hammersmith and Fulham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23957, + 51.6291 + ] + }, + "properties": { + "openplaque:id": "6260", + "addr:full": "\"Highwood Hill", + "date_start": "Barnet\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.24142, + 51.4483 + ] + }, + "properties": { + "openplaque:id": "627", + "addr:full": "\"Gatepost at Manresa House", + "date_start": "Holybourne Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12897, + 51.5129 + ] + }, + "properties": { + "openplaque:id": "6274", + "addr:full": "Charing Cross Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08074, + 51.3953 + ] + }, + "properties": { + "openplaque:id": "628", + "addr:full": "\"12 Tennison Road", + "date_start": "South Norwood" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00805, + 51.4795 + ] + }, + "properties": { + "openplaque:id": "6290", + "addr:full": "\"Spread Eagle Antiques", + "date_start": "9 Nevada St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18285, + 51.488 + ] + }, + "properties": { + "openplaque:id": "6296", + "addr:full": "\"Gilston Road", + "date_start": "West Brompton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16416, + 51.48415 + ] + }, + "properties": { + "openplaque:id": "63", + "addr:full": "\"4 Cheyne Walk", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1813, + 51.5568 + ] + }, + "properties": { + "openplaque:id": "630", + "addr:full": "\"18 Frognal Gardens", + "date_start": "Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19472, + 51.5073 + ] + }, + "properties": { + "openplaque:id": "631", + "addr:full": "\"128 Kensington Church Street", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37762, + 51.5988 + ] + }, + "properties": { + "openplaque:id": "632", + "addr:full": "\"75 Moss Lane", + "date_start": "Pinner" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0913, + 51.5554 + ] + }, + "properties": { + "openplaque:id": "6322", + "addr:full": "\"124 Highbury New Park", + "date_start": "Islington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18685, + 51.4898 + ] + }, + "properties": { + "openplaque:id": "6324", + "addr:full": "South Bolton Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13171, + 51.50956 + ] + }, + "properties": { + "openplaque:id": "6326", + "addr:full": "36 Panton Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16683, + 51.498 + ] + }, + "properties": { + "openplaque:id": "633", + "addr:full": "\"168 Brompton Road", + "date_start": "Knightsbridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19095, + 51.4923 + ] + }, + "properties": { + "openplaque:id": "634", + "addr:full": "\"22 Barkston Gardens", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19517, + 51.5045 + ] + }, + "properties": { + "openplaque:id": "635", + "addr:full": "\"15 Gloucester Walk", + "date_start": "Kensington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09736, + 51.5027 + ] + }, + "properties": { + "openplaque:id": "636", + "addr:full": "94 Southwark Bridge Road", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09881, + 51.5439 + ] + }, + "properties": { + "openplaque:id": "6362", + "addr:full": "\"1 Canonbury Place", + "date_start": "Islington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19363, + 51.5083 + ] + }, + "properties": { + "openplaque:id": "637", + "addr:full": "\"61 Palace Gardens Terrace", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10293, + 51.5347 + ] + }, + "properties": { + "openplaque:id": "638", + "addr:full": "\"32 Charlton Place", + "date_start": "Islington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.00964, + 51.4653 + ] + }, + "properties": { + "openplaque:id": "64", + "addr:full": "\"4 Bennett Park", + "date_start": "Blackheath\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14449, + 51.5179 + ] + }, + "properties": { + "openplaque:id": "6408", + "addr:full": "\"1 Portland Place", + "date_start": "W1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07842, + 51.6199 + ] + }, + "properties": { + "openplaque:id": "6414", + "addr:full": "\"67 Cheddington Road", + "date_start": "N18\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08459, + 51.6395 + ] + }, + "properties": { + "openplaque:id": "6418", + "addr:full": "\"On pillar at entrance to Cunard Crescent N21", + "date_start": "off of Bush Hill Road N21\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16366, + 51.51473 + ] + }, + "properties": { + "openplaque:id": "642", + "addr:full": "\"14 Connaught Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09039, + 51.6221 + ] + }, + "properties": { + "openplaque:id": "6420", + "addr:full": "\"314 Firs Lane", + "date_start": "N13\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06467, + 51.615 + ] + }, + "properties": { + "openplaque:id": "6424", + "addr:full": "\"On a building at the southern end of Angel Place N18", + "date_start": "off of Fore Street N18 (183 Fore Street)\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05995, + 51.6749 + ] + }, + "properties": { + "openplaque:id": "6426", + "addr:full": "\"On Myddelton House", + "date_start": "Bulls Cross" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07326, + 51.66658 + ] + }, + "properties": { + "openplaque:id": "6428", + "addr:full": "470 Baker Street N2" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12301, + 51.6493 + ] + }, + "properties": { + "openplaque:id": "6430", + "addr:full": "44 Merryhills Drive N2" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08688, + 51.6543 + ] + }, + "properties": { + "openplaque:id": "6432", + "addr:full": "\"Clarendon Cottage", + "date_start": "17 Gentlemans Row EN2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12659, + 51.6248 + ] + }, + "properties": { + "openplaque:id": "6434", + "addr:full": "\"18 The Green", + "date_start": "N14\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17162, + 51.6678 + ] + }, + "properties": { + "openplaque:id": "6436", + "addr:full": "\"‘The Homestead’ 19 Crescent East", + "date_start": "EN4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12411, + 51.6253 + ] + }, + "properties": { + "openplaque:id": "6438", + "addr:full": "\"33 The Green N14 (now Salcombe Pre School", + "date_start": "was Bank)\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14053, + 51.511 + ] + }, + "properties": { + "openplaque:id": "644", + "addr:full": "\"14 Savile Row", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12016, + 51.6322 + ] + }, + "properties": { + "openplaque:id": "6440", + "addr:full": "The Bourne N14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1258, + 51.6284 + ] + }, + "properties": { + "openplaque:id": "6442", + "addr:full": "41/43 High Street N14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09815, + 51.6355 + ] + }, + "properties": { + "openplaque:id": "6444", + "addr:full": "\"59 Vicars Moor Lane", + "date_start": "N21\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12457, + 51.6353 + ] + }, + "properties": { + "openplaque:id": "6446", + "addr:full": "\"On block of flats at Redwood Close", + "date_start": "N14 (at end of The Vale)\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0825, + 51.65207 + ] + }, + "properties": { + "openplaque:id": "6448", + "addr:full": "\"Within Pearsons shop", + "date_start": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08563, + 51.6155 + ] + }, + "properties": { + "openplaque:id": "6450", + "addr:full": "\"On frontage of house at 8 Weir Hall Gardens N18", + "date_start": "Enfield\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06645, + 51.6092 + ] + }, + "properties": { + "openplaque:id": "6452", + "addr:full": "\"“Florence Hayes” Recreation Ground (Park)", + "date_start": "Fore Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06474, + 51.6123 + ] + }, + "properties": { + "openplaque:id": "6454", + "addr:full": "\"On building (ex Job Centre)", + "date_start": "Fore Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07991, + 51.6459 + ] + }, + "properties": { + "openplaque:id": "6458", + "addr:full": "\"8 Private Road", + "date_start": "EN1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15377, + 51.4952 + ] + }, + "properties": { + "openplaque:id": "646", + "addr:full": "\"80 Eaton Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11024, + 51.6104 + ] + }, + "properties": { + "openplaque:id": "6462", + "addr:full": "\"2 Kelvin Avenue", + "date_start": "N13\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06497, + 51.6261 + ] + }, + "properties": { + "openplaque:id": "6466", + "addr:full": "\"Site of former Fire Station on wall of Church Street", + "date_start": "N9" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.059, + 51.6783 + ] + }, + "properties": { + "openplaque:id": "6468", + "addr:full": "\"Bulls Cross", + "date_start": "EN2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1723, + 51.5382 + ] + }, + "properties": { + "openplaque:id": "647", + "addr:full": "\"32 Queen's Grove", + "date_start": "St John's Wood" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08574, + 51.67504 + ] + }, + "properties": { + "openplaque:id": "6472", + "addr:full": "\"Whitewebbs aquaduct in Whitewebbs Park", + "date_start": "Enfield\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12531, + 51.6246 + ] + }, + "properties": { + "openplaque:id": "6474", + "addr:full": "\"Towards the south-east corner of The Green", + "date_start": "N14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12801, + 51.6247 + ] + }, + "properties": { + "openplaque:id": "6476", + "addr:full": "\"On south wall of graveyard", + "date_start": "Christ Church" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.04219, + 51.651 + ] + }, + "properties": { + "openplaque:id": "6478", + "addr:full": "\"In area of Durants Road", + "date_start": "Durants Park and The Ride" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15246, + 51.4913 + ] + }, + "properties": { + "openplaque:id": "648", + "addr:full": "\"182 Ebury Street", + "date_start": "Belgravia" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12782, + 51.6311 + ] + }, + "properties": { + "openplaque:id": "6480", + "addr:full": "\"151 High Street", + "date_start": "N14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12448, + 51.62563 + ] + }, + "properties": { + "openplaque:id": "6482", + "addr:full": "\"40 High Street", + "date_start": "N14\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12722, + 51.6328 + ] + }, + "properties": { + "openplaque:id": "6484", + "addr:full": "\"Mallinson House", + "date_start": "321 Chase Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08799, + 51.6574 + ] + }, + "properties": { + "openplaque:id": "6486", + "addr:full": "87 Chase Side EN2" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06208, + 51.6254 + ] + }, + "properties": { + "openplaque:id": "6488", + "addr:full": "\"3 Keats Parade", + "date_start": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08115, + 51.6177 + ] + }, + "properties": { + "openplaque:id": "6490", + "addr:full": "\"Aylward School. Windmill Road", + "date_start": "N18\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09876, + 51.633 + ] + }, + "properties": { + "openplaque:id": "6492", + "addr:full": "\"Station Road", + "date_start": "Winchmore Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06466, + 51.6315 + ] + }, + "properties": { + "openplaque:id": "6494", + "addr:full": "\"133 Chichester Road", + "date_start": "Edmonton" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0738, + 51.5202 + ] + }, + "properties": { + "openplaque:id": "65", + "addr:full": "\"12 Hanbury Street", + "date_start": "Tower Hamlets" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15275, + 51.5235 + ] + }, + "properties": { + "openplaque:id": "650", + "addr:full": "\"5 York Gate", + "date_start": "Regent's Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18067, + 51.5223 + ] + }, + "properties": { + "openplaque:id": "6502", + "addr:full": "\"30 Maida Avenue", + "date_start": "W9\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13732, + 51.50816 + ] + }, + "properties": { + "openplaque:id": "651", + "addr:full": "\"87 Jermyn Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25585, + 51.4968 + ] + }, + "properties": { + "openplaque:id": "652", + "addr:full": "\"Bedford House", + "date_start": "The Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25262, + 51.47252 + ] + }, + "properties": { + "openplaque:id": "653", + "addr:full": "\"14 The Terrace", + "date_start": "Barnes" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18153, + 51.50007 + ] + }, + "properties": { + "openplaque:id": "655", + "addr:full": "\"29 Hyde Park Gate", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15113, + 51.50826 + ] + }, + "properties": { + "openplaque:id": "656", + "addr:full": "\"14 South Audley Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14098, + 51.46411 + ] + }, + "properties": { + "openplaque:id": "657", + "addr:full": "\"43 Old Town", + "date_start": "Clapham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14969, + 51.51883 + ] + }, + "properties": { + "openplaque:id": "659", + "addr:full": "\"Welbeck Mansions", + "date_start": "35 Welbeck Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17066, + 51.559 + ] + }, + "properties": { + "openplaque:id": "66", + "addr:full": "\"East Heath Lodge", + "date_start": "1 East Heath Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17923, + 51.5546 + ] + }, + "properties": { + "openplaque:id": "660", + "addr:full": "\"6 Ellerdale Road", + "date_start": "Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15165, + 51.517 + ] + }, + "properties": { + "openplaque:id": "661", + "addr:full": "\"Hinde House", + "date_start": "11-14 Hinde Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11606, + 51.5231 + ] + }, + "properties": { + "openplaque:id": "662", + "addr:full": "\"58 Doughty Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14878, + 51.50654 + ] + }, + "properties": { + "openplaque:id": "663", + "addr:full": "\"32 Curzon Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13011, + 51.52001 + ] + }, + "properties": { + "openplaque:id": "664", + "addr:full": "\"7 Gower Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13196, + 51.51437 + ] + }, + "properties": { + "openplaque:id": "665", + "addr:full": "\"6 Frith Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11926, + 51.52214 + ] + }, + "properties": { + "openplaque:id": "666", + "addr:full": "\"23 Great Ormond Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17761, + 51.538 + ] + }, + "properties": { + "openplaque:id": "667", + "addr:full": "\"31 Marlborough Hill", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16739, + 51.4837 + ] + }, + "properties": { + "openplaque:id": "668", + "addr:full": "\"56 Oakley Street", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15601, + 51.50081 + ] + }, + "properties": { + "openplaque:id": "67", + "addr:full": "\"25 Wilton Place", + "date_start": "Belgravia\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17198, + 51.545 + ] + }, + "properties": { + "openplaque:id": "670", + "addr:full": "\"14 Adamson Road", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08394, + 51.4666 + ] + }, + "properties": { + "openplaque:id": "671", + "addr:full": "\"188 Camberwell Grove", + "date_start": "Southwark" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06175, + 51.4534 + ] + }, + "properties": { + "openplaque:id": "672", + "addr:full": "\"36 Forest Hill Road", + "date_start": "East Dulwich" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18585, + 51.4906 + ] + }, + "properties": { + "openplaque:id": "674", + "addr:full": "189 Old Brompton Road", + "date_start": "1909" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1415, + 51.5342 + ] + }, + "properties": { + "openplaque:id": "676", + "addr:full": "\"44 Albert Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15968, + 51.5233 + ] + }, + "properties": { + "openplaque:id": "6766", + "addr:full": "48 Chagford Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14049, + 51.5536 + ] + }, + "properties": { + "openplaque:id": "677", + "addr:full": "\"56 Fortess Road", + "date_start": "Kentish Town" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15132, + 51.50823 + ] + }, + "properties": { + "openplaque:id": "679", + "addr:full": "\"72 South Audley Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16264, + 51.5422 + ] + }, + "properties": { + "openplaque:id": "68", + "addr:full": "4 Elsworthy Road", + "date_start": "1969" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1994, + 51.4974 + ] + }, + "properties": { + "openplaque:id": "680", + "addr:full": "\"19 Edwardes Square", + "date_start": "Kensington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15933, + 51.52444 + ] + }, + "properties": { + "openplaque:id": "681", + "addr:full": "\"23 Park Road", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06568, + 51.54602 + ] + }, + "properties": { + "openplaque:id": "682", + "addr:full": "\"55 Graham Road", + "date_start": "E8 Hackney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19027, + 51.5784 + ] + }, + "properties": { + "openplaque:id": "684", + "addr:full": "\"8 Meadway", + "date_start": "Hampstead Garden Suburb" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15381, + 51.51797 + ] + }, + "properties": { + "openplaque:id": "686", + "addr:full": "\"52 Manchester Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15305, + 51.50871 + ] + }, + "properties": { + "openplaque:id": "687", + "addr:full": "\"7 Aldford Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21924, + 51.4956 + ] + }, + "properties": { + "openplaque:id": "688", + "addr:full": "\"St Paul's Girls' School", + "date_start": "Brook Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1475, + 51.52298 + ] + }, + "properties": { + "openplaque:id": "691", + "addr:full": "\"24 Park Crescent", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20502, + 51.49897 + ] + }, + "properties": { + "openplaque:id": "692", + "addr:full": "8 Melbury Road", + "date_start": "1994" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18127, + 51.5531 + ] + }, + "properties": { + "openplaque:id": "693", + "addr:full": "\"37 Frognal", + "date_start": "Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14502, + 51.5104 + ] + }, + "properties": { + "openplaque:id": "694", + "addr:full": "\"26 Bruton Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07699, + 51.5212 + ] + }, + "properties": { + "openplaque:id": "695", + "addr:full": "\"32 Elder Street", + "date_start": "Tower Hamlets" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14816, + 51.52129 + ] + }, + "properties": { + "openplaque:id": "696", + "addr:full": "\"109 Harley Street Westminster", + "date_start": "W1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17543, + 51.5349 + ] + }, + "properties": { + "openplaque:id": "697", + "addr:full": "\"Eyre Court", + "date_start": "Finchley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1423, + 51.4624 + ] + }, + "properties": { + "openplaque:id": "698", + "addr:full": "\"Holy Trinity Church", + "date_start": "Clapham Common North Side" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14123, + 51.53427 + ] + }, + "properties": { + "openplaque:id": "699", + "addr:full": "\"20 Albert Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19452, + 51.51648 + ] + }, + "properties": { + "openplaque:id": "7", + "addr:full": "\"71 Hereford Road", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17244, + 51.4829 + ] + }, + "properties": { + "openplaque:id": "70", + "addr:full": "20a Danvers Street", + "date_start": "1981" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17494, + 51.4822 + ] + }, + "properties": { + "openplaque:id": "700", + "addr:full": "\"98 Cheyne Walk", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16737, + 51.55181 + ] + }, + "properties": { + "openplaque:id": "701", + "addr:full": "\"Flat 1 Ornan Court", + "date_start": "Ornan Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13078, + 51.51026 + ] + }, + "properties": { + "openplaque:id": "703", + "addr:full": "\"Fanum House (site of 47)", + "date_start": "Leicester Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20206, + 51.4992 + ] + }, + "properties": { + "openplaque:id": "705", + "addr:full": "\"18 Melbury Road", + "date_start": "W14\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13362, + 51.50566 + ] + }, + "properties": { + "openplaque:id": "706", + "addr:full": "4 Carlton Gardens", + "date_start": "1907" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23467, + 51.49064 + ] + }, + "properties": { + "openplaque:id": "707", + "addr:full": "\"15 Upper Mall", + "date_start": "Hammersmith and Fulham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14419, + 51.5405 + ] + }, + "properties": { + "openplaque:id": "71", + "addr:full": "257 Camden High Street", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11676, + 51.5237 + ] + }, + "properties": { + "openplaque:id": "710", + "addr:full": "\"14 Doughty Street", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1596, + 51.4493 + ] + }, + "properties": { + "openplaque:id": "711", + "addr:full": "\"Nightingale House", + "date_start": "Nightingale Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17246, + 51.51616 + ] + }, + "properties": { + "openplaque:id": "712", + "addr:full": "\"41 Norfolk Square", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.24743, + 51.47282 + ] + }, + "properties": { + "openplaque:id": "713", + "addr:full": "\"Milbourne House", + "date_start": "Barnes Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18106, + 51.4868 + ] + }, + "properties": { + "openplaque:id": "715", + "addr:full": "\"9 Gilston Road", + "date_start": "Kensington and Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20594, + 51.559 + ] + }, + "properties": { + "openplaque:id": "72", + "addr:full": "\"38 Harman Drive", + "date_start": "Cricklewood" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13773, + 51.51331 + ] + }, + "properties": { + "openplaque:id": "7247", + "addr:full": "\"8 Marshall Street", + "date_start": "SW1F 7EJ\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21678, + 51.4672 + ] + }, + "properties": { + "openplaque:id": "7251", + "addr:full": "\"Lower Richmond Road", + "date_start": "Putney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21559, + 51.4665 + ] + }, + "properties": { + "openplaque:id": "7255", + "addr:full": "\"Kenilworth Court", + "date_start": "Lower Richmond Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21559, + 51.4665 + ] + }, + "properties": { + "openplaque:id": "7257", + "addr:full": "\"Kenilworth Court", + "date_start": "Lower Richmond Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14873, + 51.5228 + ] + }, + "properties": { + "openplaque:id": "7259", + "addr:full": "146 Harley Street", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13391, + 51.4975 + ] + }, + "properties": { + "openplaque:id": "7271", + "addr:full": "\"The Strutton Arms", + "date_start": "2 Strutton Ground" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16156, + 51.4732 + ] + }, + "properties": { + "openplaque:id": "7279", + "addr:full": "214 Battersea Park Road", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14959, + 51.52082 + ] + }, + "properties": { + "openplaque:id": "73", + "addr:full": "20 Upper Wimpole Street", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1253, + 51.525 + ] + }, + "properties": { + "openplaque:id": "7311", + "addr:full": "65 Marchmont Street", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19825, + 51.5599 + ] + }, + "properties": { + "openplaque:id": "7315", + "addr:full": "Hendon Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21592, + 51.4348 + ] + }, + "properties": { + "openplaque:id": "7373", + "addr:full": "\"Court No.18", + "date_start": "All England Lawn Tennis Club" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21319, + 51.4326 + ] + }, + "properties": { + "openplaque:id": "7377", + "addr:full": "\"No.2 Court", + "date_start": "All England Lawn Tennis Club" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21472, + 51.4329 + ] + }, + "properties": { + "openplaque:id": "7379", + "addr:full": "\"No.3 Court", + "date_start": "All England Lawn Tennis Club" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14376, + 51.46257 + ] + }, + "properties": { + "openplaque:id": "7385", + "addr:full": "14 Clapham Common North Side", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14401, + 51.507 + ] + }, + "properties": { + "openplaque:id": "74", + "addr:full": "11 Bolton Street", + "date_start": "1885" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.213, + 51.5031 + ] + }, + "properties": { + "openplaque:id": "7405", + "addr:full": "\"4 Lower Addison Gardens", + "date_start": "Holland Park\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13445, + 51.5102 + ] + }, + "properties": { + "openplaque:id": "7407", + "addr:full": "Piccadilly Circus", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18109, + 51.55449 + ] + }, + "properties": { + "openplaque:id": "7436", + "addr:full": "\"20 Frognal Way", + "date_start": "Hampstead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0825, + 51.478 + ] + }, + "properties": { + "openplaque:id": "7439", + "addr:full": "\"179 Southampton Way", + "date_start": "SE5\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02959, + 51.52744 + ] + }, + "properties": { + "openplaque:id": "7443", + "addr:full": "30 Coborn Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02984, + 51.52798 + ] + }, + "properties": { + "openplaque:id": "7444", + "addr:full": "Coborn Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05984, + 51.50601 + ] + }, + "properties": { + "openplaque:id": "7446", + "addr:full": "Reardon Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08874, + 51.51566 + ] + }, + "properties": { + "openplaque:id": "7447", + "addr:full": "\"Kent House", + "date_start": "Telegraph Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13454, + 51.53314 + ] + }, + "properties": { + "openplaque:id": "7449", + "addr:full": "22 Cranleigh Street", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1565, + 51.519 + ] + }, + "properties": { + "openplaque:id": "7453", + "addr:full": "Baker Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15098, + 51.52276 + ] + }, + "properties": { + "openplaque:id": "7455", + "addr:full": "Marylebone High Street", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08028, + 51.53195 + ] + }, + "properties": { + "openplaque:id": "7456", + "addr:full": "\"244-278 Crondall Street", + "date_start": "Hoxton Street elevation\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12223, + 51.52148 + ] + }, + "properties": { + "openplaque:id": "7457", + "addr:full": "Queen Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18122, + 51.55312 + ] + }, + "properties": { + "openplaque:id": "7463", + "addr:full": "\"Greenaway House", + "date_start": "39 Frognal" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18214, + 51.56858 + ] + }, + "properties": { + "openplaque:id": "7467", + "addr:full": "\"2 Wildwood Terrace", + "date_start": "Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13534, + 51.48743 + ] + }, + "properties": { + "openplaque:id": "7474", + "addr:full": "56 St. George's Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17845, + 51.50133 + ] + }, + "properties": { + "openplaque:id": "7477", + "addr:full": "Royal College of Art" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20583, + 51.48969 + ] + }, + "properties": { + "openplaque:id": "7478", + "addr:full": "2 Beaumont Crescent", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.00846, + 51.4804 + ] + }, + "properties": { + "openplaque:id": "75", + "addr:full": "6 Vanbrugh Hill", + "date_start": "1990" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20145, + 51.52914 + ] + }, + "properties": { + "openplaque:id": "7508", + "addr:full": "91 Fernhead Road", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19839, + 51.50647 + ] + }, + "properties": { + "openplaque:id": "7510", + "addr:full": "80 Peel Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1016, + 51.53903 + ] + }, + "properties": { + "openplaque:id": "7515", + "addr:full": "Dogmar Passage", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10616, + 51.51437 + ] + }, + "properties": { + "openplaque:id": "7530", + "addr:full": "Shoe Lane EC4", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12305, + 51.51827 + ] + }, + "properties": { + "openplaque:id": "7539", + "addr:full": "6 Bloomsbury Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20677, + 51.51808 + ] + }, + "properties": { + "openplaque:id": "7566", + "addr:full": "corner of Tavistock Rd and Portobello Rd", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20671, + 51.51811 + ] + }, + "properties": { + "openplaque:id": "7567", + "addr:full": "corner of Tavistock Square and Portobello Road", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09571, + 51.45331 + ] + }, + "properties": { + "openplaque:id": "7574", + "addr:full": "\"2 Warmington Road", + "date_start": "Herne Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11426, + 51.33771 + ] + }, + "properties": { + "openplaque:id": "7576", + "addr:full": "\"Purley Railway Station", + "date_start": "Station Approach" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09722, + 51.50835 + ] + }, + "properties": { + "openplaque:id": "7582", + "addr:full": "Bankside" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07347, + 51.52023 + ] + }, + "properties": { + "openplaque:id": "7583", + "addr:full": "\"wieden + kennedy", + "date_start": "16 Hanbury St\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12861, + 51.51533 + ] + }, + "properties": { + "openplaque:id": "7586", + "addr:full": "(formerly 18 St Giles High Street) now in St Giles in the Fields" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13231, + 51.5006 + ] + }, + "properties": { + "openplaque:id": "76", + "addr:full": "14 Queen Anne's Gate", + "date_start": "1985" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14285, + 51.49682 + ] + }, + "properties": { + "openplaque:id": "7616", + "addr:full": "\"Victoria Palace Theatre", + "date_start": "Allington Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15165, + 51.48701 + ] + }, + "properties": { + "openplaque:id": "7617", + "addr:full": "\"104 Chelsea Gardens", + "date_start": "Chelsea Bridge Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.04413, + 51.4744 + ] + }, + "properties": { + "openplaque:id": "77", + "addr:full": "233 New Cross Road", + "date_start": "1978" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14314, + 51.52538 + ] + }, + "properties": { + "openplaque:id": "78", + "addr:full": "17 Osnaburgh Street", + "date_start": "1985" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17755, + 51.54831 + ] + }, + "properties": { + "openplaque:id": "79", + "addr:full": "20 Maresfield Gardens", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12819, + 51.51069 + ] + }, + "properties": { + "openplaque:id": "7938", + "addr:full": "\"9 Cecil Court", + "date_start": "WC2N 4EZ\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12697, + 51.51074 + ] + }, + "properties": { + "openplaque:id": "7947", + "addr:full": "\"Goodwin's Court", + "date_start": "St Martin's Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16485, + 51.5497 + ] + }, + "properties": { + "openplaque:id": "8", + "addr:full": "\"9 Howitt Road", + "date_start": "Camden" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1898, + 51.5107 + ] + }, + "properties": { + "openplaque:id": "80", + "addr:full": "1 Orme Square", + "date_start": "1907" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10367, + 51.55096 + ] + }, + "properties": { + "openplaque:id": "8003", + "addr:full": "\"4 Battledean Road", + "date_start": "Islington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09072, + 51.541 + ] + }, + "properties": { + "openplaque:id": "8013", + "addr:full": "\"8 Halliford Street", + "date_start": "N1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08577, + 51.52036 + ] + }, + "properties": { + "openplaque:id": "8014", + "addr:full": "\"39-45 Finsbury Square", + "date_start": "EC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10761, + 51.53017 + ] + }, + "properties": { + "openplaque:id": "8015", + "addr:full": "\"30 Myddelton Square", + "date_start": "EC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10298, + 51.54673 + ] + }, + "properties": { + "openplaque:id": "8077", + "addr:full": "\"1 Highbury Place", + "date_start": "N5\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20276, + 51.5075 + ] + }, + "properties": { + "openplaque:id": "81", + "addr:full": "50 Campden Hill Square", + "date_start": "1990" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14745, + 51.5179 + ] + }, + "properties": { + "openplaque:id": "82", + "addr:full": "\"28 Queen Anne Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16375, + 51.5225 + ] + }, + "properties": { + "openplaque:id": "8211", + "addr:full": "Melcombe Place", + "date_start": "2006" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12672, + 51.49131 + ] + }, + "properties": { + "openplaque:id": "8213", + "addr:full": "Millbank", + "date_start": "1983" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26647, + 51.48943 + ] + }, + "properties": { + "openplaque:id": "8222", + "addr:full": "\"2 Burlington Gardens", + "date_start": "Chiswick" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17308, + 51.55244 + ] + }, + "properties": { + "openplaque:id": "8223", + "addr:full": "6 Lyndhurst Road", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11603, + 51.53997 + ] + }, + "properties": { + "openplaque:id": "8239", + "addr:full": "\"60 Thornhill Square", + "date_start": "N1 1BE\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09797, + 51.55384 + ] + }, + "properties": { + "openplaque:id": "8240", + "addr:full": "Highbury Barn Tavern", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1212, + 51.54096 + ] + }, + "properties": { + "openplaque:id": "8241", + "addr:full": "\"Christ Apostolic Church", + "date_start": "Gifford Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09849, + 51.53228 + ] + }, + "properties": { + "openplaque:id": "8242", + "addr:full": "\"City Road Basin (on the wall of Hanover School)", + "date_start": "N1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12328, + 51.54835 + ] + }, + "properties": { + "openplaque:id": "8243", + "addr:full": "\"Unit A", + "date_start": "31 North Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10222, + 51.52129 + ] + }, + "properties": { + "openplaque:id": "8244", + "addr:full": "\"33 St John's Lane", + "date_start": "EC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10212, + 51.52124 + ] + }, + "properties": { + "openplaque:id": "8246", + "addr:full": "\"33 St John's Lane", + "date_start": "EC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08693, + 51.55051 + ] + }, + "properties": { + "openplaque:id": "8247", + "addr:full": "\"6 Pyrland Road", + "date_start": "Highbury\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12624, + 51.56483 + ] + }, + "properties": { + "openplaque:id": "8248", + "addr:full": "\"61 Marlborough Road", + "date_start": "N19\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16021, + 51.4842 + ] + }, + "properties": { + "openplaque:id": "83", + "addr:full": "9 Chelsea Embankment", + "date_start": "1959" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12368, + 51.30812 + ] + }, + "properties": { + "openplaque:id": "8305", + "addr:full": "\"Site of Bradmore C of E School", + "date_start": "Old Coulsdon\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.04706, + 51.51359 + ] + }, + "properties": { + "openplaque:id": "8318", + "addr:full": "\"505 Commercial Road", + "date_start": "E1 0HQ\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20798, + 51.48662 + ] + }, + "properties": { + "openplaque:id": "8322", + "addr:full": "\"Nos. 7 & 8 Normand Mews", + "date_start": "Kensington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13507, + 51.50785 + ] + }, + "properties": { + "openplaque:id": "8325", + "addr:full": "St. James's Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08841, + 51.51327 + ] + }, + "properties": { + "openplaque:id": "8328", + "addr:full": "1 Cornhill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11311, + 51.49776 + ] + }, + "properties": { + "openplaque:id": "8357", + "addr:full": "Hercules Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09901, + 51.5141 + ] + }, + "properties": { + "openplaque:id": "8396", + "addr:full": "St Paul's Cathedral steps" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14497, + 51.49128 + ] + }, + "properties": { + "openplaque:id": "8398", + "addr:full": "34 Eccleston Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16564, + 51.5183 + ] + }, + "properties": { + "openplaque:id": "84", + "addr:full": "1a Cato Street", + "date_start": "1977" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1457, + 51.51661 + ] + }, + "properties": { + "openplaque:id": "8444", + "addr:full": "18 Cavendish Square", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14464, + 51.4623 + ] + }, + "properties": { + "openplaque:id": "8450", + "addr:full": "\"Okeover Manor", + "date_start": "Clapham Common Northside\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14017, + 51.5109 + ] + }, + "properties": { + "openplaque:id": "85", + "addr:full": "11 Savile Row", + "date_start": "1979" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12942, + 0 + ] + }, + "properties": { + "openplaque:id": "8552", + "addr:full": "\"Warners Cinema", + "date_start": "Leicester Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05447, + 51.54775 + ] + }, + "properties": { + "openplaque:id": "8567", + "addr:full": "\"by Clock Tower", + "date_start": "Mare Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05615, + 51.562 + ] + }, + "properties": { + "openplaque:id": "8570", + "addr:full": "\"Railway bridge parapet", + "date_start": "13 Southwold Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0877, + 51.53251 + ] + }, + "properties": { + "openplaque:id": "8571", + "addr:full": "\"Sylvia Court", + "date_start": "Cavendish Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08364, + 51.56136 + ] + }, + "properties": { + "openplaque:id": "8572", + "addr:full": "\"Stoke Newington Town Hall", + "date_start": "Hackney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06015, + 51.56328 + ] + }, + "properties": { + "openplaque:id": "8574", + "addr:full": "\"Rossendale Street", + "date_start": "Hackney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07989, + 51.56211 + ] + }, + "properties": { + "openplaque:id": "8575", + "addr:full": "\"113 Stoke Newington Church Street", + "date_start": "Hackney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07708, + 51.57205 + ] + }, + "properties": { + "openplaque:id": "8576", + "addr:full": "\"64 Linthorpe Road", + "date_start": "Hackney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05433, + 51.55788 + ] + }, + "properties": { + "openplaque:id": "8581", + "addr:full": "\"25 Thistlewaite Road", + "date_start": "Lower Clapton" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05309, + 51.54471 + ] + }, + "properties": { + "openplaque:id": "8583", + "addr:full": "\"Hackney Free & Parochial School", + "date_start": "Paragon Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08007, + 51.53177 + ] + }, + "properties": { + "openplaque:id": "8585", + "addr:full": "\"128 Hoxton Street", + "date_start": "Hackney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0816, + 51.53189 + ] + }, + "properties": { + "openplaque:id": "8586", + "addr:full": "\"Malcolm House", + "date_start": "Regan Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05695, + 51.55588 + ] + }, + "properties": { + "openplaque:id": "8592", + "addr:full": "\"The Downs", + "date_start": "75 Downs Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08298, + 51.53012 + ] + }, + "properties": { + "openplaque:id": "8593", + "addr:full": "\"LBH Housing", + "date_start": "Arden House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06544, + 51.54833 + ] + }, + "properties": { + "openplaque:id": "8594", + "addr:full": "\"Dalston Lane", + "date_start": "Hackney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05383, + 51.55407 + ] + }, + "properties": { + "openplaque:id": "8596", + "addr:full": "\"157-9 Lower Clapton Road", + "date_start": "Hackney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.06307, + 51.448 + ] + }, + "properties": { + "openplaque:id": "86", + "addr:full": "59 Footscray Road", + "date_start": "1986" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07958, + 51.53992 + ] + }, + "properties": { + "openplaque:id": "8601", + "addr:full": "\"56 Mortimer Road", + "date_start": "Hackney" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08145, + 51.52775 + ] + }, + "properties": { + "openplaque:id": "8602", + "addr:full": "\"1 Hoxton Square", + "date_start": "Hackney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1742, + 51.48594 + ] + }, + "properties": { + "openplaque:id": "8652", + "addr:full": "\"13 Mallord Street", + "date_start": "Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09817, + 51.54967 + ] + }, + "properties": { + "openplaque:id": "8671", + "addr:full": "\"Ashurst Lodge", + "date_start": "Highbury Grove" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10383, + 51.53559 + ] + }, + "properties": { + "openplaque:id": "8672", + "addr:full": "\"147 Upper Street", + "date_start": "N1 1RA\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19414, + 51.50411 + ] + }, + "properties": { + "openplaque:id": "8679", + "addr:full": "\"28 Campden Grove", + "date_start": "Kensington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.178, + 51.55917 + ] + }, + "properties": { + "openplaque:id": "8757", + "addr:full": "\"Elm Row", + "date_start": "Hampstead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12177, + 51.51794 + ] + }, + "properties": { + "openplaque:id": "8764", + "addr:full": "\"17 Southampton Place", + "date_start": "Holborn\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07555, + 51.50533 + ] + }, + "properties": { + "openplaque:id": "8782", + "addr:full": "Tower Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11595, + 51.51183 + ] + }, + "properties": { + "openplaque:id": "8784", + "addr:full": "\"King's College London", + "date_start": "Strand" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11595, + 51.51183 + ] + }, + "properties": { + "openplaque:id": "8785", + "addr:full": "\"King's College London", + "date_start": "Strand" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12924, + 51.52669 + ] + }, + "properties": { + "openplaque:id": "8791", + "addr:full": "\"5 Woburn Walk", + "date_start": "Bloomsbury" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13589, + 51.5177 + ] + }, + "properties": { + "openplaque:id": "88", + "addr:full": "\"28 Newman Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09189, + 51.51384 + ] + }, + "properties": { + "openplaque:id": "8815", + "addr:full": "\"86 Cheapside", + "date_start": "EC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33831, + 51.40641 + ] + }, + "properties": { + "openplaque:id": "8908", + "addr:full": "\"Wilderness House", + "date_start": "Hampton Court Palace\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05293, + 51.5017 + ] + }, + "properties": { + "openplaque:id": "8918", + "addr:full": "\"Near Brunel Museum", + "date_start": "Railway Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.04608, + 51.48044 + ] + }, + "properties": { + "openplaque:id": "8919", + "addr:full": "\"John Williams Close", + "date_start": "SE14\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40525, + 51.4283 + ] + }, + "properties": { + "openplaque:id": "8926", + "addr:full": "\"Kempton Park Water Treatment Works", + "date_start": "Snakey Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17424, + 51.49762 + ] + }, + "properties": { + "openplaque:id": "8928", + "addr:full": "\"Science Museum", + "date_start": "Exhibition Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16565, + 51.55405 + ] + }, + "properties": { + "openplaque:id": "8932", + "addr:full": "Pond Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.29054, + 51.48888 + ] + }, + "properties": { + "openplaque:id": "8937", + "addr:full": "\"Kew Bridge Steam Museum", + "date_start": "Green Dragon Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11449, + 51.50317 + ] + }, + "properties": { + "openplaque:id": "8949", + "addr:full": "was at Waterloo Station", + "date_start": "1997" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10145, + 51.50609 + ] + }, + "properties": { + "openplaque:id": "8970", + "addr:full": "\"99 Southwark Street", + "date_start": "SE1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12007, + 51.51222 + ] + }, + "properties": { + "openplaque:id": "9", + "addr:full": "\"36 Tavistock Street", + "date_start": "Westminster" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0837, + 51.5544 + ] + }, + "properties": { + "openplaque:id": "90", + "addr:full": "\"198 Windsor Road", + "date_start": "Ilford\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15137, + 51.49361 + ] + }, + "properties": { + "openplaque:id": "9013", + "addr:full": "\"Gerald Road", + "date_start": "Belgravia\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13728, + 51.49759 + ] + }, + "properties": { + "openplaque:id": "9043", + "addr:full": "Victoria Street", + "date_start": "1995" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33562, + 51.52119 + ] + }, + "properties": { + "openplaque:id": "9086", + "addr:full": "\"Hanwell Community Centre", + "date_start": "Westcott Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18123, + 51.4998 + ] + }, + "properties": { + "openplaque:id": "91", + "addr:full": "22 Hyde Park Gate", + "date_start": "1960" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09014, + 51.504 + ] + }, + "properties": { + "openplaque:id": "9114", + "addr:full": "\"Talbot Yard", + "date_start": "London Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.00954, + 51.59848 + ] + }, + "properties": { + "openplaque:id": "9123", + "addr:full": "\"Mill Plain", + "date_start": "Oak Hill Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0913, + 51.51755 + ] + }, + "properties": { + "openplaque:id": "9126", + "addr:full": "\"London Wall", + "date_start": "EC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09765, + 51.51315 + ] + }, + "properties": { + "openplaque:id": "9127", + "addr:full": "\"St Paul’s Churchyard", + "date_start": "EC4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10659, + 51.5144 + ] + }, + "properties": { + "openplaque:id": "9128", + "addr:full": "\"78 Fleet Street", + "date_start": "EC4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08408, + 51.5134 + ] + }, + "properties": { + "openplaque:id": "9131", + "addr:full": "\"Gracechurch Street and Leadenhall Street", + "date_start": "EC3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07739, + 51.51009 + ] + }, + "properties": { + "openplaque:id": "9133", + "addr:full": "\"41 Trinity Square", + "date_start": "EC3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09963, + 51.51416 + ] + }, + "properties": { + "openplaque:id": "9135", + "addr:full": "\"Juxon House", + "date_start": "St Paul’s Churchyard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17031, + 51.52352 + ] + }, + "properties": { + "openplaque:id": "9137", + "addr:full": "\"71 Church Street", + "date_start": "NW8\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18807, + 51.5333 + ] + }, + "properties": { + "openplaque:id": "9138", + "addr:full": "\"St George’s School", + "date_start": "Maida Vale" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1772, + 51.52726 + ] + }, + "properties": { + "openplaque:id": "9139", + "addr:full": "\"20 Hamilton Terrace", + "date_start": "St John’s Wood" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13902, + 51.51657 + ] + }, + "properties": { + "openplaque:id": "9141", + "addr:full": "\"36 Eastcastle Street", + "date_start": "W1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18584, + 51.51315 + ] + }, + "properties": { + "openplaque:id": "9142", + "addr:full": "\"14–15 Queensborough Terrace", + "date_start": "Bayswater" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15469, + 51.52045 + ] + }, + "properties": { + "openplaque:id": "9143", + "addr:full": "\"Paddington Street Gardens", + "date_start": "Marylebone" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17267, + 51.51331 + ] + }, + "properties": { + "openplaque:id": "9144", + "addr:full": "\"3 Sussex Square", + "date_start": "W2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18738, + 51.51115 + ] + }, + "properties": { + "openplaque:id": "9145", + "addr:full": "\"Queen’s Court", + "date_start": "Queensway" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15789, + 51.51808 + ] + }, + "properties": { + "openplaque:id": "9147", + "addr:full": "\"48 Gloucester Place", + "date_start": "Marylebone" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19228, + 51.51896 + ] + }, + "properties": { + "openplaque:id": "9148", + "addr:full": "\"16 Westbourne Park Villas", + "date_start": "W2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19245, + 51.51171 + ] + }, + "properties": { + "openplaque:id": "9149", + "addr:full": "\"47 Palace Court", + "date_start": "Bayswater" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15322, + 51.51643 + ] + }, + "properties": { + "openplaque:id": "9150", + "addr:full": "\"14 Manchester Square", + "date_start": "Marylebone" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15705, + 51.51709 + ] + }, + "properties": { + "openplaque:id": "9151", + "addr:full": "\"85 George Street", + "date_start": "Marylebone" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1655, + 51.51278 + ] + }, + "properties": { + "openplaque:id": "9152", + "addr:full": "\"23 Hyde Park Place", + "date_start": "W2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14703, + 51.51799 + ] + }, + "properties": { + "openplaque:id": "9153", + "addr:full": "\"23 Queen Anne Street", + "date_start": "W1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14259, + 51.51949 + ] + }, + "properties": { + "openplaque:id": "9154", + "addr:full": "\"103 Great Portland Street", + "date_start": "W1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13738, + 51.51513 + ] + }, + "properties": { + "openplaque:id": "9156", + "addr:full": "\"The King’s Arms", + "date_start": "23 Poland Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13297, + 51.51332 + ] + }, + "properties": { + "openplaque:id": "9158", + "addr:full": "\"6 Meard Street", + "date_start": "Soho" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14588, + 51.50685 + ] + }, + "properties": { + "openplaque:id": "9161", + "addr:full": "\"17 Half Moon Street", + "date_start": "Mayfair" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13962, + 51.51015 + ] + }, + "properties": { + "openplaque:id": "9162", + "addr:full": "\"8 Vigo Street", + "date_start": "W1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1396, + 51.51433 + ] + }, + "properties": { + "openplaque:id": "9163", + "addr:full": "\"18 Great Marlborough Street", + "date_start": "Soho" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14309, + 51.51223 + ] + }, + "properties": { + "openplaque:id": "9166", + "addr:full": "\"8 St George Street", + "date_start": "W1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13362, + 51.51487 + ] + }, + "properties": { + "openplaque:id": "9167", + "addr:full": "\"6 Carlisle Street", + "date_start": "Soho" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13852, + 51.51104 + ] + }, + "properties": { + "openplaque:id": "9168", + "addr:full": "\"130 Regent Street", + "date_start": "W1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15144, + 51.49681 + ] + }, + "properties": { + "openplaque:id": "9171", + "addr:full": "\"103 Eaton Square", + "date_start": "Belgravia" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14519, + 51.49773 + ] + }, + "properties": { + "openplaque:id": "9173", + "addr:full": "\"8 Victoria Square", + "date_start": "SW1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14354, + 51.492 + ] + }, + "properties": { + "openplaque:id": "9175", + "addr:full": "\"59 Eccleston Square", + "date_start": "SW1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17238, + 51.55517 + ] + }, + "properties": { + "openplaque:id": "9176", + "addr:full": "\"5a Pilgrim's Lane", + "date_start": "Hampstead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1664, + 51.50097 + ] + }, + "properties": { + "openplaque:id": "9177", + "addr:full": "\"2 Rutland Garden Mews", + "date_start": "SW7\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13602, + 51.50772 + ] + }, + "properties": { + "openplaque:id": "9193", + "addr:full": "\"6 St James’s Square", + "date_start": "SW1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15507, + 51.49359 + ] + }, + "properties": { + "openplaque:id": "9195", + "addr:full": "\"1a Caroline Terrace", + "date_start": "SW1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11803, + 51.5122 + ] + }, + "properties": { + "openplaque:id": "9197", + "addr:full": "\"Montreal Place", + "date_start": "WC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20738, + 51.5059 + ] + }, + "properties": { + "openplaque:id": "92", + "addr:full": "53 Holland Park", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03586, + 51.4941 + ] + }, + "properties": { + "openplaque:id": "9211", + "addr:full": "Corner of Rope Street and Sweden Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12743, + 51.51191 + ] + }, + "properties": { + "openplaque:id": "9213", + "addr:full": "\"5 Great Newport Street", + "date_start": "WC2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13923, + 51.50025 + ] + }, + "properties": { + "openplaque:id": "9216", + "addr:full": "\"Birdcage Walk", + "date_start": "SW1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13815, + 51.50556 + ] + }, + "properties": { + "openplaque:id": "9217", + "addr:full": "\"Pickering Place", + "date_start": "St James’s" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17434, + 51.5563 + ] + }, + "properties": { + "openplaque:id": "9230", + "addr:full": "\"Penn Studio", + "date_start": "13a Rudall Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14853, + 51.55739 + ] + }, + "properties": { + "openplaque:id": "9231", + "addr:full": "\"Lissenden Mansions", + "date_start": "Lissenden Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14995, + 51.55726 + ] + }, + "properties": { + "openplaque:id": "9233", + "addr:full": "\"46–55 Lissenden Gardens", + "date_start": "NW5\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18082, + 51.56502 + ] + }, + "properties": { + "openplaque:id": "9234", + "addr:full": "\"Inverforth House", + "date_start": "North End Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17637, + 51.56267 + ] + }, + "properties": { + "openplaque:id": "9235", + "addr:full": "\"Vale of Health", + "date_start": "NW3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14658, + 51.53825 + ] + }, + "properties": { + "openplaque:id": "9236", + "addr:full": "\"8 Regent’s Park Terrace", + "date_start": "NW1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26758, + 51.45698 + ] + }, + "properties": { + "openplaque:id": "9239", + "addr:full": "\"Sheen Gate", + "date_start": "Richmond Park\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1948, + 51.55889 + ] + }, + "properties": { + "openplaque:id": "9241", + "addr:full": "\"21 Platts Lane", + "date_start": "Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17766, + 51.55291 + ] + }, + "properties": { + "openplaque:id": "9242", + "addr:full": "\"21 Arkwright Road", + "date_start": "Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19189, + 51.55876 + ] + }, + "properties": { + "openplaque:id": "9243", + "addr:full": "\"24 Ferncroft Avenue", + "date_start": "NW3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15772, + 51.55104 + ] + }, + "properties": { + "openplaque:id": "9244", + "addr:full": "\"60 Parkhill Road", + "date_start": "Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15853, + 51.54889 + ] + }, + "properties": { + "openplaque:id": "9245", + "addr:full": "\"11a Parkhill Road", + "date_start": "NW3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18292, + 51.5604 + ] + }, + "properties": { + "openplaque:id": "9246", + "addr:full": "\"Lower Lodge", + "date_start": "Branch Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20946, + 51.53764 + ] + }, + "properties": { + "openplaque:id": "9276", + "addr:full": "40 Brooksville Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12494, + 51.49747 + ] + }, + "properties": { + "openplaque:id": "9294", + "addr:full": "Victoria Tower Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12187, + 51.50941 + ] + }, + "properties": { + "openplaque:id": "9378", + "addr:full": "\"1–5 Adam Street", + "date_start": "Strand" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18423, + 51.56148 + ] + }, + "properties": { + "openplaque:id": "9380", + "addr:full": "\"Mansion Gardens", + "date_start": "West Heath Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01832, + 51.47466 + ] + }, + "properties": { + "openplaque:id": "9381", + "addr:full": "\"Langton Way", + "date_start": "Blackheath\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1999, + 51.55145 + ] + }, + "properties": { + "openplaque:id": "9382", + "addr:full": "\"Mill Lane", + "date_start": "West Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17859, + 51.55864 + ] + }, + "properties": { + "openplaque:id": "9383", + "addr:full": "\"Heath Street", + "date_start": "Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13784, + 51.55089 + ] + }, + "properties": { + "openplaque:id": "9384", + "addr:full": "\"Kennistoun House", + "date_start": "Leighton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17575, + 51.54682 + ] + }, + "properties": { + "openplaque:id": "9385", + "addr:full": "\"3 Fitzjohn’s Avenue", + "date_start": "Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14972, + 51.55754 + ] + }, + "properties": { + "openplaque:id": "9387", + "addr:full": "\"42–51 Clevedon Mansions", + "date_start": "Lissenden Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18525, + 51.54445 + ] + }, + "properties": { + "openplaque:id": "9388", + "addr:full": "\"43 Compayne Gardens", + "date_start": "South Hampstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18178, + 51.5582 + ] + }, + "properties": { + "openplaque:id": "9390", + "addr:full": "\"103 Frognal", + "date_start": "NW3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1497, + 51.55662 + ] + }, + "properties": { + "openplaque:id": "9393", + "addr:full": "\"25 Parliament Hill Mansions", + "date_start": "Lissenden Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17221, + 51.4925 + ] + }, + "properties": { + "openplaque:id": "94", + "addr:full": "\"7 Sydney Place", + "date_start": "South Kensington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12129, + 51.52 + ] + }, + "properties": { + "openplaque:id": "9423", + "addr:full": "\"44 Old Gloucester Street", + "date_start": "Bloomsbury" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12368, + 51.53184 + ] + }, + "properties": { + "openplaque:id": "9425", + "addr:full": "\"West Offices", + "date_start": "King’s Cross Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12599, + 51.52646 + ] + }, + "properties": { + "openplaque:id": "9426", + "addr:full": "\"Cartwright Gardens", + "date_start": "WC1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15147, + 51.54357 + ] + }, + "properties": { + "openplaque:id": "9445", + "addr:full": "\"100A", + "date_start": "Chalk Farm Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16686, + 51.49752 + ] + }, + "properties": { + "openplaque:id": "9482", + "addr:full": "\"Flat 1", + "date_start": "Ovington Court\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08304, + 51.4149 + ] + }, + "properties": { + "openplaque:id": "95", + "addr:full": "\"Queen's Hotel", + "date_start": "122 Church Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1395, + 51.51087 + ] + }, + "properties": { + "openplaque:id": "9529", + "addr:full": "\"23 Heddon Street", + "date_start": "just off Regent Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14018, + 51.49627 + ] + }, + "properties": { + "openplaque:id": "9552", + "addr:full": "\"near Westminster Cathedral", + "date_start": "Victoria\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13759, + 51.52733 + ] + }, + "properties": { + "openplaque:id": "9553", + "addr:full": "\"200 North Gower Street", + "date_start": "NW1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13477, + 51.53746 + ] + }, + "properties": { + "openplaque:id": "9554", + "addr:full": "\"8 Royal College Street", + "date_start": "NW1\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.04934, + 51.45647 + ] + }, + "properties": { + "openplaque:id": "9557", + "addr:full": "\"Well Hall Pleasaunce", + "date_start": "SE9\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.24486, + 51.50631 + ] + }, + "properties": { + "openplaque:id": "9558", + "addr:full": "\"1 Askew Road", + "date_start": "W12\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1696, + 51.48368 + ] + }, + "properties": { + "openplaque:id": "9560", + "addr:full": "\"10 Cheyne Row", + "date_start": "Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12465, + 51.57524 + ] + }, + "properties": { + "openplaque:id": "9561", + "addr:full": "\"10 Haslemere Road", + "date_start": "N8\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22314, + 51.48533 + ] + }, + "properties": { + "openplaque:id": "9563", + "addr:full": "\"115 Rannoch Road", + "date_start": "W6\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41952, + 51.51631 + ] + }, + "properties": { + "openplaque:id": "9564", + "addr:full": "\"Fountain House Hotel", + "date_start": "116–118 Church Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17684, + 51.48128 + ] + }, + "properties": { + "openplaque:id": "9565", + "addr:full": "\"119 Cheyne Walk", + "date_start": "Chelsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11804, + 51.5845 + ] + }, + "properties": { + "openplaque:id": "9566", + "addr:full": "\"118 Hillfield Avenue", + "date_start": "Crouch End" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15252, + 51.44104 + ] + }, + "properties": { + "openplaque:id": "9572", + "addr:full": "\"123 Bexley High Street", + "date_start": "Bexley\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.38142, + 51.59411 + ] + }, + "properties": { + "openplaque:id": "9575", + "addr:full": "\"13 High Street", + "date_start": "Pinner\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12269, + 51.57959 + ] + }, + "properties": { + "openplaque:id": "9576", + "addr:full": "\"13 Weston Park", + "date_start": "Crouch End" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08237, + 51.37512 + ] + }, + "properties": { + "openplaque:id": "9577", + "addr:full": "\"137–139 Addiscombe Road", + "date_start": "Addiscombe\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.04352, + 51.39916 + ] + }, + "properties": { + "openplaque:id": "9578", + "addr:full": "\"138 Croydon Road", + "date_start": "Elmers End\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1274, + 51.34372 + ] + }, + "properties": { + "openplaque:id": "9579", + "addr:full": "\"14 The Bridle Road", + "date_start": "Purley\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1076, + 51.52328 + ] + }, + "properties": { + "openplaque:id": "9580", + "addr:full": "14–16 Farringdon Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01949, + 51.52828 + ] + }, + "properties": { + "openplaque:id": "9582", + "addr:full": "\"149–151 Bow Road", + "date_start": "Bow" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15717, + 51.4962 + ] + }, + "properties": { + "openplaque:id": "96", + "addr:full": "44 Cadogan Place", + "date_start": "1961" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.192, + 51.50573 + ] + }, + "properties": { + "openplaque:id": "9621", + "addr:full": "\"16 Palace Gardens Terrace", + "date_start": "Kensington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19761, + 51.50164 + ] + }, + "properties": { + "openplaque:id": "9622", + "addr:full": "\"16 Phillimore Place", + "date_start": "Kensington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01306, + 51.58402 + ] + }, + "properties": { + "openplaque:id": "9629", + "addr:full": "\"Vestry House Museum", + "date_start": "Vestry Road E17\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02068, + 51.59125 + ] + }, + "properties": { + "openplaque:id": "9631", + "addr:full": "\"William Morris Gallery", + "date_start": "Forest Road E17\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02116, + 51.60051 + ] + }, + "properties": { + "openplaque:id": "9632", + "addr:full": "\"41/43 Billet Road", + "date_start": "Walthamstow E17\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01882, + 51.60668 + ] + }, + "properties": { + "openplaque:id": "9634", + "addr:full": "\"Woodford County High School", + "date_start": "High Road Woodford\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01339, + 51.58303 + ] + }, + "properties": { + "openplaque:id": "9635", + "addr:full": "Former Vestry Road Sorting Office E17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0143, + 51.57044 + ] + }, + "properties": { + "openplaque:id": "9637", + "addr:full": "742 High Road Leytonstone E11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00374, + 51.60994 + ] + }, + "properties": { + "openplaque:id": "9638", + "addr:full": "\"Quest Factory", + "date_start": "Jubilee Avenue Highams Park E4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01254, + 51.5691 + ] + }, + "properties": { + "openplaque:id": "9639", + "addr:full": "694a-698a High Road Leytonstone E11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.00372, + 51.55492 + ] + }, + "properties": { + "openplaque:id": "9640", + "addr:full": "\"Former Langthorne Hospital", + "date_start": "Thorne Close E11\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01532, + 51.57039 + ] + }, + "properties": { + "openplaque:id": "9642", + "addr:full": "Clyde Place Leyton E10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00731, + 51.5588 + ] + }, + "properties": { + "openplaque:id": "9646", + "addr:full": "\"Leyton Municipal Offices", + "date_start": "High Road E10\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01404, + 51.56697 + ] + }, + "properties": { + "openplaque:id": "9647", + "addr:full": "\"Leyton Youth Centre (building)", + "date_start": "High Road E10\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01035, + 51.56688 + ] + }, + "properties": { + "openplaque:id": "9648", + "addr:full": "\"Leyton Youth Centre sportsground", + "date_start": "High Road E10\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01245, + 51.5842 + ] + }, + "properties": { + "openplaque:id": "9650", + "addr:full": "\"National Spiritualist Church", + "date_start": "Vestry Road E17\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00048, + 51.60745 + ] + }, + "properties": { + "openplaque:id": "9659", + "addr:full": "\"Highams Park signal box", + "date_start": "Hale End Road E4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00909, + 51.64193 + ] + }, + "properties": { + "openplaque:id": "9665", + "addr:full": "\"Hawkwood Lodge", + "date_start": "Yardley Lane E4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02918, + 51.58268 + ] + }, + "properties": { + "openplaque:id": "9668", + "addr:full": "\"The Cock PH", + "date_start": "High Street E17\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12647, + 51.5225 + ] + }, + "properties": { + "openplaque:id": "967", + "addr:full": "13 Russell Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.00347, + 51.55819 + ] + }, + "properties": { + "openplaque:id": "9679", + "addr:full": "\"31 Corn Way", + "date_start": "Leytonstone E11\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15874, + 51.63532 + ] + }, + "properties": { + "openplaque:id": "9680", + "addr:full": "\"16 Burlington Rise", + "date_start": "East Barnet\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11814, + 51.54716 + ] + }, + "properties": { + "openplaque:id": "9682", + "addr:full": "\"Ice House Flats", + "date_start": "Caledonian Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15035, + 51.4982 + ] + }, + "properties": { + "openplaque:id": "97", + "addr:full": "9 Upper Belgrave Street", + "date_start": "1994" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22748, + 51.46306 + ] + }, + "properties": { + "openplaque:id": "9701", + "addr:full": "\"307 Upper Richmond Road", + "date_start": "Putney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22664, + 51.46535 + ] + }, + "properties": { + "openplaque:id": "9702", + "addr:full": "\"32 Landford Rd", + "date_start": "SW15\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21258, + 51.4608 + ] + }, + "properties": { + "openplaque:id": "9703", + "addr:full": "\"Putney School of Art", + "date_start": "Oxford Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2328, + 51.46397 + ] + }, + "properties": { + "openplaque:id": "9704", + "addr:full": "309 Upper Richmond Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02498, + 51.45832 + ] + }, + "properties": { + "openplaque:id": "9705", + "addr:full": "\"21 Eastern Road", + "date_start": "SE4\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17452, + 51.48806 + ] + }, + "properties": { + "openplaque:id": "9711", + "addr:full": "\"133 Old Church Street", + "date_start": "Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11278, + 51.40886 + ] + }, + "properties": { + "openplaque:id": "9712", + "addr:full": "\"16 Buckingham Gardens", + "date_start": "Norbury\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21997, + 51.49405 + ] + }, + "properties": { + "openplaque:id": "9714", + "addr:full": "\"16 Rowan Road", + "date_start": "W6\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05433, + 51.47277 + ] + }, + "properties": { + "openplaque:id": "9720", + "addr:full": "\"164 Queens Road", + "date_start": "Peckham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11353, + 51.49619 + ] + }, + "properties": { + "openplaque:id": "9721", + "addr:full": "\"160 Lambeth Road", + "date_start": "Lambeth" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1006, + 51.55543 + ] + }, + "properties": { + "openplaque:id": "9722", + "addr:full": "\"17 Aubert Park", + "date_start": "Highbury\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08889, + 51.4947 + ] + }, + "properties": { + "openplaque:id": "9723", + "addr:full": "\"17 Bartholomew Street", + "date_start": "Southwark" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02083, + 51.46752 + ] + }, + "properties": { + "openplaque:id": "9724", + "addr:full": "\"17 Somerset Gardens", + "date_start": "Lewisham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1969, + 51.5005 + ] + }, + "properties": { + "openplaque:id": "9727", + "addr:full": "\"18 Stafford Terrace", + "date_start": "Kensington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19925, + 51.58649 + ] + }, + "properties": { + "openplaque:id": "9728", + "addr:full": "\"182 Main Road", + "date_start": "Gidea Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27182, + 51.61724 + ] + }, + "properties": { + "openplaque:id": "9730", + "addr:full": "\"19 Heather Walk", + "date_start": "Edgware\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23539, + 51.57715 + ] + }, + "properties": { + "openplaque:id": "9731", + "addr:full": "\"19 Park Road", + "date_start": "Barnet\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10622, + 51.49505 + ] + }, + "properties": { + "openplaque:id": "9732", + "addr:full": "\"19 West Square", + "date_start": "Kennington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.04211, + 51.51128 + ] + }, + "properties": { + "openplaque:id": "9734", + "addr:full": "\"2 Butcher Row", + "date_start": "Limehouse" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.12902, + 51.55453 + ] + }, + "properties": { + "openplaque:id": "9735", + "addr:full": "\"20 Bushgrove Road", + "date_start": "Dagenham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20724, + 51.48801 + ] + }, + "properties": { + "openplaque:id": "9737", + "addr:full": "\"22 Perham Road", + "date_start": "W14\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30245, + 51.51447 + ] + }, + "properties": { + "openplaque:id": "9765", + "addr:full": "\"42A the Broadway", + "date_start": "Ealing\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01634, + 51.5288 + ] + }, + "properties": { + "openplaque:id": "9799", + "addr:full": "\"215–217 Bow Road", + "date_start": "Bow" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16478, + 51.5156 + ] + }, + "properties": { + "openplaque:id": "98", + "addr:full": "\"Park West", + "date_start": "Edgware Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.12733, + 51.56319 + ] + }, + "properties": { + "openplaque:id": "9800", + "addr:full": "\"22–28 Chitty’s Lane", + "date_start": "Dagenham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16646, + 51.48383 + ] + }, + "properties": { + "openplaque:id": "9801", + "addr:full": "\"23 Cheyne Walk", + "date_start": "Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06205, + 51.51538 + ] + }, + "properties": { + "openplaque:id": "9802", + "addr:full": "\"23 New Road", + "date_start": "Stepney" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10565, + 51.3659 + ] + }, + "properties": { + "openplaque:id": "9804", + "addr:full": "\"23 The Waldrons", + "date_start": "Croydon\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10134, + 51.53344 + ] + }, + "properties": { + "openplaque:id": "9808", + "addr:full": "\"25 Noel Road", + "date_start": "Islington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.24216, + 51.49033 + ] + }, + "properties": { + "openplaque:id": "9809", + "addr:full": "\"25 Upper Mall", + "date_start": "W6\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2038, + 51.4981 + ] + }, + "properties": { + "openplaque:id": "982", + "addr:full": "\"20 Holland Park Road", + "date_start": "W14\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20859, + 51.4938 + ] + }, + "properties": { + "openplaque:id": "983", + "addr:full": "\"Samuel Richardson House", + "date_start": "North End Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1891, + 51.47928 + ] + }, + "properties": { + "openplaque:id": "9886", + "addr:full": "\"27 Rumbold Road", + "date_start": "Fulham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17455, + 51.48574 + ] + }, + "properties": { + "openplaque:id": "9887", + "addr:full": "\"28 Mallord Street", + "date_start": "Chelsea" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19269, + 51.58075 + ] + }, + "properties": { + "openplaque:id": "9888", + "addr:full": "\"28 Willifield Way", + "date_start": "NW11\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15224, + 51.37124 + ] + }, + "properties": { + "openplaque:id": "9889", + "addr:full": "\"284 London Road", + "date_start": "Wallington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11318, + 51.5562 + ] + }, + "properties": { + "openplaque:id": "9891", + "addr:full": "\"3 Caedmon Road", + "date_start": "Holloway\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.24948, + 51.4881 + ] + }, + "properties": { + "openplaque:id": "99", + "addr:full": "\"Mawson Arms PH (formerly Mawson's Buildings)", + "date_start": "110 Chiswick Lane South" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09401, + 51.43558 + ] + }, + "properties": { + "openplaque:id": "9904", + "addr:full": "\"32 Park Hall Road", + "date_start": "West Dulwich" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19583, + 51.5055 + ] + }, + "properties": { + "openplaque:id": "9905", + "addr:full": "\"32 Sheffield Terrace", + "date_start": "Kensington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10755, + 51.47906 + ] + }, + "properties": { + "openplaque:id": "9907", + "addr:full": "\"34 Foxley Road", + "date_start": "Stockwell" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22776, + 51.42478 + ] + }, + "properties": { + "openplaque:id": "9912", + "addr:full": "\"Westside House", + "date_start": "West Side Common\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.03802, + 51.53187 + ] + }, + "properties": { + "openplaque:id": "9913", + "addr:full": "\"West Ham United Football Stadium", + "date_start": "Green Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22795, + 51.42509 + ] + }, + "properties": { + "openplaque:id": "9916", + "addr:full": "\"The Keir", + "date_start": "West Side Common" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14221, + 51.59108 + ] + }, + "properties": { + "openplaque:id": "9918", + "addr:full": "\"Muswell Hill Roundabout", + "date_start": "N10\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34584, + 51.44588 + ] + }, + "properties": { + "openplaque:id": "9919", + "addr:full": "\"Mereway Road", + "date_start": "Twickenham\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07915, + 51.41992 + ] + }, + "properties": { + "openplaque:id": "9921", + "addr:full": "\"77a Westow Hill", + "date_start": "Crystal Palace\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2864, + 51.48349 + ] + }, + "properties": { + "openplaque:id": "9922", + "addr:full": "\"Kew Green and Gloucester Road", + "date_start": "Kew\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23558, + 51.46618 + ] + }, + "properties": { + "openplaque:id": "9923", + "addr:full": "\"3 St Mary’s Grove", + "date_start": "Barnes" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25296, + 51.61302 + ] + }, + "properties": { + "openplaque:id": "9924", + "addr:full": "\"3 Sunnydale Gardens", + "date_start": "Mill Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20503, + 51.47351 + ] + }, + "properties": { + "openplaque:id": "9925", + "addr:full": "\"44 Munster Road", + "date_start": "SW6\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23905, + 51.50672 + ] + }, + "properties": { + "openplaque:id": "9926", + "addr:full": "\"446 Uxbridge Road", + "date_start": "W12\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03404, + 51.53169 + ] + }, + "properties": { + "openplaque:id": "9928", + "addr:full": "\"45 Norman Grove", + "date_start": "E3\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22054, + 51.55477 + ] + }, + "properties": { + "openplaque:id": "9929", + "addr:full": "\"5 Blackstone Road", + "date_start": "NW2\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12048, + 51.51578 + ] + }, + "properties": { + "openplaque:id": "993", + "addr:full": "\"61-65 Great Queen Street", + "date_start": "WC2B 5DA\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33047, + 51.61382 + ] + }, + "properties": { + "openplaque:id": "9931", + "addr:full": "\"513 Uxbridge Road", + "date_start": "Hatch End\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33982, + 51.51228 + ] + }, + "properties": { + "openplaque:id": "9963", + "addr:full": "\"8 Campbell Road", + "date_start": "W7\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19726, + 51.56046 + ] + }, + "properties": { + "openplaque:id": "9964", + "addr:full": "\"8 Moreland Court", + "date_start": "Finchley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09021, + 51.50293 + ] + }, + "properties": { + "openplaque:id": "9965", + "addr:full": "\"9 Newcomen Street", + "date_start": "Southwark" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10282, + 51.5028 + ] + }, + "properties": { + "openplaque:id": "9968", + "addr:full": "\"Applegarth House", + "date_start": "Nelson Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.38723, + 51.60228 + ] + }, + "properties": { + "openplaque:id": "9980", + "addr:full": "\"Waxwell Lane", + "date_start": "Pinner at junction with Uxbridge Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28874, + 51.60806 + ] + }, + "properties": { + "openplaque:id": "9982", + "addr:full": "\"Whitchurch Lane by St Laurence Close", + "date_start": "Harrow\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33664, + 51.57299 + ] + }, + "properties": { + "openplaque:id": "9983", + "addr:full": "\"High Street", + "date_start": "Harrow on the Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37966, + 51.59464 + ] + }, + "properties": { + "openplaque:id": "9984", + "addr:full": "\"64 High Street", + "date_start": "Pinner\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39094, + 51.60075 + ] + }, + "properties": { + "openplaque:id": "9985", + "addr:full": "\"Montesole Playing Fields", + "date_start": "Uxbridge Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36401, + 51.61401 + ] + }, + "properties": { + "openplaque:id": "9986", + "addr:full": "\"Saddlers Mead Recreation Ground", + "date_start": "off Clonard Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33949, + 51.6045 + ] + }, + "properties": { + "openplaque:id": "9989", + "addr:full": "\"Weald Stone Public House", + "date_start": "High Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3332, + 51.59145 + ] + }, + "properties": { + "openplaque:id": "9990", + "addr:full": "\"The Bridge", + "date_start": "Wealdstone\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33968, + 51.57035 + ] + }, + "properties": { + "openplaque:id": "9993", + "addr:full": "\"90 High Street", + "date_start": "Harrow on the Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3332, + 51.59145 + ] + }, + "properties": { + "openplaque:id": "9999", + "addr:full": "\"The Bridge", + "date_start": "Wealdstone\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.32441, + 54.99375 + ] + }, + "properties": { + "openplaque:id": "1747", + "addr:full": "Bishop Street", + "date_start": "1995" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.32444, + 54.9939 + ] + }, + "properties": { + "openplaque:id": "2015", + "addr:full": "\"Verbal Arts Centre", + "date_start": "Bishop Street Within\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.31522, + 55.01014 + ] + }, + "properties": { + "openplaque:id": "40652" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.31187, + 54.99796 + ] + }, + "properties": { + "openplaque:id": "43644", + "addr:full": "Ebrington Square", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.93579, + 54.59373 + ] + }, + "properties": { + "openplaque:id": "48784", + "addr:full": "outside Great Victoria Street Baptist Church" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14364, + 51.50806 + ] + }, + "properties": { + "openplaque:id": "49152" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.32027, + 54.99668 + ] + }, + "properties": { + "openplaque:id": "7010", + "addr:full": "\"Bank House", + "date_start": "on the corner of Shipquay Street and Bank Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.32887, + 54.99041 + ] + }, + "properties": { + "openplaque:id": "7020", + "addr:full": "Bishop Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.32294, + 55.00408 + ] + }, + "properties": { + "openplaque:id": "7104", + "addr:full": "\"Foyle Arts Centre", + "date_start": "Lawrence Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.32477, + 55.00589 + ] + }, + "properties": { + "openplaque:id": "7148", + "addr:full": "Magee College", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.3205, + 54.99673 + ] + }, + "properties": { + "openplaque:id": "7182", + "addr:full": "Shipquay Street", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.32363, + 54.99448 + ] + }, + "properties": { + "openplaque:id": "7954", + "addr:full": "30 Bishop Street", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3946, + 52.28277 + ] + }, + "properties": { + "openplaque:id": "31603", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71749, + 52.07787 + ] + }, + "properties": { + "openplaque:id": "43989", + "addr:full": "\"Hanwell House", + "date_start": "Hall Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72083, + 52.08712 + ] + }, + "properties": { + "openplaque:id": "43990", + "addr:full": "8 Church Walk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.86898, + 53.18132 + ] + }, + "properties": { + "openplaque:id": "39870", + "addr:full": "Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.60574, + 53.31557 + ] + }, + "properties": { + "openplaque:id": "43756", + "addr:full": "\"https://www.google.com/maps/search/", + "date_start": "+Longshaw" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.28574, + 57.71594 + ] + }, + "properties": { + "openplaque:id": "12971", + "addr:full": "1 Gregory Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.19853, + 52.77328 + ] + }, + "properties": { + "openplaque:id": "40998", + "addr:full": "Freehold St", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.20269, + 52.76955 + ] + }, + "properties": { + "openplaque:id": "41682", + "addr:full": "28 Leicester Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.33191, + 55.05541 + ] + }, + "properties": { + "openplaque:id": "7122", + "addr:full": "Lissanoure Castle", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0513, + 51.6507 + ] + }, + "properties": { + "openplaque:id": "1914", + "addr:full": "\"Forest Villa", + "date_start": "7 Staples Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0497, + 51.6426 + ] + }, + "properties": { + "openplaque:id": "1915", + "addr:full": "107 High Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.06742, + 51.6594 + ] + }, + "properties": { + "openplaque:id": "1916", + "addr:full": "96 Goldings Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05058, + 51.6425 + ] + }, + "properties": { + "openplaque:id": "1920", + "addr:full": "8 Lower Park Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08741, + 51.64894 + ] + }, + "properties": { + "openplaque:id": "1923", + "addr:full": "164 Torrington Drive", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.04904, + 51.642 + ] + }, + "properties": { + "openplaque:id": "1926", + "addr:full": "97 High Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0515, + 51.6489 + ] + }, + "properties": { + "openplaque:id": "1927", + "addr:full": "116 Forest Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.06929, + 51.6439 + ] + }, + "properties": { + "openplaque:id": "1928", + "addr:full": "47 Poundfield Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05688, + 51.6489 + ] + }, + "properties": { + "openplaque:id": "1932", + "addr:full": "311 High Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.06361, + 51.6536 + ] + }, + "properties": { + "openplaque:id": "1933", + "addr:full": "77 Church Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.04702, + 51.6466 + ] + }, + "properties": { + "openplaque:id": "1934", + "addr:full": "49 Forest View Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05744, + 51.6472 + ] + }, + "properties": { + "openplaque:id": "1935", + "addr:full": "22 Brooklyn Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.06341, + 51.65701 + ] + }, + "properties": { + "openplaque:id": "40276", + "addr:full": "45 Millsmead Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05417, + 51.64552 + ] + }, + "properties": { + "openplaque:id": "53205", + "addr:full": "\"The Loughton Club", + "date_start": "Station Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07827, + 51.64982 + ] + }, + "properties": { + "openplaque:id": "54058", + "addr:full": "Rectory Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.06392, + 51.65995 + ] + }, + "properties": { + "openplaque:id": "8811", + "addr:full": "\"Woodcroft School", + "date_start": "Whitakers Way\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01022, + 53.36581 + ] + }, + "properties": { + "openplaque:id": "10225", + "addr:full": "Westgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0073, + 53.36641 + ] + }, + "properties": { + "openplaque:id": "10241", + "addr:full": "Bridge Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00707, + 53.36543 + ] + }, + "properties": { + "openplaque:id": "2262", + "addr:full": "Gospelgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00924, + 53.36541 + ] + }, + "properties": { + "openplaque:id": "32942", + "addr:full": "Schoolhouse Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00426, + 53.36676 + ] + }, + "properties": { + "openplaque:id": "32944", + "addr:full": "19 Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00144, + 53.36735 + ] + }, + "properties": { + "openplaque:id": "32946", + "addr:full": "Jackson's Butchers 118 Eastgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00139, + 53.36762 + ] + }, + "properties": { + "openplaque:id": "32947", + "addr:full": "Milanos 105A Eastgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00219, + 53.36735 + ] + }, + "properties": { + "openplaque:id": "32948", + "addr:full": "106 Eastgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0223, + 50.90455 + ] + }, + "properties": { + "openplaque:id": "42873", + "addr:full": "\"Tesco Express", + "date_start": "Lovedean Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.00434, + 53.01151 + ] + }, + "properties": { + "openplaque:id": "54957", + "addr:full": "\"Old Ship Inn", + "date_start": "Main Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.74302, + 52.46457 + ] + }, + "properties": { + "openplaque:id": "12531", + "addr:full": "21 Kirkley Cliff Road", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75033, + 52.47427 + ] + }, + "properties": { + "openplaque:id": "43573", + "addr:full": "Denmark Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71891, + 52.36782 + ] + }, + "properties": { + "openplaque:id": "27959", + "addr:full": "King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71888, + 52.36783 + ] + }, + "properties": { + "openplaque:id": "27960", + "addr:full": "20 King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71775, + 52.36832 + ] + }, + "properties": { + "openplaque:id": "30701", + "addr:full": "1-6 The Bullring" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71792, + 52.36598 + ] + }, + "properties": { + "openplaque:id": "30702", + "addr:full": "29 Broad Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71845, + 52.36718 + ] + }, + "properties": { + "openplaque:id": "30703", + "addr:full": "19 Broad Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71916, + 52.36773 + ] + }, + "properties": { + "openplaque:id": "39376", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71826, + 52.36876 + ] + }, + "properties": { + "openplaque:id": "41065" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71721, + 52.36651 + ] + }, + "properties": { + "openplaque:id": "41350", + "addr:full": "4 Brand Lane", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7188, + 52.36697 + ] + }, + "properties": { + "openplaque:id": "53211", + "addr:full": "54 Broad Street", + "date_start": "2020" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7201, + 52.3676 + ] + }, + "properties": { + "openplaque:id": "5538", + "addr:full": "Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.32642, + 54.46015 + ] + }, + "properties": { + "openplaque:id": "10694", + "addr:full": "Robert Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.33554, + 54.46324 + ] + }, + "properties": { + "openplaque:id": "10904", + "addr:full": "21 Church Place", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.3319, + 54.4622 + ] + }, + "properties": { + "openplaque:id": "7036", + "addr:full": "30-33 Market Street", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41697, + 51.87938 + ] + }, + "properties": { + "openplaque:id": "42630", + "addr:full": "\"opposite the Arndale Centre", + "date_start": "George Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.19593, + 52.46209 + ] + }, + "properties": { + "openplaque:id": "50184", + "addr:full": "\"Ladywood Works", + "date_start": "Leicester Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.93195, + 50.72511 + ] + }, + "properties": { + "openplaque:id": "10984", + "addr:full": "Long Entry" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.93221, + 50.72517 + ] + }, + "properties": { + "openplaque:id": "10985", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.93478, + 50.72483 + ] + }, + "properties": { + "openplaque:id": "11791", + "addr:full": "Broad Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.93401, + 50.72422 + ] + }, + "properties": { + "openplaque:id": "30961", + "addr:full": "\"The Alcove", + "date_start": "Marine Parade\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.93501, + 50.72576 + ] + }, + "properties": { + "openplaque:id": "30971", + "addr:full": "\"Garden across the river", + "date_start": "Broad Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.93655, + 50.72516 + ] + }, + "properties": { + "openplaque:id": "40839", + "addr:full": "Regent Cinema", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.93343, + 50.7244 + ] + }, + "properties": { + "openplaque:id": "5522", + "addr:full": "Marine Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.93239, + 0 + ] + }, + "properties": { + "openplaque:id": "8557", + "addr:full": "Lyme Regis Museum" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54396, + 50.75786 + ] + }, + "properties": { + "openplaque:id": "54480", + "addr:full": "70 High St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.81942, + 51.22715 + ] + }, + "properties": { + "openplaque:id": "12586", + "addr:full": "somewhere" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.88739, + 51.20172 + ] + }, + "properties": { + "openplaque:id": "54210" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01982, + 0 + ] + }, + "properties": { + "openplaque:id": "1675", + "addr:full": "Heyhouses School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96434, + 53.7391 + ] + }, + "properties": { + "openplaque:id": "1679", + "addr:full": "Station Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98552, + 53.75009 + ] + }, + "properties": { + "openplaque:id": "2004", + "addr:full": "\"The Bumbles", + "date_start": "Islay Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96457, + 53.73638 + ] + }, + "properties": { + "openplaque:id": "50530", + "addr:full": "\"The Taps", + "date_start": "Henry Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.03495, + 53.23998 + ] + }, + "properties": { + "openplaque:id": "41289" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13115, + 53.25426 + ] + }, + "properties": { + "openplaque:id": "42247", + "addr:full": "\"Old Labour Exchange", + "date_start": "Peak House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1256, + 53.25937 + ] + }, + "properties": { + "openplaque:id": "42249", + "addr:full": "\"Mash", + "date_start": "Back Wallgate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13038, + 53.25943 + ] + }, + "properties": { + "openplaque:id": "42251", + "addr:full": "\"Christ Church Churchyard", + "date_start": "Great King Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.84816, + 52.5911 + ] + }, + "properties": { + "openplaque:id": "42761" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.85482, + 52.59513 + ] + }, + "properties": { + "openplaque:id": "54468" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.45277, + 52.62994 + ] + }, + "properties": { + "openplaque:id": "12048", + "addr:full": "\"All Nations Inn", + "date_start": "Coalport Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.45197, + 52.64305 + ] + }, + "properties": { + "openplaque:id": "12049", + "addr:full": "\"Madeley Court Hotel", + "date_start": "Castlefields Way\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.47266, + 51.66765 + ] + }, + "properties": { + "openplaque:id": "42689", + "addr:full": "33 Marshfield Road", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.26119, + 54.46659 + ] + }, + "properties": { + "openplaque:id": "7132", + "addr:full": "\"Old School House", + "date_start": "corner of New Forge Road/Trinity Park\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.94316, + 53.51078 + ] + }, + "properties": { + "openplaque:id": "12969", + "addr:full": "\"St Andrews Parish Church Vicarage", + "date_start": "Damfield Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.71886, + 51.52026 + ] + }, + "properties": { + "openplaque:id": "11676", + "addr:full": "\"Maidenhead Football Ground", + "date_start": "York Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.70119, + 51.52108 + ] + }, + "properties": { + "openplaque:id": "12452", + "addr:full": "Railway viaduct over River Thames" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68396, + 51.5034 + ] + }, + "properties": { + "openplaque:id": "1809", + "addr:full": "\"Long White Cloud", + "date_start": "Monkey Island Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5233, + 51.27374 + ] + }, + "properties": { + "openplaque:id": "11990", + "addr:full": "Gabriels Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.52255, + 51.27522 + ] + }, + "properties": { + "openplaque:id": "30186", + "addr:full": "Week Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.52109, + 51.2746 + ] + }, + "properties": { + "openplaque:id": "7253", + "addr:full": "31 Earl Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67918, + 51.7313 + ] + }, + "properties": { + "openplaque:id": "3512", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.70282, + 51.71801 + ] + }, + "properties": { + "openplaque:id": "42796" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67809, + 51.73148 + ] + }, + "properties": { + "openplaque:id": "54180", + "addr:full": "57-59 High Street", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69134, + 51.74099 + ] + }, + "properties": { + "openplaque:id": "8258", + "addr:full": "Goldhanger Road and Colchester Road Corner" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10181, + 51.58629 + ] + }, + "properties": { + "openplaque:id": "8253", + "addr:full": "\"Hobbes Cottage", + "date_start": "St Mary's Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.19633, + 53.42344 + ] + }, + "properties": { + "openplaque:id": "49506", + "addr:full": "\"The Queens Hotel", + "date_start": "10 Tickhill Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2061, + 53.42348 + ] + }, + "properties": { + "openplaque:id": "49507", + "addr:full": "Maltby Academy" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3293, + 52.11 + ] + }, + "properties": { + "openplaque:id": "1731", + "addr:full": "\"Malvern House", + "date_start": "Abbey Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.32524, + 52.10932 + ] + }, + "properties": { + "openplaque:id": "1732", + "addr:full": "\"Spar Cottage", + "date_start": "Priory Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.32997, + 52.11096 + ] + }, + "properties": { + "openplaque:id": "30146", + "addr:full": "\"Lloyds Bank", + "date_start": "Belle Vue Terrace\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3299, + 52.11324 + ] + }, + "properties": { + "openplaque:id": "30149", + "addr:full": "28 Worcester Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.32835, + 52.10917 + ] + }, + "properties": { + "openplaque:id": "30150", + "addr:full": "\"Park View", + "date_start": "Abbey Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3283, + 52.1072 + ] + }, + "properties": { + "openplaque:id": "3704", + "addr:full": "Abbey Road", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33013, + 52.112 + ] + }, + "properties": { + "openplaque:id": "7403", + "addr:full": "\"The Unicorn Inn", + "date_start": "Worcester Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.32709, + 52.11726 + ] + }, + "properties": { + "openplaque:id": "7427", + "addr:full": "\"Green Bank House", + "date_start": "Bank Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09608, + 53.35947 + ] + }, + "properties": { + "openplaque:id": "11872", + "addr:full": "Guy Gibson Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23502, + 53.46642 + ] + }, + "properties": { + "openplaque:id": "10886", + "addr:full": "\"Rutherford Building", + "date_start": "Bridgeford Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23339, + 53.46447 + ] + }, + "properties": { + "openplaque:id": "11664", + "addr:full": "Manchester University", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24486, + 53.47752 + ] + }, + "properties": { + "openplaque:id": "1274", + "addr:full": "\"Midland Hotel", + "date_start": "Peter Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25592, + 53.47697 + ] + }, + "properties": { + "openplaque:id": "13060", + "addr:full": "\"Museum Of Science & Industry", + "date_start": "Liverpool Rd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23073, + 53.46553 + ] + }, + "properties": { + "openplaque:id": "13090", + "addr:full": "Dover Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2359, + 53.46541 + ] + }, + "properties": { + "openplaque:id": "1485", + "addr:full": "\"University of Manchester", + "date_start": "Oxford Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09771, + 53.4878 + ] + }, + "properties": { + "openplaque:id": "1654", + "addr:full": "\"40 Oldham Rd", + "date_start": "Ashton-under-Lyne\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23421, + 53.46587 + ] + }, + "properties": { + "openplaque:id": "1660", + "addr:full": "The University of Manchester" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24461, + 53.48593 + ] + }, + "properties": { + "openplaque:id": "28001", + "addr:full": "Long Millgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25348, + 53.4819 + ] + }, + "properties": { + "openplaque:id": "30297", + "addr:full": "\"Mark Addy", + "date_start": "just south of the Albert Bridge along the River Irwell\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2536, + 53.47646 + ] + }, + "properties": { + "openplaque:id": "30299", + "addr:full": "\"The Station Building", + "date_start": "Museum of Science and Industry" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25376, + 53.47565 + ] + }, + "properties": { + "openplaque:id": "30302", + "addr:full": "\"Roman Fort (remains)", + "date_start": "Castlefield\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33572, + 53.51688 + ] + }, + "properties": { + "openplaque:id": "30411", + "addr:full": "\"117 Station Road", + "date_start": "Swinton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.38703, + 53.47079 + ] + }, + "properties": { + "openplaque:id": "30424", + "addr:full": "\"Liverpool Road", + "date_start": "Barton" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24345, + 53.4835 + ] + }, + "properties": { + "openplaque:id": "30676", + "addr:full": "Corporation Street", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.292, + 53.47318 + ] + }, + "properties": { + "openplaque:id": "30712", + "addr:full": "The Quays", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.29194, + 53.4465 + ] + }, + "properties": { + "openplaque:id": "30783", + "addr:full": "\"Edge Lane", + "date_start": "Longford Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.34419, + 53.48738 + ] + }, + "properties": { + "openplaque:id": "31636", + "addr:full": "\"25 Ellesmere Avenue", + "date_start": "Monton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24991, + 53.48126 + ] + }, + "properties": { + "openplaque:id": "40052", + "addr:full": "55 Bridge Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22858, + 53.4096 + ] + }, + "properties": { + "openplaque:id": "40991", + "addr:full": "\"12 Kingston Road", + "date_start": "Didsbury\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2368, + 53.48151 + ] + }, + "properties": { + "openplaque:id": "41026", + "addr:full": "Piccadilly" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28266, + 53.45128 + ] + }, + "properties": { + "openplaque:id": "44739", + "addr:full": "\"1 Bedford Street", + "date_start": "opposite St Teresa’s School in Firswood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24533, + 53.47586 + ] + }, + "properties": { + "openplaque:id": "49144", + "addr:full": "Barbirolli Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.26657, + 53.46414 + ] + }, + "properties": { + "openplaque:id": "49405", + "addr:full": "524 Stretford Road", + "date_start": "1991" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.26683, + 53.464 + ] + }, + "properties": { + "openplaque:id": "51371", + "addr:full": "\"530 Stretford Road", + "date_start": "Old Trafford\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23937, + 53.47698 + ] + }, + "properties": { + "openplaque:id": "52963", + "addr:full": "Major Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.18843, + 53.4846 + ] + }, + "properties": { + "openplaque:id": "5508", + "addr:full": "Bank Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25446, + 53.47887 + ] + }, + "properties": { + "openplaque:id": "5976", + "addr:full": "Granada Studios", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25445, + 53.47888 + ] + }, + "properties": { + "openplaque:id": "5978", + "addr:full": "Granada Studios", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25444, + 53.47889 + ] + }, + "properties": { + "openplaque:id": "5980", + "addr:full": "Granada Studios", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25447, + 53.47887 + ] + }, + "properties": { + "openplaque:id": "5982", + "addr:full": "Granada Studios", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24507, + 53.48291 + ] + }, + "properties": { + "openplaque:id": "6250", + "addr:full": "Royal Exchange" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24548, + 53.4821 + ] + }, + "properties": { + "openplaque:id": "6974", + "addr:full": "Mansfield Chambers" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24233, + 53.47643 + ] + }, + "properties": { + "openplaque:id": "6982", + "addr:full": "Portland Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24427, + 53.48175 + ] + }, + "properties": { + "openplaque:id": "721", + "addr:full": "\"Chapel Walks", + "date_start": "Cross Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25162, + 53.48072 + ] + }, + "properties": { + "openplaque:id": "724", + "addr:full": "Crown Square", + "date_start": "1972" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23765, + 53.46997 + ] + }, + "properties": { + "openplaque:id": "725", + "addr:full": "\"Grosvenor Street", + "date_start": "All Saints\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.20554, + 53.4609 + ] + }, + "properties": { + "openplaque:id": "726", + "addr:full": "\"5 Kingfisher Close", + "date_start": "Stockport Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22211, + 53.45042 + ] + }, + "properties": { + "openplaque:id": "728", + "addr:full": "\"Platt Hall", + "date_start": "Platt Fields Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24372, + 53.48302 + ] + }, + "properties": { + "openplaque:id": "729", + "addr:full": "\"Market Street", + "date_start": "Cross Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21239, + 53.4381 + ] + }, + "properties": { + "openplaque:id": "730", + "addr:full": "\"6 Kingswood Road", + "date_start": "Fallowfield\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24621, + 53.48271 + ] + }, + "properties": { + "openplaque:id": "731", + "addr:full": "Barton Square", + "date_start": "1983" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23975, + 53.47949 + ] + }, + "properties": { + "openplaque:id": "732", + "addr:full": "36 George Street", + "date_start": "1980" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24104, + 53.48634 + ] + }, + "properties": { + "openplaque:id": "738", + "addr:full": "Corporation Street and Balloon Street", + "date_start": "1974" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.19569, + 53.5499 + ] + }, + "properties": { + "openplaque:id": "7389", + "addr:full": "\"Middleton Arena", + "date_start": "Corporation Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28121, + 53.4433 + ] + }, + "properties": { + "openplaque:id": "740", + "addr:full": "\"6 Oswald Road", + "date_start": "Chorlton-cum-Hardy\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2367, + 53.4255 + ] + }, + "properties": { + "openplaque:id": "741", + "addr:full": "\"117 Lapwing Lane", + "date_start": "Didsbury\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.245, + 53.48035 + ] + }, + "properties": { + "openplaque:id": "742", + "addr:full": "\"Bow Chambers", + "date_start": "Bow Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24381, + 53.48503 + ] + }, + "properties": { + "openplaque:id": "745", + "addr:full": "Cathedral Street", + "date_start": "1989" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23188, + 53.4184 + ] + }, + "properties": { + "openplaque:id": "746", + "addr:full": "\"Didsbury Library", + "date_start": "692 Wilmslow Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.29116, + 53.45415 + ] + }, + "properties": { + "openplaque:id": "7460", + "addr:full": "\"19 Gorse Avenue", + "date_start": "Gorse Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.29047, + 53.45551 + ] + }, + "properties": { + "openplaque:id": "7461", + "addr:full": "\"22 Great Stone Road", + "date_start": "Stretford\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24381, + 53.48499 + ] + }, + "properties": { + "openplaque:id": "751", + "addr:full": "Cathedral Street", + "date_start": "1989" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24476, + 53.4794 + ] + }, + "properties": { + "openplaque:id": "757", + "addr:full": "\"Town Hall", + "date_start": "Albert Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23817, + 53.46979 + ] + }, + "properties": { + "openplaque:id": "758", + "addr:full": "\"Polytechnic", + "date_start": "Grosvenor Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25185, + 53.47827 + ] + }, + "properties": { + "openplaque:id": "759", + "addr:full": "Byrom Street and Artillery Street", + "date_start": "1976" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.27947, + 53.4054 + ] + }, + "properties": { + "openplaque:id": "761", + "addr:full": "\"Wythenshawe Hall", + "date_start": "Wythenshawe Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24387, + 53.48092 + ] + }, + "properties": { + "openplaque:id": "762", + "addr:full": "King Street", + "date_start": "1976" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25428, + 53.4746 + ] + }, + "properties": { + "openplaque:id": "764", + "addr:full": "\"Grocer's Warehouse", + "date_start": "Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24657, + 53.48361 + ] + }, + "properties": { + "openplaque:id": "765", + "addr:full": "Blackfriars Street and Deansgate", + "date_start": "1976" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24481, + 53.47939 + ] + }, + "properties": { + "openplaque:id": "766", + "addr:full": "Town Hall Interior", + "date_start": "1985" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24478, + 53.48464 + ] + }, + "properties": { + "openplaque:id": "769", + "addr:full": "Hanging Ditch", + "date_start": "1989" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23717, + 53.48117 + ] + }, + "properties": { + "openplaque:id": "771", + "addr:full": "Albert Square", + "date_start": "1986" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23844, + 53.4957 + ] + }, + "properties": { + "openplaque:id": "772", + "addr:full": "\"Jewish Museum", + "date_start": "190 Cheetham Hill Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24607, + 53.48174 + ] + }, + "properties": { + "openplaque:id": "775", + "addr:full": "St. Ann Street", + "date_start": "1987" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2458, + 53.4847 + ] + }, + "properties": { + "openplaque:id": "776", + "addr:full": "Victoria Bridge Street", + "date_start": "1977" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25014, + 53.48207 + ] + }, + "properties": { + "openplaque:id": "777", + "addr:full": "St. Mary's Parsonage", + "date_start": "1993" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25194, + 53.46191 + ] + }, + "properties": { + "openplaque:id": "778", + "addr:full": "\"Birley High School", + "date_start": "Chichester Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23786, + 53.418 + ] + }, + "properties": { + "openplaque:id": "780", + "addr:full": "\"26 Hesketh Avenue", + "date_start": "Didsbury\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22306, + 53.46151 + ] + }, + "properties": { + "openplaque:id": "782", + "addr:full": "Upper Brook Street", + "date_start": "1990" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23125, + 53.47647 + ] + }, + "properties": { + "openplaque:id": "783", + "addr:full": "\"London Road", + "date_start": "Fairfield Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23026, + 53.46173 + ] + }, + "properties": { + "openplaque:id": "785", + "addr:full": "Aberdeen House University", + "date_start": "1976" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24865, + 53.4809 + ] + }, + "properties": { + "openplaque:id": "786", + "addr:full": "70 Bridge Street", + "date_start": "1986" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24404, + 53.4844 + ] + }, + "properties": { + "openplaque:id": "787", + "addr:full": "\"Marks & Spencer", + "date_start": "Shambles Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24537, + 0 + ] + }, + "properties": { + "openplaque:id": "788", + "addr:full": "\"Royal Exchange", + "date_start": "St. Ann's Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23698, + 53.47142 + ] + }, + "properties": { + "openplaque:id": "789", + "addr:full": "\"Sidney Street", + "date_start": "All Saints\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.27458, + 53.46247 + ] + }, + "properties": { + "openplaque:id": "7896", + "addr:full": "\"609 Stretford Road", + "date_start": "Old Trafford\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2079, + 53.46743 + ] + }, + "properties": { + "openplaque:id": "790", + "addr:full": "\"Hyde Road", + "date_start": "Railway Bridge\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21651, + 53.45807 + ] + }, + "properties": { + "openplaque:id": "792", + "addr:full": "\"Daisy Bank Road", + "date_start": "Victoria Park\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23083, + 53.4117 + ] + }, + "properties": { + "openplaque:id": "793", + "addr:full": "\"Shirley Institute Wilmslow Road", + "date_start": "Didsbury\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23917, + 53.47681 + ] + }, + "properties": { + "openplaque:id": "796", + "addr:full": "103 Princess Street", + "date_start": "1992" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2007, + 53.50313 + ] + }, + "properties": { + "openplaque:id": "797", + "addr:full": "\"Northampton Road", + "date_start": "Newton Heath\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23891, + 53.48469 + ] + }, + "properties": { + "openplaque:id": "804", + "addr:full": "\"Arndale Centre", + "date_start": "Shudehill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23931, + 53.46866 + ] + }, + "properties": { + "openplaque:id": "805", + "addr:full": "\"The Salutation", + "date_start": "Boundary Street West\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25548, + 53.43688 + ] + }, + "properties": { + "openplaque:id": "808", + "addr:full": "\"Sports Pavilion", + "date_start": "Hough End Playing Fields\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25205, + 53.47869 + ] + }, + "properties": { + "openplaque:id": "809", + "addr:full": "\"County Court", + "date_start": "Quay Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25252, + 53.46789 + ] + }, + "properties": { + "openplaque:id": "810", + "addr:full": "\"Royce Road", + "date_start": "Hulme\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22161, + 53.45086 + ] + }, + "properties": { + "openplaque:id": "811", + "addr:full": "\"Wilmslow Road", + "date_start": "Rusholme\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24569, + 53.47771 + ] + }, + "properties": { + "openplaque:id": "812", + "addr:full": "\"St. George's House", + "date_start": "Peter Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24358, + 53.48104 + ] + }, + "properties": { + "openplaque:id": "813", + "addr:full": "\"National Westminster Bank", + "date_start": "King Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22906, + 53.48222 + ] + }, + "properties": { + "openplaque:id": "815", + "addr:full": "Great Ancoats Street", + "date_start": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25176, + 53.47478 + ] + }, + "properties": { + "openplaque:id": "819", + "addr:full": "Deansgate", + "date_start": "1987" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24373, + 53.48107 + ] + }, + "properties": { + "openplaque:id": "820", + "addr:full": "King Street", + "date_start": "1972" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23394, + 53.46558 + ] + }, + "properties": { + "openplaque:id": "8670", + "addr:full": "Manchester University Museum" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2176, + 53.44675 + ] + }, + "properties": { + "openplaque:id": "8675", + "addr:full": "Ashburne Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.23545, + 53.43158 + ] + }, + "properties": { + "openplaque:id": "8681", + "addr:full": "\"42 Everett Road", + "date_start": "Withington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28359, + 0 + ] + }, + "properties": { + "openplaque:id": "8682", + "addr:full": "\"13 Sibson Road", + "date_start": "Chorlton cum Hardy\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24926, + 53.53227 + ] + }, + "properties": { + "openplaque:id": "9454", + "addr:full": "\"Heaton Park Tramway", + "date_start": "Heaton Park\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.252, + 53.47859 + ] + }, + "properties": { + "openplaque:id": "963", + "addr:full": "Manchester" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25131, + 53.47868 + ] + }, + "properties": { + "openplaque:id": "964", + "addr:full": "The Opera House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25129, + 53.47869 + ] + }, + "properties": { + "openplaque:id": "966", + "addr:full": "\"Opera House", + "date_start": "Manchester\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24272, + 53.47856 + ] + }, + "properties": { + "openplaque:id": "968", + "addr:full": "\"Peace Garden", + "date_start": "Mosley St\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25635, + 53.47644 + ] + }, + "properties": { + "openplaque:id": "969", + "addr:full": "Castlefield" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.47746, + 50.11717 + ] + }, + "properties": { + "openplaque:id": "12771", + "addr:full": "St Michael's Mount" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.47453, + 50.12371 + ] + }, + "properties": { + "openplaque:id": "7458", + "addr:full": "The Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0874, + 50.9972 + ] + }, + "properties": { + "openplaque:id": "1623", + "addr:full": "Maresfield Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0879, + 50.997 + ] + }, + "properties": { + "openplaque:id": "1624", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38201, + 51.38792 + ] + }, + "properties": { + "openplaque:id": "13033", + "addr:full": "Cecil Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38084, + 51.38953 + ] + }, + "properties": { + "openplaque:id": "13035", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38106, + 51.38982 + ] + }, + "properties": { + "openplaque:id": "13036", + "addr:full": "Duke Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3834, + 51.38958 + ] + }, + "properties": { + "openplaque:id": "13037", + "addr:full": "Hawley Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38329, + 51.38956 + ] + }, + "properties": { + "openplaque:id": "13038", + "addr:full": "Love Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38307, + 51.38988 + ] + }, + "properties": { + "openplaque:id": "13041", + "addr:full": "King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38162, + 51.3893 + ] + }, + "properties": { + "openplaque:id": "3474", + "addr:full": "\"The Bulls Head", + "date_start": "Market Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38297, + 51.38864 + ] + }, + "properties": { + "openplaque:id": "49150" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38265, + 51.38839 + ] + }, + "properties": { + "openplaque:id": "49151" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3929, + 51.36524 + ] + }, + "properties": { + "openplaque:id": "54343", + "addr:full": "42 Gordon Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3854, + 51.3913 + ] + }, + "properties": { + "openplaque:id": "5524", + "addr:full": "\"Albion Lodge", + "date_start": "Trinity Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.52594, + 52.65888 + ] + }, + "properties": { + "openplaque:id": "52073", + "addr:full": "\"Village Hall", + "date_start": "School Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40205, + 52.62417 + ] + }, + "properties": { + "openplaque:id": "41638", + "addr:full": "\"Dixie Grammar School", + "date_start": "Station Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3985, + 52.6265 + ] + }, + "properties": { + "openplaque:id": "50166", + "addr:full": "\"Market Bosworth Hotel", + "date_start": "The Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.48476, + 52.902 + ] + }, + "properties": { + "openplaque:id": "12959", + "addr:full": "Mount Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92123, + 52.47825 + ] + }, + "properties": { + "openplaque:id": "43494" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92078, + 52.47738 + ] + }, + "properties": { + "openplaque:id": "43496", + "addr:full": "\"Catherwood House", + "date_start": "The Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7298, + 51.4213 + ] + }, + "properties": { + "openplaque:id": "1295", + "addr:full": "Oxford Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7338, + 51.4185 + ] + }, + "properties": { + "openplaque:id": "2714", + "addr:full": "\"Library", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.73178, + 51.4203 + ] + }, + "properties": { + "openplaque:id": "2718", + "addr:full": "\"Castle and Ball Inn", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.732, + 51.4201 + ] + }, + "properties": { + "openplaque:id": "2726", + "addr:full": "Russell Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7322, + 51.41998 + ] + }, + "properties": { + "openplaque:id": "4024", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.72996, + 51.42182 + ] + }, + "properties": { + "openplaque:id": "54082", + "addr:full": "1-3 Kingsbury Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.62597, + 0 + ] + }, + "properties": { + "openplaque:id": "8971", + "addr:full": "\"Crofton Pumping Station", + "date_start": "Crofton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77026, + 51.56823 + ] + }, + "properties": { + "openplaque:id": "12402", + "addr:full": "\"Thames Lawn", + "date_start": "St Peter Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77359, + 51.56754 + ] + }, + "properties": { + "openplaque:id": "12408", + "addr:full": "\"Thames Path", + "date_start": "Marlow Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77374, + 51.56754 + ] + }, + "properties": { + "openplaque:id": "48724" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77549, + 51.57069 + ] + }, + "properties": { + "openplaque:id": "5574", + "addr:full": "\"Cromwell House", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77789, + 51.5711 + ] + }, + "properties": { + "openplaque:id": "5576", + "addr:full": "31 West Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77458, + 51.5694 + ] + }, + "properties": { + "openplaque:id": "5578", + "addr:full": "\"Brampton House", + "date_start": "100 High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.78163, + 51.5702 + ] + }, + "properties": { + "openplaque:id": "5580", + "addr:full": "\"Sir William Borlase's Grammar School", + "date_start": "West Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.78019, + 51.57034 + ] + }, + "properties": { + "openplaque:id": "5584", + "addr:full": "\"Remnantz", + "date_start": "West Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.78081, + 51.57026 + ] + }, + "properties": { + "openplaque:id": "5586", + "addr:full": "\"Shelley House", + "date_start": "West Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.782, + 51.5702 + ] + }, + "properties": { + "openplaque:id": "6504", + "addr:full": "\"Sir William Borlase's Grammar School", + "date_start": "West Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06931, + 53.40734 + ] + }, + "properties": { + "openplaque:id": "41472", + "addr:full": "Marple Aqueduct" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94155, + 53.60398 + ] + }, + "properties": { + "openplaque:id": "9469", + "addr:full": "\"Standedge Tunnel & Visitor Centre", + "date_start": "Waters Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.01528, + 54.4737 + ] + }, + "properties": { + "openplaque:id": "7210", + "addr:full": "Martray House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.48342, + 54.70718 + ] + }, + "properties": { + "openplaque:id": "54943", + "addr:full": "85 Main Street", + "date_start": "2021" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.55531, + 53.14344 + ] + }, + "properties": { + "openplaque:id": "31000", + "addr:full": "153 Smedley Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.55592, + 53.1379 + ] + }, + "properties": { + "openplaque:id": "31646", + "addr:full": "Matlock Bridge - Hall Leys Park", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.55712, + 53.13753 + ] + }, + "properties": { + "openplaque:id": "31809", + "addr:full": "Dale Road and Holt Lane junction" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54967, + 53.13947 + ] + }, + "properties": { + "openplaque:id": "33212", + "addr:full": "Lilybank Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54991, + 53.14312 + ] + }, + "properties": { + "openplaque:id": "40601", + "addr:full": "\"Rutland Court", + "date_start": "Rutland Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.55531, + 53.14344 + ] + }, + "properties": { + "openplaque:id": "40602", + "addr:full": "\"Malvern House", + "date_start": "145 Smedley Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.10799, + 50.11601 + ] + }, + "properties": { + "openplaque:id": "11602", + "addr:full": "\"Wesley Cottage", + "date_start": "Carwinion Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.96576, + 51.014 + ] + }, + "properties": { + "openplaque:id": "13069", + "addr:full": "Ebble Thatch" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.35789, + 55.19818 + ] + }, + "properties": { + "openplaque:id": "11019", + "addr:full": "Dempster’s Stone" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71988, + 55.59769 + ] + }, + "properties": { + "openplaque:id": "11299", + "addr:full": "\"Townhouse Hotel", + "date_start": "Market Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.88398, + 52.76317 + ] + }, + "properties": { + "openplaque:id": "40348", + "addr:full": "29 Burton St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.88525, + 52.76333 + ] + }, + "properties": { + "openplaque:id": "40349", + "addr:full": "12 Burton Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.88539, + 52.76388 + ] + }, + "properties": { + "openplaque:id": "40372", + "addr:full": "11 Burton Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.88244, + 52.75947 + ] + }, + "properties": { + "openplaque:id": "40635", + "addr:full": "Burton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.88441, + 52.76229 + ] + }, + "properties": { + "openplaque:id": "41681", + "addr:full": "\"Cardigan House", + "date_start": "55 Burton Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.16496, + 53.22208 + ] + }, + "properties": { + "openplaque:id": "49390", + "addr:full": "Menai Bridge", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.16518, + 53.22231 + ] + }, + "properties": { + "openplaque:id": "50122", + "addr:full": "Memorial garden near the end of the Menai Suspension Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.16396, + 53.22184 + ] + }, + "properties": { + "openplaque:id": "53105", + "addr:full": "Glan Aethwy Cottage" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2749, + 51.09188 + ] + }, + "properties": { + "openplaque:id": "28224", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.60987, + 52.43371 + ] + }, + "properties": { + "openplaque:id": "49426", + "addr:full": "Birmingham Road", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.3778, + 51.74726 + ] + }, + "properties": { + "openplaque:id": "4100", + "addr:full": "\"Public Library", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.37775, + 51.74723 + ] + }, + "properties": { + "openplaque:id": "51516", + "addr:full": "Merthyr Central Library", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24048, + 57.42789 + ] + }, + "properties": { + "openplaque:id": "42257", + "addr:full": "B9170 over River Ythan" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28243, + 53.49365 + ] + }, + "properties": { + "openplaque:id": "49382", + "addr:full": "\"Mexborough Athletic Sport Ground", + "date_start": "Hampden Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23648, + 54.58366 + ] + }, + "properties": { + "openplaque:id": "10735", + "addr:full": "21 Stockton Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22921, + 54.58277 + ] + }, + "properties": { + "openplaque:id": "51489", + "addr:full": "Vulcan Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.19904, + 54.53107 + ] + }, + "properties": { + "openplaque:id": "52076", + "addr:full": "\"Greggs", + "date_start": "Laurel Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23401, + 0 + ] + }, + "properties": { + "openplaque:id": "8981", + "addr:full": "1-3 Queen's Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23141, + 54.56014 + ] + }, + "properties": { + "openplaque:id": "8982", + "addr:full": "\"Valley Road", + "date_start": "Grove Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23357, + 54.58032 + ] + }, + "properties": { + "openplaque:id": "8983", + "addr:full": "\"Cleveland Buildings", + "date_start": "Queen's Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23357, + 54.58032 + ] + }, + "properties": { + "openplaque:id": "8985", + "addr:full": "\"Cleveland Buildings", + "date_start": "Queen's Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23309, + 54.58364 + ] + }, + "properties": { + "openplaque:id": "8994", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24035, + 54.58134 + ] + }, + "properties": { + "openplaque:id": "8999", + "addr:full": "\"Snowden Road", + "date_start": "St Hilda's\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.19948, + 53.55425 + ] + }, + "properties": { + "openplaque:id": "29928", + "addr:full": "36 Mellalieu Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22261, + 53.54553 + ] + }, + "properties": { + "openplaque:id": "29962", + "addr:full": "31 - 37 Broad Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.18411, + 53.55162 + ] + }, + "properties": { + "openplaque:id": "29965", + "addr:full": "16 - 46 Hilton Fold Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.19857, + 53.54948 + ] + }, + "properties": { + "openplaque:id": "29967", + "addr:full": "37 Middleton Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.19562, + 53.55691 + ] + }, + "properties": { + "openplaque:id": "29968", + "addr:full": "34 - 48 Rochdale Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.19606, + 53.55705 + ] + }, + "properties": { + "openplaque:id": "29970", + "addr:full": "51 - 53 Rochdale Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.19809, + 53.55937 + ] + }, + "properties": { + "openplaque:id": "29972", + "addr:full": "98 Hollin Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.17625, + 53.54997 + ] + }, + "properties": { + "openplaque:id": "29973", + "addr:full": "Elm Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.19685, + 53.5522 + ] + }, + "properties": { + "openplaque:id": "29974", + "addr:full": "Long Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.19562, + 53.55101 + ] + }, + "properties": { + "openplaque:id": "29975", + "addr:full": "3 Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22254, + 53.54536 + ] + }, + "properties": { + "openplaque:id": "29976", + "addr:full": "Broad Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.18614, + 53.5512 + ] + }, + "properties": { + "openplaque:id": "29977", + "addr:full": "Temple Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.20544, + 53.54951 + ] + }, + "properties": { + "openplaque:id": "29978", + "addr:full": "Archer Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.19644, + 53.55593 + ] + }, + "properties": { + "openplaque:id": "31025", + "addr:full": "33 Rochdale Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.19665, + 53.55293 + ] + }, + "properties": { + "openplaque:id": "31026", + "addr:full": "\"Middleton Library", + "date_start": "Long Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.19498, + 53.55344 + ] + }, + "properties": { + "openplaque:id": "41721" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59662, + 53.10365 + ] + }, + "properties": { + "openplaque:id": "43988", + "addr:full": "Mountain Cottage" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73841, + 50.98791 + ] + }, + "properties": { + "openplaque:id": "1245", + "addr:full": "North Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73785, + 50.98631 + ] + }, + "properties": { + "openplaque:id": "9806", + "addr:full": "\"Church Hill Dental Surgery", + "date_start": "Church Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.52883, + 54.60704 + ] + }, + "properties": { + "openplaque:id": "7006", + "addr:full": "Baptist Church", + "date_start": "2006" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.26911, + 54.20982 + ] + }, + "properties": { + "openplaque:id": "39057", + "addr:full": "14 St. George's Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.91634, + 55.75542 + ] + }, + "properties": { + "openplaque:id": "8521", + "addr:full": "Kames Bay", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76471, + 54.22826 + ] + }, + "properties": { + "openplaque:id": "11488", + "addr:full": "Ackenthwaite Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77141, + 54.22676 + ] + }, + "properties": { + "openplaque:id": "11547", + "addr:full": "The Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77208, + 54.22676 + ] + }, + "properties": { + "openplaque:id": "11551", + "addr:full": "The Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77544, + 54.22671 + ] + }, + "properties": { + "openplaque:id": "11553", + "addr:full": "Park Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92705, + 52.19141 + ] + }, + "properties": { + "openplaque:id": "28279", + "addr:full": "Manor House in Rectory Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92694, + 52.19321 + ] + }, + "properties": { + "openplaque:id": "28280", + "addr:full": "Baptist Chapel in Green Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.47606, + 51.20722 + ] + }, + "properties": { + "openplaque:id": "10727", + "addr:full": "13 Blenheim Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.44206, + 55.3337 + ] + }, + "properties": { + "openplaque:id": "31399", + "addr:full": "Old Well Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.44401, + 55.33176 + ] + }, + "properties": { + "openplaque:id": "31405", + "addr:full": "Church Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.139, + 53.16755 + ] + }, + "properties": { + "openplaque:id": "52936", + "addr:full": "Chester Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.82851, + 54.53139 + ] + }, + "properties": { + "openplaque:id": "39049", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72005, + 51.80901 + ] + }, + "properties": { + "openplaque:id": "39800", + "addr:full": "Monnow Bridge - Monnow Street", + "date_start": "1900" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71756, + 51.81075 + ] + }, + "properties": { + "openplaque:id": "39801", + "addr:full": "Cornwall House - 56 Monnow Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71751, + 51.81076 + ] + }, + "properties": { + "openplaque:id": "39802", + "addr:full": "Cornwall House - 56 Monnow Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98667, + 51.5773 + ] + }, + "properties": { + "openplaque:id": "4120", + "addr:full": "\"The Church House Inn", + "date_start": "14 Portland Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71508, + 51.81293 + ] + }, + "properties": { + "openplaque:id": "42787", + "addr:full": "White Swan Court" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.47635, + 56.7401 + ] + }, + "properties": { + "openplaque:id": "5828", + "addr:full": "Hillside", + "date_start": "1930" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87818, + 54.07434 + ] + }, + "properties": { + "openplaque:id": "11431", + "addr:full": "Stone Jetty" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.85987, + 54.07471 + ] + }, + "properties": { + "openplaque:id": "7434", + "addr:full": "\"Morecambe Hotel", + "date_start": "Lord Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.70223, + 51.99 + ] + }, + "properties": { + "openplaque:id": "3492", + "addr:full": "Oxford Street", + "date_start": "1894" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.11782, + 53.41336 + ] + }, + "properties": { + "openplaque:id": "54271", + "addr:full": "Wirral\"", + "date_start": "Pasture Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.7651, + 50.6608 + ] + }, + "properties": { + "openplaque:id": "1487", + "addr:full": "Cross Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.69284, + 55.16761 + ] + }, + "properties": { + "openplaque:id": "9786", + "addr:full": "Oldgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.96325, + 54.12136 + ] + }, + "properties": { + "openplaque:id": "41732" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.01201, + 53.4558 + ] + }, + "properties": { + "openplaque:id": "8034", + "addr:full": "Mottram Court House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.01291, + 53.45868 + ] + }, + "properties": { + "openplaque:id": "8036", + "addr:full": "\"The Elms", + "date_start": "Stalybridge Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.37974, + 51.68232 + ] + }, + "properties": { + "openplaque:id": "4092", + "addr:full": "\"Foyer of the Public Library", + "date_start": "Knight Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.5396, + 50.08241 + ] + }, + "properties": { + "openplaque:id": "11271", + "addr:full": "Keigwin Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.53975, + 50.08254 + ] + }, + "properties": { + "openplaque:id": "11276", + "addr:full": "Mill Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.53968, + 50.083 + ] + }, + "properties": { + "openplaque:id": "3654", + "addr:full": "somewhere" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.53918, + 50.0832 + ] + }, + "properties": { + "openplaque:id": "3656", + "addr:full": "\"The Ship Inn", + "date_start": "S Cliff\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.691, + 54.4466 + ] + }, + "properties": { + "openplaque:id": "7094", + "addr:full": "\"Library", + "date_start": "the Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5574, + 52.5965 + ] + }, + "properties": { + "openplaque:id": "27953", + "addr:full": "Wilmore Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.40942, + 52.93266 + ] + }, + "properties": { + "openplaque:id": "12822", + "addr:full": "opposite the church" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67969, + 52.51431 + ] + }, + "properties": { + "openplaque:id": "52164", + "addr:full": "Lynford Hall", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.02413, + 55.94555 + ] + }, + "properties": { + "openplaque:id": "43999", + "addr:full": "23 Ravenshaugh Road", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.72144, + 51.2869 + ] + }, + "properties": { + "openplaque:id": "54289", + "addr:full": "Mytchett Place Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.98067, + 53.7316 + ] + }, + "properties": { + "openplaque:id": "5420", + "addr:full": "1 Aspinall Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.57193, + 50.72988 + ] + }, + "properties": { + "openplaque:id": "42045", + "addr:full": "opp. The Royal Oak" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2296, + 51.69813 + ] + }, + "properties": { + "openplaque:id": "43966", + "addr:full": "Nympsfield Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.74359, + 51.79847 + ] + }, + "properties": { + "openplaque:id": "28088", + "addr:full": "33 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.74011, + 51.79941 + ] + }, + "properties": { + "openplaque:id": "28089", + "addr:full": "41 St James Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.80356, + 51.66473 + ] + }, + "properties": { + "openplaque:id": "7523", + "addr:full": "\"Moose Hall", + "date_start": "Castle Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0525, + 52.15333 + ] + }, + "properties": { + "openplaque:id": "2681", + "addr:full": "\"Church", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.05528, + 52.15251 + ] + }, + "properties": { + "openplaque:id": "51003", + "addr:full": "Station Yard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.05527, + 52.1531 + ] + }, + "properties": { + "openplaque:id": "51004", + "addr:full": "Station Yard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.05501, + 52.15294 + ] + }, + "properties": { + "openplaque:id": "51005", + "addr:full": "Station Yard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.05374, + 52.1518 + ] + }, + "properties": { + "openplaque:id": "53066", + "addr:full": "2&4 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57799, + 52.67713 + ] + }, + "properties": { + "openplaque:id": "12234", + "addr:full": "\"Old Rectory", + "date_start": "Ashby Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99331, + 51.57547 + ] + }, + "properties": { + "openplaque:id": "43586", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16155, + 51.09172 + ] + }, + "properties": { + "openplaque:id": "30459", + "addr:full": "Broad Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16148, + 51.09186 + ] + }, + "properties": { + "openplaque:id": "30460", + "addr:full": "Broad Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15808, + 51.09022 + ] + }, + "properties": { + "openplaque:id": "30461", + "addr:full": "The Old Sun" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.04376, + 53.43766 + ] + }, + "properties": { + "openplaque:id": "41322", + "addr:full": "Hope Street 19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.04837, + 53.44097 + ] + }, + "properties": { + "openplaque:id": "51767", + "addr:full": "\"Sea wall", + "date_start": "opposite the Marine Point security office\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.18391, + 55.3978 + ] + }, + "properties": { + "openplaque:id": "54498", + "addr:full": "Castle" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.811, + 53.07767 + ] + }, + "properties": { + "openplaque:id": "10662", + "addr:full": "Castle Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8115, + 53.078 + ] + }, + "properties": { + "openplaque:id": "10663", + "addr:full": "Beast Market Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8098, + 53.0761 + ] + }, + "properties": { + "openplaque:id": "2154", + "addr:full": "\"Newark Town Hall", + "date_start": "Market Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8101, + 53.0759 + ] + }, + "properties": { + "openplaque:id": "2155", + "addr:full": "The Governor's House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8081, + 53.0764 + ] + }, + "properties": { + "openplaque:id": "3318", + "addr:full": "Church of St Mary Magdalene", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50371, + 55.18596 + ] + }, + "properties": { + "openplaque:id": "8469", + "addr:full": "Newbiggin Point" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50824, + 55.18552 + ] + }, + "properties": { + "openplaque:id": "8471", + "addr:full": "Promenade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51671, + 55.18125 + ] + }, + "properties": { + "openplaque:id": "8472", + "addr:full": "Gibson Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51174, + 55.1852 + ] + }, + "properties": { + "openplaque:id": "8473", + "addr:full": "Front Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0, + 0 + ] + }, + "properties": { + "openplaque:id": "8477", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3247, + 51.40569 + ] + }, + "properties": { + "openplaque:id": "54832", + "addr:full": "\"Thames Court", + "date_start": "20-22 The Broadway\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.32596, + 51.40085 + ] + }, + "properties": { + "openplaque:id": "54834", + "addr:full": "\"St Nicolas House", + "date_start": "West Mills\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46695, + 52.03929 + ] + }, + "properties": { + "openplaque:id": "11680", + "addr:full": "\"Bank House", + "date_start": "9 Bridge Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22417, + 53.00993 + ] + }, + "properties": { + "openplaque:id": "31329", + "addr:full": "Barracks Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22396, + 53.01368 + ] + }, + "properties": { + "openplaque:id": "31330", + "addr:full": "Queen Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22569, + 53.0132 + ] + }, + "properties": { + "openplaque:id": "31333", + "addr:full": "Ryecroft" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22638, + 53.01277 + ] + }, + "properties": { + "openplaque:id": "31334", + "addr:full": "Merrial Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22912, + 53.01209 + ] + }, + "properties": { + "openplaque:id": "31335", + "addr:full": "4 Bridge Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22026, + 53.01497 + ] + }, + "properties": { + "openplaque:id": "54339", + "addr:full": "9 Sidmouth Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5789, + 54.98283 + ] + }, + "properties": { + "openplaque:id": "1167", + "addr:full": "\"35 Second Avenue", + "date_start": "Heaton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.60804, + 54.9763 + ] + }, + "properties": { + "openplaque:id": "11794", + "addr:full": "4 Ellison Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61658, + 54.96989 + ] + }, + "properties": { + "openplaque:id": "11798", + "addr:full": "\"51", + "date_start": "Westgate Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61338, + 54.97281 + ] + }, + "properties": { + "openplaque:id": "11800", + "addr:full": "Market Street West" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61002, + 54.96734 + ] + }, + "properties": { + "openplaque:id": "11928", + "addr:full": "\"35", + "date_start": "The Close\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.60783, + 54.96932 + ] + }, + "properties": { + "openplaque:id": "11949", + "addr:full": "\"Queen Street", + "date_start": "nr junction with Sandhill and Side\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59913, + 54.9713 + ] + }, + "properties": { + "openplaque:id": "12151", + "addr:full": "Corner of St. Ann's Street and Swirle Steps" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6083, + 54.9685 + ] + }, + "properties": { + "openplaque:id": "1301", + "addr:full": "41-44 Sandhill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61842, + 54.96924 + ] + }, + "properties": { + "openplaque:id": "33184", + "addr:full": "Bewick Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61788, + 54.9711 + ] + }, + "properties": { + "openplaque:id": "41819", + "addr:full": "Clayton Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61115, + 54.98543 + ] + }, + "properties": { + "openplaque:id": "42663", + "addr:full": "28 Brandling Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59673, + 54.97423 + ] + }, + "properties": { + "openplaque:id": "43422", + "addr:full": "Crawhall Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61803, + 54.97712 + ] + }, + "properties": { + "openplaque:id": "43429", + "addr:full": "14 St Thomas' Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58188, + 54.9861 + ] + }, + "properties": { + "openplaque:id": "43432", + "addr:full": "\"16 Jesmond Vale Terrace", + "date_start": "Heaton Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57733, + 54.98223 + ] + }, + "properties": { + "openplaque:id": "43434", + "addr:full": "\"44 Third Avenue", + "date_start": "Heaton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6273, + 54.97 + ] + }, + "properties": { + "openplaque:id": "43449", + "addr:full": "7 Summerhill Grove" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59251, + 54.97497 + ] + }, + "properties": { + "openplaque:id": "43469", + "addr:full": "Stepney Bank" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.60952, + 54.98094 + ] + }, + "properties": { + "openplaque:id": "43477", + "addr:full": "1 Jesmond Road West" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61059, + 54.98078 + ] + }, + "properties": { + "openplaque:id": "43478", + "addr:full": "31 Jesmond Road West" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61056, + 54.98058 + ] + }, + "properties": { + "openplaque:id": "43479", + "addr:full": "11 Jesmond Road West" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61138, + 54.97549 + ] + }, + "properties": { + "openplaque:id": "43483", + "addr:full": "Saville Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59881, + 54.9741 + ] + }, + "properties": { + "openplaque:id": "43484", + "addr:full": "Gibson Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61866, + 54.96929 + ] + }, + "properties": { + "openplaque:id": "43485", + "addr:full": "Bewick Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61218, + 54.97896 + ] + }, + "properties": { + "openplaque:id": "43524", + "addr:full": "\"Newcastle Civic Centre", + "date_start": "Barras Bridge\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58838, + 54.97166 + ] + }, + "properties": { + "openplaque:id": "43592", + "addr:full": "Maling Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58841, + 54.97179 + ] + }, + "properties": { + "openplaque:id": "43593", + "addr:full": "Maling Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.60815, + 54.96802 + ] + }, + "properties": { + "openplaque:id": "43658", + "addr:full": "Quayside" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61529, + 54.96972 + ] + }, + "properties": { + "openplaque:id": "43759", + "addr:full": "39 Westgate Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61492, + 54.9714 + ] + }, + "properties": { + "openplaque:id": "4748", + "addr:full": "Bigg Market", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61457, + 54.97213 + ] + }, + "properties": { + "openplaque:id": "4752", + "addr:full": "Grainger Street", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61612, + 54.9702 + ] + }, + "properties": { + "openplaque:id": "4754", + "addr:full": "Grainger Street", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61363, + 54.97437 + ] + }, + "properties": { + "openplaque:id": "51979", + "addr:full": "\"Brunswick Methodist Church", + "date_start": "Brunswick Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61266, + 54.97532 + ] + }, + "properties": { + "openplaque:id": "8665", + "addr:full": "49-51 Northumberland Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6131, + 54.97773 + ] + }, + "properties": { + "openplaque:id": "9001", + "addr:full": "St. Mary's Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.62009, + 54.96904 + ] + }, + "properties": { + "openplaque:id": "9011", + "addr:full": "36 Clayton Street West", + "date_start": "1997" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.62139, + 54.96767 + ] + }, + "properties": { + "openplaque:id": "9018", + "addr:full": "Times Square", + "date_start": "1987" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61735, + 54.9689 + ] + }, + "properties": { + "openplaque:id": "9035", + "addr:full": "Central Railway Station", + "date_start": "1987" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.60872, + 54.97444 + ] + }, + "properties": { + "openplaque:id": "9036", + "addr:full": "New Bridge Street West", + "date_start": "1987" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6086, + 54.97461 + ] + }, + "properties": { + "openplaque:id": "9039", + "addr:full": "New Bridge Street West", + "date_start": "1987" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.60832, + 54.968 + ] + }, + "properties": { + "openplaque:id": "9081", + "addr:full": "Bridge Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6115, + 54.97033 + ] + }, + "properties": { + "openplaque:id": "9789", + "addr:full": "St Nicholas Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.40467, + 51.9302 + ] + }, + "properties": { + "openplaque:id": "3306", + "addr:full": "1 Market Square", + "date_start": "1992" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0705, + 50.78383 + ] + }, + "properties": { + "openplaque:id": "10848", + "addr:full": "Newhaven Fort" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.54912, + 50.10627 + ] + }, + "properties": { + "openplaque:id": "53979", + "addr:full": "\"The Ship Institute", + "date_start": "North Pier\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.39982, + 52.2428 + ] + }, + "properties": { + "openplaque:id": "42537", + "addr:full": "\"Fitzroy House", + "date_start": "Black Bear Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28928, + 50.69929 + ] + }, + "properties": { + "openplaque:id": "54466", + "addr:full": "Isle of Wight\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.93129, + 51.60223 + ] + }, + "properties": { + "openplaque:id": "10539", + "addr:full": "Gwent\"", + "date_start": "Celtic Manor Resort" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99908, + 51.59028 + ] + }, + "properties": { + "openplaque:id": "10540", + "addr:full": "Gwent\"", + "date_start": "12 Pentonville" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9958, + 51.5833 + ] + }, + "properties": { + "openplaque:id": "30514", + "addr:full": "Gwent\"", + "date_start": "Park Square (lying between Stow Hill and Commercial Street)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98946, + 51.58306 + ] + }, + "properties": { + "openplaque:id": "30515", + "addr:full": "Gwent\"", + "date_start": "\"The Malt House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99728, + 51.58481 + ] + }, + "properties": { + "openplaque:id": "30518", + "addr:full": "Gwent\"", + "date_start": "Stow Hill at its junction with Havelock Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.02771, + 51.5617 + ] + }, + "properties": { + "openplaque:id": "30532", + "addr:full": "Gwent\"", + "date_start": "\"Tredegar House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00389, + 51.59083 + ] + }, + "properties": { + "openplaque:id": "30535", + "addr:full": "Gwent\"", + "date_start": "19 St Mark’s Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01497, + 51.58391 + ] + }, + "properties": { + "openplaque:id": "49381", + "addr:full": "Gwent\"", + "date_start": "Risca Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.08267, + 50.41186 + ] + }, + "properties": { + "openplaque:id": "13070", + "addr:full": "\"47 Mount Wise", + "date_start": "St Columb Minor\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.33837, + 54.17137 + ] + }, + "properties": { + "openplaque:id": "43925", + "addr:full": "\"Madden Gallery", + "date_start": "William Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.34247, + 54.16949 + ] + }, + "properties": { + "openplaque:id": "43962", + "addr:full": "65 Bridge Street", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.34245, + 54.16952 + ] + }, + "properties": { + "openplaque:id": "43963", + "addr:full": "65 Bridge Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.33784, + 54.17518 + ] + }, + "properties": { + "openplaque:id": "6988", + "addr:full": "Marcus Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.34261, + 54.17051 + ] + }, + "properties": { + "openplaque:id": "7014", + "addr:full": "Thomas Street", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.34177, + 54.1663 + ] + }, + "properties": { + "openplaque:id": "7160", + "addr:full": "\"Ivy Brook Lodge", + "date_start": "Drumalane Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.31311, + 52.51211 + ] + }, + "properties": { + "openplaque:id": "10423", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.31494, + 52.5152 + ] + }, + "properties": { + "openplaque:id": "4086", + "addr:full": "\"Barclays Bank", + "date_start": "3 The Cross\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.98897, + 54.68331 + ] + }, + "properties": { + "openplaque:id": "10903", + "addr:full": "\"Crown and Shamrock", + "date_start": "Antrim Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.90225, + 54.66564 + ] + }, + "properties": { + "openplaque:id": "41519", + "addr:full": "\"Abbeydene House", + "date_start": "20 Abbeydene Manor\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.88301, + 54.68124 + ] + }, + "properties": { + "openplaque:id": "43939", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.91284, + 54.65563 + ] + }, + "properties": { + "openplaque:id": "7016", + "addr:full": "Merville House", + "date_start": "2006" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.70848, + 54.59548 + ] + }, + "properties": { + "openplaque:id": "7032", + "addr:full": "Strangford Arms Hotel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.20833, + 51.81485 + ] + }, + "properties": { + "openplaque:id": "12916", + "addr:full": "The Manor House", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0, + 0 + ] + }, + "properties": { + "openplaque:id": "42148", + "addr:full": "North Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71724, + 56.05872 + ] + }, + "properties": { + "openplaque:id": "54145", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71665, + 56.0581 + ] + }, + "properties": { + "openplaque:id": "54147", + "addr:full": "Walltower House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.405, + 56.01182 + ] + }, + "properties": { + "openplaque:id": "50102" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.39578, + 56.00997 + ] + }, + "properties": { + "openplaque:id": "50104" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43376, + 55.014 + ] + }, + "properties": { + "openplaque:id": "11813", + "addr:full": "Tynemouth Road", + "date_start": "1990" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43376, + 55.00977 + ] + }, + "properties": { + "openplaque:id": "43661", + "addr:full": "Fish Quay" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.45024, + 55.00464 + ] + }, + "properties": { + "openplaque:id": "48780", + "addr:full": "6 Howdon Road", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43657, + 55.00868 + ] + }, + "properties": { + "openplaque:id": "50425", + "addr:full": "Union quay" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.8979, + 50.79967 + ] + }, + "properties": { + "openplaque:id": "41812" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4372, + 54.34145 + ] + }, + "properties": { + "openplaque:id": "11771", + "addr:full": "250 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43596, + 54.3417 + ] + }, + "properties": { + "openplaque:id": "11774", + "addr:full": "240 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43443, + 54.34072 + ] + }, + "properties": { + "openplaque:id": "11776", + "addr:full": "\"Market Hall", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43478, + 54.34067 + ] + }, + "properties": { + "openplaque:id": "11777", + "addr:full": "209 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43285, + 54.33896 + ] + }, + "properties": { + "openplaque:id": "11779", + "addr:full": "Zetland Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43528, + 54.33875 + ] + }, + "properties": { + "openplaque:id": "11781", + "addr:full": "Alverton Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43725, + 54.34141 + ] + }, + "properties": { + "openplaque:id": "11782", + "addr:full": "249 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4314, + 54.34156 + ] + }, + "properties": { + "openplaque:id": "11783", + "addr:full": "1 Priory Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30926, + 52.6348 + ] + }, + "properties": { + "openplaque:id": "1910", + "addr:full": "Corner of Barrack Street and Gurney Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.26183, + 52.65226 + ] + }, + "properties": { + "openplaque:id": "29955", + "addr:full": "Boundary Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.27679, + 52.6803 + ] + }, + "properties": { + "openplaque:id": "30011", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.27683, + 52.68028 + ] + }, + "properties": { + "openplaque:id": "30012", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29496, + 52.62591 + ] + }, + "properties": { + "openplaque:id": "31079", + "addr:full": "20 Westlegate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29551, + 52.6299 + ] + }, + "properties": { + "openplaque:id": "3810", + "addr:full": "50 London Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29446, + 52.6284 + ] + }, + "properties": { + "openplaque:id": "3816", + "addr:full": "14 Davey Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29626, + 52.6282 + ] + }, + "properties": { + "openplaque:id": "3876", + "addr:full": "Norwich Castle" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30417, + 52.6332 + ] + }, + "properties": { + "openplaque:id": "3916", + "addr:full": "Bishop Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.23296, + 52.67303 + ] + }, + "properties": { + "openplaque:id": "39179", + "addr:full": "Drayton" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.23305, + 52.67295 + ] + }, + "properties": { + "openplaque:id": "39180", + "addr:full": "Drayton High Road", + "date_start": "1892" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29761, + 52.6288 + ] + }, + "properties": { + "openplaque:id": "3920", + "addr:full": "Market Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29878, + 52.6292 + ] + }, + "properties": { + "openplaque:id": "3922", + "addr:full": "Agricultural Hall Plain", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29928, + 52.6301 + ] + }, + "properties": { + "openplaque:id": "3926", + "addr:full": "Norwich" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29891, + 52.6307 + ] + }, + "properties": { + "openplaque:id": "3928", + "addr:full": "Tombland" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29966, + 52.631 + ] + }, + "properties": { + "openplaque:id": "3930", + "addr:full": "Norwich" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29871, + 52.6316 + ] + }, + "properties": { + "openplaque:id": "3932", + "addr:full": "\"Augustine Steward House", + "date_start": "Tombland\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29891, + 52.6307 + ] + }, + "properties": { + "openplaque:id": "3934", + "addr:full": "Tombland", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29719, + 52.6331 + ] + }, + "properties": { + "openplaque:id": "3936", + "addr:full": "3 Fishergate", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29676, + 52.6335 + ] + }, + "properties": { + "openplaque:id": "3938", + "addr:full": "Colegate", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29736, + 52.6319 + ] + }, + "properties": { + "openplaque:id": "3946", + "addr:full": "22-24 Elm Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29736, + 52.6319 + ] + }, + "properties": { + "openplaque:id": "3948", + "addr:full": "Elm Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29338, + 52.629 + ] + }, + "properties": { + "openplaque:id": "3976", + "addr:full": "\"Jarrold's", + "date_start": "Exchange Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29456, + 52.6305 + ] + }, + "properties": { + "openplaque:id": "3982", + "addr:full": "St Andrews Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29614, + 52.631 + ] + }, + "properties": { + "openplaque:id": "3986", + "addr:full": "Princes Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29848, + 52.6311 + ] + }, + "properties": { + "openplaque:id": "3994", + "addr:full": "\"Shiki", + "date_start": "Princes Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29462, + 52.6282 + ] + }, + "properties": { + "openplaque:id": "3998", + "addr:full": "Arcade Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29051, + 52.6292 + ] + }, + "properties": { + "openplaque:id": "4042", + "addr:full": "Westwick Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29051, + 52.6292 + ] + }, + "properties": { + "openplaque:id": "4066", + "addr:full": "St Giles Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29263, + 52.6298 + ] + }, + "properties": { + "openplaque:id": "4216", + "addr:full": "Pottergate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.28708, + 52.6301 + ] + }, + "properties": { + "openplaque:id": "4226", + "addr:full": "Willow Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.28739, + 52.6304 + ] + }, + "properties": { + "openplaque:id": "4230", + "addr:full": "Pottergate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.28813, + 52.6305 + ] + }, + "properties": { + "openplaque:id": "4232", + "addr:full": "Pottergate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29245, + 52.6253 + ] + }, + "properties": { + "openplaque:id": "4870", + "addr:full": "St Stephens Street", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30538, + 52.62794 + ] + }, + "properties": { + "openplaque:id": "51349", + "addr:full": "\"Premier Inn Nelson Hotel", + "date_start": "Prince of Wales Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30426, + 52.6306 + ] + }, + "properties": { + "openplaque:id": "5322", + "addr:full": "Ferry Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29679, + 52.6315 + ] + }, + "properties": { + "openplaque:id": "5528", + "addr:full": "Elm Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29668, + 52.6343 + ] + }, + "properties": { + "openplaque:id": "5530", + "addr:full": "24 Magdalen Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29462, + 52.6275 + ] + }, + "properties": { + "openplaque:id": "5532", + "addr:full": "Red Lion Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29353, + 52.627 + ] + }, + "properties": { + "openplaque:id": "5534", + "addr:full": "1 Orford Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29266, + 52.6302 + ] + }, + "properties": { + "openplaque:id": "6292", + "addr:full": "\"Maddermarket Theatre", + "date_start": "St John Madder Market\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.28824, + 52.6294 + ] + }, + "properties": { + "openplaque:id": "6294", + "addr:full": "St Giles Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.26561, + 52.62046 + ] + }, + "properties": { + "openplaque:id": "8082", + "addr:full": "\"Colman Infant School", + "date_start": "Colman Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.28634, + 52.63145 + ] + }, + "properties": { + "openplaque:id": "8083", + "addr:full": "St Benedicts Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31173, + 52.62676 + ] + }, + "properties": { + "openplaque:id": "8086", + "addr:full": "Rosary Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30043, + 52.63451 + ] + }, + "properties": { + "openplaque:id": "8087", + "addr:full": "Whitefriars", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29834, + 52.6306 + ] + }, + "properties": { + "openplaque:id": "8091", + "addr:full": "Queens Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29459, + 52.63365 + ] + }, + "properties": { + "openplaque:id": "8093", + "addr:full": "Calvert Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29345, + 52.63544 + ] + }, + "properties": { + "openplaque:id": "8097", + "addr:full": "St Crispins Road/Botolph Street corner of Surrey Chapel free church" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2907, + 52.62778 + ] + }, + "properties": { + "openplaque:id": "8099", + "addr:full": "Millennium Building" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2918, + 52.63825 + ] + }, + "properties": { + "openplaque:id": "8103", + "addr:full": "\"Stonemasons Court", + "date_start": "53-57 St Augustines Street \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.28916, + 52.63551 + ] + }, + "properties": { + "openplaque:id": "8104", + "addr:full": "98-108 Oak Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30637, + 52.62107 + ] + }, + "properties": { + "openplaque:id": "8109", + "addr:full": "Carrow Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29526, + 52.62659 + ] + }, + "properties": { + "openplaque:id": "8114", + "addr:full": "Timberhill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29495, + 52.63174 + ] + }, + "properties": { + "openplaque:id": "8117", + "addr:full": "\"Adjacent to bridge by the Norwich Art School", + "date_start": "St Georges Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30886, + 52.63241 + ] + }, + "properties": { + "openplaque:id": "8118", + "addr:full": "Low wall on side of bridge facing Riverside Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.28729, + 52.63005 + ] + }, + "properties": { + "openplaque:id": "8119", + "addr:full": "13 Willow Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31399, + 52.63659 + ] + }, + "properties": { + "openplaque:id": "8120", + "addr:full": "\"Entrance to Norwich Prison", + "date_start": "Britannia Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.28599, + 52.62874 + ] + }, + "properties": { + "openplaque:id": "8124", + "addr:full": "On wall adjoining 1-6 Cleveland Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30106, + 52.62854 + ] + }, + "properties": { + "openplaque:id": "8125", + "addr:full": "46 Rose Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33328, + 52.62668 + ] + }, + "properties": { + "openplaque:id": "8126", + "addr:full": "18 Yarmouth Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29345, + 52.63544 + ] + }, + "properties": { + "openplaque:id": "8128", + "addr:full": "St Crispins Road/Botolph Street corner of Surrey Chapel free church" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.28471, + 52.62903 + ] + }, + "properties": { + "openplaque:id": "8130", + "addr:full": "\"Three Tuns public house", + "date_start": "Earlham Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29703, + 52.63298 + ] + }, + "properties": { + "openplaque:id": "8131", + "addr:full": "east side of Fye Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30131, + 52.6295 + ] + }, + "properties": { + "openplaque:id": "8133", + "addr:full": "44 Prince of Wales Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.27891, + 52.64006 + ] + }, + "properties": { + "openplaque:id": "8135", + "addr:full": "\"Dolphin Inn", + "date_start": "258 Heigham Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30638, + 52.62038 + ] + }, + "properties": { + "openplaque:id": "8140", + "addr:full": "97 King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30916, + 52.63222 + ] + }, + "properties": { + "openplaque:id": "8142", + "addr:full": "\"On front of the Bridge House public house", + "date_start": "Riverside Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29493, + 52.62961 + ] + }, + "properties": { + "openplaque:id": "8144", + "addr:full": "8 Swan Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29433, + 52.6308 + ] + }, + "properties": { + "openplaque:id": "8148", + "addr:full": "St Andrews car park (car park now demolished)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.28357, + 52.62954 + ] + }, + "properties": { + "openplaque:id": "8149", + "addr:full": "\"On gate pier of St John's RC Cathedral", + "date_start": "Earlham Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29552, + 52.62715 + ] + }, + "properties": { + "openplaque:id": "8154", + "addr:full": "\"Owen's Restaurant", + "date_start": "1 Farmers Avenue\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2954, + 52.63111 + ] + }, + "properties": { + "openplaque:id": "8155", + "addr:full": "St Georges Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29808, + 52.62748 + ] + }, + "properties": { + "openplaque:id": "8159", + "addr:full": "\"Front of Eastern Daily Press Building", + "date_start": "Cattlemarket Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29172, + 52.63389 + ] + }, + "properties": { + "openplaque:id": "8160", + "addr:full": "\"St Mary's Baptist Church", + "date_start": "St Mary's Plain\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3018, + 52.62875 + ] + }, + "properties": { + "openplaque:id": "8165", + "addr:full": "\"Temple House", + "date_start": "8-12 St Vedast Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29295, + 52.62814 + ] + }, + "properties": { + "openplaque:id": "8166", + "addr:full": "\"West side of Sir Garnet Wolseley public house", + "date_start": "near steps to Provision Market\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29425, + 52.62418 + ] + }, + "properties": { + "openplaque:id": "8167", + "addr:full": "29 Surrey Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2918, + 52.62388 + ] + }, + "properties": { + "openplaque:id": "8169", + "addr:full": "\"On old city wall", + "date_start": "Queens Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29335, + 52.63319 + ] + }, + "properties": { + "openplaque:id": "8173", + "addr:full": "\"Woolpack Inn", + "date_start": "Colegate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30013, + 52.63487 + ] + }, + "properties": { + "openplaque:id": "8174", + "addr:full": "\"Jarrolds & Sons Ltd.", + "date_start": "Whitefriars Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30152, + 52.63372 + ] + }, + "properties": { + "openplaque:id": "8190", + "addr:full": "St Martin at Palace Plain" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29663, + 52.6346 + ] + }, + "properties": { + "openplaque:id": "8192", + "addr:full": "Gurney House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29663, + 52.6346 + ] + }, + "properties": { + "openplaque:id": "8193", + "addr:full": "Gurney House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.28622, + 52.63055 + ] + }, + "properties": { + "openplaque:id": "8194", + "addr:full": "104 Pottergate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29517, + 52.62592 + ] + }, + "properties": { + "openplaque:id": "8195", + "addr:full": "20 Westlegate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29455, + 52.62756 + ] + }, + "properties": { + "openplaque:id": "8196", + "addr:full": "23 White Lion Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30002, + 52.63514 + ] + }, + "properties": { + "openplaque:id": "8197", + "addr:full": "\"near St James Mill", + "date_start": "Whitefriars\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30297, + 52.62329 + ] + }, + "properties": { + "openplaque:id": "8200", + "addr:full": "King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2975, + 52.62798 + ] + }, + "properties": { + "openplaque:id": "8202", + "addr:full": "Entrance to The Mall car park", + "date_start": "1992" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30175, + 52.63369 + ] + }, + "properties": { + "openplaque:id": "8204", + "addr:full": "Bishopgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29691, + 52.6302 + ] + }, + "properties": { + "openplaque:id": "8350", + "addr:full": "Redwell Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2991, + 52.6316 + ] + }, + "properties": { + "openplaque:id": "8647", + "addr:full": "Erpingham Gateway - Tombland" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2991, + 52.6316 + ] + }, + "properties": { + "openplaque:id": "8648", + "addr:full": "Erpingham Gateway - Tombland", + "date_start": "1955" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3014, + 52.631 + ] + }, + "properties": { + "openplaque:id": "8649", + "addr:full": "near a car park at Norwich Cathedral" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14345, + 52.95295 + ] + }, + "properties": { + "openplaque:id": "1195", + "addr:full": "\"Adams Building", + "date_start": "Stoney Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15214, + 52.95158 + ] + }, + "properties": { + "openplaque:id": "1196", + "addr:full": "59 Maid Marian Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13238, + 52.9518 + ] + }, + "properties": { + "openplaque:id": "1201", + "addr:full": "12 Notintone Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14662, + 52.9515 + ] + }, + "properties": { + "openplaque:id": "1203", + "addr:full": "Weekday Cross" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1548, + 52.9516 + ] + }, + "properties": { + "openplaque:id": "1278", + "addr:full": "St James Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15482, + 52.95106 + ] + }, + "properties": { + "openplaque:id": "1279", + "addr:full": "King Charles Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15393, + 52.94996 + ] + }, + "properties": { + "openplaque:id": "1280", + "addr:full": "Castle grounds", + "date_start": "1992" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15078, + 52.9509 + ] + }, + "properties": { + "openplaque:id": "1281", + "addr:full": "\"Newdigate House", + "date_start": "Castle Gate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15026, + 52.9531 + ] + }, + "properties": { + "openplaque:id": "1282", + "addr:full": "\"Council House", + "date_start": "Old Market Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1495, + 52.95137 + ] + }, + "properties": { + "openplaque:id": "1285", + "addr:full": "\"site of Haywood's factory", + "date_start": "New Look" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15234, + 52.95181 + ] + }, + "properties": { + "openplaque:id": "1881", + "addr:full": "\"railings", + "date_start": "Maid Marion Way\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14527, + 52.9544 + ] + }, + "properties": { + "openplaque:id": "1883", + "addr:full": "15 George Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15192, + 52.96082 + ] + }, + "properties": { + "openplaque:id": "1884", + "addr:full": "5 Birkland Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14878, + 0 + ] + }, + "properties": { + "openplaque:id": "1886", + "addr:full": "19 Trinity Walk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1619, + 52.9532 + ] + }, + "properties": { + "openplaque:id": "2032", + "addr:full": "Tunnel Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1516, + 52.9926 + ] + }, + "properties": { + "openplaque:id": "2034", + "addr:full": "City Hospital" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1455, + 52.9536 + ] + }, + "properties": { + "openplaque:id": "2038", + "addr:full": "30 Pelham Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1438, + 52.9508 + ] + }, + "properties": { + "openplaque:id": "2045", + "addr:full": "St. Mary's Church" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16341, + 52.9583 + ] + }, + "properties": { + "openplaque:id": "2046", + "addr:full": "13a Raleigh Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15142, + 52.9537 + ] + }, + "properties": { + "openplaque:id": "2047", + "addr:full": "\"Yates's Wine Lodge", + "date_start": "49 Long Row\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15117, + 52.95274 + ] + }, + "properties": { + "openplaque:id": "2048", + "addr:full": "\"Swim & Dance Wear shop", + "date_start": "Wheeler Gate/Friar Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1516, + 52.9535 + ] + }, + "properties": { + "openplaque:id": "2051", + "addr:full": "5 Beastmarket Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25248, + 53.08186 + ] + }, + "properties": { + "openplaque:id": "33045", + "addr:full": "Nuncargate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15392, + 52.95063 + ] + }, + "properties": { + "openplaque:id": "33166", + "addr:full": "Gatehouse - Nottingham Castle" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14299, + 52.95369 + ] + }, + "properties": { + "openplaque:id": "40514", + "addr:full": "16-22 Goose Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.18609, + 53.00189 + ] + }, + "properties": { + "openplaque:id": "42624", + "addr:full": "\"Cantrell Road", + "date_start": "Bulwell\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14991, + 52.95069 + ] + }, + "properties": { + "openplaque:id": "43830", + "addr:full": "Stanford Street", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15162, + 52.96291 + ] + }, + "properties": { + "openplaque:id": "43982", + "addr:full": "191 Mansfield Road", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14671, + 52.9537 + ] + }, + "properties": { + "openplaque:id": "52180", + "addr:full": "The George Hotel", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15128, + 52.97237 + ] + }, + "properties": { + "openplaque:id": "54588", + "addr:full": "75 Ebers Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1631, + 52.94902 + ] + }, + "properties": { + "openplaque:id": "54591", + "addr:full": "21 Lenton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15121, + 52.95776 + ] + }, + "properties": { + "openplaque:id": "54593", + "addr:full": "\"The Playwright PH", + "date_start": "Shakespeare St\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15258, + 52.95177 + ] + }, + "properties": { + "openplaque:id": "54605", + "addr:full": "Maid Marion Way", + "date_start": "1903" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15595, + 52.98151 + ] + }, + "properties": { + "openplaque:id": "54958", + "addr:full": "\"42 Caledon Road", + "date_start": "Sherwood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1932, + 52.98306 + ] + }, + "properties": { + "openplaque:id": "54959", + "addr:full": "\"45 Stockhill Lane", + "date_start": "Bulwell\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21438, + 52.93511 + ] + }, + "properties": { + "openplaque:id": "54960", + "addr:full": "\"38 Manton Crescent", + "date_start": "Lenton Abbey\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73291, + 52.67085 + ] + }, + "properties": { + "openplaque:id": "12415", + "addr:full": "29 Melton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94975, + 53.84583 + ] + }, + "properties": { + "openplaque:id": "11464", + "addr:full": "\"Holden Park", + "date_start": "B6143\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94203, + 53.84149 + ] + }, + "properties": { + "openplaque:id": "11465", + "addr:full": "Oakworth Station", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.9399, + 51.25307 + ] + }, + "properties": { + "openplaque:id": "12450", + "addr:full": "Library" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.95267, + 51.26378 + ] + }, + "properties": { + "openplaque:id": "42007", + "addr:full": "\"The Mill House", + "date_start": "Hook Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.94068, + 51.25399 + ] + }, + "properties": { + "openplaque:id": "42008", + "addr:full": "111 High Street", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.94026, + 51.2541 + ] + }, + "properties": { + "openplaque:id": "42010", + "addr:full": "\"The George Inn", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.94128, + 51.25389 + ] + }, + "properties": { + "openplaque:id": "42011", + "addr:full": "140 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.00339, + 50.73893 + ] + }, + "properties": { + "openplaque:id": "42030", + "addr:full": "\"The White Hart", + "date_start": "Fore Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.67802, + 54.2916 + ] + }, + "properties": { + "openplaque:id": "11979", + "addr:full": "Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.14886, + 53.51689 + ] + }, + "properties": { + "openplaque:id": "30610", + "addr:full": "\"Wickentree Lane", + "date_start": "Failsworth\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10769, + 53.53557 + ] + }, + "properties": { + "openplaque:id": "40650", + "addr:full": "\"Alexandra Park", + "date_start": "Queens Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11133, + 53.54231 + ] + }, + "properties": { + "openplaque:id": "41951", + "addr:full": "Town Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1105, + 53.52342 + ] + }, + "properties": { + "openplaque:id": "5214", + "addr:full": "Ashton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13911, + 53.5446 + ] + }, + "properties": { + "openplaque:id": "5510", + "addr:full": "\"Middleton Road", + "date_start": "Chadderton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.15741, + 53.51092 + ] + }, + "properties": { + "openplaque:id": "8644", + "addr:full": "\"'The Rocks' 466 Oldham Road", + "date_start": "Failsworth\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.32026, + 57.3349 + ] + }, + "properties": { + "openplaque:id": "2605", + "addr:full": "Market Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3164, + 57.3334 + ] + }, + "properties": { + "openplaque:id": "2609", + "addr:full": "South Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.29726, + 54.5996 + ] + }, + "properties": { + "openplaque:id": "7164", + "addr:full": "\"Omagh Library", + "date_start": "1 Spillars Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53274, + 52.09449 + ] + }, + "properties": { + "openplaque:id": "43416", + "addr:full": "Castle Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54662, + 52.63232 + ] + }, + "properties": { + "openplaque:id": "51335", + "addr:full": "20 Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59079, + 53.66818 + ] + }, + "properties": { + "openplaque:id": "52372", + "addr:full": "\"The Brewers Pride", + "date_start": "Low Mill Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68955, + 53.9039 + ] + }, + "properties": { + "openplaque:id": "4774", + "addr:full": "\"Ron Kitching Library", + "date_start": "Crow Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6944, + 53.9064 + ] + }, + "properties": { + "openplaque:id": "4780", + "addr:full": "Clapgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.69361, + 53.9041 + ] + }, + "properties": { + "openplaque:id": "5596", + "addr:full": "Kirkgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.69462, + 53.906 + ] + }, + "properties": { + "openplaque:id": "5854", + "addr:full": "Kirkgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.69364, + 53.9054 + ] + }, + "properties": { + "openplaque:id": "6264", + "addr:full": "Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.69335, + 53.9057 + ] + }, + "properties": { + "openplaque:id": "6266", + "addr:full": "Boroughgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.69427, + 53.9053 + ] + }, + "properties": { + "openplaque:id": "6270", + "addr:full": "Kirkgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68953, + 53.9059 + ] + }, + "properties": { + "openplaque:id": "6768", + "addr:full": "\"Otley Civic Centre", + "date_start": "Boroughgate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2775, + 50.75133 + ] + }, + "properties": { + "openplaque:id": "39085", + "addr:full": "Jesu Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2657, + 51.24382 + ] + }, + "properties": { + "openplaque:id": "42053", + "addr:full": "\"Village Library", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2584, + 51.7529 + ] + }, + "properties": { + "openplaque:id": "1007", + "addr:full": "34 Cornmarket Street (Clarendon Centre)", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25336, + 51.7546 + ] + }, + "properties": { + "openplaque:id": "1010", + "addr:full": "St Helen's Passage", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24152, + 51.7471 + ] + }, + "properties": { + "openplaque:id": "1012", + "addr:full": "\"Oxford University Sports Ground", + "date_start": "Iffley Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26231, + 51.7703 + ] + }, + "properties": { + "openplaque:id": "1013", + "addr:full": "106 Banbury Road", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25884, + 51.76459 + ] + }, + "properties": { + "openplaque:id": "10145", + "addr:full": "17 Bradmore Road", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25041, + 51.7526 + ] + }, + "properties": { + "openplaque:id": "1015", + "addr:full": "83 High Street", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26052, + 51.7713 + ] + }, + "properties": { + "openplaque:id": "1017", + "addr:full": "20 Northmoor Road", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29132, + 51.7154 + ] + }, + "properties": { + "openplaque:id": "1019", + "addr:full": "\"Foxcombe Hall", + "date_start": "Boar's Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25707, + 51.75419 + ] + }, + "properties": { + "openplaque:id": "1020", + "addr:full": "17 Broad Street", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.18971, + 51.7567 + ] + }, + "properties": { + "openplaque:id": "1021", + "addr:full": "\"The Kilns", + "date_start": "Lewis Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11628, + 51.5999 + ] + }, + "properties": { + "openplaque:id": "1022", + "addr:full": "\"19A The Street", + "date_start": "Crowmarsh Gifford\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26042, + 51.7533 + ] + }, + "properties": { + "openplaque:id": "1026", + "addr:full": "34 St Michael’s Street", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25993, + 51.7722 + ] + }, + "properties": { + "openplaque:id": "1027", + "addr:full": "10 Belbroughton Road", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25886, + 51.7633 + ] + }, + "properties": { + "openplaque:id": "1029", + "addr:full": "2 Bradmore Road", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26141, + 51.7675 + ] + }, + "properties": { + "openplaque:id": "1031", + "addr:full": "78 Banbury Road", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24714, + 51.75166 + ] + }, + "properties": { + "openplaque:id": "10319", + "addr:full": "Magdalen Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.20817, + 51.753 + ] + }, + "properties": { + "openplaque:id": "1032", + "addr:full": "\"The Nuffield Staff Accommodation", + "date_start": "72-74 Old Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22783, + 51.7325 + ] + }, + "properties": { + "openplaque:id": "11607", + "addr:full": "23 Church Cowley Road", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.239, + 51.77641 + ] + }, + "properties": { + "openplaque:id": "12779", + "addr:full": "\"Cromwell House", + "date_start": "17 Mill Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24971, + 51.7553 + ] + }, + "properties": { + "openplaque:id": "12935", + "addr:full": "\"Holywell Buildings", + "date_start": "Merton College\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21867, + 51.78768 + ] + }, + "properties": { + "openplaque:id": "12976", + "addr:full": "\"Manor House", + "date_start": "Elsfield\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25715, + 51.7498 + ] + }, + "properties": { + "openplaque:id": "1759", + "addr:full": "1 Brewer Street", + "date_start": "1993" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21106, + 51.7623 + ] + }, + "properties": { + "openplaque:id": "2022", + "addr:full": "\"Headington House", + "date_start": "Old High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22131, + 51.76281 + ] + }, + "properties": { + "openplaque:id": "27946", + "addr:full": "\"76 Sandfield Rd", + "date_start": "Headington" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25724, + 51.75403 + ] + }, + "properties": { + "openplaque:id": "28214", + "addr:full": "\"17 Broad Sreet", + "date_start": "OX1 3AS\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2575, + 51.7668 + ] + }, + "properties": { + "openplaque:id": "2853", + "addr:full": "42 Park Town", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2658, + 51.7722 + ] + }, + "properties": { + "openplaque:id": "2857", + "addr:full": "20 Lathbury Road", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2565, + 51.7646 + ] + }, + "properties": { + "openplaque:id": "2865", + "addr:full": "Crick Road", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2661, + 51.7681 + ] + }, + "properties": { + "openplaque:id": "2869", + "addr:full": "2 Polstead Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21366, + 51.7633 + ] + }, + "properties": { + "openplaque:id": "32828", + "addr:full": "\"The Coach House (formerly Waldencote)", + "date_start": "The Croft" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26298, + 51.75216 + ] + }, + "properties": { + "openplaque:id": "33237", + "addr:full": "Castle Yard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26, + 51.75182 + ] + }, + "properties": { + "openplaque:id": "33243", + "addr:full": "Bonn Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25269, + 51.7512 + ] + }, + "properties": { + "openplaque:id": "3334", + "addr:full": "4 Merton Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25811, + 51.76 + ] + }, + "properties": { + "openplaque:id": "3680", + "addr:full": "12 Parks Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22384, + 51.7229 + ] + }, + "properties": { + "openplaque:id": "3728", + "addr:full": "\"34 Oxford Road", + "date_start": "Littlemore\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25461, + 51.75193 + ] + }, + "properties": { + "openplaque:id": "39068", + "addr:full": "6 King Edward Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26128, + 51.76661 + ] + }, + "properties": { + "openplaque:id": "39510", + "addr:full": "Wychwood School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25241, + 51.75133 + ] + }, + "properties": { + "openplaque:id": "40256", + "addr:full": "4 Merton Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23359, + 51.72546 + ] + }, + "properties": { + "openplaque:id": "40454", + "addr:full": "Rose Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2657, + 51.76915 + ] + }, + "properties": { + "openplaque:id": "41310", + "addr:full": "94 Woodstock Road", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.27713, + 51.65831 + ] + }, + "properties": { + "openplaque:id": "41388" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2641, + 51.75205 + ] + }, + "properties": { + "openplaque:id": "41415" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26466, + 51.75291 + ] + }, + "properties": { + "openplaque:id": "41479" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2557, + 51.75868 + ] + }, + "properties": { + "openplaque:id": "41489" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25942, + 51.76634 + ] + }, + "properties": { + "openplaque:id": "41716", + "addr:full": "10 Park Town", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26027, + 51.75513 + ] + }, + "properties": { + "openplaque:id": "42062", + "addr:full": "5 Beaumont Street", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2657, + 51.7791 + ] + }, + "properties": { + "openplaque:id": "42677", + "addr:full": "300 Banbury Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25202, + 51.75105 + ] + }, + "properties": { + "openplaque:id": "42877", + "addr:full": "\"Merton College", + "date_start": "Merton Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21167, + 51.7568 + ] + }, + "properties": { + "openplaque:id": "43643", + "addr:full": "\"16 Windsor Street", + "date_start": "Headington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26346, + 51.75237 + ] + }, + "properties": { + "openplaque:id": "44800" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25634, + 51.7593 + ] + }, + "properties": { + "openplaque:id": "4698", + "addr:full": "Sherrington Road", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25557, + 51.75229 + ] + }, + "properties": { + "openplaque:id": "49335", + "addr:full": "118 High Street", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26166, + 51.76033 + ] + }, + "properties": { + "openplaque:id": "49593", + "addr:full": "Woodstock Road", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26418, + 51.75292 + ] + }, + "properties": { + "openplaque:id": "50824", + "addr:full": "Worcester Street Car Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26982, + 51.76484 + ] + }, + "properties": { + "openplaque:id": "51858", + "addr:full": "28 Southmoor Road", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.20131, + 51.75474 + ] + }, + "properties": { + "openplaque:id": "51952", + "addr:full": "\"7 Larkfields", + "date_start": "Headington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24868, + 51.72959 + ] + }, + "properties": { + "openplaque:id": "52938", + "addr:full": "\"Redbridge Park and Ride", + "date_start": "Abingdon Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21413, + 51.75913 + ] + }, + "properties": { + "openplaque:id": "52941", + "addr:full": "\"Britannia Inn", + "date_start": "London Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26084, + 51.75844 + ] + }, + "properties": { + "openplaque:id": "54216", + "addr:full": "35 St Giles'", + "date_start": "2020" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2546, + 51.75203 + ] + }, + "properties": { + "openplaque:id": "54217", + "addr:full": "12 King Edward Street", + "date_start": "2020" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22707, + 51.7584 + ] + }, + "properties": { + "openplaque:id": "5786", + "addr:full": "Cuckoo Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.20536, + 51.7557 + ] + }, + "properties": { + "openplaque:id": "7275", + "addr:full": "\"42 St Anne's Road", + "date_start": "Headington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26169, + 51.75404 + ] + }, + "properties": { + "openplaque:id": "7937", + "addr:full": "Gloucester Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25126, + 51.75494 + ] + }, + "properties": { + "openplaque:id": "7953", + "addr:full": "Holywell Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2503, + 51.75108 + ] + }, + "properties": { + "openplaque:id": "8412", + "addr:full": "\"Deadman's Walk", + "date_start": "Merton College\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26029, + 51.7524 + ] + }, + "properties": { + "openplaque:id": "8539", + "addr:full": "New Inn Hall Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25347, + 51.75462 + ] + }, + "properties": { + "openplaque:id": "8540", + "addr:full": "7 New College Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25041, + 51.75341 + ] + }, + "properties": { + "openplaque:id": "8543", + "addr:full": "\"former Church of St Peter-in-the-East", + "date_start": "Queen’s Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2603, + 0 + ] + }, + "properties": { + "openplaque:id": "8544", + "addr:full": "New Inn Hall Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25254, + 51.75175 + ] + }, + "properties": { + "openplaque:id": "8545", + "addr:full": "Kybald Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25735, + 51.75151 + ] + }, + "properties": { + "openplaque:id": "8547", + "addr:full": "\"Town Hall", + "date_start": "St Aldate’s\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26171, + 51.76129 + ] + }, + "properties": { + "openplaque:id": "9038", + "addr:full": "48 Woodstock Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22473, + 51.7413 + ] + }, + "properties": { + "openplaque:id": "995", + "addr:full": "393 Cowley Road", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.27245, + 51.7479 + ] + }, + "properties": { + "openplaque:id": "998", + "addr:full": "\"The King's Centre", + "date_start": "Osney Mead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.04549, + 53.37986 + ] + }, + "properties": { + "openplaque:id": "43540", + "addr:full": "Rose Mount", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.93646, + 50.53917 + ] + }, + "properties": { + "openplaque:id": "12768", + "addr:full": "Riveside" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.5697, + 50.4375 + ] + }, + "properties": { + "openplaque:id": "39199", + "addr:full": "22 Church Street Mews" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.56806, + 50.43559 + ] + }, + "properties": { + "openplaque:id": "49132" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.55882, + 50.4078 + ] + }, + "properties": { + "openplaque:id": "6734", + "addr:full": "Broadsands Road", + "date_start": "2006" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.56814, + 50.4355 + ] + }, + "properties": { + "openplaque:id": "6828", + "addr:full": "\"Barclays Bank", + "date_start": "Palace Avenue\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.56057, + 50.433 + ] + }, + "properties": { + "openplaque:id": "6848", + "addr:full": "The Esplanade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.19356, + 51.78575 + ] + }, + "properties": { + "openplaque:id": "8561", + "addr:full": "St. Mary's Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20392, + 53.17583 + ] + }, + "properties": { + "openplaque:id": "42653" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.08532, + 53.29762 + ] + }, + "properties": { + "openplaque:id": "53092", + "addr:full": "The Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.76119, + 54.08554 + ] + }, + "properties": { + "openplaque:id": "39041", + "addr:full": "Pateley Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75904, + 54.08643 + ] + }, + "properties": { + "openplaque:id": "39043", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75981, + 54.08739 + ] + }, + "properties": { + "openplaque:id": "50041", + "addr:full": "King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0221, + 54.52656 + ] + }, + "properties": { + "openplaque:id": "11485", + "addr:full": "Helvellyn Summit" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19218, + 55.65138 + ] + }, + "properties": { + "openplaque:id": "42124", + "addr:full": "\"Bank House", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1905, + 55.65167 + ] + }, + "properties": { + "openplaque:id": "42125" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.22329, + 55.64186 + ] + }, + "properties": { + "openplaque:id": "42369" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19074, + 55.65145 + ] + }, + "properties": { + "openplaque:id": "53193", + "addr:full": "tontine hotel high st" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18202, + 51.434 + ] + }, + "properties": { + "openplaque:id": "3662", + "addr:full": "2 Archer Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.16827, + 51.43363 + ] + }, + "properties": { + "openplaque:id": "39758", + "addr:full": "Italian Gardens - The Esplanade", + "date_start": "1991" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52724, + 51.769 + ] + }, + "properties": { + "openplaque:id": "39663", + "addr:full": "Lamb Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05576, + 53.3057 + ] + }, + "properties": { + "openplaque:id": "49406", + "addr:full": "Penmon Point Toll Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25972, + 57.67882 + ] + }, + "properties": { + "openplaque:id": "40856", + "addr:full": "The Pennan Inn", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25942, + 57.67894 + ] + }, + "properties": { + "openplaque:id": "49110" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75342, + 54.6632 + ] + }, + "properties": { + "openplaque:id": "11822", + "addr:full": "Great Dockwray" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75285, + 54.66457 + ] + }, + "properties": { + "openplaque:id": "11823", + "addr:full": "Middlegate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75073, + 54.66311 + ] + }, + "properties": { + "openplaque:id": "11836", + "addr:full": "\"Mitre House", + "date_start": "16 King Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75468, + 54.66668 + ] + }, + "properties": { + "openplaque:id": "1571", + "addr:full": "Town Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75133, + 54.6635 + ] + }, + "properties": { + "openplaque:id": "7633", + "addr:full": "\"Robin Hood Inn", + "date_start": "51 King Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.10503, + 50.16861 + ] + }, + "properties": { + "openplaque:id": "42026", + "addr:full": "75 The Terrace", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.10353, + 50.16819 + ] + }, + "properties": { + "openplaque:id": "42027", + "addr:full": "Higher Market Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.54742, + 51.3714 + ] + }, + "properties": { + "openplaque:id": "52962" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.48678, + 51.6484 + ] + }, + "properties": { + "openplaque:id": "2369", + "addr:full": "Church Road", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4201, + 53.07029 + ] + }, + "properties": { + "openplaque:id": "49666", + "addr:full": "Main Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.41939, + 53.06858 + ] + }, + "properties": { + "openplaque:id": "49668", + "addr:full": "Main Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.53522, + 50.11755 + ] + }, + "properties": { + "openplaque:id": "11252", + "addr:full": "Chapel Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.53724, + 50.11644 + ] + }, + "properties": { + "openplaque:id": "11254", + "addr:full": "Morrab Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.53584, + 50.11939 + ] + }, + "properties": { + "openplaque:id": "11576", + "addr:full": "4 Market Jew Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.54587, + 50.11712 + ] + }, + "properties": { + "openplaque:id": "12810", + "addr:full": "\"Hawkes Farm", + "date_start": "Alverton Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.54445, + 50.11495 + ] + }, + "properties": { + "openplaque:id": "39245", + "addr:full": "\"Westbourne Guest House", + "date_start": "Alexandra Road \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.53733, + 50.11776 + ] + }, + "properties": { + "openplaque:id": "40077", + "addr:full": "8 Parade Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.53986, + 50.11787 + ] + }, + "properties": { + "openplaque:id": "40078", + "addr:full": "20 North Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07264, + 52.1065 + ] + }, + "properties": { + "openplaque:id": "1745", + "addr:full": "Bridge Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.24226, + 52.571 + ] + }, + "properties": { + "openplaque:id": "4138", + "addr:full": "Bridge Street", + "date_start": "1984" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2423, + 52.57239 + ] + }, + "properties": { + "openplaque:id": "43776", + "addr:full": "41 Long Causeway" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.24406, + 52.58061 + ] + }, + "properties": { + "openplaque:id": "53917", + "addr:full": "Cobden Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.24379, + 52.57915 + ] + }, + "properties": { + "openplaque:id": "54205", + "addr:full": "\"Age Concern", + "date_start": "Lincoln Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93991, + 51.00311 + ] + }, + "properties": { + "openplaque:id": "10338", + "addr:full": "\"\"\"Goodyers\"\"", + "date_start": "The Spain\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93721, + 51.00375 + ] + }, + "properties": { + "openplaque:id": "10699", + "addr:full": "\"The Old Corn Exchange", + "date_start": "The Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0818, + 51.3938 + ] + }, + "properties": { + "openplaque:id": "1425", + "addr:full": "34 Birchwood Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77574, + 54.24438 + ] + }, + "properties": { + "openplaque:id": "11848", + "addr:full": "Hungate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.03549, + 50.80884 + ] + }, + "properties": { + "openplaque:id": "43656" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31112, + 53.10109 + ] + }, + "properties": { + "openplaque:id": "50413", + "addr:full": "Brookhill Hall", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3112, + 53.10107 + ] + }, + "properties": { + "openplaque:id": "50414", + "addr:full": "\"Brookhill Hall", + "date_start": "Brickhill Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.74001, + 56.70011 + ] + }, + "properties": { + "openplaque:id": "43639", + "addr:full": "Pitlochry Dam" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.73994, + 56.69896 + ] + }, + "properties": { + "openplaque:id": "43640", + "addr:full": "Pitlochry Dam" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7316, + 56.2122 + ] + }, + "properties": { + "openplaque:id": "54982", + "addr:full": "8 Calman's Wynd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73143, + 56.21184 + ] + }, + "properties": { + "openplaque:id": "54983", + "addr:full": "37 Mid Shore" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73144, + 56.21265 + ] + }, + "properties": { + "openplaque:id": "54984", + "addr:full": "54 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.16346, + 54.76286 + ] + }, + "properties": { + "openplaque:id": "7138", + "addr:full": "\"St. Patrick's CoI Church", + "date_start": "Upper Badoney\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.15465, + 50.40287 + ] + }, + "properties": { + "openplaque:id": "11475", + "addr:full": "\"Kitto Sports Centre", + "date_start": "Honicknowle Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.17644, + 50.41293 + ] + }, + "properties": { + "openplaque:id": "11954", + "addr:full": "\"The Green", + "date_start": "Crownhill Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0, + 0 + ] + }, + "properties": { + "openplaque:id": "11956", + "addr:full": "Hyde Park Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.17567, + 50.36903 + ] + }, + "properties": { + "openplaque:id": "11958", + "addr:full": "\"Egyptian House", + "date_start": "Ker Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.16158, + 50.36143 + ] + }, + "properties": { + "openplaque:id": "11959", + "addr:full": "\"North face of Artillery Tower", + "date_start": "Durnford Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.14206, + 50.36928 + ] + }, + "properties": { + "openplaque:id": "11960", + "addr:full": "\"Pearl Assurance Building", + "date_start": "Armada Way\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.13836, + 50.36697 + ] + }, + "properties": { + "openplaque:id": "11962", + "addr:full": "Hoegate Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.04859, + 50.38394 + ] + }, + "properties": { + "openplaque:id": "11966", + "addr:full": "Plympton Castle" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.13984, + 50.36901 + ] + }, + "properties": { + "openplaque:id": "11970", + "addr:full": "\"Between Prysten House and St. Andrew's church", + "date_start": "Finewell Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.15553, + 50.38691 + ] + }, + "properties": { + "openplaque:id": "11973", + "addr:full": "Scott Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.15357, + 50.37457 + ] + }, + "properties": { + "openplaque:id": "11974", + "addr:full": "North Road West" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.14057, + 50.37468 + ] + }, + "properties": { + "openplaque:id": "11975", + "addr:full": "\"Library building", + "date_start": "University of Plymouth\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.13836, + 50.36697 + ] + }, + "properties": { + "openplaque:id": "11976", + "addr:full": "Hoegate Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.1419, + 50.3644 + ] + }, + "properties": { + "openplaque:id": "31586", + "addr:full": "\"Smeaton's Tower", + "date_start": "Plymouth Hoe Promenade\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.16236, + 50.3662 + ] + }, + "properties": { + "openplaque:id": "3274", + "addr:full": "1 Durnford Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.1345, + 50.36333 + ] + }, + "properties": { + "openplaque:id": "39257", + "addr:full": "Madeira Road", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.13957, + 50.36467 + ] + }, + "properties": { + "openplaque:id": "39539", + "addr:full": "\"Marine Biological Association", + "date_start": "The Laboratory" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.14362, + 50.36654 + ] + }, + "properties": { + "openplaque:id": "42178", + "addr:full": "Lockyer Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.16583, + 50.36891 + ] + }, + "properties": { + "openplaque:id": "43588" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.13408, + 50.36621 + ] + }, + "properties": { + "openplaque:id": "44776" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.13759, + 50.3678 + ] + }, + "properties": { + "openplaque:id": "6786", + "addr:full": "Southside Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.13663, + 50.3679 + ] + }, + "properties": { + "openplaque:id": "6788", + "addr:full": "Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.16114, + 50.3631 + ] + }, + "properties": { + "openplaque:id": "7559", + "addr:full": "156 Durnford Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.14948, + 50.36994 + ] + }, + "properties": { + "openplaque:id": "7560", + "addr:full": "30 Union Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.04657, + 50.38373 + ] + }, + "properties": { + "openplaque:id": "42181" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.51733, + 50.3317 + ] + }, + "properties": { + "openplaque:id": "7273", + "addr:full": "The Warren" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31039, + 53.69426 + ] + }, + "properties": { + "openplaque:id": "40411" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.30321, + 53.69424 + ] + }, + "properties": { + "openplaque:id": "41188" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.30984, + 53.69236 + ] + }, + "properties": { + "openplaque:id": "51387", + "addr:full": "\"Barton's Cafe", + "date_start": "Finkle Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31207, + 53.69191 + ] + }, + "properties": { + "openplaque:id": "9256", + "addr:full": "\"Pontefract Museum", + "date_start": "Salter Row\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31221, + 53.69177 + ] + }, + "properties": { + "openplaque:id": "9259", + "addr:full": "\"Pontefract library", + "date_start": "Shoemarket\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.30266, + 53.6957 + ] + }, + "properties": { + "openplaque:id": "9268", + "addr:full": "Castle Garth" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.30951, + 53.69115 + ] + }, + "properties": { + "openplaque:id": "9270", + "addr:full": "\"Old hospital entrance", + "date_start": "Bondgate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.02569, + 51.66261 + ] + }, + "properties": { + "openplaque:id": "7552", + "addr:full": "Richmond Road Baptist Chapel", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.34163, + 51.5993 + ] + }, + "properties": { + "openplaque:id": "1974", + "addr:full": "High Street", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.34218, + 51.60342 + ] + }, + "properties": { + "openplaque:id": "4076", + "addr:full": "\"Pontypridd Library", + "date_start": "Library Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.38764, + 51.61041 + ] + }, + "properties": { + "openplaque:id": "41487", + "addr:full": "Rhondda Heritage Park", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.33903, + 51.6017 + ] + }, + "properties": { + "openplaque:id": "50025", + "addr:full": "National Lido of Wales", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.98616, + 50.71395 + ] + }, + "properties": { + "openplaque:id": "12884", + "addr:full": "\"Sainsbury's Local", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.98905, + 50.71223 + ] + }, + "properties": { + "openplaque:id": "12889", + "addr:full": "\"Custom House", + "date_start": "The Quay\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.98574, + 50.71206 + ] + }, + "properties": { + "openplaque:id": "12890", + "addr:full": "Behind Robert Baden-Powell statue - The Quay", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.98683, + 50.714 + ] + }, + "properties": { + "openplaque:id": "41518", + "addr:full": "40 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9969, + 53.35047 + ] + }, + "properties": { + "openplaque:id": "52262", + "addr:full": "10 Bridge Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99627, + 53.35158 + ] + }, + "properties": { + "openplaque:id": "54019", + "addr:full": "20 Bedford Road/Royal Lodge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00205, + 53.35688 + ] + }, + "properties": { + "openplaque:id": "54158", + "addr:full": "7 Duke of York Cottages" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.54508, + 54.38096 + ] + }, + "properties": { + "openplaque:id": "7034", + "addr:full": "Portaferry Presbyterian Church", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11783, + 50.83934 + ] + }, + "properties": { + "openplaque:id": "11186", + "addr:full": "Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11848, + 50.83982 + ] + }, + "properties": { + "openplaque:id": "11187", + "addr:full": "Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12609, + 50.84638 + ] + }, + "properties": { + "openplaque:id": "28222", + "addr:full": "West Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11935, + 50.8473 + ] + }, + "properties": { + "openplaque:id": "43758", + "addr:full": "48 East Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.47781, + 54.8731 + ] + }, + "properties": { + "openplaque:id": "7042", + "addr:full": "48 Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.12678, + 52.92407 + ] + }, + "properties": { + "openplaque:id": "41501" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.12678, + 52.92407 + ] + }, + "properties": { + "openplaque:id": "41502" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.12679, + 0 + ] + }, + "properties": { + "openplaque:id": "8977", + "addr:full": "\"Ffestiniog Railway", + "date_start": "Harbour Station\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.45636, + 50.51454 + ] + }, + "properties": { + "openplaque:id": "10487", + "addr:full": "A well at Portland Bill", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.28668, + 50.25636 + ] + }, + "properties": { + "openplaque:id": "42470", + "addr:full": "Gwel an Mor Resort", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.09068, + 50.79043 + ] + }, + "properties": { + "openplaque:id": "10106", + "addr:full": "\"Elm Grove", + "date_start": "Southsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10889, + 50.79994 + ] + }, + "properties": { + "openplaque:id": "10793", + "addr:full": "\"Storehouse no. 9", + "date_start": "Main Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.09983, + 50.78562 + ] + }, + "properties": { + "openplaque:id": "11675", + "addr:full": "\"Clarence Esplanade", + "date_start": "Southsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08126, + 50.78723 + ] + }, + "properties": { + "openplaque:id": "11861", + "addr:full": "\"The Kings Theatre", + "date_start": "Albert Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0776, + 50.79039 + ] + }, + "properties": { + "openplaque:id": "12148", + "addr:full": "55 Campbell Road", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10045, + 50.79183 + ] + }, + "properties": { + "openplaque:id": "12431", + "addr:full": "12 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10729, + 50.79894 + ] + }, + "properties": { + "openplaque:id": "12432", + "addr:full": "Queen Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.09398, + 50.7887 + ] + }, + "properties": { + "openplaque:id": "12459", + "addr:full": "96 Castle Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10977, + 50.80127 + ] + }, + "properties": { + "openplaque:id": "12920", + "addr:full": "\"Field gun statue", + "date_start": "Main Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10985, + 50.80126 + ] + }, + "properties": { + "openplaque:id": "12921", + "addr:full": "\"Field Gun", + "date_start": "Main Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10943, + 50.80188 + ] + }, + "properties": { + "openplaque:id": "12923", + "addr:full": "\"Lower Gun Deck", + "date_start": "HMS Victory\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10965, + 50.80183 + ] + }, + "properties": { + "openplaque:id": "12924", + "addr:full": "\"Quarter Deck", + "date_start": "HMS Victory\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08119, + 50.79229 + ] + }, + "properties": { + "openplaque:id": "1379", + "addr:full": "\"‘Fairfax’", + "date_start": "49 Victoria Road North\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08714, + 50.78819 + ] + }, + "properties": { + "openplaque:id": "1394", + "addr:full": "\"Warleigh House", + "date_start": "18 Grove Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08032, + 50.78991 + ] + }, + "properties": { + "openplaque:id": "1397", + "addr:full": "\"Lorne Lodge", + "date_start": "Campbell Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08903, + 50.7866 + ] + }, + "properties": { + "openplaque:id": "1400", + "addr:full": "\"Dovercourt", + "date_start": "36 Kent Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.09472, + 50.78805 + ] + }, + "properties": { + "openplaque:id": "1404", + "addr:full": "\"96 Castle Road", + "date_start": "Southsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.06945, + 50.7833 + ] + }, + "properties": { + "openplaque:id": "1408", + "addr:full": "\"12 Helena Road", + "date_start": "Southsea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10094, + 50.79145 + ] + }, + "properties": { + "openplaque:id": "1871", + "addr:full": "\"Buckingham House", + "date_start": "11 High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1012, + 50.79156 + ] + }, + "properties": { + "openplaque:id": "1872", + "addr:full": "Portsmouth" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.06467, + 50.7958 + ] + }, + "properties": { + "openplaque:id": "31320", + "addr:full": "Frogmore Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.09725, + 50.78856 + ] + }, + "properties": { + "openplaque:id": "31648", + "addr:full": "Southsea Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1035, + 50.79042 + ] + }, + "properties": { + "openplaque:id": "40220", + "addr:full": "103 High Street", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1027, + 50.7898 + ] + }, + "properties": { + "openplaque:id": "4332", + "addr:full": "Penny Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10689, + 50.7896 + ] + }, + "properties": { + "openplaque:id": "4334", + "addr:full": "Broad Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10883, + 50.7909 + ] + }, + "properties": { + "openplaque:id": "4336", + "addr:full": "Tower Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08649, + 50.8063 + ] + }, + "properties": { + "openplaque:id": "5076", + "addr:full": "393 Old Commercial Road", + "date_start": "1978" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.09644, + 50.79221 + ] + }, + "properties": { + "openplaque:id": "51265", + "addr:full": "Museum Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.09111, + 50.79056 + ] + }, + "properties": { + "openplaque:id": "54962", + "addr:full": "Elm Grove" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10492, + 50.7996 + ] + }, + "properties": { + "openplaque:id": "7321", + "addr:full": "Hawke Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.71929, + 55.1862 + ] + }, + "properties": { + "openplaque:id": "7106", + "addr:full": "22a The Promenade", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38868, + 52.62047 + ] + }, + "properties": { + "openplaque:id": "42752", + "addr:full": "Cnr Oaks Lane and Culling's Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11945, + 53.35348 + ] + }, + "properties": { + "openplaque:id": "27998", + "addr:full": "115 London Rd North" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.37192, + 54.31294 + ] + }, + "properties": { + "openplaque:id": "7112", + "addr:full": "\"Druminargal House", + "date_start": "29 Poyntzpass Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.78533, + 53.42148 + ] + }, + "properties": { + "openplaque:id": "39166", + "addr:full": "\"Whiston Hospital", + "date_start": "Warrington Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00542, + 52.27395 + ] + }, + "properties": { + "openplaque:id": "10200", + "addr:full": "Roseland" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0056, + 52.27375 + ] + }, + "properties": { + "openplaque:id": "10201", + "addr:full": "Shirehall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00482, + 52.27236 + ] + }, + "properties": { + "openplaque:id": "10203", + "addr:full": "Harford House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.70074, + 53.76053 + ] + }, + "properties": { + "openplaque:id": "11851", + "addr:full": "Lowthian Street", + "date_start": "1988" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7086, + 53.7566 + ] + }, + "properties": { + "openplaque:id": "2266", + "addr:full": "Christian Road", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.69542, + 53.75908 + ] + }, + "properties": { + "openplaque:id": "40443", + "addr:full": "\"Church Street", + "date_start": "Old Dog Inn\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33534, + 55.8087 + ] + }, + "properties": { + "openplaque:id": "43938", + "addr:full": "Village Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71147, + 53.76446 + ] + }, + "properties": { + "openplaque:id": "51842", + "addr:full": "\"The Guild Public House", + "date_start": "Fylde Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.70939, + 53.76407 + ] + }, + "properties": { + "openplaque:id": "7486", + "addr:full": "Fylde Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.70258, + 53.75635 + ] + }, + "properties": { + "openplaque:id": "7487", + "addr:full": "28 Winckley Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.70152, + 53.757 + ] + }, + "properties": { + "openplaque:id": "7488", + "addr:full": "Winckley Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.69862, + 53.75624 + ] + }, + "properties": { + "openplaque:id": "7489", + "addr:full": "Avenham Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.69715, + 53.75839 + ] + }, + "properties": { + "openplaque:id": "7490", + "addr:full": "Boltons Court" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.69473, + 53.7577 + ] + }, + "properties": { + "openplaque:id": "7492", + "addr:full": "Syke Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.70192, + 53.75746 + ] + }, + "properties": { + "openplaque:id": "9201", + "addr:full": "7 Winckley Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.70273, + 53.75648 + ] + }, + "properties": { + "openplaque:id": "9203", + "addr:full": "29 Winckley Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83595, + 51.72445 + ] + }, + "properties": { + "openplaque:id": "5588", + "addr:full": "\"Monks Staithe", + "date_start": "Church Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13808, + 51.33372 + ] + }, + "properties": { + "openplaque:id": "8303", + "addr:full": "\"The Lord Roberts", + "date_start": "Upper Woodcote Village\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13946, + 51.33864 + ] + }, + "properties": { + "openplaque:id": "8304", + "addr:full": "\"Commonweal Lodge", + "date_start": "Woodcote Village\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11641, + 51.33807 + ] + }, + "properties": { + "openplaque:id": "8309", + "addr:full": "Jolly Farmers", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21095, + 51.4572 + ] + }, + "properties": { + "openplaque:id": "49670", + "addr:full": "London\"", + "date_start": "\"Corner of Portinscale Road and Keswick Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19271, + 51.45641 + ] + }, + "properties": { + "openplaque:id": "49671", + "addr:full": "London\"", + "date_start": "\"5 Garratt Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.41678, + 52.88936 + ] + }, + "properties": { + "openplaque:id": "12995", + "addr:full": "Stryd Penlan" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92883, + 51.86529 + ] + }, + "properties": { + "openplaque:id": "9462", + "addr:full": "\"Buckingham Railway Centre", + "date_start": "Station Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24597, + 51.69237 + ] + }, + "properties": { + "openplaque:id": "51491", + "addr:full": "Kennington Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76619, + 53.41718 + ] + }, + "properties": { + "openplaque:id": "9463", + "addr:full": "Station Road", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41525, + 51.32936 + ] + }, + "properties": { + "openplaque:id": "11579", + "addr:full": "8 Paragon", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41098, + 51.33703 + ] + }, + "properties": { + "openplaque:id": "11580", + "addr:full": "16 Southeastern Road", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43324, + 51.34317 + ] + }, + "properties": { + "openplaque:id": "13044", + "addr:full": "\"Gate House", + "date_start": "King George VI Memorial Park\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41308, + 51.3296 + ] + }, + "properties": { + "openplaque:id": "3648", + "addr:full": "6 Royal Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42378, + 51.3344 + ] + }, + "properties": { + "openplaque:id": "3674", + "addr:full": "56 Plains of Waterloo" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42299, + 51.33375 + ] + }, + "properties": { + "openplaque:id": "41134", + "addr:full": "7 Alliance Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42633, + 51.3349 + ] + }, + "properties": { + "openplaque:id": "41135", + "addr:full": "3 Victoria Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41576, + 51.33599 + ] + }, + "properties": { + "openplaque:id": "41137", + "addr:full": "\"Eagle Cottage", + "date_start": "124 High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4143, + 51.32904 + ] + }, + "properties": { + "openplaque:id": "41138", + "addr:full": "The Churchill Tavern" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41178, + 51.33211 + ] + }, + "properties": { + "openplaque:id": "41139", + "addr:full": "47 Vale Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4201, + 51.33307 + ] + }, + "properties": { + "openplaque:id": "41140", + "addr:full": "\"The Ramsgate Society Shop", + "date_start": "Harbour Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41315, + 51.32944 + ] + }, + "properties": { + "openplaque:id": "41141", + "addr:full": "4 Royal Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39868, + 51.35492 + ] + }, + "properties": { + "openplaque:id": "41142", + "addr:full": "74 Highfield Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40487, + 0 + ] + }, + "properties": { + "openplaque:id": "41143", + "addr:full": "15 St. Mildred's Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41664, + 51.33559 + ] + }, + "properties": { + "openplaque:id": "41145", + "addr:full": "91 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42078, + 51.33253 + ] + }, + "properties": { + "openplaque:id": "42108", + "addr:full": "Albion Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41559, + 51.3376 + ] + }, + "properties": { + "openplaque:id": "4410", + "addr:full": "1 Chatham Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4146, + 51.3297 + ] + }, + "properties": { + "openplaque:id": "4414", + "addr:full": "11 Spencer Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40721, + 51.3296 + ] + }, + "properties": { + "openplaque:id": "4418", + "addr:full": "8 London Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41798, + 51.3316 + ] + }, + "properties": { + "openplaque:id": "4666", + "addr:full": "\"West Cliff Mansions", + "date_start": "Cliff Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42284, + 51.3366 + ] + }, + "properties": { + "openplaque:id": "4668", + "addr:full": "6 Artillery Road", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42521, + 51.3365 + ] + }, + "properties": { + "openplaque:id": "4760", + "addr:full": "\"Mildmay Ct", + "date_start": "Bellevue Rd\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41597, + 51.33 + ] + }, + "properties": { + "openplaque:id": "5840", + "addr:full": "14 Nelson Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4237, + 51.3331 + ] + }, + "properties": { + "openplaque:id": "5842", + "addr:full": "27 Wellington Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41623, + 51.33 + ] + }, + "properties": { + "openplaque:id": "5844", + "addr:full": "\"The Royal Harbour Hotel", + "date_start": "11 Nelson Crescent\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4156, + 51.3339 + ] + }, + "properties": { + "openplaque:id": "5850", + "addr:full": "3 Guildford Lawn" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4156, + 51.3438 + ] + }, + "properties": { + "openplaque:id": "7429", + "addr:full": "\" St Lawrence College Junior School", + "date_start": "College Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.19446, + 55.29099 + ] + }, + "properties": { + "openplaque:id": "7190", + "addr:full": "Visitor's Centre", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43065, + 52.73062 + ] + }, + "properties": { + "openplaque:id": "40636", + "addr:full": "Alton Grange" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.96787, + 51.45246 + ] + }, + "properties": { + "openplaque:id": "10522", + "addr:full": "\"RISC Global Cafe", + "date_start": "London Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.96522, + 51.45638 + ] + }, + "properties": { + "openplaque:id": "11557", + "addr:full": "Abbey ruins (currently closed to the public)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.94783, + 51.45589 + ] + }, + "properties": { + "openplaque:id": "11559", + "addr:full": "Cholmeley Road", + "date_start": "1989" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.96197, + 51.45056 + ] + }, + "properties": { + "openplaque:id": "33233", + "addr:full": "\"The Great Hall", + "date_start": "London Road Campus" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.98278, + 51.4222 + ] + }, + "properties": { + "openplaque:id": "4074", + "addr:full": "Madejski Stadium", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.9766, + 51.45262 + ] + }, + "properties": { + "openplaque:id": "44655", + "addr:full": "\"Phoebe Cusden House", + "date_start": "Basingstoke Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.96712, + 51.4507 + ] + }, + "properties": { + "openplaque:id": "5418", + "addr:full": "London Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.96477, + 51.45095 + ] + }, + "properties": { + "openplaque:id": "9434", + "addr:full": "\"Kendrick View Dental Practice", + "date_start": "39 London Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.98222, + 51.45278 + ] + }, + "properties": { + "openplaque:id": "9435", + "addr:full": "\"Talbot House", + "date_start": "Baker Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.09467, + 54.60849 + ] + }, + "properties": { + "openplaque:id": "10729", + "addr:full": "20 Dorman Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0704, + 54.62038 + ] + }, + "properties": { + "openplaque:id": "9024", + "addr:full": "Newcomen Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0631, + 54.61742 + ] + }, + "properties": { + "openplaque:id": "9025", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.06607, + 54.61846 + ] + }, + "properties": { + "openplaque:id": "9027", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94977, + 52.29399 + ] + }, + "properties": { + "openplaque:id": "42900", + "addr:full": "\"84 Birchfield Road", + "date_start": "Headless Cross\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.22586, + 50.23327 + ] + }, + "properties": { + "openplaque:id": "54516", + "addr:full": "Redruth Railway Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5512, + 52.84049 + ] + }, + "properties": { + "openplaque:id": "30244", + "addr:full": "\"The Old Mitre", + "date_start": "Repton School\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.94043, + 53.3239 + ] + }, + "properties": { + "openplaque:id": "49650", + "addr:full": "Chapelgate", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.52026, + 53.22754 + ] + }, + "properties": { + "openplaque:id": "12414", + "addr:full": "\"Library", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.46643, + 53.29116 + ] + }, + "properties": { + "openplaque:id": "12227", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.77393, + 52.78354 + ] + }, + "properties": { + "openplaque:id": "12773", + "addr:full": "near the chapel", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.28367, + 51.75953 + ] + }, + "properties": { + "openplaque:id": "12997", + "addr:full": "Victoria Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.86844, + 57.30862 + ] + }, + "properties": { + "openplaque:id": "54502" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30294, + 51.46375 + ] + }, + "properties": { + "openplaque:id": "30475", + "addr:full": "\"Richmond Magistrates Court", + "date_start": "Parkshot\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30417, + 51.46217 + ] + }, + "properties": { + "openplaque:id": "8745", + "addr:full": "\"Richmond Theatre", + "date_start": "Little Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.73392, + 54.40492 + ] + }, + "properties": { + "openplaque:id": "39053", + "addr:full": "Yorkshire\"", + "date_start": "Frenchgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.73423, + 54.40498 + ] + }, + "properties": { + "openplaque:id": "39054", + "addr:full": "Yorkshire\"", + "date_start": "24 Frenchgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79118, + 54.41426 + ] + }, + "properties": { + "openplaque:id": "39055", + "addr:full": "Yorkshire\"", + "date_start": "Whitcliffe Scar" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.73538, + 54.40369 + ] + }, + "properties": { + "openplaque:id": "41073", + "addr:full": "Yorkshire\"", + "date_start": "Channel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.73619, + 54.40282 + ] + }, + "properties": { + "openplaque:id": "41077", + "addr:full": "Yorkshire\"", + "date_start": "Millgare" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79641, + 50.84668 + ] + }, + "properties": { + "openplaque:id": "12815", + "addr:full": "\"monmouth house", + "date_start": "west street \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15055, + 50.86873 + ] + }, + "properties": { + "openplaque:id": "11055", + "addr:full": "Church Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40684, + 53.04949 + ] + }, + "properties": { + "openplaque:id": "40830", + "addr:full": "10 Hight Street", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49038, + 51.30117 + ] + }, + "properties": { + "openplaque:id": "41935", + "addr:full": "\"Cellar Wines", + "date_start": "The Old Cellar" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5191, + 54.13407 + ] + }, + "properties": { + "openplaque:id": "10230", + "addr:full": "St Agnes Lodge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5151, + 54.1456 + ] + }, + "properties": { + "openplaque:id": "12255", + "addr:full": "Station Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52028, + 54.13396 + ] + }, + "properties": { + "openplaque:id": "33054", + "addr:full": "High Saint Agnesgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52375, + 54.13625 + ] + }, + "properties": { + "openplaque:id": "33057", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53009, + 54.1331 + ] + }, + "properties": { + "openplaque:id": "3330", + "addr:full": "24 Borrage Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52288, + 54.13836 + ] + }, + "properties": { + "openplaque:id": "50377", + "addr:full": "Temple Garden off Allhallowgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94456, + 53.67295 + ] + }, + "properties": { + "openplaque:id": "41751" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.40922, + 53.76895 + ] + }, + "properties": { + "openplaque:id": "11601", + "addr:full": "68 Hermitage Street", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53217, + 54.43067 + ] + }, + "properties": { + "openplaque:id": "12676", + "addr:full": "King Street", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5322, + 54.4305 + ] + }, + "properties": { + "openplaque:id": "1984", + "addr:full": "King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53244, + 54.4306 + ] + }, + "properties": { + "openplaque:id": "44770" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53302, + 54.43182 + ] + }, + "properties": { + "openplaque:id": "46997", + "addr:full": "\"Wesley's Cottage", + "date_start": "The Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.16036, + 53.617 + ] + }, + "properties": { + "openplaque:id": "30744", + "addr:full": "The Esplanade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.15895, + 53.61592 + ] + }, + "properties": { + "openplaque:id": "30745", + "addr:full": "The Esplanade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.16455, + 53.61571 + ] + }, + "properties": { + "openplaque:id": "40278", + "addr:full": "Asda", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.14988, + 53.61432 + ] + }, + "properties": { + "openplaque:id": "41295", + "addr:full": "9 Molesworth Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.16052, + 53.61705 + ] + }, + "properties": { + "openplaque:id": "41300", + "addr:full": "The Esplanade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1583, + 53.61454 + ] + }, + "properties": { + "openplaque:id": "41301", + "addr:full": "Sparrow Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.15676, + 53.61479 + ] + }, + "properties": { + "openplaque:id": "41303", + "addr:full": "Church Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.50147, + 51.391 + ] + }, + "properties": { + "openplaque:id": "5350", + "addr:full": "The Esplanade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.50441, + 51.38867 + ] + }, + "properties": { + "openplaque:id": "8512", + "addr:full": "\"Pilgrims Passage", + "date_start": "Black Boy Alley\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.50441, + 0 + ] + }, + "properties": { + "openplaque:id": "8513", + "addr:full": "Entrance to Black Boy Alley" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.50404, + 51.38939 + ] + }, + "properties": { + "openplaque:id": "8514", + "addr:full": "\"Abdication House", + "date_start": "High St\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.50372, + 51.38984 + ] + }, + "properties": { + "openplaque:id": "8515", + "addr:full": "\"College Gate", + "date_start": "High St\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.50651, + 51.38781 + ] + }, + "properties": { + "openplaque:id": "8516", + "addr:full": "\"Corn Exchange", + "date_start": "High St\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.50292, + 51.39059 + ] + }, + "properties": { + "openplaque:id": "8517", + "addr:full": "High St." + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.50437, + 51.38901 + ] + }, + "properties": { + "openplaque:id": "8522", + "addr:full": "\"Joe Specks", + "date_start": "High St\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.50279, + 51.39088 + ] + }, + "properties": { + "openplaque:id": "8523", + "addr:full": "Guildhall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.50087, + 51.38932 + ] + }, + "properties": { + "openplaque:id": "8525", + "addr:full": "Bakers Walk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.50657, + 51.38671 + ] + }, + "properties": { + "openplaque:id": "8529", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.50468, + 51.38874 + ] + }, + "properties": { + "openplaque:id": "8533", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.50468, + 51.38874 + ] + }, + "properties": { + "openplaque:id": "8534", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01677, + 50.83862 + ] + }, + "properties": { + "openplaque:id": "40218", + "addr:full": "Monk's House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49322, + 50.99268 + ] + }, + "properties": { + "openplaque:id": "2537", + "addr:full": "\"Romsey Station", + "date_start": "Station Approach\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50016, + 50.99034 + ] + }, + "properties": { + "openplaque:id": "9686", + "addr:full": "6a Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50104, + 50.98582 + ] + }, + "properties": { + "openplaque:id": "9688", + "addr:full": "48 Middlebridge Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49609, + 50.989 + ] + }, + "properties": { + "openplaque:id": "9690", + "addr:full": "\"The White Horse Hotel", + "date_start": "19 Market Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49609, + 50.989 + ] + }, + "properties": { + "openplaque:id": "9693", + "addr:full": "\"Bradbeers", + "date_start": "Cornmarket\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50645, + 50.98592 + ] + }, + "properties": { + "openplaque:id": "9694", + "addr:full": "Quidity Developments" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49609, + 50.989 + ] + }, + "properties": { + "openplaque:id": "9696", + "addr:full": "Romsey library" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5001, + 0 + ] + }, + "properties": { + "openplaque:id": "9697", + "addr:full": "\"Lloyds Bank", + "date_start": "Market Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.19716, + 55.86286 + ] + }, + "properties": { + "openplaque:id": "39537", + "addr:full": "\"The Roslin Institute", + "date_start": "The University of Edinburgh" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58576, + 51.91559 + ] + }, + "properties": { + "openplaque:id": "12268", + "addr:full": "\"Merton House Hotel", + "date_start": "Edde Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58267, + 51.91542 + ] + }, + "properties": { + "openplaque:id": "41757", + "addr:full": "Broad Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58438, + 51.91281 + ] + }, + "properties": { + "openplaque:id": "41758", + "addr:full": "\"Webbe Almshouses", + "date_start": "Copse Cross St.\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58496, + 51.91281 + ] + }, + "properties": { + "openplaque:id": "42512" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58383, + 51.91345 + ] + }, + "properties": { + "openplaque:id": "42633" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35087, + 53.41927 + ] + }, + "properties": { + "openplaque:id": "41007", + "addr:full": "\"Thomas Rotherham College", + "date_start": "Moorgate Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.05565, + 55.83788 + ] + }, + "properties": { + "openplaque:id": "40832", + "addr:full": "Winter Gardens", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0587, + 50.8065 + ] + }, + "properties": { + "openplaque:id": "1208", + "addr:full": "Rottingdean" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0591, + 50.8064 + ] + }, + "properties": { + "openplaque:id": "1209", + "addr:full": "\"Prospect Cottage", + "date_start": "The Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0228, + 52.0454 + ] + }, + "properties": { + "openplaque:id": "5180", + "addr:full": "\"Whitehall", + "date_start": "London Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44479, + 51.09586 + ] + }, + "properties": { + "openplaque:id": "49599", + "addr:full": "Church St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25914, + 52.37038 + ] + }, + "properties": { + "openplaque:id": "30446", + "addr:full": "\"5 Hillmorton Rd", + "date_start": "CV22 5DF\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2645, + 52.37115 + ] + }, + "properties": { + "openplaque:id": "30448", + "addr:full": "\"Percival Guildhouse", + "date_start": "St Matthew's Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25053, + 52.37912 + ] + }, + "properties": { + "openplaque:id": "42639", + "addr:full": "Platform 2 - Rugby Station", + "date_start": "1997" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2599, + 52.37264 + ] + }, + "properties": { + "openplaque:id": "42643", + "addr:full": "Midas Lounge - 49 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26295, + 52.37244 + ] + }, + "properties": { + "openplaque:id": "42644", + "addr:full": "Chapel Street and Drury Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26437, + 52.3711 + ] + }, + "properties": { + "openplaque:id": "42645", + "addr:full": "\"Webb Ellis Museum", + "date_start": "5 and 6 St Matthew's Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26871, + 52.37001 + ] + }, + "properties": { + "openplaque:id": "54745", + "addr:full": "24 Bilton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25998, + 52.37505 + ] + }, + "properties": { + "openplaque:id": "54746", + "addr:full": "\"Jubilee Gardens", + "date_start": "Regent Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26238, + 52.3738 + ] + }, + "properties": { + "openplaque:id": "54747", + "addr:full": "32 North Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26148, + 52.37082 + ] + }, + "properties": { + "openplaque:id": "54752", + "addr:full": "10 Little Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72384, + 53.34191 + ] + }, + "properties": { + "openplaque:id": "40279", + "addr:full": "\"St Edwards School", + "date_start": "Canal Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72991, + 53.3422 + ] + }, + "properties": { + "openplaque:id": "44797" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60114, + 52.29587 + ] + }, + "properties": { + "openplaque:id": "11900", + "addr:full": "Washbrook Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59177, + 52.28809 + ] + }, + "properties": { + "openplaque:id": "11903", + "addr:full": "51 Grove Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5917, + 52.28714 + ] + }, + "properties": { + "openplaque:id": "11904", + "addr:full": "15 Essex Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.58967, + 52.28912 + ] + }, + "properties": { + "openplaque:id": "11905", + "addr:full": "Newton Road School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5972, + 52.28939 + ] + }, + "properties": { + "openplaque:id": "11906", + "addr:full": "12 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59723, + 52.28918 + ] + }, + "properties": { + "openplaque:id": "11908", + "addr:full": "19 High St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59944, + 52.28911 + ] + }, + "properties": { + "openplaque:id": "11909", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59778, + 52.29042 + ] + }, + "properties": { + "openplaque:id": "11910", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6093, + 52.29017 + ] + }, + "properties": { + "openplaque:id": "11913", + "addr:full": "Pemberton Centre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59678, + 52.29201 + ] + }, + "properties": { + "openplaque:id": "11916", + "addr:full": "Rectory Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59907, + 52.29218 + ] + }, + "properties": { + "openplaque:id": "11918", + "addr:full": "12 West Street", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59725, + 52.2866 + ] + }, + "properties": { + "openplaque:id": "3618", + "addr:full": "46 High St. South", + "date_start": "2006" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59641, + 52.29203 + ] + }, + "properties": { + "openplaque:id": "48687", + "addr:full": "26 Queen Street", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51086, + 50.80903 + ] + }, + "properties": { + "openplaque:id": "12085", + "addr:full": "Sea Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51181, + 50.80697 + ] + }, + "properties": { + "openplaque:id": "12086", + "addr:full": "Sea Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51497, + 50.81151 + ] + }, + "properties": { + "openplaque:id": "50867", + "addr:full": "The Street", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.207, + 55.8284 + ] + }, + "properties": { + "openplaque:id": "28118", + "addr:full": "\"Rutherglen Old Parish Church churchyard", + "date_start": "Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.31378, + 53.11384 + ] + }, + "properties": { + "openplaque:id": "42315", + "addr:full": "\"Ruthin Gaol", + "date_start": "Clwyd Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97849, + 54.44875 + ] + }, + "properties": { + "openplaque:id": "7634", + "addr:full": "Rydal Mount" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16024, + 50.73307 + ] + }, + "properties": { + "openplaque:id": "40324", + "addr:full": "Ryde Pier" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15661, + 50.72436 + ] + }, + "properties": { + "openplaque:id": "54256", + "addr:full": "Ryde St Johns Road Railway Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.73446, + 50.95035 + ] + }, + "properties": { + "openplaque:id": "28226", + "addr:full": "Lion Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7305, + 50.9495 + ] + }, + "properties": { + "openplaque:id": "31433", + "addr:full": "Strand" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.73506, + 50.9517 + ] + }, + "properties": { + "openplaque:id": "3676", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.73276, + 50.94927 + ] + }, + "properties": { + "openplaque:id": "51566", + "addr:full": "Watchbell St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.73441, + 50.95037 + ] + }, + "properties": { + "openplaque:id": "51567" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7348, + 50.9507 + ] + }, + "properties": { + "openplaque:id": "6820", + "addr:full": "East Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.73294, + 50.9499 + ] + }, + "properties": { + "openplaque:id": "8728", + "addr:full": "\"Lamb House", + "date_start": "6 West Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.73284, + 50.94996 + ] + }, + "properties": { + "openplaque:id": "8729", + "addr:full": "\"Lamb House", + "date_start": "6 West Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.73198, + 50.95001 + ] + }, + "properties": { + "openplaque:id": "8907", + "addr:full": "Mermaid Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.73417, + 50.95133 + ] + }, + "properties": { + "openplaque:id": "8909", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.73279, + 50.94995 + ] + }, + "properties": { + "openplaque:id": "8910", + "addr:full": "\"Lamb House", + "date_start": "West Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.73583, + 50.95183 + ] + }, + "properties": { + "openplaque:id": "8912", + "addr:full": "East Cliff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24008, + 52.025 + ] + }, + "properties": { + "openplaque:id": "30234", + "addr:full": "\"Hill House", + "date_start": "Museum Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24113, + 52.02327 + ] + }, + "properties": { + "openplaque:id": "8267", + "addr:full": "Market Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.83228, + 54.46083 + ] + }, + "properties": { + "openplaque:id": "7080", + "addr:full": "\"The Guildhall", + "date_start": "First Saintfield Presbyterian Church\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.32204, + 53.42261 + ] + }, + "properties": { + "openplaque:id": "32928", + "addr:full": "\"St. Paul's Parish Church", + "date_start": "Springfield Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.30413, + 0 + ] + }, + "properties": { + "openplaque:id": "32930", + "addr:full": "131 Northenden Road", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.31765, + 53.42425 + ] + }, + "properties": { + "openplaque:id": "32931", + "addr:full": "13 Northenden Road", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.26808, + 53.50322 + ] + }, + "properties": { + "openplaque:id": "30171", + "addr:full": "388 Lower Broughton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25902, + 53.48384 + ] + }, + "properties": { + "openplaque:id": "30214", + "addr:full": "\"Old Salford Town Hall", + "date_start": "Bexley Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.26421, + 53.48221 + ] + }, + "properties": { + "openplaque:id": "30445", + "addr:full": "James Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.27272, + 53.48424 + ] + }, + "properties": { + "openplaque:id": "30452", + "addr:full": "Acton Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28263, + 53.47184 + ] + }, + "properties": { + "openplaque:id": "39217", + "addr:full": "Trafford Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.27268, + 53.48424 + ] + }, + "properties": { + "openplaque:id": "40604", + "addr:full": "Acton Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.27208, + 53.48369 + ] + }, + "properties": { + "openplaque:id": "40606", + "addr:full": "Albion Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.27435, + 53.47685 + ] + }, + "properties": { + "openplaque:id": "43580", + "addr:full": "St Ignatius Walk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.27427, + 53.47686 + ] + }, + "properties": { + "openplaque:id": "43581", + "addr:full": "St Ignatius Walk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.27371, + 53.51473 + ] + }, + "properties": { + "openplaque:id": "53433", + "addr:full": "Kersal Moor", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.37488, + 53.51 + ] + }, + "properties": { + "openplaque:id": "50840", + "addr:full": "Manchester\"", + "date_start": "\"177 Greenleach Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79183, + 51.06859 + ] + }, + "properties": { + "openplaque:id": "12118", + "addr:full": "34 Milford St", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79461, + 51.06585 + ] + }, + "properties": { + "openplaque:id": "1876", + "addr:full": "North Walk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79421, + 51.0634 + ] + }, + "properties": { + "openplaque:id": "2525", + "addr:full": "Camelite Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79563, + 51.0654 + ] + }, + "properties": { + "openplaque:id": "2529", + "addr:full": "Sarum St Michael College" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47616, + 51.0388 + ] + }, + "properties": { + "openplaque:id": "3193", + "addr:full": "\"St Osmonds Church", + "date_start": "Exeter Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7939, + 51.07064 + ] + }, + "properties": { + "openplaque:id": "40135", + "addr:full": "Salt Lane", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79376, + 51.06593 + ] + }, + "properties": { + "openplaque:id": "42364", + "addr:full": "14 Cathedral Close", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79646, + 51.07387 + ] + }, + "properties": { + "openplaque:id": "42655", + "addr:full": "141 Castle Street", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79482, + 51.06838 + ] + }, + "properties": { + "openplaque:id": "42922", + "addr:full": "Gaumont Theatre", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79252, + 51.0669 + ] + }, + "properties": { + "openplaque:id": "43790", + "addr:full": "\"Rai D’Or", + "date_start": "Brown Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79627, + 51.06871 + ] + }, + "properties": { + "openplaque:id": "7595", + "addr:full": "\"building opposite the Poultry Cross", + "date_start": "corner of Silver Street and Minster Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79671, + 51.0697 + ] + }, + "properties": { + "openplaque:id": "7599", + "addr:full": "Public Library" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7918, + 51.07244 + ] + }, + "properties": { + "openplaque:id": "7603", + "addr:full": "\"The Citadel", + "date_start": "Salt Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79344, + 51.07077 + ] + }, + "properties": { + "openplaque:id": "7604", + "addr:full": "\"The Pheasant Inn", + "date_start": "on the corner of Salt Lane and Rollestone Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.80677, + 51.07169 + ] + }, + "properties": { + "openplaque:id": "7605", + "addr:full": "\"old Great Western Railway Station building", + "date_start": "Windsor Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79328, + 51.07149 + ] + }, + "properties": { + "openplaque:id": "7606", + "addr:full": "26 Endless Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79474, + 51.07184 + ] + }, + "properties": { + "openplaque:id": "7607", + "addr:full": "54 Endless Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79267, + 51.06783 + ] + }, + "properties": { + "openplaque:id": "7609", + "addr:full": "Brown Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79392, + 51.06814 + ] + }, + "properties": { + "openplaque:id": "7612", + "addr:full": "\"Dollond & Aitchison", + "date_start": "Catherine Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79481, + 51.06612 + ] + }, + "properties": { + "openplaque:id": "7621", + "addr:full": "the Close wall next to St Ann's gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7918, + 51.07244 + ] + }, + "properties": { + "openplaque:id": "7622", + "addr:full": "\"Methodist Church", + "date_start": "St Edmund's Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79729, + 51.06799 + ] + }, + "properties": { + "openplaque:id": "7623", + "addr:full": "\"Waterstone's", + "date_start": "corner of New Canal and High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7918, + 51.07244 + ] + }, + "properties": { + "openplaque:id": "7624", + "addr:full": "\"former museum building", + "date_start": "St Ann Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82524, + 51.07388 + ] + }, + "properties": { + "openplaque:id": "7626", + "addr:full": "\"The Old Rectory", + "date_start": "Lower Bemerton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7918, + 51.07244 + ] + }, + "properties": { + "openplaque:id": "7627", + "addr:full": "\"The Cathedral Hotel", + "date_start": "Milford Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79093, + 53.83476 + ] + }, + "properties": { + "openplaque:id": "10141", + "addr:full": "\"28", + "date_start": "Bingley Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.20786, + 50.40685 + ] + }, + "properties": { + "openplaque:id": "11955", + "addr:full": "48 Culver Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.20987, + 50.40845 + ] + }, + "properties": { + "openplaque:id": "42399", + "addr:full": "Lower Fore Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.21189, + 50.41058 + ] + }, + "properties": { + "openplaque:id": "42400", + "addr:full": "\"Boisdale House", + "date_start": "North Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.2068, + 50.40731 + ] + }, + "properties": { + "openplaque:id": "42401", + "addr:full": "\"Union Inn", + "date_start": "Tamar Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.21192, + 50.41055 + ] + }, + "properties": { + "openplaque:id": "42402", + "addr:full": "\"Boisdale House", + "date_start": "North Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.20724, + 50.40741 + ] + }, + "properties": { + "openplaque:id": "42403", + "addr:full": "Tamar Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.20756, + 50.40988 + ] + }, + "properties": { + "openplaque:id": "42404", + "addr:full": "55 Old Ferry Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.21129, + 50.40736 + ] + }, + "properties": { + "openplaque:id": "42405", + "addr:full": "25 Culver Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.97168, + 54.58576 + ] + }, + "properties": { + "openplaque:id": "10555", + "addr:full": "Marske & Saltburn Sands" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.45643, + 51.40422 + ] + }, + "properties": { + "openplaque:id": "42004", + "addr:full": "\"Saltford House", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36262, + 53.14387 + ] + }, + "properties": { + "openplaque:id": "40658", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.36221, + 53.14395 + ] + }, + "properties": { + "openplaque:id": "40659", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94795, + 50.68292 + ] + }, + "properties": { + "openplaque:id": "2373", + "addr:full": "Haven Point" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.075, + 51.33067 + ] + }, + "properties": { + "openplaque:id": "8294", + "addr:full": "\"Holy Family Church Hall", + "date_start": "Limpsfield Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.13992, + 51.07335 + ] + }, + "properties": { + "openplaque:id": "30504", + "addr:full": "\"Somerville Lodge", + "date_start": "Hillside\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.14153, + 51.07318 + ] + }, + "properties": { + "openplaque:id": "30557", + "addr:full": "125 High Street", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15584, + 51.07405 + ] + }, + "properties": { + "openplaque:id": "30899", + "addr:full": "\"10", + "date_start": "Radnor Cliff\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.14692, + 51.0733 + ] + }, + "properties": { + "openplaque:id": "39361", + "addr:full": "\"Granville Cottage", + "date_start": "Granville Road East\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15023, + 51.07387 + ] + }, + "properties": { + "openplaque:id": "39362", + "addr:full": "20 Castle Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15692, + 51.07404 + ] + }, + "properties": { + "openplaque:id": "39363", + "addr:full": "22 Radnor Cliff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15562, + 51.07403 + ] + }, + "properties": { + "openplaque:id": "41327", + "addr:full": "\"8", + "date_start": "Radnor Cliff\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.14542, + 51.07388 + ] + }, + "properties": { + "openplaque:id": "41328", + "addr:full": "Gough Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.14335, + 51.0734 + ] + }, + "properties": { + "openplaque:id": "41331", + "addr:full": "Devonshire Terrace (site of)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15314, + 51.0748 + ] + }, + "properties": { + "openplaque:id": "6248", + "addr:full": "\"Wells House (was Spade House)", + "date_start": "Radnor Cliff Crescent\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16238, + 50.65698 + ] + }, + "properties": { + "openplaque:id": "41699", + "addr:full": "Isle of Wight\"", + "date_start": "Station Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34214, + 51.27553 + ] + }, + "properties": { + "openplaque:id": "52118", + "addr:full": "Bell Hotel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35338, + 49.43273 + ] + }, + "properties": { + "openplaque:id": "39676", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29096, + 60.13772 + ] + }, + "properties": { + "openplaque:id": "40082", + "addr:full": "Quay" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35626, + 60.24552 + ] + }, + "properties": { + "openplaque:id": "40231", + "addr:full": "Slipway" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35626, + 60.24552 + ] + }, + "properties": { + "openplaque:id": "40233", + "addr:full": "Slipway" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24817, + 60.17551 + ] + }, + "properties": { + "openplaque:id": "40316", + "addr:full": "Tingwall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40044, + 54.27034 + ] + }, + "properties": { + "openplaque:id": "10390", + "addr:full": "\"17 Granville Road", + "date_start": "YO11 2RA\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39927, + 54.27634 + ] + }, + "properties": { + "openplaque:id": "11609", + "addr:full": "Esplanade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4017, + 54.28001 + ] + }, + "properties": { + "openplaque:id": "1661", + "addr:full": "\"Bedford Hotel", + "date_start": "Belvoir Terrace\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39892, + 54.28042 + ] + }, + "properties": { + "openplaque:id": "1662", + "addr:full": "\"Grand Hotel", + "date_start": "St Nicholas Cliff\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40284, + 54.2803 + ] + }, + "properties": { + "openplaque:id": "1663", + "addr:full": "16 York Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40727, + 54.28287 + ] + }, + "properties": { + "openplaque:id": "1665", + "addr:full": "Nelson Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39899, + 54.2828 + ] + }, + "properties": { + "openplaque:id": "1666", + "addr:full": "8 Newborough" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40166, + 54.28118 + ] + }, + "properties": { + "openplaque:id": "1667", + "addr:full": "Vernon Rd", + "date_start": "2005" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40694, + 54.27963 + ] + }, + "properties": { + "openplaque:id": "1668", + "addr:full": "\"The Victoria", + "date_start": "Westborough\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40484, + 54.29021 + ] + }, + "properties": { + "openplaque:id": "1670", + "addr:full": "\"Clifton Hotel", + "date_start": "Queens Parade\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40855, + 54.2739 + ] + }, + "properties": { + "openplaque:id": "1671", + "addr:full": "41 Westbourne Grove" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40039, + 54.28224 + ] + }, + "properties": { + "openplaque:id": "1672", + "addr:full": "1 Newborough", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3909, + 54.2871 + ] + }, + "properties": { + "openplaque:id": "1996", + "addr:full": "Castle Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39876, + 54.28051 + ] + }, + "properties": { + "openplaque:id": "29893", + "addr:full": "\"The Grand Hotel", + "date_start": "St Nicholas Cliff\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40151, + 54.27893 + ] + }, + "properties": { + "openplaque:id": "29894", + "addr:full": "\"The Art Gallery", + "date_start": "The Crescent \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4009, + 54.28099 + ] + }, + "properties": { + "openplaque:id": "29896", + "addr:full": "\"Brewers Fayre", + "date_start": "Vernon Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39834, + 54.28105 + ] + }, + "properties": { + "openplaque:id": "29897", + "addr:full": "\"Central Tramway", + "date_start": "Marine Parade\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39875, + 54.28087 + ] + }, + "properties": { + "openplaque:id": "29899", + "addr:full": "The Sunken Garden Harcourt Place", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40917, + 54.2775 + ] + }, + "properties": { + "openplaque:id": "29900", + "addr:full": "2 Belgrave Crescent", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39799, + 54.28077 + ] + }, + "properties": { + "openplaque:id": "29902", + "addr:full": "Spa cliff lift lower station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39741, + 54.27582 + ] + }, + "properties": { + "openplaque:id": "29903", + "addr:full": "Scarborough Spa" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40143, + 54.27902 + ] + }, + "properties": { + "openplaque:id": "29904", + "addr:full": "\"Londesborough Lodge", + "date_start": "The Crescent\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3921, + 54.28608 + ] + }, + "properties": { + "openplaque:id": "29908", + "addr:full": "\"Paradis House", + "date_start": "Paradise\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40073, + 54.28521 + ] + }, + "properties": { + "openplaque:id": "29909", + "addr:full": "North Terrace car park boundary wall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39312, + 54.28735 + ] + }, + "properties": { + "openplaque:id": "29910", + "addr:full": "\"Castel-by-the-Sea", + "date_start": "Mulgrave Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40555, + 54.27988 + ] + }, + "properties": { + "openplaque:id": "29911", + "addr:full": "\"Scarborough Railway Station", + "date_start": "Westborough\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40345, + 54.2785 + ] + }, + "properties": { + "openplaque:id": "29916", + "addr:full": "17 Valley Bridge Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40238, + 54.28226 + ] + }, + "properties": { + "openplaque:id": "29917", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40268, + 54.28245 + ] + }, + "properties": { + "openplaque:id": "29918", + "addr:full": "Scarborough Evening News office Aberdeen Walk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40175, + 54.27479 + ] + }, + "properties": { + "openplaque:id": "29920", + "addr:full": "St Martins Church Albion Road (Craven St elevation)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39861, + 54.28051 + ] + }, + "properties": { + "openplaque:id": "29938", + "addr:full": "\"Grand Hotel", + "date_start": "St Nicholas Cliff\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39279, + 54.28402 + ] + }, + "properties": { + "openplaque:id": "29944", + "addr:full": "80 Eastborough" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.38996, + 54.28183 + ] + }, + "properties": { + "openplaque:id": "29949", + "addr:full": "\"Lighthouse", + "date_start": "Vincent's Pier\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41123, + 54.29173 + ] + }, + "properties": { + "openplaque:id": "29952", + "addr:full": "Peasholm Park", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40956, + 54.25944 + ] + }, + "properties": { + "openplaque:id": "29953", + "addr:full": "\"Olivers Mount Racing Circuit", + "date_start": "Weaponness Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40085, + 54.28206 + ] + }, + "properties": { + "openplaque:id": "29954", + "addr:full": "1 Newborough" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40233, + 54.27966 + ] + }, + "properties": { + "openplaque:id": "29958", + "addr:full": "1-2 The Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40553, + 54.28033 + ] + }, + "properties": { + "openplaque:id": "29960", + "addr:full": "Westborough" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39474, + 54.2694 + ] + }, + "properties": { + "openplaque:id": "29961", + "addr:full": "\"Shuttleoworth Clock Tower", + "date_start": "Esplanade \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39349, + 54.28565 + ] + }, + "properties": { + "openplaque:id": "29963", + "addr:full": "10 Church Stairs Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39754, + 54.27654 + ] + }, + "properties": { + "openplaque:id": "29981", + "addr:full": "Spa Promenade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40612, + 54.28492 + ] + }, + "properties": { + "openplaque:id": "29997", + "addr:full": "Dean Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4061, + 54.28537 + ] + }, + "properties": { + "openplaque:id": "30000", + "addr:full": "Wheelhouse Square off Dean Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.408, + 54.28396 + ] + }, + "properties": { + "openplaque:id": "30001", + "addr:full": "\"5-8 Genevieve Court", + "date_start": "Trafalgar Street West\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41067, + 54.28237 + ] + }, + "properties": { + "openplaque:id": "30258", + "addr:full": "3 Gladstone Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41492, + 54.27835 + ] + }, + "properties": { + "openplaque:id": "30259", + "addr:full": "51 St John's Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40021, + 54.27495 + ] + }, + "properties": { + "openplaque:id": "53106", + "addr:full": "\"St Martin's Avenue", + "date_start": "Fairview Court\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39959, + 54.27513 + ] + }, + "properties": { + "openplaque:id": "53107", + "addr:full": "2 St Martin's Avenue", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.40096, + 56.41991 + ] + }, + "properties": { + "openplaque:id": "54299", + "addr:full": "Mansfield Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.17613, + 50.24903 + ] + }, + "properties": { + "openplaque:id": "53974" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.43748, + 56.70178 + ] + }, + "properties": { + "openplaque:id": "43933" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09994, + 50.773 + ] + }, + "properties": { + "openplaque:id": "48758", + "addr:full": "Seaford Station", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3272, + 54.83842 + ] + }, + "properties": { + "openplaque:id": "51361", + "addr:full": "Seaham Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.32743, + 54.83855 + ] + }, + "properties": { + "openplaque:id": "51362", + "addr:full": "Seaham Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.05963, + 50.70455 + ] + }, + "properties": { + "openplaque:id": "42716" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53437, + 50.93329 + ] + }, + "properties": { + "openplaque:id": "12960", + "addr:full": "The Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.03592, + 53.47713 + ] + }, + "properties": { + "openplaque:id": "1403", + "addr:full": "\"13 Beach Lawn", + "date_start": "Waterloo\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0691, + 53.7844 + ] + }, + "properties": { + "openplaque:id": "4776", + "addr:full": "Finkle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.06779, + 53.7843 + ] + }, + "properties": { + "openplaque:id": "54474" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.84755, + 55.54619 + ] + }, + "properties": { + "openplaque:id": "12996", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.76838, + 50.73833 + ] + }, + "properties": { + "openplaque:id": "2043", + "addr:full": "East Beach" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.79022, + 50.7344 + ] + }, + "properties": { + "openplaque:id": "50525", + "addr:full": "55 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.79037, + 50.73428 + ] + }, + "properties": { + "openplaque:id": "50526", + "addr:full": "Ivy Cottage" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.79661, + 50.73119 + ] + }, + "properties": { + "openplaque:id": "51507", + "addr:full": "Farthings", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77056, + 50.73627 + ] + }, + "properties": { + "openplaque:id": "53330" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7879, + 50.72444 + ] + }, + "properties": { + "openplaque:id": "53332", + "addr:full": "88 Grafton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.78472, + 50.72444 + ] + }, + "properties": { + "openplaque:id": "53333" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.78625, + 50.73854 + ] + }, + "properties": { + "openplaque:id": "53334" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.54756, + 51.20993 + ] + }, + "properties": { + "openplaque:id": "10334", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.27531, + 54.06712 + ] + }, + "properties": { + "openplaque:id": "10356", + "addr:full": "Chapel Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2786, + 54.06867 + ] + }, + "properties": { + "openplaque:id": "13006", + "addr:full": "18 Kirkgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.27624, + 54.0691 + ] + }, + "properties": { + "openplaque:id": "41761", + "addr:full": "Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28071, + 54.06693 + ] + }, + "properties": { + "openplaque:id": "52355", + "addr:full": "Settle Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18672, + 51.27405 + ] + }, + "properties": { + "openplaque:id": "39211", + "addr:full": "23 Eardley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19122, + 51.27127 + ] + }, + "properties": { + "openplaque:id": "51345" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.19836, + 51.00513 + ] + }, + "properties": { + "openplaque:id": "10500", + "addr:full": "\"Shaftesbury Abbey Museum", + "date_start": "Park Walk\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.34515, + 52.86832 + ] + }, + "properties": { + "openplaque:id": "9465", + "addr:full": "\"Shardlow Heritage Centre", + "date_start": "London Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09355, + 53.57733 + ] + }, + "properties": { + "openplaque:id": "51746", + "addr:full": "Oldham \"", + "date_start": "1 Market Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47138, + 53.3689 + ] + }, + "properties": { + "openplaque:id": "10147", + "addr:full": "\"Sheffield United Football Club", + "date_start": "Bramall Lane. Cherry Street.\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46939, + 53.36904 + ] + }, + "properties": { + "openplaque:id": "10148", + "addr:full": "\"Sheffield United Football Club", + "date_start": "Bramall Lane. Cherry Street.\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47096, + 53.36893 + ] + }, + "properties": { + "openplaque:id": "10149", + "addr:full": "\"Sheffield United Football Club", + "date_start": "Bramall Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47055, + 53.36897 + ] + }, + "properties": { + "openplaque:id": "10151", + "addr:full": "\"Sheffield United Football Club", + "date_start": "Bramall Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46975, + 53.36904 + ] + }, + "properties": { + "openplaque:id": "10152", + "addr:full": "\"Sheffield United Football Club", + "date_start": "Bramall Lane. Cherry Street.\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47018, + 53.36899 + ] + }, + "properties": { + "openplaque:id": "10154", + "addr:full": "\"Sheffield United Football Club", + "date_start": "Bramall Lane. Cherry Street.\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.44925, + 53.38957 + ] + }, + "properties": { + "openplaque:id": "10157", + "addr:full": "Norfolk Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.44596, + 53.39435 + ] + }, + "properties": { + "openplaque:id": "10159", + "addr:full": "\"West Gun Works", + "date_start": "Savile Street East\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48614, + 53.38016 + ] + }, + "properties": { + "openplaque:id": "10181", + "addr:full": "289 Glossop Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47024, + 53.38374 + ] + }, + "properties": { + "openplaque:id": "10194", + "addr:full": "18 Paradise Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46996, + 53.38401 + ] + }, + "properties": { + "openplaque:id": "10197", + "addr:full": "12 Paradise Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46942, + 53.38068 + ] + }, + "properties": { + "openplaque:id": "10224", + "addr:full": "\"Town Hall", + "date_start": "Surrey Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47072, + 53.38401 + ] + }, + "properties": { + "openplaque:id": "10233", + "addr:full": "24 Paradise Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47005, + 53.38048 + ] + }, + "properties": { + "openplaque:id": "10234", + "addr:full": "Town Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46922, + 53.36907 + ] + }, + "properties": { + "openplaque:id": "12439", + "addr:full": "Cherry Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47013, + 53.38049 + ] + }, + "properties": { + "openplaque:id": "31147", + "addr:full": "\"Town Hall", + "date_start": "Pinstone Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46495, + 53.37622 + ] + }, + "properties": { + "openplaque:id": "39434", + "addr:full": "\"The Leadmill", + "date_start": "Leadmill Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5303, + 53.37707 + ] + }, + "properties": { + "openplaque:id": "39708", + "addr:full": "Sandygate Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47198, + 53.37994 + ] + }, + "properties": { + "openplaque:id": "40481", + "addr:full": "Peace Gardens", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47198, + 53.37994 + ] + }, + "properties": { + "openplaque:id": "40485", + "addr:full": "Peace Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47005, + 53.38038 + ] + }, + "properties": { + "openplaque:id": "42801", + "addr:full": "Pinstone Street", + "date_start": "2006" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4702, + 53.38039 + ] + }, + "properties": { + "openplaque:id": "42802", + "addr:full": "Pinstone Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47035, + 53.38057 + ] + }, + "properties": { + "openplaque:id": "42803", + "addr:full": "Pinstone Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4702, + 53.38048 + ] + }, + "properties": { + "openplaque:id": "42804", + "addr:full": "Pinstone Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4702, + 53.38039 + ] + }, + "properties": { + "openplaque:id": "42805", + "addr:full": "Pinstone Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47035, + 53.38039 + ] + }, + "properties": { + "openplaque:id": "42806", + "addr:full": "Pinstone Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4702, + 53.38039 + ] + }, + "properties": { + "openplaque:id": "42807", + "addr:full": "Pinstone Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4702, + 53.38039 + ] + }, + "properties": { + "openplaque:id": "42808", + "addr:full": "Pinstone Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4705, + 53.38039 + ] + }, + "properties": { + "openplaque:id": "42809", + "addr:full": "Pinstone Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4702, + 53.3803 + ] + }, + "properties": { + "openplaque:id": "42810", + "addr:full": "Pinstone Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4702, + 53.38048 + ] + }, + "properties": { + "openplaque:id": "42811", + "addr:full": "Pinstone Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47035, + 53.38048 + ] + }, + "properties": { + "openplaque:id": "42812", + "addr:full": "Pinstone Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47035, + 53.38039 + ] + }, + "properties": { + "openplaque:id": "42813", + "addr:full": "Pinstone Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47035, + 53.38048 + ] + }, + "properties": { + "openplaque:id": "42815", + "addr:full": "Pinstone Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47575, + 53.37972 + ] + }, + "properties": { + "openplaque:id": "43887", + "addr:full": "Division Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47035, + 53.38039 + ] + }, + "properties": { + "openplaque:id": "44766" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53572, + 53.36159 + ] + }, + "properties": { + "openplaque:id": "54649", + "addr:full": "\" Wire Mill Dam", + "date_start": "Whiteley Woods" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48942, + 53.38996 + ] + }, + "properties": { + "openplaque:id": "5502", + "addr:full": "\"22 Blake Grove Road", + "date_start": "Upperthorpe\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48081, + 53.38103 + ] + }, + "properties": { + "openplaque:id": "6254", + "addr:full": "Regent St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47186, + 53.38938 + ] + }, + "properties": { + "openplaque:id": "8941", + "addr:full": "\"Kelham Island Industrial Museum", + "date_start": "Alma Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51167, + 53.33422 + ] + }, + "properties": { + "openplaque:id": "8967", + "addr:full": "\"Abbeydale Industrial Hamlet", + "date_start": "Abbeydale South Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44053, + 51.38997 + ] + }, + "properties": { + "openplaque:id": "8662", + "addr:full": "\"Peacock House", + "date_start": "Walton Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.51684, + 50.94601 + ] + }, + "properties": { + "openplaque:id": "10322", + "addr:full": "\"St Johns' Almshouse", + "date_start": "Half Moon Street / Trendle Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.51662, + 50.94618 + ] + }, + "properties": { + "openplaque:id": "10323", + "addr:full": "\"Public Weighbridge House", + "date_start": "Half Moon Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.50466, + 50.94483 + ] + }, + "properties": { + "openplaque:id": "10491", + "addr:full": "Turkish Field Gun - Sherborne Castle Estate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.51952, + 50.94502 + ] + }, + "properties": { + "openplaque:id": "41444", + "addr:full": "Westcott House on Horsecastles", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.51645, + 50.94884 + ] + }, + "properties": { + "openplaque:id": "42387", + "addr:full": "38 Cheap St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.20901, + 52.94163 + ] + }, + "properties": { + "openplaque:id": "30158", + "addr:full": "North Norfolk Railway Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21114, + 52.9435 + ] + }, + "properties": { + "openplaque:id": "4044", + "addr:full": "\"Clock Tower", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2133, + 52.945 + ] + }, + "properties": { + "openplaque:id": "4052", + "addr:full": "\"Oddfellows Hall", + "date_start": "4 Lifeboat Plain\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2121, + 52.9453 + ] + }, + "properties": { + "openplaque:id": "4054", + "addr:full": "\"Two Lifeboats Hotel", + "date_start": "2 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21009, + 52.9434 + ] + }, + "properties": { + "openplaque:id": "4060", + "addr:full": "\"Oscar's", + "date_start": "13 Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21262, + 52.94433 + ] + }, + "properties": { + "openplaque:id": "41723", + "addr:full": "Wyndham Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2064, + 52.94436 + ] + }, + "properties": { + "openplaque:id": "50551", + "addr:full": "\"Martincross", + "date_start": "5 The Boulevard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.37272, + 52.66562 + ] + }, + "properties": { + "openplaque:id": "41807" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.631, + 54.624 + ] + }, + "properties": { + "openplaque:id": "9070", + "addr:full": "Soho House", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77917, + 53.82638 + ] + }, + "properties": { + "openplaque:id": "11663", + "addr:full": "\"7", + "date_start": "Clifton Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18112, + 51.33393 + ] + }, + "properties": { + "openplaque:id": "8663", + "addr:full": "Kent\"", + "date_start": "\"Waterhouse" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27328, + 50.83314 + ] + }, + "properties": { + "openplaque:id": "10804", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25802, + 50.83227 + ] + }, + "properties": { + "openplaque:id": "12068", + "addr:full": "Brighton Road", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27492, + 50.83316 + ] + }, + "properties": { + "openplaque:id": "40131", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27565, + 50.83267 + ] + }, + "properties": { + "openplaque:id": "52348", + "addr:full": "\"The Old Tiled Cottage", + "date_start": "15 Middle Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2448, + 50.83538 + ] + }, + "properties": { + "openplaque:id": "7431", + "addr:full": "Ashcroft near Kingston Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7678, + 52.71253 + ] + }, + "properties": { + "openplaque:id": "28245", + "addr:full": "The Mount House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75126, + 52.70975 + ] + }, + "properties": { + "openplaque:id": "41032", + "addr:full": "Country Linens & Interiors - 16 Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59354, + 51.97446 + ] + }, + "properties": { + "openplaque:id": "49421", + "addr:full": "77 Swan Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59387, + 51.97444 + ] + }, + "properties": { + "openplaque:id": "49422", + "addr:full": "58 Swan Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59534, + 51.97106 + ] + }, + "properties": { + "openplaque:id": "49423", + "addr:full": "\"1 Lamb Cottage", + "date_start": "Swan Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59533, + 51.97104 + ] + }, + "properties": { + "openplaque:id": "49424", + "addr:full": "\"1 Lamb Cottage", + "date_start": "Swan Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.14131, + 51.4321 + ] + }, + "properties": { + "openplaque:id": "292", + "addr:full": "\"Loring Hall", + "date_start": "8 Water Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11179, + 51.42288 + ] + }, + "properties": { + "openplaque:id": "54278", + "addr:full": "11 Knoll Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2472, + 50.67591 + ] + }, + "properties": { + "openplaque:id": "11703", + "addr:full": "Peak Hill Road", + "date_start": "1994" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.23779, + 50.67814 + ] + }, + "properties": { + "openplaque:id": "11736", + "addr:full": "The Esplanade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.23982, + 50.67935 + ] + }, + "properties": { + "openplaque:id": "11737", + "addr:full": "\"Hope Cottage", + "date_start": "Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2376, + 50.67992 + ] + }, + "properties": { + "openplaque:id": "11738", + "addr:full": "Old Fore Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.23758, + 50.67884 + ] + }, + "properties": { + "openplaque:id": "11743", + "addr:full": "Fore Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.24343, + 50.68175 + ] + }, + "properties": { + "openplaque:id": "11766", + "addr:full": "Station Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.24279, + 50.67832 + ] + }, + "properties": { + "openplaque:id": "31479", + "addr:full": "Fortfield Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.24641, + 50.67571 + ] + }, + "properties": { + "openplaque:id": "32923", + "addr:full": "Peak Hill Road", + "date_start": "1934" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.23983, + 50.67934 + ] + }, + "properties": { + "openplaque:id": "39243", + "addr:full": "Coburg Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.22121, + 50.68795 + ] + }, + "properties": { + "openplaque:id": "42266", + "addr:full": "\"Norman Lockyer Observatory", + "date_start": "Salcombe Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.24279, + 50.67832 + ] + }, + "properties": { + "openplaque:id": "5246", + "addr:full": "\"Sidmouth Cricket Club", + "date_start": "The Fortfield\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2393, + 50.68589 + ] + }, + "properties": { + "openplaque:id": "8763", + "addr:full": "\"The Sidholme Hotel", + "date_start": "Elysian Fields\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67425, + 51.3509 + ] + }, + "properties": { + "openplaque:id": "30192", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.12936, + 51.72092 + ] + }, + "properties": { + "openplaque:id": "30505", + "addr:full": "Ty Ebbw Fach" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.12326, + 54.55695 + ] + }, + "properties": { + "openplaque:id": "7158", + "addr:full": "Church Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.98405, + 54.56161 + ] + }, + "properties": { + "openplaque:id": "41215", + "addr:full": "\"Skelton Civic Hall", + "date_start": "Coniston Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.01516, + 53.96402 + ] + }, + "properties": { + "openplaque:id": "11470", + "addr:full": "Skipton Castle" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0171, + 53.96122 + ] + }, + "properties": { + "openplaque:id": "42588", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.01612, + 53.96237 + ] + }, + "properties": { + "openplaque:id": "42710", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0119, + 53.95908 + ] + }, + "properties": { + "openplaque:id": "50935", + "addr:full": "\"Skipton Parish Church of England Primary School", + "date_start": "Brougham Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88082, + 53.6236 + ] + }, + "properties": { + "openplaque:id": "9394", + "addr:full": "Station Road", + "date_start": "1987" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41, + 52.99944 + ] + }, + "properties": { + "openplaque:id": "49433", + "addr:full": "Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40722, + 53 + ] + }, + "properties": { + "openplaque:id": "49434", + "addr:full": "Eastgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40861, + 52.99889 + ] + }, + "properties": { + "openplaque:id": "49436", + "addr:full": "29 Carre Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4075, + 52.99883 + ] + }, + "properties": { + "openplaque:id": "49437", + "addr:full": "Navigation Yard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59363, + 51.50722 + ] + }, + "properties": { + "openplaque:id": "50511", + "addr:full": "29 Church Street", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.96213, + 52.49762 + ] + }, + "properties": { + "openplaque:id": "10757", + "addr:full": "Bridge Street North / Rolfe Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94752, + 52.4973 + ] + }, + "properties": { + "openplaque:id": "10759", + "addr:full": "Foundry Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.97253, + 52.49651 + ] + }, + "properties": { + "openplaque:id": "10767", + "addr:full": "\"Smethwick Library", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.97095, + 52.47249 + ] + }, + "properties": { + "openplaque:id": "12069", + "addr:full": "\"Shakespeare Garden - Lightwoods Park", + "date_start": "Bearwood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94738, + 52.49791 + ] + }, + "properties": { + "openplaque:id": "13126", + "addr:full": "\"William Murdock's cottage", + "date_start": "Foundry Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.97793, + 0 + ] + }, + "properties": { + "openplaque:id": "9729", + "addr:full": "Warley Woods", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59345, + 54.22874 + ] + }, + "properties": { + "openplaque:id": "30336", + "addr:full": "\"Pinfold", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78331, + 52.41474 + ] + }, + "properties": { + "openplaque:id": "10050", + "addr:full": "Station Road / Lode Lane", + "date_start": "1887" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.70753, + 52.44434 + ] + }, + "properties": { + "openplaque:id": "27909", + "addr:full": "\"National Motorcycle Museum", + "date_start": "Coventry Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82677, + 52.41085 + ] + }, + "properties": { + "openplaque:id": "31516", + "addr:full": "\"Shirley Park - Stratford Road", + "date_start": "Shirley\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77715, + 52.4124 + ] + }, + "properties": { + "openplaque:id": "5326", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79791, + 52.4434 + ] + }, + "properties": { + "openplaque:id": "53514", + "addr:full": "\"Olton Jubilee Park - Lyndon Road", + "date_start": "Olton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83548, + 52.36744 + ] + }, + "properties": { + "openplaque:id": "53792", + "addr:full": "\"Earlswood Lakes - Valley Road", + "date_start": "Earlswood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79889, + 52.91333 + ] + }, + "properties": { + "openplaque:id": "51730", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.72151, + 51.59025 + ] + }, + "properties": { + "openplaque:id": "10330", + "addr:full": "\"Rose Cottage", + "date_start": "Chapel Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42936, + 55.00539 + ] + }, + "properties": { + "openplaque:id": "41912", + "addr:full": "Greens Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40745, + 54.99501 + ] + }, + "properties": { + "openplaque:id": "41914", + "addr:full": "Sea Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43103, + 54.99927 + ] + }, + "properties": { + "openplaque:id": "41916", + "addr:full": "Ocean Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42099, + 54.98735 + ] + }, + "properties": { + "openplaque:id": "41921", + "addr:full": "3 Westoe Village" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43507, + 55.00222 + ] + }, + "properties": { + "openplaque:id": "49409", + "addr:full": "Mile End Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43612, + 54.9946 + ] + }, + "properties": { + "openplaque:id": "50089", + "addr:full": "\"St Hilda's Pit Head", + "date_start": "Henry Robson Way\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.34489, + 50.92302 + ] + }, + "properties": { + "openplaque:id": "12115", + "addr:full": "\"Chalk Hill", + "date_start": "West End\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40652, + 50.90862 + ] + }, + "properties": { + "openplaque:id": "12925", + "addr:full": "Civic Centre Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3829, + 50.89916 + ] + }, + "properties": { + "openplaque:id": "12940", + "addr:full": "Hazel Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.39754, + 50.92742 + ] + }, + "properties": { + "openplaque:id": "1380", + "addr:full": "\"38 Brookvale Road", + "date_start": "Highfield\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40399, + 50.9137 + ] + }, + "properties": { + "openplaque:id": "1384", + "addr:full": "6 Carlton Crescent", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40273, + 50.9146 + ] + }, + "properties": { + "openplaque:id": "1388", + "addr:full": "\"The Director General’s House", + "date_start": "Rockstone Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40072, + 50.91398 + ] + }, + "properties": { + "openplaque:id": "1390", + "addr:full": "2 Cranbury Place", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.39552, + 50.9254 + ] + }, + "properties": { + "openplaque:id": "1392", + "addr:full": "\"2 Russell Place", + "date_start": "Portswood\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.36814, + 50.91404 + ] + }, + "properties": { + "openplaque:id": "1409", + "addr:full": "\"38 Chessel Avenue", + "date_start": "Bitterne\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3776, + 50.9458 + ] + }, + "properties": { + "openplaque:id": "1750", + "addr:full": "\"The Concord Club", + "date_start": "Stoneham Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.36795, + 50.914 + ] + }, + "properties": { + "openplaque:id": "30693", + "addr:full": "38 chessel avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47039, + 50.9372 + ] + }, + "properties": { + "openplaque:id": "42268", + "addr:full": "Adanac Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4003, + 50.92171 + ] + }, + "properties": { + "openplaque:id": "49278", + "addr:full": "66 Alma Road", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3983, + 50.89759 + ] + }, + "properties": { + "openplaque:id": "54038", + "addr:full": "Queen's Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40362, + 50.89627 + ] + }, + "properties": { + "openplaque:id": "54043", + "addr:full": "\"The Platform Tavern", + "date_start": "Town Quay\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4051, + 50.9027 + ] + }, + "properties": { + "openplaque:id": "54055", + "addr:full": "Bargate Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4034, + 50.89949 + ] + }, + "properties": { + "openplaque:id": "54064", + "addr:full": "Bernard Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.39371, + 50.89701 + ] + }, + "properties": { + "openplaque:id": "54074", + "addr:full": "Canute Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40441, + 50.91464 + ] + }, + "properties": { + "openplaque:id": "54255", + "addr:full": "\"Charles Gordon House", + "date_start": "Rockstone Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48229, + 50.91116 + ] + }, + "properties": { + "openplaque:id": "8972", + "addr:full": "\"Eling Tide Mill", + "date_start": "The Tollbridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.30772, + 50.8185 + ] + }, + "properties": { + "openplaque:id": "9446", + "addr:full": "\"Calshot Activities Centre", + "date_start": "Calshot\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.25783, + 51.15483 + ] + }, + "properties": { + "openplaque:id": "10655", + "addr:full": "2 Taylor Street", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26583, + 51.151 + ] + }, + "properties": { + "openplaque:id": "11223", + "addr:full": "5 Norstead Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.273, + 51.1535 + ] + }, + "properties": { + "openplaque:id": "30633", + "addr:full": "42 Weare Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.70502, + 51.5482 + ] + }, + "properties": { + "openplaque:id": "3504", + "addr:full": "177 Victoria Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71587, + 0 + ] + }, + "properties": { + "openplaque:id": "6002", + "addr:full": "Southend Pier", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0, + 0 + ] + }, + "properties": { + "openplaque:id": "30846", + "addr:full": "Lord Street junction Duke Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00603, + 53.64971 + ] + }, + "properties": { + "openplaque:id": "40865", + "addr:full": "41 Nevill Street", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00328, + 53.64916 + ] + }, + "properties": { + "openplaque:id": "41739" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0347, + 53.6234 + ] + }, + "properties": { + "openplaque:id": "9683", + "addr:full": "\"15th Fairway", + "date_start": "Royal Birkdale Golf Club" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.09148, + 50.78503 + ] + }, + "properties": { + "openplaque:id": "51386", + "addr:full": "Osbourne Road", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.95199, + 53.08041 + ] + }, + "properties": { + "openplaque:id": "10742", + "addr:full": "\"Burgage Manor", + "date_start": "The Burgage\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.95323, + 53.07721 + ] + }, + "properties": { + "openplaque:id": "39312", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.96399, + 53.06288 + ] + }, + "properties": { + "openplaque:id": "48674", + "addr:full": "\"Brackenhurst Hall", + "date_start": "Nottingham Trent University\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.67719, + 52.3273 + ] + }, + "properties": { + "openplaque:id": "2686", + "addr:full": "58 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.67923, + 52.3261 + ] + }, + "properties": { + "openplaque:id": "2694", + "addr:full": "\"Southwold Town Hall", + "date_start": "Market Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.67623, + 52.3456 + ] + }, + "properties": { + "openplaque:id": "3804", + "addr:full": "Southwold", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.67822, + 52.3249 + ] + }, + "properties": { + "openplaque:id": "3868", + "addr:full": "Park Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15398, + 52.78427 + ] + }, + "properties": { + "openplaque:id": "12120", + "addr:full": "22 Spring Street", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15072, + 52.78661 + ] + }, + "properties": { + "openplaque:id": "39939", + "addr:full": "Bridge Street", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15021, + 52.78635 + ] + }, + "properties": { + "openplaque:id": "39940", + "addr:full": "Double Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15147, + 52.7871 + ] + }, + "properties": { + "openplaque:id": "40689", + "addr:full": "Red Lion Hotel", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15147, + 52.7871 + ] + }, + "properties": { + "openplaque:id": "44744", + "addr:full": "Red Lion Hotel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61195, + 54.69435 + ] + }, + "properties": { + "openplaque:id": "43827", + "addr:full": "67 Whitworth Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33069, + 51.7483 + ] + }, + "properties": { + "openplaque:id": "11885", + "addr:full": "Alma Road", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33639, + 51.75157 + ] + }, + "properties": { + "openplaque:id": "4732", + "addr:full": "\"Maltings", + "date_start": "Victoria Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34456, + 51.75249 + ] + }, + "properties": { + "openplaque:id": "49365", + "addr:full": "18 George Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34051, + 51.75147 + ] + }, + "properties": { + "openplaque:id": "49709", + "addr:full": "\"French Row", + "date_start": "St Albans\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34064, + 51.75134 + ] + }, + "properties": { + "openplaque:id": "49710", + "addr:full": "French Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34066, + 51.75132 + ] + }, + "properties": { + "openplaque:id": "49711", + "addr:full": "French Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34115, + 51.74848 + ] + }, + "properties": { + "openplaque:id": "49714", + "addr:full": "\"Torrington House", + "date_start": "47 Holywell Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34429, + 51.75102 + ] + }, + "properties": { + "openplaque:id": "53696" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.79374, + 56.34123 + ] + }, + "properties": { + "openplaque:id": "50609", + "addr:full": "75 North Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.80218, + 56.34177 + ] + }, + "properties": { + "openplaque:id": "50869", + "addr:full": "8 Abbotsford Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.80651, + 56.34589 + ] + }, + "properties": { + "openplaque:id": "8822", + "addr:full": "West Sands", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.44313, + 53.25756 + ] + }, + "properties": { + "openplaque:id": "42600", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.44076, + 53.25686 + ] + }, + "properties": { + "openplaque:id": "42601", + "addr:full": "Upper Denbigh Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.44046, + 53.25819 + ] + }, + "properties": { + "openplaque:id": "42602", + "addr:full": "Chester Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.44457, + 53.25691 + ] + }, + "properties": { + "openplaque:id": "42757", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.44236, + 53.25767 + ] + }, + "properties": { + "openplaque:id": "42758", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.44282, + 53.25755 + ] + }, + "properties": { + "openplaque:id": "42759", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.44346, + 53.25745 + ] + }, + "properties": { + "openplaque:id": "42760", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.26416, + 51.88102 + ] + }, + "properties": { + "openplaque:id": "53379", + "addr:full": "28B High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.26838, + 51.87251 + ] + }, + "properties": { + "openplaque:id": "54249", + "addr:full": "St. Non's Chapel and Well" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.12184, + 56.39428 + ] + }, + "properties": { + "openplaque:id": "50971", + "addr:full": "Four Seasons Hotel" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07729, + 52.3255 + ] + }, + "properties": { + "openplaque:id": "3304", + "addr:full": "Cambs\"", + "date_start": "\"The Norris Museum" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.47901, + 50.21534 + ] + }, + "properties": { + "openplaque:id": "53699", + "addr:full": "Cornwall\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.48087, + 50.21547 + ] + }, + "properties": { + "openplaque:id": "53701", + "addr:full": "Cornwall\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.48027, + 50.21098 + ] + }, + "properties": { + "openplaque:id": "53702", + "addr:full": "Cornwall\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.70705, + 50.1274 + ] + }, + "properties": { + "openplaque:id": "10585", + "addr:full": "Cape Cornwall", + "date_start": "1987" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37075, + 51.15492 + ] + }, + "properties": { + "openplaque:id": "40693", + "addr:full": "Red Lion" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.34247, + 59.9732 + ] + }, + "properties": { + "openplaque:id": "40238", + "addr:full": "Shetland\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11817, + 52.80633 + ] + }, + "properties": { + "openplaque:id": "30203", + "addr:full": "\"Collegiate Church of Saint Marymore", + "date_start": "St Marys Place \"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11316, + 52.80317 + ] + }, + "properties": { + "openplaque:id": "30205", + "addr:full": "White Lion Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11704, + 52.80728 + ] + }, + "properties": { + "openplaque:id": "42476", + "addr:full": "\"Shire Hall Gallery", + "date_start": "Market Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11702, + 52.80724 + ] + }, + "properties": { + "openplaque:id": "42477", + "addr:full": "\"Shire Hall Gallery", + "date_start": "Market Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11697, + 52.80714 + ] + }, + "properties": { + "openplaque:id": "42479", + "addr:full": "\"Shire Hall Gallery", + "date_start": "Market Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.97109, + 52.78033 + ] + }, + "properties": { + "openplaque:id": "53189", + "addr:full": "\"Wolseley Bridge", + "date_start": "Rugeley\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12998, + 54.26815 + ] + }, + "properties": { + "openplaque:id": "43906", + "addr:full": "Bells Cottage", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.041, + 53.473 + ] + }, + "properties": { + "openplaque:id": "2449", + "addr:full": "\"Bower Fold Ground", + "date_start": "Mottram Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06385, + 53.4843 + ] + }, + "properties": { + "openplaque:id": "40952", + "addr:full": "Station platform" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05625, + 53.48323 + ] + }, + "properties": { + "openplaque:id": "8039", + "addr:full": "Library", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.04579, + 53.48557 + ] + }, + "properties": { + "openplaque:id": "8046", + "addr:full": "St Paul's Primary School", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.04125, + 53.47443 + ] + }, + "properties": { + "openplaque:id": "8051", + "addr:full": "\"Woodlands", + "date_start": "Mottram Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06385, + 53.4843 + ] + }, + "properties": { + "openplaque:id": "8056", + "addr:full": "Station", + "date_start": "1994" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06401, + 53.48419 + ] + }, + "properties": { + "openplaque:id": "8057", + "addr:full": "National Railway Museum" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48238, + 52.65317 + ] + }, + "properties": { + "openplaque:id": "43342", + "addr:full": "Barn Hill", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48079, + 52.6522 + ] + }, + "properties": { + "openplaque:id": "43344", + "addr:full": "All Saints Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.47868, + 52.65336 + ] + }, + "properties": { + "openplaque:id": "43348", + "addr:full": "38 Broad Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.47815, + 52.65053 + ] + }, + "properties": { + "openplaque:id": "43349", + "addr:full": "4 St Mary's Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.47931, + 52.65141 + ] + }, + "properties": { + "openplaque:id": "49387", + "addr:full": "7 St. Mary's Street", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.44084, + 51.51447 + ] + }, + "properties": { + "openplaque:id": "3298", + "addr:full": "The Crooked Billet", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26932, + 52.93201 + ] + }, + "properties": { + "openplaque:id": "40025", + "addr:full": "\"Stapleford House", + "date_start": "Wesley Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38183, + 53.27441 + ] + }, + "properties": { + "openplaque:id": "9438", + "addr:full": "Derbyshire\"", + "date_start": "\"Barrow Hill Roundhouse Railway Centre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1074, + 51.33987 + ] + }, + "properties": { + "openplaque:id": "9410", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20797, + 51.92169 + ] + }, + "properties": { + "openplaque:id": "52928", + "addr:full": "Woodfield Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20767, + 51.9115 + ] + }, + "properties": { + "openplaque:id": "7514", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21235, + 51.22156 + ] + }, + "properties": { + "openplaque:id": "54598", + "addr:full": "St. Nicholas Church" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33137, + 50.89024 + ] + }, + "properties": { + "openplaque:id": "11052", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33587, + 50.88121 + ] + }, + "properties": { + "openplaque:id": "12461", + "addr:full": "Bostal Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32701, + 50.88904 + ] + }, + "properties": { + "openplaque:id": "40093", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.93618, + 56.12866 + ] + }, + "properties": { + "openplaque:id": "10920", + "addr:full": "\"Stirling Bridge", + "date_start": "Causewayhead Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.94286, + 56.12074 + ] + }, + "properties": { + "openplaque:id": "10921", + "addr:full": "\"Tolbooth", + "date_start": "Jail Wynd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.92105, + 56.1456 + ] + }, + "properties": { + "openplaque:id": "40895", + "addr:full": "MacRobert Arts Centre", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.9451, + 56.12052 + ] + }, + "properties": { + "openplaque:id": "48739", + "addr:full": "Back Walk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.94409, + 56.11529 + ] + }, + "properties": { + "openplaque:id": "52185", + "addr:full": "19 Clarendon Place", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.14787, + 53.4087 + ] + }, + "properties": { + "openplaque:id": "12143", + "addr:full": "\"Taylor House", + "date_start": "23 Turncroft Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.15762, + 53.41103 + ] + }, + "properties": { + "openplaque:id": "12809", + "addr:full": "Little Underbank" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.14412, + 53.39131 + ] + }, + "properties": { + "openplaque:id": "41117", + "addr:full": "Stockport Grammar School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.18566, + 53.42358 + ] + }, + "properties": { + "openplaque:id": "42559", + "addr:full": "26 Shaw Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.158, + 53.41171 + ] + }, + "properties": { + "openplaque:id": "42696", + "addr:full": "Great Underbank" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.15809, + 53.4117 + ] + }, + "properties": { + "openplaque:id": "43898", + "addr:full": "\"Former National Westminster Bank", + "date_start": "St Petersgate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.16116, + 53.34214 + ] + }, + "properties": { + "openplaque:id": "53931", + "addr:full": "\"446 Chester Road", + "date_start": "Woodford\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31301, + 54.56698 + ] + }, + "properties": { + "openplaque:id": "42886", + "addr:full": "The Globe Theatre", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42342, + 52.57135 + ] + }, + "properties": { + "openplaque:id": "1977", + "addr:full": "Willow Park Industrial Estate", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.41395, + 52.57165 + ] + }, + "properties": { + "openplaque:id": "4770", + "addr:full": "The Church of St. Margaret of Antioch", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.41394, + 52.57187 + ] + }, + "properties": { + "openplaque:id": "4786", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4143, + 52.57022 + ] + }, + "properties": { + "openplaque:id": "4788", + "addr:full": "Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4143, + 52.57022 + ] + }, + "properties": { + "openplaque:id": "4790", + "addr:full": "Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.41612, + 52.57063 + ] + }, + "properties": { + "openplaque:id": "4792", + "addr:full": "The Mangle House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.41713, + 52.57067 + ] + }, + "properties": { + "openplaque:id": "4794", + "addr:full": "Station Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.41838, + 52.57096 + ] + }, + "properties": { + "openplaque:id": "4796", + "addr:full": "\"Crown Hill Bungalow", + "date_start": "Station Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42255, + 52.57127 + ] + }, + "properties": { + "openplaque:id": "4798", + "addr:full": "Ashby Boat Company yard", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.16979, + 53.02414 + ] + }, + "properties": { + "openplaque:id": "10055", + "addr:full": "\"51 Well Street", + "date_start": "Hanley\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05588, + 52.96527 + ] + }, + "properties": { + "openplaque:id": "12457", + "addr:full": "\"350 Uttoxeter Road", + "date_start": "Blythe Bridge\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21088, + 53.01556 + ] + }, + "properties": { + "openplaque:id": "1433", + "addr:full": "\"18 Victoria Street", + "date_start": "Basford\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.20485, + 53.05931 + ] + }, + "properties": { + "openplaque:id": "30454", + "addr:full": "\"Tunstall Park", + "date_start": "Victoria Park Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1931, + 53.04643 + ] + }, + "properties": { + "openplaque:id": "44707", + "addr:full": "\"Moorland Pottery", + "date_start": "Moorland Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.14712, + 52.90232 + ] + }, + "properties": { + "openplaque:id": "27886", + "addr:full": "\"Crown Hotel", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.14612, + 52.9004 + ] + }, + "properties": { + "openplaque:id": "31293", + "addr:full": "21 Stafford Street", + "date_start": "1977" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.20807, + 56.96287 + ] + }, + "properties": { + "openplaque:id": "39938", + "addr:full": "The Carron Fish Bar", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.20224, + 56.96077 + ] + }, + "properties": { + "openplaque:id": "42097" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.20438, + 56.96156 + ] + }, + "properties": { + "openplaque:id": "42503" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2034, + 56.96106 + ] + }, + "properties": { + "openplaque:id": "53068", + "addr:full": "Keith Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.11082, + 54.49828 + ] + }, + "properties": { + "openplaque:id": "51753" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.38997, + 58.20836 + ] + }, + "properties": { + "openplaque:id": "30661", + "addr:full": "\"Crown Hotel", + "date_start": "Castle Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.38682, + 58.20861 + ] + }, + "properties": { + "openplaque:id": "39840", + "addr:full": "corner of Francis Street and Kenneth Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.45399, + 50.91782 + ] + }, + "properties": { + "openplaque:id": "11218", + "addr:full": "The White Horse Inn" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44617, + 50.91633 + ] + }, + "properties": { + "openplaque:id": "12156", + "addr:full": "Washington Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59104, + 51.25517 + ] + }, + "properties": { + "openplaque:id": "41617", + "addr:full": "Stoughton Barracks" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.14301, + 52.45626 + ] + }, + "properties": { + "openplaque:id": "44656", + "addr:full": "Stourbridge Interchange - Foster Street East", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.15063, + 52.44999 + ] + }, + "properties": { + "openplaque:id": "51936", + "addr:full": "Queen's Drive - Mary Stevens Park", + "date_start": "1957" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.27948, + 52.337 + ] + }, + "properties": { + "openplaque:id": "9470", + "addr:full": "\"Stourport Basin Office", + "date_start": "Severnside\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67691, + 53.32732 + ] + }, + "properties": { + "openplaque:id": "51622", + "addr:full": "Church Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0, + 0 + ] + }, + "properties": { + "openplaque:id": "39443", + "addr:full": "Manor House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.01816, + 52.03142 + ] + }, + "properties": { + "openplaque:id": "53171", + "addr:full": "Stowe School", + "date_start": "2020" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.46304, + 54.82828 + ] + }, + "properties": { + "openplaque:id": "48716", + "addr:full": "Patrick Street", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.46103, + 54.82555 + ] + }, + "properties": { + "openplaque:id": "7951", + "addr:full": "17 Bowling Green", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.70808, + 52.19388 + ] + }, + "properties": { + "openplaque:id": "10107", + "addr:full": "\"Shakespeare's Birthplace", + "date_start": "Henley Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.70939, + 52.19423 + ] + }, + "properties": { + "openplaque:id": "11996", + "addr:full": "Shakespeare's Birthplace Coach Terminal - Windsor Street", + "date_start": "1980" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.70598, + 52.19438 + ] + }, + "properties": { + "openplaque:id": "41053" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.70666, + 52.19156 + ] + }, + "properties": { + "openplaque:id": "42681", + "addr:full": "1 Sheep Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.70937, + 52.18969 + ] + }, + "properties": { + "openplaque:id": "7371", + "addr:full": "\"The Shakespeare Institute", + "date_start": "Mason Croft" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.70245, + 52.19147 + ] + }, + "properties": { + "openplaque:id": "8632", + "addr:full": "Avon Lock - Bancroft Basin" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.70487, + 52.19035 + ] + }, + "properties": { + "openplaque:id": "8635", + "addr:full": "\"The Arden Hotel", + "date_start": "Waterside\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.70118, + 52.19204 + ] + }, + "properties": { + "openplaque:id": "8636", + "addr:full": "Clopton Bridge - River Avon" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.74037, + 51.12851 + ] + }, + "properties": { + "openplaque:id": "10669", + "addr:full": "M & S Outlet - Clarks Village" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.74033, + 51.12973 + ] + }, + "properties": { + "openplaque:id": "10670", + "addr:full": "Gate - Car park 4 - Clarks Village" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.30707, + 53.44741 + ] + }, + "properties": { + "openplaque:id": "39900", + "addr:full": "Manchester\"", + "date_start": "Lester Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.30094, + 58.95845 + ] + }, + "properties": { + "openplaque:id": "33207", + "addr:full": "40 Alfred Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2977, + 58.96348 + ] + }, + "properties": { + "openplaque:id": "33208", + "addr:full": "8 Victoria Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.29887, + 58.952 + ] + }, + "properties": { + "openplaque:id": "3486", + "addr:full": "Back Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.31924, + 58.96346 + ] + }, + "properties": { + "openplaque:id": "6318", + "addr:full": "George Mackay Brown's house" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21581, + 51.7457 + ] + }, + "properties": { + "openplaque:id": "1334", + "addr:full": "near the main door of the Old Town Hall in the Shambles", + "date_start": "1997" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.87238, + 52.2748 + ] + }, + "properties": { + "openplaque:id": "1841", + "addr:full": "Studley Castle" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72802, + 52.03841 + ] + }, + "properties": { + "openplaque:id": "51890", + "addr:full": "Gainsborough's House & Garden - Gainsborough Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72573, + 52.03621 + ] + }, + "properties": { + "openplaque:id": "51892", + "addr:full": "Priory Gate - Friars Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72814, + 52.03651 + ] + }, + "properties": { + "openplaque:id": "51893", + "addr:full": "Greyfriars - 40 Friars Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72866, + 52.03673 + ] + }, + "properties": { + "openplaque:id": "51894", + "addr:full": "31A Friars Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72899, + 52.03705 + ] + }, + "properties": { + "openplaque:id": "51895", + "addr:full": "25 Friars Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72873, + 52.03704 + ] + }, + "properties": { + "openplaque:id": "51896", + "addr:full": "Friars House - Friars Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.73145, + 52.0385 + ] + }, + "properties": { + "openplaque:id": "51901", + "addr:full": "Winch & Blatch - 40 King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72637, + 52.03767 + ] + }, + "properties": { + "openplaque:id": "51905", + "addr:full": "Orwell Housing Association Ltd - William Wood House - School Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72643, + 52.03803 + ] + }, + "properties": { + "openplaque:id": "51907", + "addr:full": "The Stone - School Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.73109, + 52.03734 + ] + }, + "properties": { + "openplaque:id": "51910", + "addr:full": "3 Bank Buildings - Hamilton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.95504, + 51.94746 + ] + }, + "properties": { + "openplaque:id": "30736", + "addr:full": "\"Church of St Mary", + "date_start": "Sudeley Castle\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3815, + 54.9057 + ] + }, + "properties": { + "openplaque:id": "1362", + "addr:full": "Fawcett Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3747, + 54.89327 + ] + }, + "properties": { + "openplaque:id": "40342", + "addr:full": "\"25 Manila Street", + "date_start": "Sunderland\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.36977, + 54.90875 + ] + }, + "properties": { + "openplaque:id": "40358" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40777, + 54.87918 + ] + }, + "properties": { + "openplaque:id": "40359" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48011, + 54.8652 + ] + }, + "properties": { + "openplaque:id": "40361" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40598, + 54.89091 + ] + }, + "properties": { + "openplaque:id": "40367" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.44302, + 54.87169 + ] + }, + "properties": { + "openplaque:id": "40369", + "addr:full": "Crow Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.45392, + 54.82032 + ] + }, + "properties": { + "openplaque:id": "40370", + "addr:full": "\"Park View", + "date_start": "Hetton-le-Hole\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.45246, + 54.82199 + ] + }, + "properties": { + "openplaque:id": "40371" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.44222, + 54.81535 + ] + }, + "properties": { + "openplaque:id": "40373" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.36608, + 54.93117 + ] + }, + "properties": { + "openplaque:id": "40375" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.45248, + 54.82089 + ] + }, + "properties": { + "openplaque:id": "40378" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38323, + 54.90888 + ] + }, + "properties": { + "openplaque:id": "40380", + "addr:full": "\"St Mary's Car Park", + "date_start": "A1018\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40624, + 54.91484 + ] + }, + "properties": { + "openplaque:id": "40382" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.37379, + 54.90927 + ] + }, + "properties": { + "openplaque:id": "40384" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35757, + 54.8692 + ] + }, + "properties": { + "openplaque:id": "40386" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.45097, + 54.82173 + ] + }, + "properties": { + "openplaque:id": "40389" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.36421, + 54.91082 + ] + }, + "properties": { + "openplaque:id": "40390", + "addr:full": "Propect Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40186, + 54.87604 + ] + }, + "properties": { + "openplaque:id": "40391" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.37607, + 54.89986 + ] + }, + "properties": { + "openplaque:id": "40393" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.36472, + 54.9104 + ] + }, + "properties": { + "openplaque:id": "40395", + "addr:full": "Prospect Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.36725, + 54.90833 + ] + }, + "properties": { + "openplaque:id": "40396" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38327, + 54.91104 + ] + }, + "properties": { + "openplaque:id": "40398", + "addr:full": "Wearmouth Bridge", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.45192, + 54.82035 + ] + }, + "properties": { + "openplaque:id": "40400" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.37371, + 54.90923 + ] + }, + "properties": { + "openplaque:id": "40402" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.37029, + 54.90916 + ] + }, + "properties": { + "openplaque:id": "51132", + "addr:full": "10 & 11 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.36943, + 54.91061 + ] + }, + "properties": { + "openplaque:id": "51134", + "addr:full": "Spring Garden Close" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.37818, + 54.90517 + ] + }, + "properties": { + "openplaque:id": "52246", + "addr:full": "18 Foyle Street", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40388, + 54.91968 + ] + }, + "properties": { + "openplaque:id": "54808", + "addr:full": "\"Stoney Lane", + "date_start": "Southwick\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.39932, + 54.91979 + ] + }, + "properties": { + "openplaque:id": "54809", + "addr:full": "\"Southwick Neighbourhood Youth Project", + "date_start": "271 Southwick Rd" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38193, + 54.92773 + ] + }, + "properties": { + "openplaque:id": "7518", + "addr:full": "Prengarth Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30086, + 51.38214 + ] + }, + "properties": { + "openplaque:id": "42263", + "addr:full": "15 Hook Road", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19271, + 51.36351 + ] + }, + "properties": { + "openplaque:id": "10580", + "addr:full": "\"Times 2 Shopping Centre", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16913, + 51.3608 + ] + }, + "properties": { + "openplaque:id": "616", + "addr:full": "\"19 Park Hill", + "date_start": "Carshalton Sutton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.80796, + 52.53647 + ] + }, + "properties": { + "openplaque:id": "1913", + "addr:full": "\"Penns Hall", + "date_start": "Penns Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82334, + 52.5661 + ] + }, + "properties": { + "openplaque:id": "2321", + "addr:full": "\"The Three Tuns", + "date_start": "19 High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82229, + 52.5689 + ] + }, + "properties": { + "openplaque:id": "39331", + "addr:full": "\"Bishop Vesey's Grammar School", + "date_start": "Lichfield Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82229, + 52.5689 + ] + }, + "properties": { + "openplaque:id": "39332", + "addr:full": "\"Bishop Vesey's Grammar School", + "date_start": "Lichfield Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82736, + 52.55521 + ] + }, + "properties": { + "openplaque:id": "39636", + "addr:full": "Birmingham Road", + "date_start": "1953" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82296, + 52.5703 + ] + }, + "properties": { + "openplaque:id": "5134", + "addr:full": "69 Lichfield Road", + "date_start": "1997" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82258, + 52.5684 + ] + }, + "properties": { + "openplaque:id": "5136", + "addr:full": "High Street", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82272, + 52.5653 + ] + }, + "properties": { + "openplaque:id": "5138", + "addr:full": "\"Vesey House", + "date_start": "3 High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.27111, + 51.64611 + ] + }, + "properties": { + "openplaque:id": "10809", + "addr:full": "\"The Wharf", + "date_start": "43 Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99311, + 53.89247 + ] + }, + "properties": { + "openplaque:id": "50405", + "addr:full": "The Kings Arms" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.95971, + 50.61007 + ] + }, + "properties": { + "openplaque:id": "39487", + "addr:full": "Station Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.95301, + 51.62019 + ] + }, + "properties": { + "openplaque:id": "12913", + "addr:full": "141 Walter Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.93689, + 0 + ] + }, + "properties": { + "openplaque:id": "12914", + "addr:full": "Gloucester Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.97027, + 51.62184 + ] + }, + "properties": { + "openplaque:id": "31633", + "addr:full": "Cwmdonkin Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.96713, + 51.61993 + ] + }, + "properties": { + "openplaque:id": "39372", + "addr:full": "\"24 The Grove", + "date_start": "Uplands SA2 0QT\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.94404, + 51.62285 + ] + }, + "properties": { + "openplaque:id": "39577", + "addr:full": "\"The Orchard Centre", + "date_start": "Trinity place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.98827, + 51.61297 + ] + }, + "properties": { + "openplaque:id": "39853", + "addr:full": "\"Sketty Hall", + "date_start": "Sketty Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.95693, + 51.61616 + ] + }, + "properties": { + "openplaque:id": "40100", + "addr:full": "St. Helens Rd and Beach Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.9658, + 51.61253 + ] + }, + "properties": { + "openplaque:id": "40273", + "addr:full": "St Helens Ground", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.00093, + 51.5848 + ] + }, + "properties": { + "openplaque:id": "4078", + "addr:full": "\"43 Mumbles Road", + "date_start": "West Cross\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.96504, + 51.621 + ] + }, + "properties": { + "openplaque:id": "4084", + "addr:full": "5 Cwmdonkin Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.98096, + 51.56584 + ] + }, + "properties": { + "openplaque:id": "41082", + "addr:full": "\"Steps leading down to Bracelet Bay", + "date_start": "Mumbles" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.09224, + 51.567 + ] + }, + "properties": { + "openplaque:id": "4118", + "addr:full": "\"Heatherslade Residential Home 1", + "date_start": "West Cliff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.9658, + 51.61336 + ] + }, + "properties": { + "openplaque:id": "7521", + "addr:full": "Bryn Road", + "date_start": "1959" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83168, + 51.56102 + ] + }, + "properties": { + "openplaque:id": "40877", + "addr:full": "Virgin Multiplex", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78133, + 51.55501 + ] + }, + "properties": { + "openplaque:id": "41058", + "addr:full": "24 North Street", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78243, + 51.55965 + ] + }, + "properties": { + "openplaque:id": "41712", + "addr:full": "\"The Savoy", + "date_start": "Regent Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78701, + 51.55411 + ] + }, + "properties": { + "openplaque:id": "42253", + "addr:full": "\"61 Kent Road", + "date_start": "Old Town\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7868, + 51.55323 + ] + }, + "properties": { + "openplaque:id": "49371", + "addr:full": "44 Kent Road", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7902, + 51.56043 + ] + }, + "properties": { + "openplaque:id": "49484", + "addr:full": "\"Health Hydro", + "date_start": "Faringdon Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77859, + 51.55788 + ] + }, + "properties": { + "openplaque:id": "52074", + "addr:full": "5 Durham Street", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33905, + 53.51154 + ] + }, + "properties": { + "openplaque:id": "41357", + "addr:full": "Chorley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.26847, + 53.8843 + ] + }, + "properties": { + "openplaque:id": "42616", + "addr:full": "Wetherby Road / Station Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78677, + 53.23487 + ] + }, + "properties": { + "openplaque:id": "40487", + "addr:full": "Recreation Ground" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2585, + 53.0868 + ] + }, + "properties": { + "openplaque:id": "2758", + "addr:full": "115 Congleton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09673, + 53.50081 + ] + }, + "properties": { + "openplaque:id": "30403", + "addr:full": "Wood lane ashton under lyne" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68726, + 52.62879 + ] + }, + "properties": { + "openplaque:id": "43406", + "addr:full": "29 Kettlebrook Riad", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.69559, + 52.63308 + ] + }, + "properties": { + "openplaque:id": "9715", + "addr:full": "\"Town Hall", + "date_start": "Market Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.41491, + 54.35487 + ] + }, + "properties": { + "openplaque:id": "50755", + "addr:full": "\"Montagu Arms", + "date_start": "Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.84209, + 52.33197 + ] + }, + "properties": { + "openplaque:id": "42903", + "addr:full": "\"Far Leys", + "date_start": "Bates Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.10299, + 51.01466 + ] + }, + "properties": { + "openplaque:id": "39118", + "addr:full": "Market House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.10612, + 51.01496 + ] + }, + "properties": { + "openplaque:id": "39134", + "addr:full": "Tower Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.10351, + 51.02275 + ] + }, + "properties": { + "openplaque:id": "54469" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.14447, + 50.54949 + ] + }, + "properties": { + "openplaque:id": "41220", + "addr:full": "Plymouth Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.14675, + 50.54917 + ] + }, + "properties": { + "openplaque:id": "41297", + "addr:full": "Russell Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.88138, + 56.4509 + ] + }, + "properties": { + "openplaque:id": "50416", + "addr:full": "Inn Street", + "date_start": "1971" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.68151, + 50.73491 + ] + }, + "properties": { + "openplaque:id": "42032", + "addr:full": "\"The King's Arms", + "date_start": "Huishlane End\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.49784, + 50.54462 + ] + }, + "properties": { + "openplaque:id": "31524", + "addr:full": "\"Keats House", + "date_start": "Northumberland Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01416, + 50.79406 + ] + }, + "properties": { + "openplaque:id": "55084", + "addr:full": "360 South Coast Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.69685, + 51.67179 + ] + }, + "properties": { + "openplaque:id": "1124", + "addr:full": "\"Gwynne House", + "date_start": "Bridge Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.69684, + 51.67264 + ] + }, + "properties": { + "openplaque:id": "28111", + "addr:full": "\"The Cabin", + "date_start": "Castle Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.70429, + 51.67011 + ] + }, + "properties": { + "openplaque:id": "40878", + "addr:full": "\"Rhos Cottage", + "date_start": "Church Park\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.70079, + 51.67101 + ] + }, + "properties": { + "openplaque:id": "41464", + "addr:full": "Five Arches" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.69794, + 51.67162 + ] + }, + "properties": { + "openplaque:id": "41466", + "addr:full": "Bridge Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.70206, + 51.67136 + ] + }, + "properties": { + "openplaque:id": "42530", + "addr:full": "Trafalgar Road", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.70232, + 51.67463 + ] + }, + "properties": { + "openplaque:id": "49817", + "addr:full": "2-3 The Croft", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.69819, + 51.67105 + ] + }, + "properties": { + "openplaque:id": "51544", + "addr:full": "\"Romola House", + "date_start": "Cob Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.69855, + 51.67121 + ] + }, + "properties": { + "openplaque:id": "51545", + "addr:full": "Tudor Square", + "date_start": "1990" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.69944, + 51.67257 + ] + }, + "properties": { + "openplaque:id": "52379" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.70248, + 51.6751 + ] + }, + "properties": { + "openplaque:id": "5408", + "addr:full": "2 Croft Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.694, + 51.673 + ] + }, + "properties": { + "openplaque:id": "54246", + "addr:full": "RNLI Tenby Lifeboat Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.69548, + 51.67229 + ] + }, + "properties": { + "openplaque:id": "54247", + "addr:full": "Tenby Museum & Art Gallery" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.70189, + 51.66861 + ] + }, + "properties": { + "openplaque:id": "8424", + "addr:full": "\"Belgrave hotel", + "date_start": "esplanade\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.69742, + 51.67102 + ] + }, + "properties": { + "openplaque:id": "8425", + "addr:full": "3 Lexden Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.70243, + 51.66949 + ] + }, + "properties": { + "openplaque:id": "8426", + "addr:full": "32 Victoria Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.7004, + 51.66894 + ] + }, + "properties": { + "openplaque:id": "8427", + "addr:full": "\"Atlantic Hotel", + "date_start": "Esplanade\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.15961, + 51.6369 + ] + }, + "properties": { + "openplaque:id": "5546", + "addr:full": "Church House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.161, + 51.99114 + ] + }, + "properties": { + "openplaque:id": "42774", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.98287, + 51.75139 + ] + }, + "properties": { + "openplaque:id": "11765", + "addr:full": "The Prebendal" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.97525, + 51.7474 + ] + }, + "properties": { + "openplaque:id": "6746", + "addr:full": "14 Wellington Street", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.97686, + 51.7494 + ] + }, + "properties": { + "openplaque:id": "6748", + "addr:full": "39 North Street", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.97848, + 51.7476 + ] + }, + "properties": { + "openplaque:id": "6750", + "addr:full": "\"James Figg Pub", + "date_start": "Cornmarket\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.98239, + 51.7494 + ] + }, + "properties": { + "openplaque:id": "6756", + "addr:full": "42 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33234, + 51.3908 + ] + }, + "properties": { + "openplaque:id": "8719", + "addr:full": "\"Picton House", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3331, + 51.39081 + ] + }, + "properties": { + "openplaque:id": "8720", + "addr:full": "\"Stags Court", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33279, + 0 + ] + }, + "properties": { + "openplaque:id": "8722", + "addr:full": "\"Ferry Works", + "date_start": "Summer Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33279, + 0 + ] + }, + "properties": { + "openplaque:id": "8724", + "addr:full": "\"Opp. Ferry Works", + "date_start": "Summer Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33416, + 51.3895 + ] + }, + "properties": { + "openplaque:id": "8725", + "addr:full": "\"Old Manor House", + "date_start": "Station Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34636, + 51.38391 + ] + }, + "properties": { + "openplaque:id": "8726", + "addr:full": "\"The Elms", + "date_start": "Weston Green Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25731, + 51.40335 + ] + }, + "properties": { + "openplaque:id": "50516", + "addr:full": "\"The Kings Head", + "date_start": "The Broadway\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25777, + 51.40258 + ] + }, + "properties": { + "openplaque:id": "51743", + "addr:full": "24-26 Broadway" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.25587, + 51.40359 + ] + }, + "properties": { + "openplaque:id": "52940", + "addr:full": "Parish Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.34413, + 51.9535 + ] + }, + "properties": { + "openplaque:id": "7289", + "addr:full": "Town Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.34108, + 51.9555 + ] + }, + "properties": { + "openplaque:id": "7291", + "addr:full": "Newbiggen Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.34115, + 51.956 + ] + }, + "properties": { + "openplaque:id": "7293", + "addr:full": "Newbiggen Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74692, + 52.41435 + ] + }, + "properties": { + "openplaque:id": "49579", + "addr:full": "The Bell Inn", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74712, + 52.41516 + ] + }, + "properties": { + "openplaque:id": "54729", + "addr:full": "\"The Ancient House Museum of Thetford Life", + "date_start": "White Hart Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.34438, + 54.23313 + ] + }, + "properties": { + "openplaque:id": "10988", + "addr:full": "14-16 Kirkgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.34579, + 54.23086 + ] + }, + "properties": { + "openplaque:id": "11024", + "addr:full": "Station Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.34039, + 54.22589 + ] + }, + "properties": { + "openplaque:id": "11029", + "addr:full": "\"Lansbury House", + "date_start": "76 Front Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.34257, + 54.23231 + ] + }, + "properties": { + "openplaque:id": "11031", + "addr:full": "\"Boots Chemist", + "date_start": "Market Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3397, + 54.2327 + ] + }, + "properties": { + "openplaque:id": "11035", + "addr:full": "\"Thirsk Library", + "date_start": "Finkle Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.33811, + 54.23316 + ] + }, + "properties": { + "openplaque:id": "11036", + "addr:full": "7 to 11 Ingramgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.33539, + 54.23355 + ] + }, + "properties": { + "openplaque:id": "11037", + "addr:full": "Sutton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.34377, + 54.23278 + ] + }, + "properties": { + "openplaque:id": "11038", + "addr:full": "35 Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.34477, + 54.23322 + ] + }, + "properties": { + "openplaque:id": "9875", + "addr:full": "23 Kirkgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0238, + 53.32479 + ] + }, + "properties": { + "openplaque:id": "54060", + "addr:full": "Roundabout at junction B51515 and B5136" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.36821, + 52.75023 + ] + }, + "properties": { + "openplaque:id": "50142", + "addr:full": "\"Thringstone House", + "date_start": "The Green\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.19904, + 51.72453 + ] + }, + "properties": { + "openplaque:id": "42872", + "addr:full": "Stroud Brewery", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04231, + 52.73722 + ] + }, + "properties": { + "openplaque:id": "41683", + "addr:full": "15 The Green", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.40586, + 51.5241 + ] + }, + "properties": { + "openplaque:id": "3300", + "addr:full": "High House", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3283, + 51.4832 + ] + }, + "properties": { + "openplaque:id": "53956", + "addr:full": "\"The Dell", + "date_start": "25 College Avenue\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.53473, + 58.5971 + ] + }, + "properties": { + "openplaque:id": "12974", + "addr:full": "Pennyland House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.75366, + 51.18393 + ] + }, + "properties": { + "openplaque:id": "49649", + "addr:full": "Tilford Road", + "date_start": "1902" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24804, + 60.17548 + ] + }, + "properties": { + "openplaque:id": "51348" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.68352, + 51.70622 + ] + }, + "properties": { + "openplaque:id": "9409", + "addr:full": "Trelleck Road", + "date_start": "1957" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06914, + 52.54819 + ] + }, + "properties": { + "openplaque:id": "10919", + "addr:full": "\"Barratt Court", + "date_start": "Batmans Hill Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06964, + 52.52669 + ] + }, + "properties": { + "openplaque:id": "12816", + "addr:full": "167 Park Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05957, + 52.521 + ] + }, + "properties": { + "openplaque:id": "39117", + "addr:full": "\"Coneygree Arts Centre", + "date_start": "Sedgley Road East\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07, + 52.52881 + ] + }, + "properties": { + "openplaque:id": "44681", + "addr:full": "The Fountain Inn - Owen Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07066, + 52.52766 + ] + }, + "properties": { + "openplaque:id": "44683", + "addr:full": "Coronation Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06603, + 52.52827 + ] + }, + "properties": { + "openplaque:id": "53986", + "addr:full": "\"Tipton Conservative Club", + "date_start": "Union Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06747, + 52.52657 + ] + }, + "properties": { + "openplaque:id": "53990", + "addr:full": "15 Silvertrees Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07256, + 52.5264 + ] + }, + "properties": { + "openplaque:id": "53993", + "addr:full": "\"Smith Brothers (Quinton) Ltd.", + "date_start": "Castle Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07333, + 52.53375 + ] + }, + "properties": { + "openplaque:id": "53999", + "addr:full": "\"Brook Street Community Centre", + "date_start": "Brook Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05473, + 52.51998 + ] + }, + "properties": { + "openplaque:id": "54000", + "addr:full": "\"Tipton Toddlers Nursery", + "date_start": "Groveland Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.79548, + 51.77363 + ] + }, + "properties": { + "openplaque:id": "9313", + "addr:full": "Kelvedon Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.41063, + 57.26193 + ] + }, + "properties": { + "openplaque:id": "51305", + "addr:full": "B9136", + "date_start": "1990" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.27416, + 51.19462 + ] + }, + "properties": { + "openplaque:id": "40271", + "addr:full": "82 High STreet" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26993, + 51.1917 + ] + }, + "properties": { + "openplaque:id": "49774", + "addr:full": "Tonbridge Station", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.27625, + 51.19942 + ] + }, + "properties": { + "openplaque:id": "55033", + "addr:full": "\"Ferox Hall", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.27624, + 51.19948 + ] + }, + "properties": { + "openplaque:id": "55034", + "addr:full": "\"Ferox Hall", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.27403, + 51.20427 + ] + }, + "properties": { + "openplaque:id": "55036", + "addr:full": "38 Dry Hill Park Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.27626, + 51.20002 + ] + }, + "properties": { + "openplaque:id": "55037", + "addr:full": "\"Cawthorne Lecture Theatre (Old Chapel)", + "date_start": "Tonbridge School\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.28282, + 51.20036 + ] + }, + "properties": { + "openplaque:id": "55038", + "addr:full": "82 Hadlow Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26786, + 51.18854 + ] + }, + "properties": { + "openplaque:id": "55039", + "addr:full": "3 Quarry Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.27878, + 51.1869 + ] + }, + "properties": { + "openplaque:id": "55040", + "addr:full": "29 Goldsmid Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26972, + 51.1897 + ] + }, + "properties": { + "openplaque:id": "55041", + "addr:full": "\"Tonbridge Chambers", + "date_start": "Quarry Hill Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16316, + 51.43133 + ] + }, + "properties": { + "openplaque:id": "49672", + "addr:full": "London\"", + "date_start": "\"16 Ruislip Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.56534, + 50.43566 + ] + }, + "properties": { + "openplaque:id": "28278", + "addr:full": "Bijou Theatre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52496, + 50.4624 + ] + }, + "properties": { + "openplaque:id": "6838", + "addr:full": "The Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.51799, + 50.46263 + ] + }, + "properties": { + "openplaque:id": "11704", + "addr:full": "529 Babbacombe Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.50779, + 50.46801 + ] + }, + "properties": { + "openplaque:id": "33098", + "addr:full": "Middle Warberry Road", + "date_start": "2014" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52381, + 50.4582 + ] + }, + "properties": { + "openplaque:id": "40632", + "addr:full": "Beacon Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52348, + 50.4581 + ] + }, + "properties": { + "openplaque:id": "40633", + "addr:full": "Beacon Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52988, + 50.46683 + ] + }, + "properties": { + "openplaque:id": "40879", + "addr:full": "Union Street", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.53167, + 50.4684 + ] + }, + "properties": { + "openplaque:id": "40880", + "addr:full": "\"Regal House", + "date_start": "corner of Castle Road and Castle Circus\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52571, + 50.48015 + ] + }, + "properties": { + "openplaque:id": "41274", + "addr:full": "\"Manor Road", + "date_start": "St Marychurch\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52076, + 50.5015 + ] + }, + "properties": { + "openplaque:id": "6632", + "addr:full": "\"Rock House", + "date_start": "Rock House Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.54054, + 50.4739 + ] + }, + "properties": { + "openplaque:id": "6634", + "addr:full": "Barton Road", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.51762, + 50.4652 + ] + }, + "properties": { + "openplaque:id": "6640", + "addr:full": "Riviera Court" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.5642, + 50.4639 + ] + }, + "properties": { + "openplaque:id": "6648", + "addr:full": "Cockington Court" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.54027, + 50.4742 + ] + }, + "properties": { + "openplaque:id": "6724", + "addr:full": "Oakhill Road", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.51558, + 50.462 + ] + }, + "properties": { + "openplaque:id": "6726", + "addr:full": "\"Woodfield", + "date_start": "Lower Woodfield Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52481, + 50.4589 + ] + }, + "properties": { + "openplaque:id": "6728", + "addr:full": "Beacon Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52084, + 50.5015 + ] + }, + "properties": { + "openplaque:id": "6738", + "addr:full": "Orestone" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52681, + 50.4659 + ] + }, + "properties": { + "openplaque:id": "6822", + "addr:full": "Madrepore Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.56771, + 50.443 + ] + }, + "properties": { + "openplaque:id": "6826", + "addr:full": "Oldway Mansion" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52755, + 50.4637 + ] + }, + "properties": { + "openplaque:id": "6836", + "addr:full": "\"Torquay Boys Grammar School", + "date_start": "Rock Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.68794, + 50.43154 + ] + }, + "properties": { + "openplaque:id": "12986", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.68823, + 50.43199 + ] + }, + "properties": { + "openplaque:id": "41202", + "addr:full": "Priory Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.6882, + 50.43204 + ] + }, + "properties": { + "openplaque:id": "41203", + "addr:full": "Priory Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.683, + 50.43059 + ] + }, + "properties": { + "openplaque:id": "41204", + "addr:full": "2 The Plains" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.68299, + 50.43033 + ] + }, + "properties": { + "openplaque:id": "54090" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.34058, + 53.62106 + ] + }, + "properties": { + "openplaque:id": "12979", + "addr:full": "Brookhouse Farm" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.13649, + 52.94222 + ] + }, + "properties": { + "openplaque:id": "50030", + "addr:full": "Plas Tan-Yr-Allt Historic Country House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.50079, + 51.65872 + ] + }, + "properties": { + "openplaque:id": "1866", + "addr:full": "\"Red Cow Hotel", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.56517, + 51.67641 + ] + }, + "properties": { + "openplaque:id": "4114", + "addr:full": "Michael's Rd Blaencwm", + "date_start": "2004" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1598, + 51.88993 + ] + }, + "properties": { + "openplaque:id": "43918" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.51695, + 50.5969 + ] + }, + "properties": { + "openplaque:id": "7381", + "addr:full": "Wesley Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.05139, + 50.26249 + ] + }, + "properties": { + "openplaque:id": "12162", + "addr:full": "81 Lemon Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.04942, + 50.26206 + ] + }, + "properties": { + "openplaque:id": "12172", + "addr:full": "Green Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.33812, + 54.36875 + ] + }, + "properties": { + "openplaque:id": "7240", + "addr:full": "\"Vicarage Farm", + "date_start": "County Down" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -6.26385, + 54.91687 + ] + }, + "properties": { + "openplaque:id": "7130", + "addr:full": "Cloughwater Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.25825, + 51.12704 + ] + }, + "properties": { + "openplaque:id": "12819", + "addr:full": "The Forum" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2532, + 51.131 + ] + }, + "properties": { + "openplaque:id": "1434", + "addr:full": "86 Mount Ephraim Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.258, + 51.1337 + ] + }, + "properties": { + "openplaque:id": "1435", + "addr:full": "66 Mount Ephraim" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2593, + 51.1324 + ] + }, + "properties": { + "openplaque:id": "1437", + "addr:full": "Church Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2637, + 51.1266 + ] + }, + "properties": { + "openplaque:id": "1439", + "addr:full": "63a Mount Sion" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2579, + 51.1259 + ] + }, + "properties": { + "openplaque:id": "1440", + "addr:full": "The Pantiles" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2579, + 51.1259 + ] + }, + "properties": { + "openplaque:id": "1441", + "addr:full": "The Pantiles" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2637, + 51.1322 + ] + }, + "properties": { + "openplaque:id": "1444", + "addr:full": "\"Hotel Du Vin", + "date_start": "Crescent Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2663, + 51.1319 + ] + }, + "properties": { + "openplaque:id": "1445", + "addr:full": "Calverley Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2676, + 51.1318 + ] + }, + "properties": { + "openplaque:id": "1446", + "addr:full": "1 Calverley Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.25867, + 51.12667 + ] + }, + "properties": { + "openplaque:id": "30200", + "addr:full": "The Pantiles" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26653, + 51.13208 + ] + }, + "properties": { + "openplaque:id": "49134" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26353, + 51.1304 + ] + }, + "properties": { + "openplaque:id": "49141" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.25981, + 51.12283 + ] + }, + "properties": { + "openplaque:id": "49246", + "addr:full": "17 Frant Rd Tunbridge Wells TN2 5SD" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.25919, + 51.13389 + ] + }, + "properties": { + "openplaque:id": "49895" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.25763, + 51.12586 + ] + }, + "properties": { + "openplaque:id": "53785", + "addr:full": "The Pantiles" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34922, + 51.44404 + ] + }, + "properties": { + "openplaque:id": "31793", + "addr:full": "Brinsworth House", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33053, + 51.44963 + ] + }, + "properties": { + "openplaque:id": "40543", + "addr:full": "67 London Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.43184, + 51.64785 + ] + }, + "properties": { + "openplaque:id": "2234", + "addr:full": "\"Ty Ebenezer", + "date_start": "East Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42676, + 55.01671 + ] + }, + "properties": { + "openplaque:id": "11810", + "addr:full": "Station Terrace", + "date_start": "1990" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42668, + 55.01776 + ] + }, + "properties": { + "openplaque:id": "8453", + "addr:full": "9 Huntingdon Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.41687, + 55.01792 + ] + }, + "properties": { + "openplaque:id": "9074", + "addr:full": "Tynemouth Coastguard Station", + "date_start": "1986" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0962, + 50.9687 + ] + }, + "properties": { + "openplaque:id": "1199", + "addr:full": "Uckfield train station", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09539, + 50.97336 + ] + }, + "properties": { + "openplaque:id": "40988", + "addr:full": "Belmont Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.55987, + 51.6018 + ] + }, + "properties": { + "openplaque:id": "1034", + "addr:full": "Garrards Farmhouse" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.08904, + 54.18894 + ] + }, + "properties": { + "openplaque:id": "11417", + "addr:full": "Priory Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.09061, + 54.19337 + ] + }, + "properties": { + "openplaque:id": "1905", + "addr:full": "Argyle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.09626, + 54.19606 + ] + }, + "properties": { + "openplaque:id": "33044", + "addr:full": "King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.09068, + 54.19327 + ] + }, + "properties": { + "openplaque:id": "40881", + "addr:full": "3 Argyll Street", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.04794, + 51.66629 + ] + }, + "properties": { + "openplaque:id": "41731", + "addr:full": "Upper Cwmbran Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21789, + 52.06415 + ] + }, + "properties": { + "openplaque:id": "11324", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21701, + 52.06519 + ] + }, + "properties": { + "openplaque:id": "11325", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21711, + 52.06267 + ] + }, + "properties": { + "openplaque:id": "11326", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33185, + 53.44681 + ] + }, + "properties": { + "openplaque:id": "54170", + "addr:full": "10-12 Humphrey Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.90603, + 51.7021 + ] + }, + "properties": { + "openplaque:id": "7526", + "addr:full": "\"Uskbridge Mews", + "date_start": "Bridge Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.86441, + 52.89763 + ] + }, + "properties": { + "openplaque:id": "42041", + "addr:full": "Market Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4679, + 51.54754 + ] + }, + "properties": { + "openplaque:id": "10569", + "addr:full": "\"The Chestnuts", + "date_start": "Honeycroft Hill\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44255, + 51.5268 + ] + }, + "properties": { + "openplaque:id": "1865", + "addr:full": "38 New Road", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5074, + 49.49775 + ] + }, + "properties": { + "openplaque:id": "49595", + "addr:full": "Guernsey\"", + "date_start": "\"Aquarius" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.20441, + 50.59404 + ] + }, + "properties": { + "openplaque:id": "2017", + "addr:full": "Isle of Wight\"", + "date_start": "3 Alexandra Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21804, + 50.59235 + ] + }, + "properties": { + "openplaque:id": "32975", + "addr:full": "Isle of Wight\"", + "date_start": "Castle Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.20509, + 50.59342 + ] + }, + "properties": { + "openplaque:id": "32976", + "addr:full": "Isle of Wight\"", + "date_start": "The Esplanade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.18594, + 50.60176 + ] + }, + "properties": { + "openplaque:id": "32987", + "addr:full": "Isle of Wight\"", + "date_start": "\"Hillside Cottage" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2046, + 50.594 + ] + }, + "properties": { + "openplaque:id": "3708", + "addr:full": "Isle of Wight\"", + "date_start": "corner of Alexandra Gardens and Pier Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.19712, + 50.59828 + ] + }, + "properties": { + "openplaque:id": "41233", + "addr:full": "Isle of Wight\"", + "date_start": "1 St Boniface Gardens PO38 1PW" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.20544, + 50.59343 + ] + }, + "properties": { + "openplaque:id": "50934", + "addr:full": "Isle of Wight\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.18626, + 50.60089 + ] + }, + "properties": { + "openplaque:id": "54688", + "addr:full": "Isle of Wight\"", + "date_start": "\"Hillside Cottage" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.18521, + 50.59765 + ] + }, + "properties": { + "openplaque:id": "9322", + "addr:full": "Isle of Wight\"", + "date_start": "\"Shore Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.83597, + 50.51523 + ] + }, + "properties": { + "openplaque:id": "40882", + "addr:full": "Regal Cinema", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50205, + 53.68336 + ] + }, + "properties": { + "openplaque:id": "28007", + "addr:full": "Thompson's Yard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50262, + 53.6821 + ] + }, + "properties": { + "openplaque:id": "28010", + "addr:full": "\"Theatre Royal", + "date_start": "Drury Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48755, + 53.67076 + ] + }, + "properties": { + "openplaque:id": "30507", + "addr:full": "14 Welbeck Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50295, + 53.68653 + ] + }, + "properties": { + "openplaque:id": "51324", + "addr:full": "38 Bond Street", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50586, + 53.68877 + ] + }, + "properties": { + "openplaque:id": "51388", + "addr:full": "21 St John's Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49316, + 53.69103 + ] + }, + "properties": { + "openplaque:id": "52014", + "addr:full": "Belgrave Terrace", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50176, + 53.68927 + ] + }, + "properties": { + "openplaque:id": "5756", + "addr:full": "\"Bishopgarth", + "date_start": "Westfield Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49326, + 53.6873 + ] + }, + "properties": { + "openplaque:id": "5766", + "addr:full": "15 Duke of York Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50025, + 53.67828 + ] + }, + "properties": { + "openplaque:id": "5800", + "addr:full": "Junction of Ings Road and Denby Dale Road", + "date_start": "1995" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50818, + 53.68061 + ] + }, + "properties": { + "openplaque:id": "5806", + "addr:full": "Corner of Back Lane and Westgate", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49842, + 53.6907 + ] + }, + "properties": { + "openplaque:id": "9261", + "addr:full": "\"Bede House", + "date_start": "College Grove Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4205, + 53.65278 + ] + }, + "properties": { + "openplaque:id": "9274", + "addr:full": "\"The Lord of the Manor pub", + "date_start": "New Crofton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66421, + 52.31431 + ] + }, + "properties": { + "openplaque:id": "42864", + "addr:full": "The Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12491, + 51.59986 + ] + }, + "properties": { + "openplaque:id": "10876", + "addr:full": "Town Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1246, + 51.5999 + ] + }, + "properties": { + "openplaque:id": "2023", + "addr:full": "\"Wallingford Town Hall", + "date_start": "9 St Martin's Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12726, + 51.5925 + ] + }, + "properties": { + "openplaque:id": "2881", + "addr:full": "\"Winterbrook House", + "date_start": "Cholsey\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11922, + 51.98794 + ] + }, + "properties": { + "openplaque:id": "7877", + "addr:full": "\"'The Stores'", + "date_start": "Kit's Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5409, + 54.99681 + ] + }, + "properties": { + "openplaque:id": "43821", + "addr:full": "340 Station Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4032, + 51.2118 + ] + }, + "properties": { + "openplaque:id": "1725", + "addr:full": "The Beach" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38948, + 51.20169 + ] + }, + "properties": { + "openplaque:id": "40531", + "addr:full": "Dover Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.97745, + 52.58323 + ] + }, + "properties": { + "openplaque:id": "30696", + "addr:full": "\"Lyndon House Hotel", + "date_start": "Upper Rushall Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9942, + 52.59285 + ] + }, + "properties": { + "openplaque:id": "41720", + "addr:full": "\"Walsall Branch Canal", + "date_start": "Birchills\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.97766, + 52.58197 + ] + }, + "properties": { + "openplaque:id": "48762", + "addr:full": "St Matthew's Church", + "date_start": "1994" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.98393, + 52.5823 + ] + }, + "properties": { + "openplaque:id": "5168", + "addr:full": "\"Belsize House", + "date_start": "Bradford Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00913, + 51.6903 + ] + }, + "properties": { + "openplaque:id": "9464", + "addr:full": "\"Royal Gunpowder Mills", + "date_start": "Beaulieu Drive\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05309, + 51.58691 + ] + }, + "properties": { + "openplaque:id": "50889", + "addr:full": "Ferry Lane", + "date_start": "1915" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46625, + 53.64813 + ] + }, + "properties": { + "openplaque:id": "46995" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41887, + 51.38021 + ] + }, + "properties": { + "openplaque:id": "8691", + "addr:full": "\"York Lodge", + "date_start": "48 Ashley Rd\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.24021, + 51.28301 + ] + }, + "properties": { + "openplaque:id": "8760", + "addr:full": "\"Earls Ferry", + "date_start": "Meadow walk\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.422, + 51.38982 + ] + }, + "properties": { + "openplaque:id": "11604", + "addr:full": "River House" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42446, + 51.38623 + ] + }, + "properties": { + "openplaque:id": "40885", + "addr:full": "Playhouse Theatre", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42473, + 51.38585 + ] + }, + "properties": { + "openplaque:id": "50132", + "addr:full": "\" Bridge Street", + "date_start": "Hurst Grove\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.78053, + 55.39673 + ] + }, + "properties": { + "openplaque:id": "11499", + "addr:full": "Old Library Row" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42763, + 51.58946 + ] + }, + "properties": { + "openplaque:id": "42828", + "addr:full": "Mill Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03504, + 51.81103 + ] + }, + "properties": { + "openplaque:id": "30482", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03354, + 51.81149 + ] + }, + "properties": { + "openplaque:id": "30483", + "addr:full": "87 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03221, + 51.8112 + ] + }, + "properties": { + "openplaque:id": "30488", + "addr:full": "63 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03194, + 51.81113 + ] + }, + "properties": { + "openplaque:id": "30489", + "addr:full": "61 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03162, + 51.81117 + ] + }, + "properties": { + "openplaque:id": "30491", + "addr:full": "2 West Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02878, + 51.80812 + ] + }, + "properties": { + "openplaque:id": "30495", + "addr:full": "\"Ware Railway Station", + "date_start": "Station Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03063, + 51.80786 + ] + }, + "properties": { + "openplaque:id": "30496", + "addr:full": "\"Amwell House", + "date_start": "London Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02979, + 51.81128 + ] + }, + "properties": { + "openplaque:id": "30571", + "addr:full": "\"Place House", + "date_start": "Bluecoat Yard\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02979, + 51.81128 + ] + }, + "properties": { + "openplaque:id": "30572", + "addr:full": "\"Place House", + "date_start": "Bluecoat Yard\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03489, + 51.81108 + ] + }, + "properties": { + "openplaque:id": "30573", + "addr:full": "The Priory" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03493, + 51.8109 + ] + }, + "properties": { + "openplaque:id": "30574", + "addr:full": "The Priory" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11108, + 50.68569 + ] + }, + "properties": { + "openplaque:id": "40886", + "addr:full": "West Street", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10983, + 50.68588 + ] + }, + "properties": { + "openplaque:id": "8518", + "addr:full": "\"Lloyds TSB", + "date_start": "South Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58489, + 53.38991 + ] + }, + "properties": { + "openplaque:id": "33231", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58895, + 53.38227 + ] + }, + "properties": { + "openplaque:id": "40281", + "addr:full": "Fletcher Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59499, + 53.38856 + ] + }, + "properties": { + "openplaque:id": "40777", + "addr:full": "Cairo Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59349, + 53.38684 + ] + }, + "properties": { + "openplaque:id": "40921", + "addr:full": "Barbauld Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58961, + 53.38886 + ] + }, + "properties": { + "openplaque:id": "40929", + "addr:full": "Academy Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59327, + 53.39189 + ] + }, + "properties": { + "openplaque:id": "40931", + "addr:full": "Winwick Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.50497, + 53.38375 + ] + }, + "properties": { + "openplaque:id": "41571", + "addr:full": "Warrington Road", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.56565, + 53.38776 + ] + }, + "properties": { + "openplaque:id": "41572" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58493, + 53.39701 + ] + }, + "properties": { + "openplaque:id": "42413", + "addr:full": "Battersby Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.56169, + 53.3949 + ] + }, + "properties": { + "openplaque:id": "42414", + "addr:full": "Paddington Bank" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59826, + 53.38766 + ] + }, + "properties": { + "openplaque:id": "54192", + "addr:full": "Palmyra Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59666, + 53.38776 + ] + }, + "properties": { + "openplaque:id": "54193", + "addr:full": "Palmyra Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59575, + 53.38721 + ] + }, + "properties": { + "openplaque:id": "8272", + "addr:full": "18 Bold Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59147, + 53.38465 + ] + }, + "properties": { + "openplaque:id": "8275", + "addr:full": "Wilderspool Causeway" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59162, + 53.38593 + ] + }, + "properties": { + "openplaque:id": "8276", + "addr:full": "\"Warrington Bridge", + "date_start": "Mersey Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59131, + 53.38605 + ] + }, + "properties": { + "openplaque:id": "8278", + "addr:full": "\"Warrington Bridge", + "date_start": "Mersey Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5946, + 53.38993 + ] + }, + "properties": { + "openplaque:id": "8280", + "addr:full": "23-25 Old Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58791, + 53.39013 + ] + }, + "properties": { + "openplaque:id": "8281", + "addr:full": "6 Dial Street", + "date_start": "1911" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59186, + 53.38626 + ] + }, + "properties": { + "openplaque:id": "8283", + "addr:full": "\"The Academy", + "date_start": "138 Bridge Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59191, + 53.38625 + ] + }, + "properties": { + "openplaque:id": "8287", + "addr:full": "\"The Academy", + "date_start": "138 Bridge Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5868, + 52.2806 + ] + }, + "properties": { + "openplaque:id": "2149", + "addr:full": "Castle Mews" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58212, + 52.28132 + ] + }, + "properties": { + "openplaque:id": "40074", + "addr:full": "St Nicholas Church - Banbury Road", + "date_start": "1934" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58471, + 52.28253 + ] + }, + "properties": { + "openplaque:id": "40076", + "addr:full": "Landor House - Smith Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58743, + 52.28123 + ] + }, + "properties": { + "openplaque:id": "49662", + "addr:full": "Jury Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58707, + 52.28076 + ] + }, + "properties": { + "openplaque:id": "49663", + "addr:full": "Castle Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58659, + 52.28072 + ] + }, + "properties": { + "openplaque:id": "49664", + "addr:full": "Castle Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58989, + 52.28025 + ] + }, + "properties": { + "openplaque:id": "49665", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59013, + 52.28003 + ] + }, + "properties": { + "openplaque:id": "49687", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59085, + 52.27966 + ] + }, + "properties": { + "openplaque:id": "49688", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5905, + 52.28171 + ] + }, + "properties": { + "openplaque:id": "49689", + "addr:full": "Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59052, + 52.28251 + ] + }, + "properties": { + "openplaque:id": "49722", + "addr:full": "Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59089, + 52.28269 + ] + }, + "properties": { + "openplaque:id": "49724", + "addr:full": "Barrack Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58938, + 52.28339 + ] + }, + "properties": { + "openplaque:id": "49725", + "addr:full": "Barrack Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58917, + 52.28319 + ] + }, + "properties": { + "openplaque:id": "49726", + "addr:full": "Northgate Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5889, + 52.28282 + ] + }, + "properties": { + "openplaque:id": "49727", + "addr:full": "Northgate Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58853, + 52.28237 + ] + }, + "properties": { + "openplaque:id": "49730", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58791, + 52.28168 + ] + }, + "properties": { + "openplaque:id": "49731", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.588, + 52.28176 + ] + }, + "properties": { + "openplaque:id": "49732", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58517, + 52.28227 + ] + }, + "properties": { + "openplaque:id": "49735", + "addr:full": "Smith Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58437, + 52.28245 + ] + }, + "properties": { + "openplaque:id": "49736", + "addr:full": "Smith Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5807, + 52.28352 + ] + }, + "properties": { + "openplaque:id": "49737", + "addr:full": "St. Johns" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58295, + 52.28134 + ] + }, + "properties": { + "openplaque:id": "49738", + "addr:full": "Mill Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57958, + 52.2796 + ] + }, + "properties": { + "openplaque:id": "49739", + "addr:full": "Banbury Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57898, + 52.27878 + ] + }, + "properties": { + "openplaque:id": "49740", + "addr:full": "Bridge End" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59087, + 52.27972 + ] + }, + "properties": { + "openplaque:id": "49741", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58536, + 52.28222 + ] + }, + "properties": { + "openplaque:id": "49742", + "addr:full": "Jury Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59154, + 52.27884 + ] + }, + "properties": { + "openplaque:id": "49775", + "addr:full": "\"St Mary Immaculate Church", + "date_start": "West Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58411, + 52.28189 + ] + }, + "properties": { + "openplaque:id": "50020", + "addr:full": "Castle Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36339, + 51.15749 + ] + }, + "properties": { + "openplaque:id": "13010", + "addr:full": "Cleeve Abbey" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.30444, + 50.92686 + ] + }, + "properties": { + "openplaque:id": "2533", + "addr:full": "\"Washford Station", + "date_start": "Station Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.03237, + 50.87915 + ] + }, + "properties": { + "openplaque:id": "39674", + "addr:full": "London Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34938, + 51.64795 + ] + }, + "properties": { + "openplaque:id": "44732", + "addr:full": "\"Bushey Meads School", + "date_start": "Coldharbour Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.397, + 51.65533 + ] + }, + "properties": { + "openplaque:id": "7506", + "addr:full": "Market Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.82529, + 52.57152 + ] + }, + "properties": { + "openplaque:id": "6964", + "addr:full": "Tourist Information Centre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.02183, + 52.55467 + ] + }, + "properties": { + "openplaque:id": "7962", + "addr:full": "High Bullen" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.64562, + 51.20926 + ] + }, + "properties": { + "openplaque:id": "30734", + "addr:full": "Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.64562, + 51.20926 + ] + }, + "properties": { + "openplaque:id": "30735", + "addr:full": "Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.64614, + 51.20911 + ] + }, + "properties": { + "openplaque:id": "30835", + "addr:full": "11 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.64755, + 51.20863 + ] + }, + "properties": { + "openplaque:id": "30844", + "addr:full": "Union Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.64798, + 51.20829 + ] + }, + "properties": { + "openplaque:id": "30845", + "addr:full": "Mill Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.65234, + 51.21281 + ] + }, + "properties": { + "openplaque:id": "41514", + "addr:full": "The Blue School", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.64521, + 51.20937 + ] + }, + "properties": { + "openplaque:id": "42354", + "addr:full": "Market Place", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.64537, + 51.21057 + ] + }, + "properties": { + "openplaque:id": "42656", + "addr:full": "9 Cathedral Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.64544, + 0 + ] + }, + "properties": { + "openplaque:id": "43536", + "addr:full": "Silver Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.85219, + 52.95428 + ] + }, + "properties": { + "openplaque:id": "8394", + "addr:full": "\"The Edinburgh Inn", + "date_start": "Station Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.85192, + 52.95425 + ] + }, + "properties": { + "openplaque:id": "8395", + "addr:full": "\"The Edinburgh Inn", + "date_start": "Station Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.84869, + 52.95757 + ] + }, + "properties": { + "openplaque:id": "9433", + "addr:full": "Freeman Street", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20799, + 51.80286 + ] + }, + "properties": { + "openplaque:id": "40889", + "addr:full": "\"Charter House", + "date_start": "Parkway\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72524, + 52.85594 + ] + }, + "properties": { + "openplaque:id": "39066", + "addr:full": "Noble Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.74907, + 51.76478 + ] + }, + "properties": { + "openplaque:id": "55015", + "addr:full": "47 Chiltern Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.66509, + 50.67594 + ] + }, + "properties": { + "openplaque:id": "39841", + "addr:full": "Beach Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13229, + 52.9358 + ] + }, + "properties": { + "openplaque:id": "2033", + "addr:full": "\"The Dixon Gates", + "date_start": "Bridgford Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9999, + 52.5114 + ] + }, + "properties": { + "openplaque:id": "30565", + "addr:full": "Horton Street", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.01103, + 52.53567 + ] + }, + "properties": { + "openplaque:id": "33248", + "addr:full": "\"54b", + "date_start": "Hill Top\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99871, + 52.52078 + ] + }, + "properties": { + "openplaque:id": "8343", + "addr:full": "\"Sandwell College", + "date_start": "Hair and Beauty Holistic Centre (former West Bromwich Grammar School)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.47232, + 53.74896 + ] + }, + "properties": { + "openplaque:id": "8511", + "addr:full": "219 West Ella Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1895, + 53.372 + ] + }, + "properties": { + "openplaque:id": "4904", + "addr:full": "Beach pavillion" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.41101, + 51.29426 + ] + }, + "properties": { + "openplaque:id": "40577", + "addr:full": "55 Swan Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.41284, + 51.29381 + ] + }, + "properties": { + "openplaque:id": "40582", + "addr:full": "79 Swan Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.40992, + 51.29649 + ] + }, + "properties": { + "openplaque:id": "40588", + "addr:full": "Town Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.41253, + 51.29393 + ] + }, + "properties": { + "openplaque:id": "40589", + "addr:full": "79 Swan Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.41239, + 51.29396 + ] + }, + "properties": { + "openplaque:id": "40596", + "addr:full": "77 Swan Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.89542, + 50.78084 + ] + }, + "properties": { + "openplaque:id": "12447", + "addr:full": "\"The Studio", + "date_start": "Rookwood Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.89103, + 50.78104 + ] + }, + "properties": { + "openplaque:id": "30215", + "addr:full": "Elmstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8907, + 50.7806 + ] + }, + "properties": { + "openplaque:id": "30218", + "addr:full": "Elmstead" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.17977, + 51.26164 + ] + }, + "properties": { + "openplaque:id": "40296", + "addr:full": "Alfred Street", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.18334, + 51.2602 + ] + }, + "properties": { + "openplaque:id": "40297", + "addr:full": "Edward Street", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07598, + 51.26708 + ] + }, + "properties": { + "openplaque:id": "10816", + "addr:full": "\"Quebec House", + "date_start": "Quebec Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.06446, + 51.26422 + ] + }, + "properties": { + "openplaque:id": "10817", + "addr:full": "\"The Kinara at William Pitt's Cottage", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08399, + 51.24348 + ] + }, + "properties": { + "openplaque:id": "10818", + "addr:full": "\"Chartwell", + "date_start": "Mapleton Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5207, + 53.54872 + ] + }, + "properties": { + "openplaque:id": "30466", + "addr:full": "Market Street", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.52428, + 53.56074 + ] + }, + "properties": { + "openplaque:id": "50788", + "addr:full": "Wingates Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.33042, + 51.2543 + ] + }, + "properties": { + "openplaque:id": "1119", + "addr:full": "Chapel Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32579, + 51.25335 + ] + }, + "properties": { + "openplaque:id": "9798", + "addr:full": "Westhumble Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98021, + 51.35017 + ] + }, + "properties": { + "openplaque:id": "42532", + "addr:full": "\"The Imperial public house", + "date_start": "South Parade\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97168, + 51.34739 + ] + }, + "properties": { + "openplaque:id": "42533", + "addr:full": "33 George Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99323, + 51.3546 + ] + }, + "properties": { + "openplaque:id": "42534", + "addr:full": "\"Anchor Head Hotel", + "date_start": "Claremont Crescent\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97331, + 51.3526 + ] + }, + "properties": { + "openplaque:id": "42535", + "addr:full": "Landeman Circus" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9734, + 51.35017 + ] + }, + "properties": { + "openplaque:id": "47003", + "addr:full": "\"Henry Butt House", + "date_start": "The Boulevard\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97392, + 51.35292 + ] + }, + "properties": { + "openplaque:id": "47005", + "addr:full": "Landemann Circus" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99346, + 51.35408 + ] + }, + "properties": { + "openplaque:id": "47006", + "addr:full": "Anchor Head" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98182, + 51.35523 + ] + }, + "properties": { + "openplaque:id": "48779", + "addr:full": "corner of St Peter’s Avenue and Shrubbery Drive", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99162, + 51.35419 + ] + }, + "properties": { + "openplaque:id": "49646", + "addr:full": "\"Addington Court", + "date_start": "Madeira Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98924, + 51.3512 + ] + }, + "properties": { + "openplaque:id": "50754", + "addr:full": "Knightstone Island", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96997, + 51.35914 + ] + }, + "properties": { + "openplaque:id": "54059", + "addr:full": "\"The Water Tower", + "date_start": "Weston Woods" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.24051, + 51.04083 + ] + }, + "properties": { + "openplaque:id": "10528", + "addr:full": "6 Hackwood Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.23401, + 51.0391 + ] + }, + "properties": { + "openplaque:id": "6742", + "addr:full": "Kipling Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38525, + 53.92938 + ] + }, + "properties": { + "openplaque:id": "50819", + "addr:full": "34 North Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.385, + 53.92889 + ] + }, + "properties": { + "openplaque:id": "50820" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38654, + 53.92677 + ] + }, + "properties": { + "openplaque:id": "50853", + "addr:full": "Riverside footpath North bank west of bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38645, + 53.92834 + ] + }, + "properties": { + "openplaque:id": "50856", + "addr:full": "Market Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38553, + 53.92786 + ] + }, + "properties": { + "openplaque:id": "50861", + "addr:full": "\"3", + "date_start": "Victoria Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38945, + 53.92866 + ] + }, + "properties": { + "openplaque:id": "54007", + "addr:full": "On the banks of the River Wharfe in gardens off Westgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42997, + 51.37546 + ] + }, + "properties": { + "openplaque:id": "8658", + "addr:full": "24 Oatlands Chase" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.45508, + 51.37394 + ] + }, + "properties": { + "openplaque:id": "8659", + "addr:full": "19 Monument Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49177, + 51.31405 + ] + }, + "properties": { + "openplaque:id": "8660", + "addr:full": "Pyrford Place" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.45362, + 50.6132 + ] + }, + "properties": { + "openplaque:id": "10437", + "addr:full": "\"Gloucester Lodge", + "date_start": "The Esplanade\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.45252, + 50.60743 + ] + }, + "properties": { + "openplaque:id": "10443", + "addr:full": "\"Royal Dorset Yacht Club", + "date_start": "11 Custom House Quay\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.4545, + 50.6111 + ] + }, + "properties": { + "openplaque:id": "10447", + "addr:full": "\"Roger McGhee Estate Agents", + "date_start": "11 Frederick Place\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.44883, + 50.6087 + ] + }, + "properties": { + "openplaque:id": "10469", + "addr:full": "\"Weymouth Pavilion", + "date_start": "Weymouth Pier\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.45464, + 50.60737 + ] + }, + "properties": { + "openplaque:id": "12753", + "addr:full": "\"South & West Dorset Register Office", + "date_start": "The Guildhall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.45617, + 50.6093 + ] + }, + "properties": { + "openplaque:id": "12755", + "addr:full": "\"White Hart Hotel", + "date_start": "New Bond Street (formerly Conygar Lane)\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.45354, + 50.60718 + ] + }, + "properties": { + "openplaque:id": "41471", + "addr:full": "2-4 Custom House Quay", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.4508, + 50.6058 + ] + }, + "properties": { + "openplaque:id": "53258", + "addr:full": "Barrack Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.45354, + 50.6072 + ] + }, + "properties": { + "openplaque:id": "8254", + "addr:full": "\"Vaughan's Restaurant", + "date_start": "7 Custom House Quay" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.44883, + 50.60872 + ] + }, + "properties": { + "openplaque:id": "8256", + "addr:full": "\"Weymouth Pavilion", + "date_start": "Weymouth Pier\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.40721, + 53.82138 + ] + }, + "properties": { + "openplaque:id": "42729" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31598, + 51.79934 + ] + }, + "properties": { + "openplaque:id": "27894", + "addr:full": "West End Farm" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2844, + 51.80875 + ] + }, + "properties": { + "openplaque:id": "53692", + "addr:full": "Devil's Dyke" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67483, + 54.92292 + ] + }, + "properties": { + "openplaque:id": "42617", + "addr:full": "Gateshead Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.36929, + 54.94963 + ] + }, + "properties": { + "openplaque:id": "40975", + "addr:full": "55 Front Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61146, + 54.4882 + ] + }, + "properties": { + "openplaque:id": "12477", + "addr:full": "Blackburn's Yard" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61887, + 54.48988 + ] + }, + "properties": { + "openplaque:id": "12644", + "addr:full": "6 Royal Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61765, + 54.48502 + ] + }, + "properties": { + "openplaque:id": "12645", + "addr:full": "1 Bagdale" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61791, + 54.4891 + ] + }, + "properties": { + "openplaque:id": "12646", + "addr:full": "1 Abbey Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61467, + 54.48917 + ] + }, + "properties": { + "openplaque:id": "12664", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61583, + 54.48933 + ] + }, + "properties": { + "openplaque:id": "12665", + "addr:full": "East Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61133, + 54.48733 + ] + }, + "properties": { + "openplaque:id": "12669", + "addr:full": "? Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61167, + 54.48917 + ] + }, + "properties": { + "openplaque:id": "12679", + "addr:full": "Donkey Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62586, + 54.48971 + ] + }, + "properties": { + "openplaque:id": "12681", + "addr:full": "Ladysmith Avenue" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61483, + 54.485 + ] + }, + "properties": { + "openplaque:id": "12682", + "addr:full": "Langbourne Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6195, + 54.48833 + ] + }, + "properties": { + "openplaque:id": "12683", + "addr:full": "Normamby Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6175, + 54.4875 + ] + }, + "properties": { + "openplaque:id": "12685", + "addr:full": "7 Skinner Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61077, + 54.4853 + ] + }, + "properties": { + "openplaque:id": "12686", + "addr:full": "159 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61173, + 54.4876 + ] + }, + "properties": { + "openplaque:id": "12687", + "addr:full": "\"White Horse and Griffin", + "date_start": "87 Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61498, + 54.4817 + ] + }, + "properties": { + "openplaque:id": "12730", + "addr:full": "\"Fishburn Shipyard", + "date_start": "Esk Terrace\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60981, + 54.48363 + ] + }, + "properties": { + "openplaque:id": "32951", + "addr:full": "Opposite 16 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61013, + 54.485 + ] + }, + "properties": { + "openplaque:id": "32974", + "addr:full": "\"Seamens Hospital Houses", + "date_start": "Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62006, + 54.4859 + ] + }, + "properties": { + "openplaque:id": "32979", + "addr:full": "\"Pannett Park", + "date_start": "St. Hilda's Terrace\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61381, + 54.48594 + ] + }, + "properties": { + "openplaque:id": "41753", + "addr:full": "\"New Angel Hotel", + "date_start": "New Quay Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61758, + 54.48778 + ] + }, + "properties": { + "openplaque:id": "52625", + "addr:full": "35/39 Skinner St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61563, + 54.48939 + ] + }, + "properties": { + "openplaque:id": "8227", + "addr:full": "Khyber Pass", + "date_start": "1980" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.59599, + 54.54911 + ] + }, + "properties": { + "openplaque:id": "33191", + "addr:full": "\"Wellington Lodge", + "date_start": "access off Harbour View\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.59841, + 54.54896 + ] + }, + "properties": { + "openplaque:id": "33192", + "addr:full": "West Strand" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.58378, + 54.54543 + ] + }, + "properties": { + "openplaque:id": "33193", + "addr:full": "\"Gatepost", + "date_start": "Entrance to Castle Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.5899, + 54.54614 + ] + }, + "properties": { + "openplaque:id": "33194", + "addr:full": "\"5", + "date_start": "Cross Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.5899, + 54.54614 + ] + }, + "properties": { + "openplaque:id": "33195", + "addr:full": "\"5", + "date_start": "Cross Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.59014, + 54.54902 + ] + }, + "properties": { + "openplaque:id": "33196", + "addr:full": "\"44", + "date_start": "Lowther Street (Former Danish Consulate)\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.59049, + 54.54894 + ] + }, + "properties": { + "openplaque:id": "33197", + "addr:full": "West Strand" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.58105, + 54.54314 + ] + }, + "properties": { + "openplaque:id": "42002", + "addr:full": "5 Front Korkicle", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.59758, + 54.55055 + ] + }, + "properties": { + "openplaque:id": "53025", + "addr:full": "West Strand" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.59715, + 54.5509 + ] + }, + "properties": { + "openplaque:id": "53026", + "addr:full": "West Strand" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.59701, + 54.55097 + ] + }, + "properties": { + "openplaque:id": "53027", + "addr:full": "West Strand" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.59736, + 54.55081 + ] + }, + "properties": { + "openplaque:id": "53028", + "addr:full": "West Strand" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.59583, + 54.5491 + ] + }, + "properties": { + "openplaque:id": "53029", + "addr:full": "Rosemary Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.59888, + 54.54487 + ] + }, + "properties": { + "openplaque:id": "53030", + "addr:full": "Solway Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -5.7031, + 54.75783 + ] + }, + "properties": { + "openplaque:id": "10913", + "addr:full": "Old Castle Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0212, + 51.3587 + ] + }, + "properties": { + "openplaque:id": "1856", + "addr:full": "\"Seaway Cottage", + "date_start": "Island Wall\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0213, + 51.35821 + ] + }, + "properties": { + "openplaque:id": "3286", + "addr:full": "\"Free Diver Cottage", + "date_start": "65 Island Wall\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.02427, + 51.35955 + ] + }, + "properties": { + "openplaque:id": "52405", + "addr:full": "Evelings Alley" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.61256, + 54.1794 + ] + }, + "properties": { + "openplaque:id": "11922", + "addr:full": "Main Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21696, + 52.44306 + ] + }, + "properties": { + "openplaque:id": "42693" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.08527, + 58.43844 + ] + }, + "properties": { + "openplaque:id": "28268", + "addr:full": "\"Custom House", + "date_start": "Harbour Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1852, + 50.90027 + ] + }, + "properties": { + "openplaque:id": "52980", + "addr:full": "7 Mill Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.62994, + 53.54511 + ] + }, + "properties": { + "openplaque:id": "40678", + "addr:full": "Town Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.62929, + 53.54682 + ] + }, + "properties": { + "openplaque:id": "41904", + "addr:full": "The Grand Arcade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.6054, + 53.55824 + ] + }, + "properties": { + "openplaque:id": "7438", + "addr:full": "\"St John's Primary School", + "date_start": "nr 50 Wigan Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.62471, + 53.54957 + ] + }, + "properties": { + "openplaque:id": "8673", + "addr:full": "\"3 Westminster Street", + "date_start": "WN5 9BH\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.37582, + 50.88263 + ] + }, + "properties": { + "openplaque:id": "51320", + "addr:full": "\"Harpitt", + "date_start": "Willand Old Village" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.20135, + 51.4274 + ] + }, + "properties": { + "openplaque:id": "11889", + "addr:full": "Kent\"", + "date_start": "\"Memorial Hall" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.20243, + 51.42733 + ] + }, + "properties": { + "openplaque:id": "53609", + "addr:full": "Kent\"", + "date_start": "45 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.20178, + 51.42749 + ] + }, + "properties": { + "openplaque:id": "53610", + "addr:full": "Kent\"", + "date_start": "2 Martin Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19238, + 51.42965 + ] + }, + "properties": { + "openplaque:id": "53611", + "addr:full": "Kent\"", + "date_start": "Common Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.21234, + 51.43194 + ] + }, + "properties": { + "openplaque:id": "53772", + "addr:full": "Kent\"", + "date_start": "Carsington Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.21, + 51.43209 + ] + }, + "properties": { + "openplaque:id": "53773", + "addr:full": "Kent\"", + "date_start": "Oakfield Park" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.20147, + 51.42442 + ] + }, + "properties": { + "openplaque:id": "53774", + "addr:full": "Kent\"", + "date_start": "Barn End Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18643, + 51.43089 + ] + }, + "properties": { + "openplaque:id": "53787", + "addr:full": "Kent\"", + "date_start": "33 Tredegar Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.86432, + 53.82626 + ] + }, + "properties": { + "openplaque:id": "48721", + "addr:full": "Moss Row", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.03163, + 50.81102 + ] + }, + "properties": { + "openplaque:id": "12881", + "addr:full": "\"Kingston Lacy House", + "date_start": "Kingston Lacy Estate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.03171, + 50.81097 + ] + }, + "properties": { + "openplaque:id": "12882", + "addr:full": "\"Kingston Lacy House", + "date_start": "Kingston Lacy Estate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9782, + 50.79699 + ] + }, + "properties": { + "openplaque:id": "33174", + "addr:full": "16 Avenue Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9877, + 50.79943 + ] + }, + "properties": { + "openplaque:id": "33175", + "addr:full": "23 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.30707, + 51.06071 + ] + }, + "properties": { + "openplaque:id": "12942", + "addr:full": "\"The Chesil Rectory", + "date_start": "1 Chesil Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.30909, + 51.06128 + ] + }, + "properties": { + "openplaque:id": "12950", + "addr:full": "Below statue of Alfred the Great" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3191, + 51.0635 + ] + }, + "properties": { + "openplaque:id": "13011", + "addr:full": "\"The Westgate Museum", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31637, + 51.06018 + ] + }, + "properties": { + "openplaque:id": "13017", + "addr:full": "\"Christ's Hospital", + "date_start": "Symond's Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31358, + 51.06186 + ] + }, + "properties": { + "openplaque:id": "13022", + "addr:full": "Morley College - grounds of Winchester Cathedral", + "date_start": "1880" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31282, + 51.06061 + ] + }, + "properties": { + "openplaque:id": "49502", + "addr:full": "Winchester Cathedral nave" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31378, + 51.05858 + ] + }, + "properties": { + "openplaque:id": "9628", + "addr:full": "8 College St" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6075, + 51.48258 + ] + }, + "properties": { + "openplaque:id": "10051", + "addr:full": "Statue of Queen Victoria - Castle Hill", + "date_start": "1887" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6088, + 51.48425 + ] + }, + "properties": { + "openplaque:id": "10828", + "addr:full": "River Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62988, + 51.46998 + ] + }, + "properties": { + "openplaque:id": "1806", + "addr:full": "\"The Hermitage", + "date_start": "Hermitage Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60625, + 51.4826 + ] + }, + "properties": { + "openplaque:id": "1810", + "addr:full": "\"Windsor Castle Wall", + "date_start": "St Albans Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62597, + 51.4853 + ] + }, + "properties": { + "openplaque:id": "1819", + "addr:full": "\"The Lime", + "date_start": "Mill Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60672, + 51.4823 + ] + }, + "properties": { + "openplaque:id": "1820", + "addr:full": "Guildhall Island" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60819, + 51.4858 + ] + }, + "properties": { + "openplaque:id": "1827", + "addr:full": "Windsor Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.608, + 51.4856 + ] + }, + "properties": { + "openplaque:id": "1836", + "addr:full": "Thames Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60643, + 51.48251 + ] + }, + "properties": { + "openplaque:id": "27898", + "addr:full": "5 Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53542, + 51.4719 + ] + }, + "properties": { + "openplaque:id": "2817", + "addr:full": "Stanwell Road", + "date_start": "2008" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61475, + 51.48313 + ] + }, + "properties": { + "openplaque:id": "39526", + "addr:full": "10 Alma Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61459, + 51.48249 + ] + }, + "properties": { + "openplaque:id": "39527", + "addr:full": "Athlone Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62658, + 51.48406 + ] + }, + "properties": { + "openplaque:id": "40311", + "addr:full": "\"Gooch Cottages", + "date_start": "Mill Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60683, + 51.48165 + ] + }, + "properties": { + "openplaque:id": "50876", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60739, + 51.48259 + ] + }, + "properties": { + "openplaque:id": "8321", + "addr:full": "2 Castle Hill" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60714, + 51.48232 + ] + }, + "properties": { + "openplaque:id": "8346", + "addr:full": "Queen Charlotte Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60644, + 51.48113 + ] + }, + "properties": { + "openplaque:id": "8746", + "addr:full": "25-26 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60591, + 51.47634 + ] + }, + "properties": { + "openplaque:id": "8786", + "addr:full": "63 Kings Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60619, + 51.48216 + ] + }, + "properties": { + "openplaque:id": "9071", + "addr:full": "Royal Free School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6071, + 51.48217 + ] + }, + "properties": { + "openplaque:id": "9224", + "addr:full": "The Guild Hall", + "date_start": "1926" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.72003, + 51.42358 + ] + }, + "properties": { + "openplaque:id": "53191", + "addr:full": "Warfield Park", + "date_start": "2015" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5817, + 51.16113 + ] + }, + "properties": { + "openplaque:id": "29933", + "addr:full": "Hascombe Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5012, + 53.1904 + ] + }, + "properties": { + "openplaque:id": "51831", + "addr:full": "\"Dierden Works", + "date_start": "Dierden Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.51826, + 51.52684 + ] + }, + "properties": { + "openplaque:id": "41212", + "addr:full": "Church porch" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57295, + 53.0812 + ] + }, + "properties": { + "openplaque:id": "11509", + "addr:full": "35 St. John's Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57307, + 53.0814 + ] + }, + "properties": { + "openplaque:id": "31595", + "addr:full": "St John's Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57301, + 53.08104 + ] + }, + "properties": { + "openplaque:id": "31596", + "addr:full": "Wirksworth Memorial Garden - St John's Street", + "date_start": "1994" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01581, + 53.39202 + ] + }, + "properties": { + "openplaque:id": "1381", + "addr:full": "\"42 Hamilton Square", + "date_start": "Birkenhead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.02639, + 53.38418 + ] + }, + "properties": { + "openplaque:id": "1382", + "addr:full": "\"7 Elm Grove", + "date_start": "Birkenhead\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.04446, + 53.38208 + ] + }, + "properties": { + "openplaque:id": "1385", + "addr:full": "\"18 Village Road", + "date_start": "Oxton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00414, + 53.35173 + ] + }, + "properties": { + "openplaque:id": "1411", + "addr:full": "\"Pennant House", + "date_start": "Bebington\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18348, + 53.39278 + ] + }, + "properties": { + "openplaque:id": "51765", + "addr:full": "\"5 Warren Road", + "date_start": "Hoylake\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15699, + 52.66465 + ] + }, + "properties": { + "openplaque:id": "41166" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15032, + 52.67565 + ] + }, + "properties": { + "openplaque:id": "42459", + "addr:full": "Horseshoe Corner" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15891, + 52.66447 + ] + }, + "properties": { + "openplaque:id": "54811", + "addr:full": "Bridge Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16057, + 52.66385 + ] + }, + "properties": { + "openplaque:id": "55032", + "addr:full": "4 The Crescent" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15876, + 52.66474 + ] + }, + "properties": { + "openplaque:id": "55042", + "addr:full": "11 Bridge Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49254, + 51.01087 + ] + }, + "properties": { + "openplaque:id": "42462", + "addr:full": "Lordings Lock" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0403, + 53.72691 + ] + }, + "properties": { + "openplaque:id": "11805", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.04322, + 53.7235 + ] + }, + "properties": { + "openplaque:id": "11806", + "addr:full": "?" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48039, + 51.79169 + ] + }, + "properties": { + "openplaque:id": "1018", + "addr:full": "\"7 Narrow Hill", + "date_start": "Woodgreen\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48544, + 51.78391 + ] + }, + "properties": { + "openplaque:id": "30989", + "addr:full": "19 Market Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48496, + 51.78366 + ] + }, + "properties": { + "openplaque:id": "30990", + "addr:full": "Langdale Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48716, + 51.79047 + ] + }, + "properties": { + "openplaque:id": "3626", + "addr:full": "\"former Witney Mill", + "date_start": "Mill Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.54331, + 51.31983 + ] + }, + "properties": { + "openplaque:id": "12429", + "addr:full": "\"2", + "date_start": "3 and 4" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0, + 0 + ] + }, + "properties": { + "openplaque:id": "43833", + "addr:full": "\"Kwik Fit", + "date_start": "Goldsworth Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.54345, + 51.32442 + ] + }, + "properties": { + "openplaque:id": "8748", + "addr:full": "143 Maybury Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83821, + 51.4123 + ] + }, + "properties": { + "openplaque:id": "1734", + "addr:full": "15 The Terrace" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8326, + 51.4112 + ] + }, + "properties": { + "openplaque:id": "1738", + "addr:full": "31 Rose Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82998, + 51.41109 + ] + }, + "properties": { + "openplaque:id": "1739", + "addr:full": "Peach Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8273, + 51.41032 + ] + }, + "properties": { + "openplaque:id": "1741", + "addr:full": "\"Wescott Infant School", + "date_start": "Goodchild Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8424, + 51.4109 + ] + }, + "properties": { + "openplaque:id": "4802", + "addr:full": "Wokingham Station", + "date_start": "2010" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83505, + 51.4092 + ] + }, + "properties": { + "openplaque:id": "6942", + "addr:full": "Off Denmark Street", + "date_start": "2011" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11019, + 52.59162 + ] + }, + "properties": { + "openplaque:id": "33080", + "addr:full": "\"Harvest Temple 173 Wednesfield Rd", + "date_start": "Wolverhampton" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13179, + 52.58552 + ] + }, + "properties": { + "openplaque:id": "3640", + "addr:full": "\"Dixons Estate Agents", + "date_start": "Darlington Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.15394, + 52.58 + ] + }, + "properties": { + "openplaque:id": "3682", + "addr:full": "\"Bantock House Museum", + "date_start": "Finchfield Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13749, + 52.58402 + ] + }, + "properties": { + "openplaque:id": "3688", + "addr:full": "\"Co Operative Funeral Services", + "date_start": "St. Mark's Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12836, + 52.58432 + ] + }, + "properties": { + "openplaque:id": "39177", + "addr:full": "Inside the Mander Shopping Centre", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12748, + 52.58653 + ] + }, + "properties": { + "openplaque:id": "39188", + "addr:full": "Douglas Harris memorial bust - St Peter's Gardens", + "date_start": "1919" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12868, + 52.58684 + ] + }, + "properties": { + "openplaque:id": "39190", + "addr:full": "Steps to St Peter's Collegiate Church from St Peter's Square - St Peter's Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12776, + 52.5866 + ] + }, + "properties": { + "openplaque:id": "39191", + "addr:full": "St Peter's Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12773, + 52.58661 + ] + }, + "properties": { + "openplaque:id": "39192", + "addr:full": "St Peter's Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12804, + 52.58668 + ] + }, + "properties": { + "openplaque:id": "39193", + "addr:full": "St Peter's Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12788, + 52.58675 + ] + }, + "properties": { + "openplaque:id": "39194", + "addr:full": "St Peter's Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12771, + 52.5868 + ] + }, + "properties": { + "openplaque:id": "39195", + "addr:full": "St Peter's Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08033, + 52.56281 + ] + }, + "properties": { + "openplaque:id": "44791", + "addr:full": "\"Ormiston SWB Academy - Prosser Street", + "date_start": "Bilston\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13643, + 52.58656 + ] + }, + "properties": { + "openplaque:id": "51424", + "addr:full": "Banks's Brewery - Bath Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07419, + 52.5663 + ] + }, + "properties": { + "openplaque:id": "5144", + "addr:full": "\"Church Street", + "date_start": "Bilston\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12774, + 52.5861 + ] + }, + "properties": { + "openplaque:id": "5160", + "addr:full": "\"HSBC Bank", + "date_start": "Dudley Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12774, + 52.5863 + ] + }, + "properties": { + "openplaque:id": "5162", + "addr:full": "\"Barclays Bank", + "date_start": "Lichfield Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1258, + 52.5867 + ] + }, + "properties": { + "openplaque:id": "5164", + "addr:full": "Lichfield Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12465, + 52.5867 + ] + }, + "properties": { + "openplaque:id": "5166", + "addr:full": "\"Post Office", + "date_start": "Lichfield Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05858, + 52.61373 + ] + }, + "properties": { + "openplaque:id": "53078", + "addr:full": "\"The Hub", + "date_start": "Griffiths Drive" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11445, + 52.61194 + ] + }, + "properties": { + "openplaque:id": "53084", + "addr:full": "Low Hill Community Centre" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13343, + 52.58076 + ] + }, + "properties": { + "openplaque:id": "53087", + "addr:full": "Merridale Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08519, + 52.5832 + ] + }, + "properties": { + "openplaque:id": "5456", + "addr:full": "\"Cleveland Arms", + "date_start": "Old Stowheath Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.14653, + 52.5882 + ] + }, + "properties": { + "openplaque:id": "5598", + "addr:full": "91 Tettenhall Road", + "date_start": "1983" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12517, + 52.586 + ] + }, + "properties": { + "openplaque:id": "5602", + "addr:full": "\"Express & Star Building", + "date_start": "Queen Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13215, + 52.58523 + ] + }, + "properties": { + "openplaque:id": "5604", + "addr:full": "Darlington Street Methodist Church", + "date_start": "1983" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13021, + 52.58779 + ] + }, + "properties": { + "openplaque:id": "5606", + "addr:full": "\"Giffard House", + "date_start": "North Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12813, + 52.58659 + ] + }, + "properties": { + "openplaque:id": "5608", + "addr:full": "Exchange Street", + "date_start": "1983" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.14102, + 52.5863 + ] + }, + "properties": { + "openplaque:id": "5610", + "addr:full": "\"Salisbury House", + "date_start": "2 and 2a Tettenhall Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12364, + 52.58583 + ] + }, + "properties": { + "openplaque:id": "5612", + "addr:full": "\"Army Careers Office", + "date_start": "Queen Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12723, + 52.5871 + ] + }, + "properties": { + "openplaque:id": "5614", + "addr:full": "\"Art Gallery Annex", + "date_start": "Wulfruna Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11867, + 52.58145 + ] + }, + "properties": { + "openplaque:id": "5616", + "addr:full": "\"Dixon's Building", + "date_start": "Cleveland Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12772, + 52.58676 + ] + }, + "properties": { + "openplaque:id": "5618", + "addr:full": "\"St. Peter's House", + "date_start": "Exchange Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.15061, + 52.5902 + ] + }, + "properties": { + "openplaque:id": "5620", + "addr:full": "141 Tettenhall Road", + "date_start": "1985" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12813, + 52.58508 + ] + }, + "properties": { + "openplaque:id": "5622", + "addr:full": "Mander Centre", + "date_start": "1986" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12527, + 52.58338 + ] + }, + "properties": { + "openplaque:id": "5624", + "addr:full": "\"Central Library", + "date_start": "Old Hall Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12743, + 52.58591 + ] + }, + "properties": { + "openplaque:id": "5626", + "addr:full": "\"Lloyds Bank", + "date_start": "Queen Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13937, + 52.5867 + ] + }, + "properties": { + "openplaque:id": "5628", + "addr:full": "7 Summerfield Road", + "date_start": "1987" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12953, + 52.56103 + ] + }, + "properties": { + "openplaque:id": "5632", + "addr:full": "\"Park Hall Hotel", + "date_start": "Park Drive\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07294, + 52.56599 + ] + }, + "properties": { + "openplaque:id": "5636", + "addr:full": "\"Barclays Bank", + "date_start": "Lichfield Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12742, + 52.58733 + ] + }, + "properties": { + "openplaque:id": "5642", + "addr:full": "\"University of Wolverhampton", + "date_start": "Wulfruna Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.16926, + 52.59816 + ] + }, + "properties": { + "openplaque:id": "5644", + "addr:full": "\"Limes Road", + "date_start": "Upper Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1301, + 52.58611 + ] + }, + "properties": { + "openplaque:id": "5646", + "addr:full": "\"Magistrates' Courts", + "date_start": "North Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13286, + 52.58525 + ] + }, + "properties": { + "openplaque:id": "5648", + "addr:full": "Darlington Street Roundabout", + "date_start": "1988" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09536, + 52.59933 + ] + }, + "properties": { + "openplaque:id": "5650", + "addr:full": "New Cross Hospital", + "date_start": "1988" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13037, + 52.58657 + ] + }, + "properties": { + "openplaque:id": "5656", + "addr:full": "\"Civic Hall", + "date_start": "North Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13106, + 52.58118 + ] + }, + "properties": { + "openplaque:id": "5658", + "addr:full": "\"Telecom Building", + "date_start": "Church Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10209, + 52.5711 + ] + }, + "properties": { + "openplaque:id": "5662", + "addr:full": "6 George Street", + "date_start": "1990" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12943, + 52.58559 + ] + }, + "properties": { + "openplaque:id": "5664", + "addr:full": "\"Beatties Store", + "date_start": "Victoria Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12359, + 52.58726 + ] + }, + "properties": { + "openplaque:id": "5666", + "addr:full": "\"The Chubb Building", + "date_start": "Fryer Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13064, + 52.58769 + ] + }, + "properties": { + "openplaque:id": "5668", + "addr:full": "\"St. Peter & St. Paul", + "date_start": "Paternoster Row\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.18592, + 52.58807 + ] + }, + "properties": { + "openplaque:id": "5670", + "addr:full": "\"Mount Hotel", + "date_start": "Mount Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1496, + 52.57265 + ] + }, + "properties": { + "openplaque:id": "5672", + "addr:full": "\"Beckminster Church", + "date_start": "Birches Barn Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.19225, + 52.58577 + ] + }, + "properties": { + "openplaque:id": "5680", + "addr:full": "\"Elmsdale Hall", + "date_start": "Elmsdale" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12863, + 52.58655 + ] + }, + "properties": { + "openplaque:id": "5682", + "addr:full": "St. Peter's Church porch", + "date_start": "1994" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13203, + 52.58002 + ] + }, + "properties": { + "openplaque:id": "5684", + "addr:full": "\"Sunbeamland", + "date_start": "Paul Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13108, + 52.57171 + ] + }, + "properties": { + "openplaque:id": "5686", + "addr:full": "\"The Timken building", + "date_start": "Upper Villiers Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13498, + 52.59095 + ] + }, + "properties": { + "openplaque:id": "5688", + "addr:full": "Newhampton Road East", + "date_start": "1994" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12264, + 52.58618 + ] + }, + "properties": { + "openplaque:id": "5690", + "addr:full": "\"Queen's Building", + "date_start": "Victoria Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13386, + 52.5734 + ] + }, + "properties": { + "openplaque:id": "5692", + "addr:full": "\"Sunbeam Studios", + "date_start": "Sunbeam Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.14126, + 52.59111 + ] + }, + "properties": { + "openplaque:id": "5694", + "addr:full": "West Park Conservatory", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13987, + 52.5871 + ] + }, + "properties": { + "openplaque:id": "5696", + "addr:full": "10 Park Road West", + "date_start": "1997" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13581, + 52.5677 + ] + }, + "properties": { + "openplaque:id": "5698", + "addr:full": "123 Goldthorn Hill", + "date_start": "1997" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.14762, + 52.56406 + ] + }, + "properties": { + "openplaque:id": "5700", + "addr:full": "\"Bromley House", + "date_start": "Penn Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13983, + 52.58015 + ] + }, + "properties": { + "openplaque:id": "5702", + "addr:full": "\"Pelham Works", + "date_start": "Pelham Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13417, + 52.57705 + ] + }, + "properties": { + "openplaque:id": "5708", + "addr:full": "Graiseley Hill", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13539, + 52.57876 + ] + }, + "properties": { + "openplaque:id": "5710", + "addr:full": "Retreat Street and the corner of Penn Street", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11375, + 52.58461 + ] + }, + "properties": { + "openplaque:id": "5712", + "addr:full": "Lower Horseley Field", + "date_start": "1998" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12956, + 52.58603 + ] + }, + "properties": { + "openplaque:id": "5714", + "addr:full": "\"Popworld", + "date_start": "North Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12312, + 52.56694 + ] + }, + "properties": { + "openplaque:id": "5718", + "addr:full": "The corner of Goldthorn Hill and Dudley Road", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13326, + 52.57971 + ] + }, + "properties": { + "openplaque:id": "5720", + "addr:full": "\"Victoria House", + "date_start": "Royal Wolverhampton School" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12798, + 0 + ] + }, + "properties": { + "openplaque:id": "5722", + "addr:full": "\"Blakenhall Community Centre", + "date_start": "Dudley Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13548, + 52.60167 + ] + }, + "properties": { + "openplaque:id": "5726", + "addr:full": "\"Dunstall Park", + "date_start": "Gorsebrook Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13705, + 52.57488 + ] + }, + "properties": { + "openplaque:id": "5728", + "addr:full": "\"The Quality Hotel", + "date_start": "Penn Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13016, + 52.58625 + ] + }, + "properties": { + "openplaque:id": "5730", + "addr:full": "\"Magistrates' Courts", + "date_start": "North Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12958, + 52.58691 + ] + }, + "properties": { + "openplaque:id": "5732", + "addr:full": "The Civic Centre - St Peter's Square", + "date_start": "2001" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.17208, + 52.58582 + ] + }, + "properties": { + "openplaque:id": "5734", + "addr:full": "\"Compton Hospice", + "date_start": "Compton Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.15841, + 52.5856 + ] + }, + "properties": { + "openplaque:id": "5736", + "addr:full": "104 Richmond Road", + "date_start": "2002" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13224, + 52.58883 + ] + }, + "properties": { + "openplaque:id": "5738", + "addr:full": "\"Waterloo Road", + "date_start": "opposite Newhampton Road East\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1373, + 52.5846 + ] + }, + "properties": { + "openplaque:id": "5740", + "addr:full": "\"St. Mark's Church", + "date_start": "Chapel Ash\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1484, + 52.58354 + ] + }, + "properties": { + "openplaque:id": "5742", + "addr:full": "\"Old Merridale Farm", + "date_start": "Merridale Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12367, + 52.583 + ] + }, + "properties": { + "openplaque:id": "7858", + "addr:full": "20 Saint George's Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12566, + 52.58613 + ] + }, + "properties": { + "openplaque:id": "7859", + "addr:full": "Depil-lase Laser Hair Removal Clinic - 15 King Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31613, + 52.09265 + ] + }, + "properties": { + "openplaque:id": "30907", + "addr:full": "\"4 Church Street", + "date_start": "IP12 1DJ\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31435, + 52.09352 + ] + }, + "properties": { + "openplaque:id": "30915", + "addr:full": "\"The Abbey School", + "date_start": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31291, + 52.09409 + ] + }, + "properties": { + "openplaque:id": "39061", + "addr:full": "\"7 Market Hill", + "date_start": "IP12 4LP\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31073, + 52.09061 + ] + }, + "properties": { + "openplaque:id": "42686", + "addr:full": "\"The Old House", + "date_start": "Cumberland Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31541, + 52.09212 + ] + }, + "properties": { + "openplaque:id": "42687", + "addr:full": "Cumberland Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31473, + 52.09177 + ] + }, + "properties": { + "openplaque:id": "42688", + "addr:full": "\"Barton's Cottage", + "date_start": "Cumberland Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21393, + 53.15553 + ] + }, + "properties": { + "openplaque:id": "10186", + "addr:full": "Kinema in the Woods", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.63754, + 51.7159 + ] + }, + "properties": { + "openplaque:id": "12970", + "addr:full": "\"Woodham Mortimer Hall", + "date_start": "Maldon Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35552, + 51.84719 + ] + }, + "properties": { + "openplaque:id": "42325", + "addr:full": "6 High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35426, + 51.84688 + ] + }, + "properties": { + "openplaque:id": "42326", + "addr:full": "High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35732, + 51.84751 + ] + }, + "properties": { + "openplaque:id": "8265", + "addr:full": "5 Park Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.20784, + 51.17073 + ] + }, + "properties": { + "openplaque:id": "54197", + "addr:full": "Challacombe Hill Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.63091, + 52.80914 + ] + }, + "properties": { + "openplaque:id": "30257", + "addr:full": "Woolsthorpe Manor" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.63069, + 52.80925 + ] + }, + "properties": { + "openplaque:id": "5556", + "addr:full": "Woolsthorpe Manor" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22253, + 52.18632 + ] + }, + "properties": { + "openplaque:id": "11843", + "addr:full": "\"Diglis House Hotel", + "date_start": "Diglis Parade\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22181, + 52.19471 + ] + }, + "properties": { + "openplaque:id": "39872", + "addr:full": "\"Whitehouse Hotel", + "date_start": "Foregate Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21969, + 52.19459 + ] + }, + "properties": { + "openplaque:id": "40060", + "addr:full": "St George's Catholic Church - Sansome Walk" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22634, + 52.19415 + ] + }, + "properties": { + "openplaque:id": "40069", + "addr:full": "The Hive - The Butts", + "date_start": "2012" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21957, + 52.18883 + ] + }, + "properties": { + "openplaque:id": "41054", + "addr:full": "2 College Precincts", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21869, + 52.1897 + ] + }, + "properties": { + "openplaque:id": "49416", + "addr:full": "\"25 Boutique", + "date_start": "Friar Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22112, + 52.19292 + ] + }, + "properties": { + "openplaque:id": "49879", + "addr:full": "The Cross near the High Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21824, + 52.19398 + ] + }, + "properties": { + "openplaque:id": "49880", + "addr:full": "Surly Joe's Desserts - 18 and 20 Silver Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21907, + 52.18736 + ] + }, + "properties": { + "openplaque:id": "49890", + "addr:full": "Museum of Royal Worcester - Severn Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21768, + 52.18794 + ] + }, + "properties": { + "openplaque:id": "49892", + "addr:full": "The King's Head - Sidbury" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22045, + 52.1912 + ] + }, + "properties": { + "openplaque:id": "54096", + "addr:full": "\"Costa", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22278, + 52.19602 + ] + }, + "properties": { + "openplaque:id": "8229", + "addr:full": "43 Foregate Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22156, + 52.19102 + ] + }, + "properties": { + "openplaque:id": "8249", + "addr:full": "Copenhagen Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21829, + 52.19247 + ] + }, + "properties": { + "openplaque:id": "8712", + "addr:full": "\"King Charles House", + "date_start": "30 New Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.22034, + 52.18976 + ] + }, + "properties": { + "openplaque:id": "8738", + "addr:full": "High Street (near the statue of Edward Elgar)", + "date_start": "1981" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.54029, + 54.6432 + ] + }, + "properties": { + "openplaque:id": "42632", + "addr:full": "\"Curwen Park", + "date_start": "Ramsey Brow\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.53755, + 54.64231 + ] + }, + "properties": { + "openplaque:id": "52937", + "addr:full": "\"Helena Thompson Museum", + "date_start": "Park End Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.38114, + 53.49986 + ] + }, + "properties": { + "openplaque:id": "30164", + "addr:full": "8 Barton Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.38087, + 53.50058 + ] + }, + "properties": { + "openplaque:id": "30444", + "addr:full": "Worsley Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.40735, + 53.49638 + ] + }, + "properties": { + "openplaque:id": "54666", + "addr:full": "Bridgewater Canal" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35843, + 50.81234 + ] + }, + "properties": { + "openplaque:id": "1627", + "addr:full": "The Esplanade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3634, + 50.812 + ] + }, + "properties": { + "openplaque:id": "1628", + "addr:full": "\"Beach House", + "date_start": "Brighton Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36349, + 50.8121 + ] + }, + "properties": { + "openplaque:id": "1629", + "addr:full": "\"Beach House", + "date_start": "Brighton Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36349, + 50.8121 + ] + }, + "properties": { + "openplaque:id": "1630", + "addr:full": "\"Beach House", + "date_start": "Brighton Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37062, + 50.80884 + ] + }, + "properties": { + "openplaque:id": "1631", + "addr:full": "Worthing Pier", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3738, + 50.8127 + ] + }, + "properties": { + "openplaque:id": "1632", + "addr:full": "Grafton Road", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3738, + 50.8129 + ] + }, + "properties": { + "openplaque:id": "1633", + "addr:full": "Humphrys Road", + "date_start": "2009" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36879, + 50.81176 + ] + }, + "properties": { + "openplaque:id": "1634", + "addr:full": "Warwick Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3687, + 50.8106 + ] + }, + "properties": { + "openplaque:id": "1635", + "addr:full": "Bedford Row", + "date_start": "2003" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39427, + 50.81913 + ] + }, + "properties": { + "openplaque:id": "1638", + "addr:full": "\"Cranmer Road", + "date_start": "Tarring\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42231, + 50.81115 + ] + }, + "properties": { + "openplaque:id": "1639", + "addr:full": "\"Jefferies Lane", + "date_start": "Goring by Sea\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44248, + 50.80537 + ] + }, + "properties": { + "openplaque:id": "1802", + "addr:full": "St Aubins Road", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3719, + 50.81021 + ] + }, + "properties": { + "openplaque:id": "2135", + "addr:full": "34 Montague Street", + "date_start": "2007" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37329, + 50.81354 + ] + }, + "properties": { + "openplaque:id": "30176", + "addr:full": "107 Portland Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.368, + 50.80997 + ] + }, + "properties": { + "openplaque:id": "40891", + "addr:full": "Marine Parade", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36907, + 50.80718 + ] + }, + "properties": { + "openplaque:id": "41623", + "addr:full": "Pier" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36833, + 50.81144 + ] + }, + "properties": { + "openplaque:id": "41897", + "addr:full": "Warwick Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39093, + 50.81307 + ] + }, + "properties": { + "openplaque:id": "43791", + "addr:full": "29 Lansdowne Road", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37879, + 50.80856 + ] + }, + "properties": { + "openplaque:id": "43797", + "addr:full": "Marine Parade" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36003, + 50.81421 + ] + }, + "properties": { + "openplaque:id": "50515", + "addr:full": "\"The Old White House", + "date_start": "Church Walk\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37611, + 50.8183 + ] + }, + "properties": { + "openplaque:id": "5198", + "addr:full": "\"Worthing Station", + "date_start": "Railway Approach\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37183, + 50.8096 + ] + }, + "properties": { + "openplaque:id": "54040", + "addr:full": "Montague Place", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44267, + 50.82592 + ] + }, + "properties": { + "openplaque:id": "54330", + "addr:full": "Highdown Gardens", + "date_start": "2020" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99026, + 53.0438 + ] + }, + "properties": { + "openplaque:id": "1656", + "addr:full": "2 Mount Street", + "date_start": "1992" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71771, + 53.61679 + ] + }, + "properties": { + "openplaque:id": "42734", + "addr:full": "Church Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.93763, + 51.18397 + ] + }, + "properties": { + "openplaque:id": "31670", + "addr:full": "\"St Gregory & St Martin", + "date_start": "High Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.93942, + 51.18352 + ] + }, + "properties": { + "openplaque:id": "52950", + "addr:full": "\"Old Hall", + "date_start": "Wye College\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.10829, + 52.5674 + ] + }, + "properties": { + "openplaque:id": "4194", + "addr:full": "Briton Way" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76165, + 54.16457 + ] + }, + "properties": { + "openplaque:id": "11432", + "addr:full": "Yealand Road" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.6252, + 50.94214 + ] + }, + "properties": { + "openplaque:id": "10379", + "addr:full": "Sherborne Road", + "date_start": "2000" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.63302, + 50.94062 + ] + }, + "properties": { + "openplaque:id": "10380", + "addr:full": "\"Newnam Memorial Block", + "date_start": "South Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.63332, + 50.94117 + ] + }, + "properties": { + "openplaque:id": "30554", + "addr:full": "rear of 21-22 High" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.63289, + 50.94207 + ] + }, + "properties": { + "openplaque:id": "40339", + "addr:full": "Church Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.63785, + 51.01596 + ] + }, + "properties": { + "openplaque:id": "49185", + "addr:full": "RNAS Yeovilton" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.63785, + 51.01596 + ] + }, + "properties": { + "openplaque:id": "49186", + "addr:full": "RNAS Yeovilton" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.57806, + 50.89345 + ] + }, + "properties": { + "openplaque:id": "41755", + "addr:full": "Church Street", + "date_start": "1994" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.57386, + 50.89574 + ] + }, + "properties": { + "openplaque:id": "41811", + "addr:full": "\"The Sidings", + "date_start": "Station Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.09276, + 53.95795 + ] + }, + "properties": { + "openplaque:id": "11720", + "addr:full": "York Railway Station" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04674, + 53.95396 + ] + }, + "properties": { + "openplaque:id": "11884", + "addr:full": "Hull Road", + "date_start": "1996" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08459, + 53.96056 + ] + }, + "properties": { + "openplaque:id": "12226", + "addr:full": "18 Blake Street", + "date_start": "2013" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08569, + 53.95885 + ] + }, + "properties": { + "openplaque:id": "1533", + "addr:full": "\"Park Inn", + "date_start": "North Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08524, + 53.96257 + ] + }, + "properties": { + "openplaque:id": "42353", + "addr:full": "St Leonard’s Place", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08945, + 53.96211 + ] + }, + "properties": { + "openplaque:id": "42471", + "addr:full": "\"St Mary's Lodge", + "date_start": "Marygate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08579, + 53.95886 + ] + }, + "properties": { + "openplaque:id": "42573", + "addr:full": "\"North Street Gardens", + "date_start": "North Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08018, + 53.9566 + ] + }, + "properties": { + "openplaque:id": "42575", + "addr:full": "31 Castlegate", + "date_start": "2016" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.09646, + 53.96069 + ] + }, + "properties": { + "openplaque:id": "42577", + "addr:full": "\"National Railway Museum", + "date_start": "Leeman Road\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0842, + 53.96015 + ] + }, + "properties": { + "openplaque:id": "43686", + "addr:full": "3-5 St Helen’s Square", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.06844, + 53.95488 + ] + }, + "properties": { + "openplaque:id": "43687", + "addr:full": "\"Tuke House", + "date_start": "Lawrence Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08998, + 53.95655 + ] + }, + "properties": { + "openplaque:id": "43688", + "addr:full": "114 Micklegate", + "date_start": "2017" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07532, + 53.9508 + ] + }, + "properties": { + "openplaque:id": "49119", + "addr:full": "\"79", + "date_start": "Fishergate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.09288, + 53.96699 + ] + }, + "properties": { + "openplaque:id": "49237", + "addr:full": "\"30", + "date_start": "Clifton\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08752, + 53.97034 + ] + }, + "properties": { + "openplaque:id": "49669", + "addr:full": "Shipton Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0879, + 53.94473 + ] + }, + "properties": { + "openplaque:id": "49747", + "addr:full": "20 Kensington Street", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08094, + 53.96196 + ] + }, + "properties": { + "openplaque:id": "49765", + "addr:full": "The Queen’s Path" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08276, + 53.95249 + ] + }, + "properties": { + "openplaque:id": "50152", + "addr:full": "Clementhorpe" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10262, + 53.9868 + ] + }, + "properties": { + "openplaque:id": "50220", + "addr:full": "Corner of Clifton Moor Gate and Kettlestring Lane." + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.06854, + 53.95404 + ] + }, + "properties": { + "openplaque:id": "50332", + "addr:full": "\"St. Lawrence's Churchyard", + "date_start": "Lawrence Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07799, + 53.9544 + ] + }, + "properties": { + "openplaque:id": "50356", + "addr:full": "Castle Mills Bridge" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08288, + 53.96116 + ] + }, + "properties": { + "openplaque:id": "50640", + "addr:full": "35 Stonegate", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08702, + 53.96166 + ] + }, + "properties": { + "openplaque:id": "50786", + "addr:full": "Museum Gardens", + "date_start": "2018" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07917, + 53.95891 + ] + }, + "properties": { + "openplaque:id": "50928", + "addr:full": "\"5", + "date_start": "Fossgate\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08369, + 53.95887 + ] + }, + "properties": { + "openplaque:id": "50992", + "addr:full": "36 Coney Street", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07705, + 53.95166 + ] + }, + "properties": { + "openplaque:id": "51495", + "addr:full": "1 William Court" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.071, + 53.94997 + ] + }, + "properties": { + "openplaque:id": "51661", + "addr:full": "\"The Chapel", + "date_start": "York Cemetery" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08123, + 53.96277 + ] + }, + "properties": { + "openplaque:id": "51773", + "addr:full": "\"Treasurer’s House", + "date_start": "Minster Yard\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07751, + 53.96011 + ] + }, + "properties": { + "openplaque:id": "51939", + "addr:full": "31 St. Saviourgate", + "date_start": "2019" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.09612, + 53.96041 + ] + }, + "properties": { + "openplaque:id": "51958" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0866, + 53.96163 + ] + }, + "properties": { + "openplaque:id": "51984", + "addr:full": "Museum Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08803, + 53.96124 + ] + }, + "properties": { + "openplaque:id": "52065", + "addr:full": "\"York Observatory", + "date_start": "Museum Trust\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0869, + 53.96211 + ] + }, + "properties": { + "openplaque:id": "52266", + "addr:full": "\"King’s Manor", + "date_start": "Exhibition Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08129, + 53.9628 + ] + }, + "properties": { + "openplaque:id": "52952", + "addr:full": "\"Treasurer’s House", + "date_start": "Minster Yard\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07553, + 53.95683 + ] + }, + "properties": { + "openplaque:id": "54112", + "addr:full": "64 Walmgate", + "date_start": "2020" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08251, + 53.9569 + ] + }, + "properties": { + "openplaque:id": "5954", + "addr:full": "Grand Opera House", + "date_start": "1999" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08767, + 53.96171 + ] + }, + "properties": { + "openplaque:id": "9066", + "addr:full": "Yorkshire Museum" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07587, + 53.96033 + ] + }, + "properties": { + "openplaque:id": "9084", + "addr:full": "\"St Anthony's Hall", + "date_start": "Peasholme Green" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08039, + 53.95689 + ] + }, + "properties": { + "openplaque:id": "9096", + "addr:full": "29 Castlegate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08631, + 53.96238 + ] + }, + "properties": { + "openplaque:id": "9115", + "addr:full": "\"King's Manor", + "date_start": "Exhibition Square\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0792, + 53.9619 + ] + }, + "properties": { + "openplaque:id": "9198", + "addr:full": "Bartle Garth" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07918, + 53.95907 + ] + }, + "properties": { + "openplaque:id": "9204", + "addr:full": "Whip-Ma-Whop-Ma-Gate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07995, + 53.95927 + ] + }, + "properties": { + "openplaque:id": "9280", + "addr:full": "35 Shambles" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0756, + 53.96165 + ] + }, + "properties": { + "openplaque:id": "9282", + "addr:full": "Jewbury" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08122, + 53.9581 + ] + }, + "properties": { + "openplaque:id": "9287", + "addr:full": "19 High Ousegate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08532, + 53.96276 + ] + }, + "properties": { + "openplaque:id": "9290", + "addr:full": "Bootham Bar" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08001, + 53.95663 + ] + }, + "properties": { + "openplaque:id": "9293", + "addr:full": "Castlegate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07977, + 53.95562 + ] + }, + "properties": { + "openplaque:id": "9295", + "addr:full": "Clifford's Tower" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07049, + 53.95516 + ] + }, + "properties": { + "openplaque:id": "9297", + "addr:full": "Walmgate Bar" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08465, + 53.96011 + ] + }, + "properties": { + "openplaque:id": "9343", + "addr:full": "1 Saint Helen's Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0825, + 53.96136 + ] + }, + "properties": { + "openplaque:id": "9345", + "addr:full": "41 Stonegate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0813, + 53.961 + ] + }, + "properties": { + "openplaque:id": "9347", + "addr:full": "62 Low Petergate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0881, + 53.96441 + ] + }, + "properties": { + "openplaque:id": "9356", + "addr:full": "51 Bootham" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07859, + 53.95806 + ] + }, + "properties": { + "openplaque:id": "9370", + "addr:full": "Rear of 39 Fossgate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08003, + 53.95668 + ] + }, + "properties": { + "openplaque:id": "9372", + "addr:full": "Castlegate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0847, + 53.9591 + ] + }, + "properties": { + "openplaque:id": "9478", + "addr:full": "\"City Screen", + "date_start": "13 - 17 Coney Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08225, + 53.95913 + ] + }, + "properties": { + "openplaque:id": "9519", + "addr:full": "20 Feasegate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08226, + 53.95891 + ] + }, + "properties": { + "openplaque:id": "9526", + "addr:full": "20 Feasegate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08446, + 53.96005 + ] + }, + "properties": { + "openplaque:id": "9527", + "addr:full": "St Helen's Square" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.09138, + 53.9552 + ] + }, + "properties": { + "openplaque:id": "9583", + "addr:full": "\"Bar Convent", + "date_start": "Blossom Street\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08776, + 53.95741 + ] + }, + "properties": { + "openplaque:id": "9585", + "addr:full": "54 Micklegate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08909, + 53.95701 + ] + }, + "properties": { + "openplaque:id": "9586", + "addr:full": "88-90 Micklegate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08794, + 53.95655 + ] + }, + "properties": { + "openplaque:id": "9596", + "addr:full": "\"Trinity Court", + "date_start": "Trinity Lane\"" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08599, + 53.95608 + ] + }, + "properties": { + "openplaque:id": "9597", + "addr:full": "17 Bishophill Senior" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.09009, + 53.96224 + ] + }, + "properties": { + "openplaque:id": "9761", + "addr:full": "Marygate Lane" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08765, + 53.96333 + ] + }, + "properties": { + "openplaque:id": "9766", + "addr:full": "Marygate" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.087, + 53.96132 + ] + }, + "properties": { + "openplaque:id": "9767", + "addr:full": "Museum Gardens" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08078, + 53.95545 + ] + }, + "properties": { + "openplaque:id": "9930", + "addr:full": "Tower Gardens (by Tower Street entrance)" + } + } + ] +} \ No newline at end of file diff --git a/tests/main.test.js b/tests/main.test.js index 319b977..e85b3ce 100644 --- a/tests/main.test.js +++ b/tests/main.test.js @@ -28,15 +28,9 @@ describe('mapping properties with rich mapping engine', () => { }) test('maps simple key to key, and keep the same value', () => { let Mapping_engine = new mapping_engine(mappingSame) - let featurePoint = { - type: 'Feature', - properties: { - equal: "same value" - } - } let newProperties = Mapping_engine.convertProperty('equal', Object.keys(mappingSame.tags), - featurePoint, + feature_to_test, mappingSame.default_properties_of_point) expect(newProperties).toStrictEqual({