diff --git a/components/Map/Map.story.js b/components/Map/Map.story.js index 93a71c881..8e6b78dd9 100644 --- a/components/Map/Map.story.js +++ b/components/Map/Map.story.js @@ -1,6 +1,8 @@ -import React, { Component } from 'react'; +import React, { Component, PropTypes } from 'react'; import { storiesOf } from '@kadira/storybook'; +import { withKnobs, boolean } from '@kadira/storybook-addon-knobs'; import uniqueId from 'lodash/fp/uniqueId'; + import actionWithComplexArgs from '../../.storybook/utils/actionWithComplexArgs'; import MarkableMap from './MarkableMap'; import BaseMap from './BaseMap'; @@ -8,17 +10,16 @@ import Marker from './Markers/Marker'; import GroupMarker from './Markers/SpaceGroupMarker'; import SpaceListingCard from '../Cards/SpaceListingCard/SpaceListingCard'; -import testGeoJson from './testGeoJson'; +import { metaMarkersA, metaMarkersB, metaMarkersC } from './testMetaMarkers'; -const SMALL_TEST_GEO_JSON = 'small'; -const LARGE_TEST_GEO_JSON = 'large'; +const stories = storiesOf('Map', module); +stories.addDecorator(withKnobs); const SpaceMarker = props => ; const prices = ['£1', '£33', '£420', '£1,000', '£20,000', '£999,999', '1 €', '20 €', '440 €', '4.040 €', '40.040 €', '120.040 €']; - const generateMarkers = (number = 1, lng, lat) => { const markers = []; @@ -62,13 +63,18 @@ const generateMarkers = (number = 1, lng, lat) => { }; class TestMap extends Component { + static propTypes = { + metaMarkers: PropTypes.array, + }; + + static defaultProps = { + metaMarkers: [], + }; + constructor(props) { super(props); this.state = { - center: [-1.5253180650545346, 52.879078603224315], - zoom: 11, markers: generateMarkers(10), - heatmapGeoJsonKey: SMALL_TEST_GEO_JSON, }; } @@ -78,43 +84,19 @@ class TestMap extends Component { }); }; - handleMoveEnd = (mapboxUserAction, view) => { - const { center, zoom } = view; - this.setState({ - center, - zoom, - }); - }; - - updateGeoJson = () => { - const { heatmapGeoJsonKey } = this.state; - - if (heatmapGeoJsonKey === SMALL_TEST_GEO_JSON) { - this.setState({ - heatmapGeoJsonKey: LARGE_TEST_GEO_JSON, - }); - } else { - this.setState({ - heatmapGeoJsonKey: SMALL_TEST_GEO_JSON, - }); - } - }; - render() { - const { markers, heatmapGeoJsonKey, center, zoom } = this.state; + const { markers } = this.state; + const { metaMarkers } = this.props; + return (
-
@@ -122,7 +104,7 @@ class TestMap extends Component { } } -storiesOf('Map', module) +stories .add('Default', () => (
)) - .add('MarkableMap', () => ( - - )) + .add('MarkableMap', () => ) + .add('MarkableMap w/Meta markers', () => { + const metaMarkers = [ + (boolean('Meta Markers A', true) && metaMarkersA), + (boolean('Meta Markers B', true) && metaMarkersB), + (boolean('Meta Markers C', true) && metaMarkersC), + ].filter(metaMarker => metaMarker); + + return ; + }) .add('Grouped Space Marker', () => (
{ const mapbox = this.getMapboxGL(); - const { colorStops, intensity, spread, cellDensity, heatmapGeoJson } = this.props; mapbox.addSource(MARKER_SOURCE, { type: 'geojson', @@ -257,16 +243,7 @@ export default class MarkableMap extends Component { }); this.updateMapboxMarkerSource(); - - if (heatmapGeoJson) { - this.heatmap = new HexgridHeatmap(mapbox, HEATMAP_LAYER, MARKER_LAYER); - this.heatmap.setIntensity(intensity); - this.heatmap.setSpread(spread); - this.heatmap.setCellDensity(cellDensity); - this.heatmap.setColorStops(colorStops); - this.heatmap.setData(heatmapGeoJson); - this.heatmap.update(); - } + this.updateMetaMarkerSource(); }; updateMapboxMarkerSource = () => { @@ -295,6 +272,50 @@ export default class MarkableMap extends Component { }); }; + updateMetaMarkerSource = (prevMetaMarkers) => { + const { metaMarkers } = this.props; + const mapbox = this.getMapboxGL(); + + if (prevMetaMarkers) { + prevMetaMarkers.forEach((prevMetaMarker) => { + const prevMetaMarkerSource = mapbox.getSource(prevMetaMarker.id); + const prevMetaMarkerLayer = mapbox.getLayer(prevMetaMarker.id); + + if ( + (prevMetaMarkerSource && prevMetaMarkerLayer) && + !metaMarkers.includes(prevMetaMarker) + ) { + mapbox.removeSource(prevMetaMarker.id); + mapbox.removeLayer(prevMetaMarker.id); + } + }); + } + + metaMarkers.forEach((metaMarker, index) => { + const metaMarkerSource = mapbox.getSource(metaMarker.id); + const metaMarkerLayer = mapbox.getLayer(metaMarker.id); + + if (!metaMarkerSource && !metaMarkerLayer) { + mapbox.addSource(metaMarker.id, { + type: 'geojson', + data: metaMarker, + }); + mapbox.addLayer({ + id: metaMarker.id, + type: DEFAULT_MARKER_CONFIG.type, + source: metaMarker.id, + layout: { + 'icon-image': `meta-${index + 1}`, + 'text-field': metaMarker.label, + 'text-font': DEFAULT_MARKER_CONFIG.layout.textFont, + 'text-size': DEFAULT_MARKER_CONFIG.layout.textSize, + }, + paint: DEFAULT_MARKER_CONFIG.paint, + }); + } + }); + }; + handleMapClick = (e) => { const { originalEvent, point } = e; if (originalEvent.target !== this.getMapboxGL().getCanvas()) return; @@ -389,7 +410,6 @@ export default class MarkableMap extends Component { this.map.zoomOut(); }; - renderMarkerPopup = (activeFeature) => { const { MarkerComponent, GroupMarkerComponent, markers } = this.props; const lngLat = activeFeature.geometry.coordinates; diff --git a/components/Map/testGeoJson.js b/components/Map/testGeoJson.js deleted file mode 100644 index 6f0c8335a..000000000 --- a/components/Map/testGeoJson.js +++ /dev/null @@ -1,24669 +0,0 @@ -export default { - small: { - type: 'FeatureCollection', - features: [ - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-95.00152587890625, 51.17934297928927], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.656370848706096], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24918794631958008, 51.48480373951605], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03782987594604492, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.46427482966438], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24232149124145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22034883499145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09537935256958008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15168428421020508, 51.35977664828088], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.47967237816338], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.477106480966924], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3672909736633301, 51.59754765771458], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5101132392883301, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4565548896789551, 51.549751017014195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4538083076477051, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.34519646305082], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15443086624145508, 51.30400383245547], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12160062789916992, 51.31430545880777], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.14631986618041992, 51.39920565355378], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.19301176071166992, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.10786771774291992, 51.6580747314511], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2740359306335449, 51.69043633297444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.784833893735296], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6419491767883301, 51.75424007403353], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6872677803039551, 51.5693878622646], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6282162666320801, 51.37863823622005], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5677914619445801, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.20524263381958008, 51.19483648846098], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3124880790710449, 51.206023006029305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3523135185241699, 51.45828549061809], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3619265556335449, 51.64699834847127], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3248476982116699, 51.797575198911495], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04332304000854492, 51.763590385710735], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2807736396789551, 51.7644403180351], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.77123920059797], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6790280342102051, 51.68021937787971], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6488156318664551, 51.467696956223364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6474423408508301, 51.342623007528275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5774044990539551, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3837704658508301, 51.163844261348224], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.14756441116333008, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.5369398104669], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13245820999145508, 51.46684144864417], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06516695022583008, 51.5463350479341], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.05418062210083008, 51.43260799126726], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2505612373352051, 51.53437713632629], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2752804756164551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15717744827270508, 51.599253751127776], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2766537666320801, 51.55316672962128], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06104707717895508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06242036819458008, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3576779365539551, 51.49933946133651], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4098629951477051, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06392240524291992, 51.58901622923166], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.23970365524291992, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.21498441696166992, 51.46256367014164], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5636715888977051, 51.228387892306834], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3219723701477051, 51.14403276295328], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06804227828979492, 51.16470543789416], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.28425258391496], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6652951240539551, 51.72447619956401], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5897641181945801, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4263424873352051, 51.755090182378176], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15305757522583008, 51.777187382825616], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03508329391479492, 51.7406361640977], - }, - properties: {}, - }, - ], - }, - large: { - type: 'FeatureCollection', - features: [ - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-95.00152587890625, 51.17934297928927], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.656370848706096], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24918794631958008, 51.48480373951605], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03782987594604492, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.46427482966438], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24232149124145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22034883499145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09537935256958008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15168428421020508, 51.35977664828088], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.47967237816338], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.477106480966924], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3672909736633301, 51.59754765771458], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5101132392883301, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4565548896789551, 51.549751017014195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4538083076477051, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.34519646305082], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15443086624145508, 51.30400383245547], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12160062789916992, 51.31430545880777], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.14631986618041992, 51.39920565355378], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.19301176071166992, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.10786771774291992, 51.6580747314511], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2740359306335449, 51.69043633297444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.784833893735296], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6419491767883301, 51.75424007403353], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6872677803039551, 51.5693878622646], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6282162666320801, 51.37863823622005], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5677914619445801, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.20524263381958008, 51.19483648846098], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3124880790710449, 51.206023006029305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3523135185241699, 51.45828549061809], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3619265556335449, 51.64699834847127], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3248476982116699, 51.797575198911495], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04332304000854492, 51.763590385710735], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2807736396789551, 51.7644403180351], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.77123920059797], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6790280342102051, 51.68021937787971], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6488156318664551, 51.467696956223364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6474423408508301, 51.342623007528275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5774044990539551, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3837704658508301, 51.163844261348224], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.14756441116333008, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.5369398104669], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13245820999145508, 51.46684144864417], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06516695022583008, 51.5463350479341], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.05418062210083008, 51.43260799126726], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2505612373352051, 51.53437713632629], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2752804756164551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15717744827270508, 51.599253751127776], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2766537666320801, 51.55316672962128], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06104707717895508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06242036819458008, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3576779365539551, 51.49933946133651], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4098629951477051, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06392240524291992, 51.58901622923166], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.23970365524291992, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.21498441696166992, 51.46256367014164], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5636715888977051, 51.228387892306834], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3219723701477051, 51.14403276295328], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06804227828979492, 51.16470543789416], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.28425258391496], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6652951240539551, 51.72447619956401], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5897641181945801, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4263424873352051, 51.755090182378176], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15305757522583008, 51.777187382825616], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03508329391479492, 51.7406361640977], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18189668655395508, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10636568069458008, 51.54889704878878], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12147188186645508, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08452177047729492, 51.67681321379402], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.09413480758666992, 51.670000116998196], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11460542678833008, 51.39235087498254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22996187210083008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21210908889770508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17640352249145508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.20674467086791992, 51.43346414054374], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.398348862404816], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2945065498352051, 51.441168762039396], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05430936813354492, 51.590722643120145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5252194404602051, 51.53523137707125], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3288388252258301, 51.57365561973001], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.23957490921020508, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11885404586791992, 51.57450912314331], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.15593290328979492, 51.461708066319034], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07216215133666992, 51.45486265825492], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11610746383666992, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08864164352416992, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.46598592502469], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07615327835083008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12421846389770508, 51.435176390963065], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17915010452270508, 51.4830933498849], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2903866767883301, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3178524971008301, 51.533522879549764], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.57792297653431], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.50959718054333], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3727841377258301, 51.48052764515145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.4608524464555], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3302121162414551, 51.451439569222494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3549313545227051, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3782773017883301, 51.456574106519724], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2546811103820801, 51.486514064995276], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3041195869445801, 51.49677467073], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21348237991333008, 51.5283970022217], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19700288772583008, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03220796585083008, 51.591575826028006], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05156278610229492, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08314847946166992, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.003368854522705078, 51.57024144581124], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.47026338272035], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04731416702270508, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09949922561645508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06928682327270508, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08851289749145508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09812593460083008, 51.4428807236673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08164644241333008, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18464326858520508, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.40091918770499], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.41976382669734], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.38378095727871], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4730343818664551, 51.317738820339706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4812741279602051, 51.26964837349673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21485567092895508, 51.22666790215265], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04868745803833008, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.13258695602416992, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.22871732711791992, 51.33490177391887], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2712893486022949, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3262209892272949, 51.47539580264131], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3275942802429199, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3152346611022949, 51.59840071243278], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10224580764770508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11597871780395508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.001995563507080078, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13520479202270508, 51.69724635547481], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24506807327270508, 51.5480430645337], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3013730049133301, 51.45999681055089], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.35291596261771], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3343319892883301, 51.32031367286622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03358125686645508, 51.28768819403519], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4429507255554199, 51.31688050404585], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4333376884460449, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.18477201461791992, 51.76783988732215], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.49420973579561], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5581784248352051, 51.36492148825952], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11872529983520508, 51.19827878319753], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3495669364929199, 51.44716034698012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5691647529602051, 51.63250976332742], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6295895576477051, 51.24472459284824], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3192257881164551, 51.782285200755226], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09263277053833008, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2642941474914551, 51.45229536554371], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4318356513977051, 51.43945673623716], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5059933662414551, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12009859085083008, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15855073928833008, 51.37349493730543], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07628202438354492, 51.57962980707403], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08027315139770508, 51.70660846336452], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.48993452350154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19013643264770508, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3852725028991699, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.007617473602294922, 51.24644390808839], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.54718906424884], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.661482304757875], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3205990791320801, 51.75679035106036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24644136428833008, 51.708310456678895], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2999997138977051, 51.37692386745589], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4387021064758301, 51.23784668914442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6240963935852051, 51.18192559252129], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4676699638366699, 51.49848454717058], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3440737724304199, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.248163159055906], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.177621156752494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.61034179610213], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24843692779541016, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6054925918579102, 51.682773832813275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7235956192016602, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.801821500783056], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.004248619079589844, 51.96626938051444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.012488365173339844, 51.699799849741936], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.6304693222045898, 51.77463825786987], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24320125579833984, 51.256758449834216], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.39125919342041016, 51.12938401413808], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.402632657661314], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9790277481079102, 51.55828981766069], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.8001230280236], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.49675583839416504, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.502249002456665, 51.68319956129154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.67979362137999], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.66914840783795], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5400145053863525, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5606138706207275, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.57778000831604, 51.66233415804706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.570913553237915, 51.6461462068968], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.64095139503479, 51.6508327873501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.686269998550415, 51.64870258356996], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.66567063331604, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7034361362457275, 51.615884803202704], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.719228982925415, 51.6218534384778], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6773436069488525, 51.6180165487737], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.625845193862915, 51.613752957501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6074157357215881, 51.619402129700624], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5878463387489319, 51.624730892862914], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6005492806434631, 51.62036135325299], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6002059578895569, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5957427620887756, 51.62600970290609], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5863013863563538, 51.63613234359897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5624404549598694, 51.645826649677026], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.546819269657135, 51.64731789743238], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5452743172645569, 51.6450810074049], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5461326241493225, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5559173226356506, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5584922432899475, 51.63559962935197], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5615821480751038, 51.63155079658897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6159988045692444, 51.64572013010323], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6108489632606506, 51.62419804470685], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.004742145538330078, 51.88920636981512], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07340669631958008, 51.91123787572315], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09675264358520508, 51.9518830439622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.024096965789794922, 51.891749018068246], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04606962203979492, 51.94934379943591], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12709379196166992, 51.89937609970991], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06379365921020508, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.2219715118408203, 51.10697105503078], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.5131092071533203, 51.50532341149336], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.8099842071533203, 52.0862573323384], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.5468273162841797, 51.974729774949644], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4094982147216797, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11836051940917969, 50.878777255570405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7715320587158203, 51.09662294502994], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4856433868408203, 51.52241608253254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9747791290283203, 51.45400691005982], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4032459259033203, 51.14144802734405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.31344707827588], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-95.00152587890625, 51.17934297928927], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.656370848706096], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24918794631958008, 51.48480373951605], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03782987594604492, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.46427482966438], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24232149124145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22034883499145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09537935256958008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15168428421020508, 51.35977664828088], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.47967237816338], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.477106480966924], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3672909736633301, 51.59754765771458], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5101132392883301, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4565548896789551, 51.549751017014195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4538083076477051, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.34519646305082], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15443086624145508, 51.30400383245547], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12160062789916992, 51.31430545880777], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.14631986618041992, 51.39920565355378], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.19301176071166992, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.10786771774291992, 51.6580747314511], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2740359306335449, 51.69043633297444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.784833893735296], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6419491767883301, 51.75424007403353], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6872677803039551, 51.5693878622646], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6282162666320801, 51.37863823622005], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5677914619445801, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.20524263381958008, 51.19483648846098], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3124880790710449, 51.206023006029305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3523135185241699, 51.45828549061809], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3619265556335449, 51.64699834847127], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3248476982116699, 51.797575198911495], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04332304000854492, 51.763590385710735], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2807736396789551, 51.7644403180351], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.77123920059797], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6790280342102051, 51.68021937787971], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6488156318664551, 51.467696956223364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6474423408508301, 51.342623007528275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5774044990539551, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3837704658508301, 51.163844261348224], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.14756441116333008, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.5369398104669], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13245820999145508, 51.46684144864417], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06516695022583008, 51.5463350479341], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.05418062210083008, 51.43260799126726], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2505612373352051, 51.53437713632629], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2752804756164551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15717744827270508, 51.599253751127776], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2766537666320801, 51.55316672962128], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06104707717895508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06242036819458008, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3576779365539551, 51.49933946133651], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4098629951477051, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06392240524291992, 51.58901622923166], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.23970365524291992, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.21498441696166992, 51.46256367014164], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5636715888977051, 51.228387892306834], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3219723701477051, 51.14403276295328], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06804227828979492, 51.16470543789416], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.28425258391496], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6652951240539551, 51.72447619956401], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5897641181945801, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4263424873352051, 51.755090182378176], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15305757522583008, 51.777187382825616], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03508329391479492, 51.7406361640977], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18189668655395508, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10636568069458008, 51.54889704878878], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12147188186645508, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08452177047729492, 51.67681321379402], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.09413480758666992, 51.670000116998196], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11460542678833008, 51.39235087498254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22996187210083008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21210908889770508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17640352249145508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.20674467086791992, 51.43346414054374], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.398348862404816], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2945065498352051, 51.441168762039396], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05430936813354492, 51.590722643120145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5252194404602051, 51.53523137707125], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3288388252258301, 51.57365561973001], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.23957490921020508, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11885404586791992, 51.57450912314331], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.15593290328979492, 51.461708066319034], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07216215133666992, 51.45486265825492], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11610746383666992, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08864164352416992, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.46598592502469], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07615327835083008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12421846389770508, 51.435176390963065], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17915010452270508, 51.4830933498849], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2903866767883301, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3178524971008301, 51.533522879549764], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.57792297653431], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.50959718054333], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3727841377258301, 51.48052764515145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.4608524464555], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3302121162414551, 51.451439569222494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3549313545227051, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3782773017883301, 51.456574106519724], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2546811103820801, 51.486514064995276], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3041195869445801, 51.49677467073], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21348237991333008, 51.5283970022217], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19700288772583008, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03220796585083008, 51.591575826028006], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05156278610229492, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08314847946166992, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.003368854522705078, 51.57024144581124], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.47026338272035], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04731416702270508, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09949922561645508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06928682327270508, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08851289749145508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09812593460083008, 51.4428807236673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08164644241333008, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18464326858520508, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.40091918770499], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.41976382669734], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.38378095727871], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4730343818664551, 51.317738820339706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4812741279602051, 51.26964837349673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21485567092895508, 51.22666790215265], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04868745803833008, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.13258695602416992, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.22871732711791992, 51.33490177391887], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2712893486022949, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3262209892272949, 51.47539580264131], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3275942802429199, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3152346611022949, 51.59840071243278], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10224580764770508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11597871780395508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.001995563507080078, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13520479202270508, 51.69724635547481], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24506807327270508, 51.5480430645337], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3013730049133301, 51.45999681055089], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.35291596261771], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3343319892883301, 51.32031367286622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03358125686645508, 51.28768819403519], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4429507255554199, 51.31688050404585], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4333376884460449, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.18477201461791992, 51.76783988732215], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.49420973579561], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5581784248352051, 51.36492148825952], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11872529983520508, 51.19827878319753], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3495669364929199, 51.44716034698012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5691647529602051, 51.63250976332742], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6295895576477051, 51.24472459284824], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3192257881164551, 51.782285200755226], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09263277053833008, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2642941474914551, 51.45229536554371], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4318356513977051, 51.43945673623716], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5059933662414551, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12009859085083008, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15855073928833008, 51.37349493730543], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07628202438354492, 51.57962980707403], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08027315139770508, 51.70660846336452], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.48993452350154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19013643264770508, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3852725028991699, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.007617473602294922, 51.24644390808839], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.54718906424884], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.661482304757875], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3205990791320801, 51.75679035106036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24644136428833008, 51.708310456678895], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2999997138977051, 51.37692386745589], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4387021064758301, 51.23784668914442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6240963935852051, 51.18192559252129], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4676699638366699, 51.49848454717058], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3440737724304199, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.248163159055906], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.177621156752494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.61034179610213], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24843692779541016, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6054925918579102, 51.682773832813275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7235956192016602, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.801821500783056], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.004248619079589844, 51.96626938051444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.012488365173339844, 51.699799849741936], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.6304693222045898, 51.77463825786987], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24320125579833984, 51.256758449834216], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.39125919342041016, 51.12938401413808], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.402632657661314], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9790277481079102, 51.55828981766069], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.8001230280236], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.49675583839416504, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.502249002456665, 51.68319956129154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.67979362137999], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.66914840783795], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5400145053863525, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5606138706207275, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.57778000831604, 51.66233415804706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.570913553237915, 51.6461462068968], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.64095139503479, 51.6508327873501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.686269998550415, 51.64870258356996], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.66567063331604, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7034361362457275, 51.615884803202704], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.719228982925415, 51.6218534384778], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6773436069488525, 51.6180165487737], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.625845193862915, 51.613752957501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6074157357215881, 51.619402129700624], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5878463387489319, 51.624730892862914], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6005492806434631, 51.62036135325299], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6002059578895569, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5957427620887756, 51.62600970290609], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5863013863563538, 51.63613234359897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5624404549598694, 51.645826649677026], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.546819269657135, 51.64731789743238], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5452743172645569, 51.6450810074049], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5461326241493225, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5559173226356506, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5584922432899475, 51.63559962935197], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5615821480751038, 51.63155079658897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6159988045692444, 51.64572013010323], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6108489632606506, 51.62419804470685], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.004742145538330078, 51.88920636981512], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07340669631958008, 51.91123787572315], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09675264358520508, 51.9518830439622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.024096965789794922, 51.891749018068246], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04606962203979492, 51.94934379943591], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12709379196166992, 51.89937609970991], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06379365921020508, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.2219715118408203, 51.10697105503078], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.5131092071533203, 51.50532341149336], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.8099842071533203, 52.0862573323384], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.5468273162841797, 51.974729774949644], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4094982147216797, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11836051940917969, 50.878777255570405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7715320587158203, 51.09662294502994], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4856433868408203, 51.52241608253254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9747791290283203, 51.45400691005982], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4032459259033203, 51.14144802734405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.31344707827588], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-95.00152587890625, 51.17934297928927], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.656370848706096], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24918794631958008, 51.48480373951605], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03782987594604492, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.46427482966438], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24232149124145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22034883499145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09537935256958008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15168428421020508, 51.35977664828088], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.47967237816338], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.477106480966924], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3672909736633301, 51.59754765771458], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5101132392883301, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4565548896789551, 51.549751017014195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4538083076477051, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.34519646305082], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15443086624145508, 51.30400383245547], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12160062789916992, 51.31430545880777], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.14631986618041992, 51.39920565355378], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.19301176071166992, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.10786771774291992, 51.6580747314511], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2740359306335449, 51.69043633297444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.784833893735296], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6419491767883301, 51.75424007403353], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6872677803039551, 51.5693878622646], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6282162666320801, 51.37863823622005], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5677914619445801, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.20524263381958008, 51.19483648846098], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3124880790710449, 51.206023006029305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3523135185241699, 51.45828549061809], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3619265556335449, 51.64699834847127], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3248476982116699, 51.797575198911495], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04332304000854492, 51.763590385710735], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2807736396789551, 51.7644403180351], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.77123920059797], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6790280342102051, 51.68021937787971], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6488156318664551, 51.467696956223364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6474423408508301, 51.342623007528275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5774044990539551, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3837704658508301, 51.163844261348224], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.14756441116333008, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.5369398104669], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13245820999145508, 51.46684144864417], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06516695022583008, 51.5463350479341], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.05418062210083008, 51.43260799126726], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2505612373352051, 51.53437713632629], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2752804756164551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15717744827270508, 51.599253751127776], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2766537666320801, 51.55316672962128], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06104707717895508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06242036819458008, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3576779365539551, 51.49933946133651], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4098629951477051, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06392240524291992, 51.58901622923166], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.23970365524291992, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.21498441696166992, 51.46256367014164], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5636715888977051, 51.228387892306834], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3219723701477051, 51.14403276295328], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06804227828979492, 51.16470543789416], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.28425258391496], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6652951240539551, 51.72447619956401], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5897641181945801, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4263424873352051, 51.755090182378176], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15305757522583008, 51.777187382825616], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03508329391479492, 51.7406361640977], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18189668655395508, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10636568069458008, 51.54889704878878], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12147188186645508, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08452177047729492, 51.67681321379402], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.09413480758666992, 51.670000116998196], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11460542678833008, 51.39235087498254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22996187210083008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21210908889770508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17640352249145508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.20674467086791992, 51.43346414054374], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.398348862404816], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2945065498352051, 51.441168762039396], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05430936813354492, 51.590722643120145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5252194404602051, 51.53523137707125], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3288388252258301, 51.57365561973001], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.23957490921020508, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11885404586791992, 51.57450912314331], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.15593290328979492, 51.461708066319034], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07216215133666992, 51.45486265825492], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11610746383666992, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08864164352416992, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.46598592502469], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07615327835083008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12421846389770508, 51.435176390963065], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17915010452270508, 51.4830933498849], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2903866767883301, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3178524971008301, 51.533522879549764], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.57792297653431], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.50959718054333], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3727841377258301, 51.48052764515145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.4608524464555], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3302121162414551, 51.451439569222494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3549313545227051, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3782773017883301, 51.456574106519724], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2546811103820801, 51.486514064995276], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3041195869445801, 51.49677467073], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21348237991333008, 51.5283970022217], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19700288772583008, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03220796585083008, 51.591575826028006], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05156278610229492, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08314847946166992, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.003368854522705078, 51.57024144581124], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.47026338272035], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04731416702270508, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09949922561645508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06928682327270508, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08851289749145508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09812593460083008, 51.4428807236673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08164644241333008, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18464326858520508, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.40091918770499], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.41976382669734], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.38378095727871], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4730343818664551, 51.317738820339706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4812741279602051, 51.26964837349673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21485567092895508, 51.22666790215265], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04868745803833008, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.13258695602416992, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.22871732711791992, 51.33490177391887], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2712893486022949, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3262209892272949, 51.47539580264131], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3275942802429199, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3152346611022949, 51.59840071243278], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10224580764770508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11597871780395508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.001995563507080078, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13520479202270508, 51.69724635547481], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24506807327270508, 51.5480430645337], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3013730049133301, 51.45999681055089], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.35291596261771], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3343319892883301, 51.32031367286622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03358125686645508, 51.28768819403519], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4429507255554199, 51.31688050404585], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4333376884460449, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.18477201461791992, 51.76783988732215], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.49420973579561], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5581784248352051, 51.36492148825952], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11872529983520508, 51.19827878319753], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3495669364929199, 51.44716034698012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5691647529602051, 51.63250976332742], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6295895576477051, 51.24472459284824], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3192257881164551, 51.782285200755226], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09263277053833008, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2642941474914551, 51.45229536554371], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4318356513977051, 51.43945673623716], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5059933662414551, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12009859085083008, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15855073928833008, 51.37349493730543], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07628202438354492, 51.57962980707403], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08027315139770508, 51.70660846336452], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.48993452350154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19013643264770508, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3852725028991699, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.007617473602294922, 51.24644390808839], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.54718906424884], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.661482304757875], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3205990791320801, 51.75679035106036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24644136428833008, 51.708310456678895], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2999997138977051, 51.37692386745589], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4387021064758301, 51.23784668914442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6240963935852051, 51.18192559252129], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4676699638366699, 51.49848454717058], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3440737724304199, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.248163159055906], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.177621156752494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.61034179610213], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24843692779541016, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6054925918579102, 51.682773832813275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7235956192016602, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.801821500783056], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.004248619079589844, 51.96626938051444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.012488365173339844, 51.699799849741936], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.6304693222045898, 51.77463825786987], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24320125579833984, 51.256758449834216], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.39125919342041016, 51.12938401413808], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.402632657661314], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9790277481079102, 51.55828981766069], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.8001230280236], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.49675583839416504, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.502249002456665, 51.68319956129154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.67979362137999], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.66914840783795], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5400145053863525, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5606138706207275, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.57778000831604, 51.66233415804706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.570913553237915, 51.6461462068968], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.64095139503479, 51.6508327873501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.686269998550415, 51.64870258356996], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.66567063331604, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7034361362457275, 51.615884803202704], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.719228982925415, 51.6218534384778], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6773436069488525, 51.6180165487737], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.625845193862915, 51.613752957501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6074157357215881, 51.619402129700624], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5878463387489319, 51.624730892862914], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6005492806434631, 51.62036135325299], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6002059578895569, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5957427620887756, 51.62600970290609], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5863013863563538, 51.63613234359897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5624404549598694, 51.645826649677026], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.546819269657135, 51.64731789743238], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5452743172645569, 51.6450810074049], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5461326241493225, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5559173226356506, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5584922432899475, 51.63559962935197], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5615821480751038, 51.63155079658897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6159988045692444, 51.64572013010323], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6108489632606506, 51.62419804470685], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.004742145538330078, 51.88920636981512], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07340669631958008, 51.91123787572315], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09675264358520508, 51.9518830439622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.024096965789794922, 51.891749018068246], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04606962203979492, 51.94934379943591], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12709379196166992, 51.89937609970991], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06379365921020508, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.2219715118408203, 51.10697105503078], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.5131092071533203, 51.50532341149336], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.8099842071533203, 52.0862573323384], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.5468273162841797, 51.974729774949644], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4094982147216797, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11836051940917969, 50.878777255570405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7715320587158203, 51.09662294502994], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4856433868408203, 51.52241608253254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9747791290283203, 51.45400691005982], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4032459259033203, 51.14144802734405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.31344707827588], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-95.00152587890625, 51.17934297928927], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.656370848706096], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24918794631958008, 51.48480373951605], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03782987594604492, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.46427482966438], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24232149124145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22034883499145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09537935256958008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15168428421020508, 51.35977664828088], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.47967237816338], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.477106480966924], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3672909736633301, 51.59754765771458], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5101132392883301, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4565548896789551, 51.549751017014195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4538083076477051, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.34519646305082], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15443086624145508, 51.30400383245547], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12160062789916992, 51.31430545880777], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.14631986618041992, 51.39920565355378], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.19301176071166992, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.10786771774291992, 51.6580747314511], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2740359306335449, 51.69043633297444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.784833893735296], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6419491767883301, 51.75424007403353], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6872677803039551, 51.5693878622646], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6282162666320801, 51.37863823622005], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5677914619445801, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.20524263381958008, 51.19483648846098], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3124880790710449, 51.206023006029305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3523135185241699, 51.45828549061809], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3619265556335449, 51.64699834847127], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3248476982116699, 51.797575198911495], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04332304000854492, 51.763590385710735], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2807736396789551, 51.7644403180351], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.77123920059797], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6790280342102051, 51.68021937787971], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6488156318664551, 51.467696956223364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6474423408508301, 51.342623007528275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5774044990539551, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3837704658508301, 51.163844261348224], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.14756441116333008, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.5369398104669], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13245820999145508, 51.46684144864417], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06516695022583008, 51.5463350479341], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.05418062210083008, 51.43260799126726], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2505612373352051, 51.53437713632629], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2752804756164551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15717744827270508, 51.599253751127776], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2766537666320801, 51.55316672962128], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06104707717895508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06242036819458008, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3576779365539551, 51.49933946133651], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4098629951477051, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06392240524291992, 51.58901622923166], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.23970365524291992, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.21498441696166992, 51.46256367014164], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5636715888977051, 51.228387892306834], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3219723701477051, 51.14403276295328], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06804227828979492, 51.16470543789416], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.28425258391496], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6652951240539551, 51.72447619956401], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5897641181945801, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4263424873352051, 51.755090182378176], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15305757522583008, 51.777187382825616], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03508329391479492, 51.7406361640977], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18189668655395508, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10636568069458008, 51.54889704878878], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12147188186645508, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08452177047729492, 51.67681321379402], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.09413480758666992, 51.670000116998196], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11460542678833008, 51.39235087498254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22996187210083008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21210908889770508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17640352249145508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.20674467086791992, 51.43346414054374], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.398348862404816], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2945065498352051, 51.441168762039396], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05430936813354492, 51.590722643120145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5252194404602051, 51.53523137707125], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3288388252258301, 51.57365561973001], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.23957490921020508, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11885404586791992, 51.57450912314331], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.15593290328979492, 51.461708066319034], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07216215133666992, 51.45486265825492], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11610746383666992, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08864164352416992, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.46598592502469], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07615327835083008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12421846389770508, 51.435176390963065], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17915010452270508, 51.4830933498849], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2903866767883301, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3178524971008301, 51.533522879549764], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.57792297653431], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.50959718054333], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3727841377258301, 51.48052764515145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.4608524464555], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3302121162414551, 51.451439569222494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3549313545227051, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3782773017883301, 51.456574106519724], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2546811103820801, 51.486514064995276], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3041195869445801, 51.49677467073], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21348237991333008, 51.5283970022217], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19700288772583008, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03220796585083008, 51.591575826028006], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05156278610229492, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08314847946166992, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.003368854522705078, 51.57024144581124], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.47026338272035], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04731416702270508, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09949922561645508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06928682327270508, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08851289749145508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09812593460083008, 51.4428807236673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08164644241333008, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18464326858520508, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.40091918770499], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.41976382669734], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.38378095727871], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4730343818664551, 51.317738820339706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4812741279602051, 51.26964837349673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21485567092895508, 51.22666790215265], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04868745803833008, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.13258695602416992, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.22871732711791992, 51.33490177391887], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2712893486022949, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3262209892272949, 51.47539580264131], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3275942802429199, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3152346611022949, 51.59840071243278], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10224580764770508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11597871780395508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.001995563507080078, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13520479202270508, 51.69724635547481], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24506807327270508, 51.5480430645337], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3013730049133301, 51.45999681055089], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.35291596261771], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3343319892883301, 51.32031367286622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03358125686645508, 51.28768819403519], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4429507255554199, 51.31688050404585], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4333376884460449, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.18477201461791992, 51.76783988732215], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.49420973579561], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5581784248352051, 51.36492148825952], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11872529983520508, 51.19827878319753], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3495669364929199, 51.44716034698012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5691647529602051, 51.63250976332742], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6295895576477051, 51.24472459284824], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3192257881164551, 51.782285200755226], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09263277053833008, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2642941474914551, 51.45229536554371], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4318356513977051, 51.43945673623716], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5059933662414551, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12009859085083008, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15855073928833008, 51.37349493730543], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07628202438354492, 51.57962980707403], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08027315139770508, 51.70660846336452], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.48993452350154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19013643264770508, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3852725028991699, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.007617473602294922, 51.24644390808839], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.54718906424884], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.661482304757875], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3205990791320801, 51.75679035106036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24644136428833008, 51.708310456678895], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2999997138977051, 51.37692386745589], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4387021064758301, 51.23784668914442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6240963935852051, 51.18192559252129], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4676699638366699, 51.49848454717058], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3440737724304199, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.248163159055906], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.177621156752494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.61034179610213], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24843692779541016, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6054925918579102, 51.682773832813275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7235956192016602, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.801821500783056], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.004248619079589844, 51.96626938051444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.012488365173339844, 51.699799849741936], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.6304693222045898, 51.77463825786987], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24320125579833984, 51.256758449834216], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.39125919342041016, 51.12938401413808], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.402632657661314], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9790277481079102, 51.55828981766069], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.8001230280236], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.49675583839416504, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.502249002456665, 51.68319956129154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.67979362137999], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.66914840783795], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5400145053863525, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5606138706207275, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.57778000831604, 51.66233415804706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.570913553237915, 51.6461462068968], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.64095139503479, 51.6508327873501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.686269998550415, 51.64870258356996], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.66567063331604, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7034361362457275, 51.615884803202704], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.719228982925415, 51.6218534384778], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6773436069488525, 51.6180165487737], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.625845193862915, 51.613752957501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6074157357215881, 51.619402129700624], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5878463387489319, 51.624730892862914], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6005492806434631, 51.62036135325299], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6002059578895569, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5957427620887756, 51.62600970290609], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5863013863563538, 51.63613234359897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5624404549598694, 51.645826649677026], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.546819269657135, 51.64731789743238], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5452743172645569, 51.6450810074049], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5461326241493225, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5559173226356506, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5584922432899475, 51.63559962935197], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5615821480751038, 51.63155079658897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6159988045692444, 51.64572013010323], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6108489632606506, 51.62419804470685], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.004742145538330078, 51.88920636981512], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07340669631958008, 51.91123787572315], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09675264358520508, 51.9518830439622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.024096965789794922, 51.891749018068246], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04606962203979492, 51.94934379943591], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12709379196166992, 51.89937609970991], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06379365921020508, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.2219715118408203, 51.10697105503078], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.5131092071533203, 51.50532341149336], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.8099842071533203, 52.0862573323384], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.5468273162841797, 51.974729774949644], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4094982147216797, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11836051940917969, 50.878777255570405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7715320587158203, 51.09662294502994], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4856433868408203, 51.52241608253254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9747791290283203, 51.45400691005982], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4032459259033203, 51.14144802734405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.31344707827588], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-95.00152587890625, 51.17934297928927], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.656370848706096], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24918794631958008, 51.48480373951605], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03782987594604492, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.46427482966438], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24232149124145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22034883499145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09537935256958008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15168428421020508, 51.35977664828088], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.47967237816338], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.477106480966924], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3672909736633301, 51.59754765771458], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5101132392883301, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4565548896789551, 51.549751017014195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4538083076477051, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.34519646305082], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15443086624145508, 51.30400383245547], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12160062789916992, 51.31430545880777], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.14631986618041992, 51.39920565355378], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.19301176071166992, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.10786771774291992, 51.6580747314511], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2740359306335449, 51.69043633297444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.784833893735296], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6419491767883301, 51.75424007403353], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6872677803039551, 51.5693878622646], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6282162666320801, 51.37863823622005], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5677914619445801, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.20524263381958008, 51.19483648846098], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3124880790710449, 51.206023006029305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3523135185241699, 51.45828549061809], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3619265556335449, 51.64699834847127], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3248476982116699, 51.797575198911495], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04332304000854492, 51.763590385710735], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2807736396789551, 51.7644403180351], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.77123920059797], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6790280342102051, 51.68021937787971], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6488156318664551, 51.467696956223364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6474423408508301, 51.342623007528275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5774044990539551, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3837704658508301, 51.163844261348224], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.14756441116333008, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.5369398104669], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13245820999145508, 51.46684144864417], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06516695022583008, 51.5463350479341], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.05418062210083008, 51.43260799126726], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2505612373352051, 51.53437713632629], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2752804756164551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15717744827270508, 51.599253751127776], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2766537666320801, 51.55316672962128], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06104707717895508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06242036819458008, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3576779365539551, 51.49933946133651], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4098629951477051, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06392240524291992, 51.58901622923166], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.23970365524291992, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.21498441696166992, 51.46256367014164], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5636715888977051, 51.228387892306834], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3219723701477051, 51.14403276295328], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06804227828979492, 51.16470543789416], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.28425258391496], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6652951240539551, 51.72447619956401], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5897641181945801, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4263424873352051, 51.755090182378176], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15305757522583008, 51.777187382825616], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03508329391479492, 51.7406361640977], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18189668655395508, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10636568069458008, 51.54889704878878], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12147188186645508, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08452177047729492, 51.67681321379402], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.09413480758666992, 51.670000116998196], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11460542678833008, 51.39235087498254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22996187210083008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21210908889770508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17640352249145508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.20674467086791992, 51.43346414054374], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.398348862404816], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2945065498352051, 51.441168762039396], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05430936813354492, 51.590722643120145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5252194404602051, 51.53523137707125], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3288388252258301, 51.57365561973001], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.23957490921020508, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11885404586791992, 51.57450912314331], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.15593290328979492, 51.461708066319034], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07216215133666992, 51.45486265825492], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11610746383666992, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08864164352416992, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.46598592502469], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07615327835083008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12421846389770508, 51.435176390963065], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17915010452270508, 51.4830933498849], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2903866767883301, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3178524971008301, 51.533522879549764], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.57792297653431], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.50959718054333], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3727841377258301, 51.48052764515145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.4608524464555], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3302121162414551, 51.451439569222494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3549313545227051, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3782773017883301, 51.456574106519724], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2546811103820801, 51.486514064995276], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3041195869445801, 51.49677467073], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21348237991333008, 51.5283970022217], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19700288772583008, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03220796585083008, 51.591575826028006], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05156278610229492, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08314847946166992, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.003368854522705078, 51.57024144581124], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.47026338272035], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04731416702270508, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09949922561645508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06928682327270508, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08851289749145508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09812593460083008, 51.4428807236673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08164644241333008, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18464326858520508, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.40091918770499], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.41976382669734], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.38378095727871], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4730343818664551, 51.317738820339706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4812741279602051, 51.26964837349673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21485567092895508, 51.22666790215265], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04868745803833008, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.13258695602416992, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.22871732711791992, 51.33490177391887], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2712893486022949, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3262209892272949, 51.47539580264131], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3275942802429199, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3152346611022949, 51.59840071243278], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10224580764770508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11597871780395508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.001995563507080078, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13520479202270508, 51.69724635547481], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24506807327270508, 51.5480430645337], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3013730049133301, 51.45999681055089], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.35291596261771], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3343319892883301, 51.32031367286622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03358125686645508, 51.28768819403519], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4429507255554199, 51.31688050404585], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4333376884460449, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.18477201461791992, 51.76783988732215], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.49420973579561], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5581784248352051, 51.36492148825952], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11872529983520508, 51.19827878319753], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3495669364929199, 51.44716034698012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5691647529602051, 51.63250976332742], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6295895576477051, 51.24472459284824], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3192257881164551, 51.782285200755226], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09263277053833008, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2642941474914551, 51.45229536554371], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4318356513977051, 51.43945673623716], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5059933662414551, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12009859085083008, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15855073928833008, 51.37349493730543], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07628202438354492, 51.57962980707403], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08027315139770508, 51.70660846336452], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.48993452350154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19013643264770508, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3852725028991699, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.007617473602294922, 51.24644390808839], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.54718906424884], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.661482304757875], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3205990791320801, 51.75679035106036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24644136428833008, 51.708310456678895], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2999997138977051, 51.37692386745589], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4387021064758301, 51.23784668914442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6240963935852051, 51.18192559252129], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4676699638366699, 51.49848454717058], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3440737724304199, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.248163159055906], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.177621156752494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.61034179610213], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24843692779541016, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6054925918579102, 51.682773832813275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7235956192016602, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.801821500783056], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.004248619079589844, 51.96626938051444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.012488365173339844, 51.699799849741936], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.6304693222045898, 51.77463825786987], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24320125579833984, 51.256758449834216], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.39125919342041016, 51.12938401413808], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.402632657661314], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9790277481079102, 51.55828981766069], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.8001230280236], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.49675583839416504, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.502249002456665, 51.68319956129154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.67979362137999], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.66914840783795], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5400145053863525, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5606138706207275, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.57778000831604, 51.66233415804706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.570913553237915, 51.6461462068968], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.64095139503479, 51.6508327873501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.686269998550415, 51.64870258356996], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.66567063331604, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7034361362457275, 51.615884803202704], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.719228982925415, 51.6218534384778], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6773436069488525, 51.6180165487737], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.625845193862915, 51.613752957501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6074157357215881, 51.619402129700624], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5878463387489319, 51.624730892862914], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6005492806434631, 51.62036135325299], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6002059578895569, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5957427620887756, 51.62600970290609], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5863013863563538, 51.63613234359897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5624404549598694, 51.645826649677026], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.546819269657135, 51.64731789743238], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5452743172645569, 51.6450810074049], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5461326241493225, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5559173226356506, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5584922432899475, 51.63559962935197], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5615821480751038, 51.63155079658897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6159988045692444, 51.64572013010323], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6108489632606506, 51.62419804470685], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.004742145538330078, 51.88920636981512], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07340669631958008, 51.91123787572315], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09675264358520508, 51.9518830439622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.024096965789794922, 51.891749018068246], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04606962203979492, 51.94934379943591], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12709379196166992, 51.89937609970991], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06379365921020508, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.2219715118408203, 51.10697105503078], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.5131092071533203, 51.50532341149336], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.8099842071533203, 52.0862573323384], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.5468273162841797, 51.974729774949644], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4094982147216797, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11836051940917969, 50.878777255570405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7715320587158203, 51.09662294502994], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4856433868408203, 51.52241608253254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9747791290283203, 51.45400691005982], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4032459259033203, 51.14144802734405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.31344707827588], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-95.00152587890625, 51.17934297928927], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.656370848706096], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24918794631958008, 51.48480373951605], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03782987594604492, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.46427482966438], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24232149124145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22034883499145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09537935256958008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15168428421020508, 51.35977664828088], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.47967237816338], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.477106480966924], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3672909736633301, 51.59754765771458], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5101132392883301, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4565548896789551, 51.549751017014195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4538083076477051, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.34519646305082], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15443086624145508, 51.30400383245547], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12160062789916992, 51.31430545880777], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.14631986618041992, 51.39920565355378], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.19301176071166992, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.10786771774291992, 51.6580747314511], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2740359306335449, 51.69043633297444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.784833893735296], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6419491767883301, 51.75424007403353], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6872677803039551, 51.5693878622646], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6282162666320801, 51.37863823622005], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5677914619445801, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.20524263381958008, 51.19483648846098], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3124880790710449, 51.206023006029305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3523135185241699, 51.45828549061809], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3619265556335449, 51.64699834847127], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3248476982116699, 51.797575198911495], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04332304000854492, 51.763590385710735], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2807736396789551, 51.7644403180351], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.77123920059797], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6790280342102051, 51.68021937787971], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6488156318664551, 51.467696956223364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6474423408508301, 51.342623007528275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5774044990539551, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3837704658508301, 51.163844261348224], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.14756441116333008, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.5369398104669], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13245820999145508, 51.46684144864417], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06516695022583008, 51.5463350479341], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.05418062210083008, 51.43260799126726], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2505612373352051, 51.53437713632629], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2752804756164551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15717744827270508, 51.599253751127776], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2766537666320801, 51.55316672962128], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06104707717895508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06242036819458008, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3576779365539551, 51.49933946133651], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4098629951477051, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06392240524291992, 51.58901622923166], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.23970365524291992, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.21498441696166992, 51.46256367014164], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5636715888977051, 51.228387892306834], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3219723701477051, 51.14403276295328], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06804227828979492, 51.16470543789416], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.28425258391496], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6652951240539551, 51.72447619956401], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5897641181945801, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4263424873352051, 51.755090182378176], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15305757522583008, 51.777187382825616], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03508329391479492, 51.7406361640977], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18189668655395508, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10636568069458008, 51.54889704878878], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12147188186645508, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08452177047729492, 51.67681321379402], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.09413480758666992, 51.670000116998196], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11460542678833008, 51.39235087498254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22996187210083008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21210908889770508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17640352249145508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.20674467086791992, 51.43346414054374], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.398348862404816], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2945065498352051, 51.441168762039396], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05430936813354492, 51.590722643120145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5252194404602051, 51.53523137707125], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3288388252258301, 51.57365561973001], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.23957490921020508, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11885404586791992, 51.57450912314331], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.15593290328979492, 51.461708066319034], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07216215133666992, 51.45486265825492], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11610746383666992, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08864164352416992, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.46598592502469], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07615327835083008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12421846389770508, 51.435176390963065], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17915010452270508, 51.4830933498849], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2903866767883301, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3178524971008301, 51.533522879549764], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.57792297653431], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.50959718054333], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3727841377258301, 51.48052764515145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.4608524464555], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3302121162414551, 51.451439569222494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3549313545227051, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3782773017883301, 51.456574106519724], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2546811103820801, 51.486514064995276], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3041195869445801, 51.49677467073], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21348237991333008, 51.5283970022217], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19700288772583008, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03220796585083008, 51.591575826028006], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05156278610229492, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08314847946166992, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.003368854522705078, 51.57024144581124], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.47026338272035], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04731416702270508, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09949922561645508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06928682327270508, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08851289749145508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09812593460083008, 51.4428807236673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08164644241333008, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18464326858520508, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.40091918770499], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.41976382669734], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.38378095727871], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4730343818664551, 51.317738820339706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4812741279602051, 51.26964837349673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21485567092895508, 51.22666790215265], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04868745803833008, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.13258695602416992, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.22871732711791992, 51.33490177391887], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2712893486022949, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3262209892272949, 51.47539580264131], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3275942802429199, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3152346611022949, 51.59840071243278], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10224580764770508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11597871780395508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.001995563507080078, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13520479202270508, 51.69724635547481], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24506807327270508, 51.5480430645337], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3013730049133301, 51.45999681055089], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.35291596261771], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3343319892883301, 51.32031367286622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03358125686645508, 51.28768819403519], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4429507255554199, 51.31688050404585], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4333376884460449, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.18477201461791992, 51.76783988732215], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.49420973579561], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5581784248352051, 51.36492148825952], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11872529983520508, 51.19827878319753], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3495669364929199, 51.44716034698012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5691647529602051, 51.63250976332742], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6295895576477051, 51.24472459284824], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3192257881164551, 51.782285200755226], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09263277053833008, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2642941474914551, 51.45229536554371], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4318356513977051, 51.43945673623716], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5059933662414551, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12009859085083008, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15855073928833008, 51.37349493730543], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07628202438354492, 51.57962980707403], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08027315139770508, 51.70660846336452], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.48993452350154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19013643264770508, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3852725028991699, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.007617473602294922, 51.24644390808839], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.54718906424884], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.661482304757875], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3205990791320801, 51.75679035106036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24644136428833008, 51.708310456678895], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2999997138977051, 51.37692386745589], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4387021064758301, 51.23784668914442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6240963935852051, 51.18192559252129], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4676699638366699, 51.49848454717058], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3440737724304199, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.248163159055906], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.177621156752494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.61034179610213], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24843692779541016, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6054925918579102, 51.682773832813275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7235956192016602, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.801821500783056], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.004248619079589844, 51.96626938051444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.012488365173339844, 51.699799849741936], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.6304693222045898, 51.77463825786987], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24320125579833984, 51.256758449834216], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.39125919342041016, 51.12938401413808], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.402632657661314], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9790277481079102, 51.55828981766069], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.8001230280236], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.49675583839416504, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.502249002456665, 51.68319956129154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.67979362137999], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.66914840783795], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5400145053863525, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5606138706207275, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.57778000831604, 51.66233415804706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.570913553237915, 51.6461462068968], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.64095139503479, 51.6508327873501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.686269998550415, 51.64870258356996], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.66567063331604, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7034361362457275, 51.615884803202704], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.719228982925415, 51.6218534384778], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6773436069488525, 51.6180165487737], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.625845193862915, 51.613752957501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6074157357215881, 51.619402129700624], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5878463387489319, 51.624730892862914], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6005492806434631, 51.62036135325299], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6002059578895569, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5957427620887756, 51.62600970290609], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5863013863563538, 51.63613234359897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5624404549598694, 51.645826649677026], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.546819269657135, 51.64731789743238], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5452743172645569, 51.6450810074049], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5461326241493225, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5559173226356506, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5584922432899475, 51.63559962935197], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5615821480751038, 51.63155079658897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6159988045692444, 51.64572013010323], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6108489632606506, 51.62419804470685], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.004742145538330078, 51.88920636981512], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07340669631958008, 51.91123787572315], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09675264358520508, 51.9518830439622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.024096965789794922, 51.891749018068246], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04606962203979492, 51.94934379943591], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12709379196166992, 51.89937609970991], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06379365921020508, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.2219715118408203, 51.10697105503078], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.5131092071533203, 51.50532341149336], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.8099842071533203, 52.0862573323384], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.5468273162841797, 51.974729774949644], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4094982147216797, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11836051940917969, 50.878777255570405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7715320587158203, 51.09662294502994], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4856433868408203, 51.52241608253254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9747791290283203, 51.45400691005982], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4032459259033203, 51.14144802734405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.31344707827588], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-95.00152587890625, 51.17934297928927], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.656370848706096], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24918794631958008, 51.48480373951605], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03782987594604492, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.46427482966438], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24232149124145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22034883499145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09537935256958008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15168428421020508, 51.35977664828088], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.47967237816338], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.477106480966924], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3672909736633301, 51.59754765771458], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5101132392883301, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4565548896789551, 51.549751017014195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4538083076477051, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.34519646305082], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15443086624145508, 51.30400383245547], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12160062789916992, 51.31430545880777], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.14631986618041992, 51.39920565355378], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.19301176071166992, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.10786771774291992, 51.6580747314511], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2740359306335449, 51.69043633297444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.784833893735296], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6419491767883301, 51.75424007403353], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6872677803039551, 51.5693878622646], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6282162666320801, 51.37863823622005], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5677914619445801, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.20524263381958008, 51.19483648846098], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3124880790710449, 51.206023006029305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3523135185241699, 51.45828549061809], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3619265556335449, 51.64699834847127], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3248476982116699, 51.797575198911495], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04332304000854492, 51.763590385710735], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2807736396789551, 51.7644403180351], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.77123920059797], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6790280342102051, 51.68021937787971], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6488156318664551, 51.467696956223364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6474423408508301, 51.342623007528275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5774044990539551, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3837704658508301, 51.163844261348224], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.14756441116333008, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.5369398104669], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13245820999145508, 51.46684144864417], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06516695022583008, 51.5463350479341], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.05418062210083008, 51.43260799126726], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2505612373352051, 51.53437713632629], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2752804756164551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15717744827270508, 51.599253751127776], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2766537666320801, 51.55316672962128], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06104707717895508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06242036819458008, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3576779365539551, 51.49933946133651], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4098629951477051, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06392240524291992, 51.58901622923166], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.23970365524291992, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.21498441696166992, 51.46256367014164], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5636715888977051, 51.228387892306834], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3219723701477051, 51.14403276295328], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06804227828979492, 51.16470543789416], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.28425258391496], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6652951240539551, 51.72447619956401], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5897641181945801, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4263424873352051, 51.755090182378176], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15305757522583008, 51.777187382825616], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03508329391479492, 51.7406361640977], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18189668655395508, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10636568069458008, 51.54889704878878], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12147188186645508, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08452177047729492, 51.67681321379402], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.09413480758666992, 51.670000116998196], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11460542678833008, 51.39235087498254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22996187210083008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21210908889770508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17640352249145508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.20674467086791992, 51.43346414054374], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.398348862404816], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2945065498352051, 51.441168762039396], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05430936813354492, 51.590722643120145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5252194404602051, 51.53523137707125], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3288388252258301, 51.57365561973001], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.23957490921020508, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11885404586791992, 51.57450912314331], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.15593290328979492, 51.461708066319034], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07216215133666992, 51.45486265825492], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11610746383666992, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08864164352416992, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.46598592502469], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07615327835083008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12421846389770508, 51.435176390963065], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17915010452270508, 51.4830933498849], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2903866767883301, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3178524971008301, 51.533522879549764], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.57792297653431], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.50959718054333], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3727841377258301, 51.48052764515145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.4608524464555], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3302121162414551, 51.451439569222494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3549313545227051, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3782773017883301, 51.456574106519724], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2546811103820801, 51.486514064995276], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3041195869445801, 51.49677467073], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21348237991333008, 51.5283970022217], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19700288772583008, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03220796585083008, 51.591575826028006], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05156278610229492, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08314847946166992, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.003368854522705078, 51.57024144581124], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.47026338272035], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04731416702270508, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09949922561645508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06928682327270508, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08851289749145508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09812593460083008, 51.4428807236673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08164644241333008, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18464326858520508, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.40091918770499], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.41976382669734], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.38378095727871], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4730343818664551, 51.317738820339706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4812741279602051, 51.26964837349673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21485567092895508, 51.22666790215265], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04868745803833008, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.13258695602416992, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.22871732711791992, 51.33490177391887], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2712893486022949, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3262209892272949, 51.47539580264131], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3275942802429199, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3152346611022949, 51.59840071243278], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10224580764770508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11597871780395508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.001995563507080078, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13520479202270508, 51.69724635547481], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24506807327270508, 51.5480430645337], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3013730049133301, 51.45999681055089], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.35291596261771], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3343319892883301, 51.32031367286622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03358125686645508, 51.28768819403519], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4429507255554199, 51.31688050404585], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4333376884460449, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.18477201461791992, 51.76783988732215], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.49420973579561], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5581784248352051, 51.36492148825952], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11872529983520508, 51.19827878319753], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3495669364929199, 51.44716034698012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5691647529602051, 51.63250976332742], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6295895576477051, 51.24472459284824], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3192257881164551, 51.782285200755226], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09263277053833008, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2642941474914551, 51.45229536554371], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4318356513977051, 51.43945673623716], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5059933662414551, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12009859085083008, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15855073928833008, 51.37349493730543], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07628202438354492, 51.57962980707403], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08027315139770508, 51.70660846336452], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.48993452350154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19013643264770508, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3852725028991699, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.007617473602294922, 51.24644390808839], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.54718906424884], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.661482304757875], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3205990791320801, 51.75679035106036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24644136428833008, 51.708310456678895], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2999997138977051, 51.37692386745589], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4387021064758301, 51.23784668914442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6240963935852051, 51.18192559252129], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4676699638366699, 51.49848454717058], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3440737724304199, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.248163159055906], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.177621156752494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.61034179610213], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24843692779541016, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6054925918579102, 51.682773832813275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7235956192016602, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.801821500783056], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.004248619079589844, 51.96626938051444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.012488365173339844, 51.699799849741936], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.6304693222045898, 51.77463825786987], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24320125579833984, 51.256758449834216], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.39125919342041016, 51.12938401413808], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.402632657661314], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9790277481079102, 51.55828981766069], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.8001230280236], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.49675583839416504, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.502249002456665, 51.68319956129154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.67979362137999], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.66914840783795], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5400145053863525, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5606138706207275, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.57778000831604, 51.66233415804706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.570913553237915, 51.6461462068968], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.64095139503479, 51.6508327873501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.686269998550415, 51.64870258356996], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.66567063331604, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7034361362457275, 51.615884803202704], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.719228982925415, 51.6218534384778], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6773436069488525, 51.6180165487737], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.625845193862915, 51.613752957501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6074157357215881, 51.619402129700624], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5878463387489319, 51.624730892862914], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6005492806434631, 51.62036135325299], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6002059578895569, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5957427620887756, 51.62600970290609], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5863013863563538, 51.63613234359897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5624404549598694, 51.645826649677026], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.546819269657135, 51.64731789743238], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5452743172645569, 51.6450810074049], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5461326241493225, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5559173226356506, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5584922432899475, 51.63559962935197], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5615821480751038, 51.63155079658897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6159988045692444, 51.64572013010323], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6108489632606506, 51.62419804470685], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.004742145538330078, 51.88920636981512], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07340669631958008, 51.91123787572315], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09675264358520508, 51.9518830439622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.024096965789794922, 51.891749018068246], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04606962203979492, 51.94934379943591], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12709379196166992, 51.89937609970991], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06379365921020508, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.2219715118408203, 51.10697105503078], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.5131092071533203, 51.50532341149336], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.8099842071533203, 52.0862573323384], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.5468273162841797, 51.974729774949644], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4094982147216797, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11836051940917969, 50.878777255570405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7715320587158203, 51.09662294502994], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4856433868408203, 51.52241608253254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9747791290283203, 51.45400691005982], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4032459259033203, 51.14144802734405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.31344707827588], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-95.00152587890625, 51.17934297928927], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.656370848706096], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24918794631958008, 51.48480373951605], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03782987594604492, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.46427482966438], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24232149124145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22034883499145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09537935256958008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15168428421020508, 51.35977664828088], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.47967237816338], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.477106480966924], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3672909736633301, 51.59754765771458], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5101132392883301, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4565548896789551, 51.549751017014195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4538083076477051, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.34519646305082], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15443086624145508, 51.30400383245547], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12160062789916992, 51.31430545880777], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.14631986618041992, 51.39920565355378], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.19301176071166992, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.10786771774291992, 51.6580747314511], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2740359306335449, 51.69043633297444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.784833893735296], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6419491767883301, 51.75424007403353], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6872677803039551, 51.5693878622646], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6282162666320801, 51.37863823622005], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5677914619445801, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.20524263381958008, 51.19483648846098], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3124880790710449, 51.206023006029305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3523135185241699, 51.45828549061809], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3619265556335449, 51.64699834847127], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3248476982116699, 51.797575198911495], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04332304000854492, 51.763590385710735], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2807736396789551, 51.7644403180351], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.77123920059797], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6790280342102051, 51.68021937787971], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6488156318664551, 51.467696956223364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6474423408508301, 51.342623007528275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5774044990539551, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3837704658508301, 51.163844261348224], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.14756441116333008, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.5369398104669], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13245820999145508, 51.46684144864417], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06516695022583008, 51.5463350479341], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.05418062210083008, 51.43260799126726], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2505612373352051, 51.53437713632629], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2752804756164551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15717744827270508, 51.599253751127776], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2766537666320801, 51.55316672962128], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06104707717895508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06242036819458008, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3576779365539551, 51.49933946133651], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4098629951477051, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06392240524291992, 51.58901622923166], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.23970365524291992, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.21498441696166992, 51.46256367014164], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5636715888977051, 51.228387892306834], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3219723701477051, 51.14403276295328], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06804227828979492, 51.16470543789416], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.28425258391496], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6652951240539551, 51.72447619956401], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5897641181945801, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4263424873352051, 51.755090182378176], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15305757522583008, 51.777187382825616], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03508329391479492, 51.7406361640977], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18189668655395508, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10636568069458008, 51.54889704878878], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12147188186645508, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08452177047729492, 51.67681321379402], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.09413480758666992, 51.670000116998196], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11460542678833008, 51.39235087498254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22996187210083008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21210908889770508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17640352249145508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.20674467086791992, 51.43346414054374], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.398348862404816], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2945065498352051, 51.441168762039396], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05430936813354492, 51.590722643120145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5252194404602051, 51.53523137707125], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3288388252258301, 51.57365561973001], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.23957490921020508, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11885404586791992, 51.57450912314331], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.15593290328979492, 51.461708066319034], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07216215133666992, 51.45486265825492], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11610746383666992, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08864164352416992, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.46598592502469], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07615327835083008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12421846389770508, 51.435176390963065], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17915010452270508, 51.4830933498849], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2903866767883301, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3178524971008301, 51.533522879549764], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.57792297653431], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.50959718054333], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3727841377258301, 51.48052764515145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.4608524464555], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3302121162414551, 51.451439569222494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3549313545227051, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3782773017883301, 51.456574106519724], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2546811103820801, 51.486514064995276], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3041195869445801, 51.49677467073], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21348237991333008, 51.5283970022217], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19700288772583008, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03220796585083008, 51.591575826028006], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05156278610229492, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08314847946166992, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.003368854522705078, 51.57024144581124], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.47026338272035], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04731416702270508, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09949922561645508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06928682327270508, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08851289749145508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09812593460083008, 51.4428807236673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08164644241333008, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18464326858520508, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.40091918770499], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.41976382669734], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.38378095727871], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4730343818664551, 51.317738820339706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4812741279602051, 51.26964837349673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21485567092895508, 51.22666790215265], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04868745803833008, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.13258695602416992, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.22871732711791992, 51.33490177391887], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2712893486022949, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3262209892272949, 51.47539580264131], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3275942802429199, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3152346611022949, 51.59840071243278], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10224580764770508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11597871780395508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.001995563507080078, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13520479202270508, 51.69724635547481], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24506807327270508, 51.5480430645337], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3013730049133301, 51.45999681055089], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.35291596261771], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3343319892883301, 51.32031367286622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03358125686645508, 51.28768819403519], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4429507255554199, 51.31688050404585], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4333376884460449, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.18477201461791992, 51.76783988732215], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.49420973579561], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5581784248352051, 51.36492148825952], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11872529983520508, 51.19827878319753], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3495669364929199, 51.44716034698012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5691647529602051, 51.63250976332742], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6295895576477051, 51.24472459284824], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3192257881164551, 51.782285200755226], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09263277053833008, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2642941474914551, 51.45229536554371], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4318356513977051, 51.43945673623716], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5059933662414551, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12009859085083008, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15855073928833008, 51.37349493730543], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07628202438354492, 51.57962980707403], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08027315139770508, 51.70660846336452], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.48993452350154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19013643264770508, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3852725028991699, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.007617473602294922, 51.24644390808839], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.54718906424884], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.661482304757875], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3205990791320801, 51.75679035106036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24644136428833008, 51.708310456678895], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2999997138977051, 51.37692386745589], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4387021064758301, 51.23784668914442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6240963935852051, 51.18192559252129], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4676699638366699, 51.49848454717058], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3440737724304199, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.248163159055906], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.177621156752494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.61034179610213], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24843692779541016, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6054925918579102, 51.682773832813275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7235956192016602, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.801821500783056], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.004248619079589844, 51.96626938051444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.012488365173339844, 51.699799849741936], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.6304693222045898, 51.77463825786987], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24320125579833984, 51.256758449834216], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.39125919342041016, 51.12938401413808], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.402632657661314], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9790277481079102, 51.55828981766069], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.8001230280236], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.49675583839416504, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.502249002456665, 51.68319956129154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.67979362137999], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.66914840783795], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5400145053863525, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5606138706207275, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.57778000831604, 51.66233415804706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.570913553237915, 51.6461462068968], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.64095139503479, 51.6508327873501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.686269998550415, 51.64870258356996], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.66567063331604, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7034361362457275, 51.615884803202704], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.719228982925415, 51.6218534384778], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6773436069488525, 51.6180165487737], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.625845193862915, 51.613752957501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6074157357215881, 51.619402129700624], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5878463387489319, 51.624730892862914], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6005492806434631, 51.62036135325299], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6002059578895569, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5957427620887756, 51.62600970290609], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5863013863563538, 51.63613234359897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5624404549598694, 51.645826649677026], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.546819269657135, 51.64731789743238], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5452743172645569, 51.6450810074049], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5461326241493225, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5559173226356506, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5584922432899475, 51.63559962935197], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5615821480751038, 51.63155079658897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6159988045692444, 51.64572013010323], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6108489632606506, 51.62419804470685], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.004742145538330078, 51.88920636981512], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07340669631958008, 51.91123787572315], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09675264358520508, 51.9518830439622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.024096965789794922, 51.891749018068246], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04606962203979492, 51.94934379943591], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12709379196166992, 51.89937609970991], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06379365921020508, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.2219715118408203, 51.10697105503078], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.5131092071533203, 51.50532341149336], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.8099842071533203, 52.0862573323384], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.5468273162841797, 51.974729774949644], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4094982147216797, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11836051940917969, 50.878777255570405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7715320587158203, 51.09662294502994], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4856433868408203, 51.52241608253254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9747791290283203, 51.45400691005982], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4032459259033203, 51.14144802734405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.31344707827588], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-95.00152587890625, 51.17934297928927], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.656370848706096], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24918794631958008, 51.48480373951605], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03782987594604492, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.46427482966438], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24232149124145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22034883499145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09537935256958008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15168428421020508, 51.35977664828088], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.47967237816338], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.477106480966924], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3672909736633301, 51.59754765771458], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5101132392883301, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4565548896789551, 51.549751017014195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4538083076477051, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.34519646305082], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15443086624145508, 51.30400383245547], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12160062789916992, 51.31430545880777], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.14631986618041992, 51.39920565355378], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.19301176071166992, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.10786771774291992, 51.6580747314511], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2740359306335449, 51.69043633297444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.784833893735296], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6419491767883301, 51.75424007403353], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6872677803039551, 51.5693878622646], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6282162666320801, 51.37863823622005], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5677914619445801, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.20524263381958008, 51.19483648846098], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3124880790710449, 51.206023006029305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3523135185241699, 51.45828549061809], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3619265556335449, 51.64699834847127], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3248476982116699, 51.797575198911495], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04332304000854492, 51.763590385710735], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2807736396789551, 51.7644403180351], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.77123920059797], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6790280342102051, 51.68021937787971], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6488156318664551, 51.467696956223364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6474423408508301, 51.342623007528275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5774044990539551, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3837704658508301, 51.163844261348224], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.14756441116333008, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.5369398104669], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13245820999145508, 51.46684144864417], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06516695022583008, 51.5463350479341], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.05418062210083008, 51.43260799126726], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2505612373352051, 51.53437713632629], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2752804756164551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15717744827270508, 51.599253751127776], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2766537666320801, 51.55316672962128], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06104707717895508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06242036819458008, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3576779365539551, 51.49933946133651], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4098629951477051, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06392240524291992, 51.58901622923166], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.23970365524291992, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.21498441696166992, 51.46256367014164], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5636715888977051, 51.228387892306834], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3219723701477051, 51.14403276295328], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06804227828979492, 51.16470543789416], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.28425258391496], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6652951240539551, 51.72447619956401], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5897641181945801, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4263424873352051, 51.755090182378176], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15305757522583008, 51.777187382825616], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03508329391479492, 51.7406361640977], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18189668655395508, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10636568069458008, 51.54889704878878], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12147188186645508, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08452177047729492, 51.67681321379402], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.09413480758666992, 51.670000116998196], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11460542678833008, 51.39235087498254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22996187210083008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21210908889770508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17640352249145508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.20674467086791992, 51.43346414054374], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.398348862404816], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2945065498352051, 51.441168762039396], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05430936813354492, 51.590722643120145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5252194404602051, 51.53523137707125], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3288388252258301, 51.57365561973001], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.23957490921020508, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11885404586791992, 51.57450912314331], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.15593290328979492, 51.461708066319034], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07216215133666992, 51.45486265825492], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11610746383666992, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08864164352416992, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.46598592502469], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07615327835083008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12421846389770508, 51.435176390963065], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17915010452270508, 51.4830933498849], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2903866767883301, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3178524971008301, 51.533522879549764], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.57792297653431], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.50959718054333], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3727841377258301, 51.48052764515145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.4608524464555], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3302121162414551, 51.451439569222494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3549313545227051, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3782773017883301, 51.456574106519724], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2546811103820801, 51.486514064995276], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3041195869445801, 51.49677467073], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21348237991333008, 51.5283970022217], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19700288772583008, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03220796585083008, 51.591575826028006], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05156278610229492, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08314847946166992, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.003368854522705078, 51.57024144581124], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.47026338272035], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04731416702270508, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09949922561645508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06928682327270508, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08851289749145508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09812593460083008, 51.4428807236673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08164644241333008, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18464326858520508, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.40091918770499], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.41976382669734], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.38378095727871], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4730343818664551, 51.317738820339706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4812741279602051, 51.26964837349673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21485567092895508, 51.22666790215265], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04868745803833008, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.13258695602416992, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.22871732711791992, 51.33490177391887], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2712893486022949, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3262209892272949, 51.47539580264131], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3275942802429199, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3152346611022949, 51.59840071243278], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10224580764770508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11597871780395508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.001995563507080078, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13520479202270508, 51.69724635547481], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24506807327270508, 51.5480430645337], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3013730049133301, 51.45999681055089], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.35291596261771], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3343319892883301, 51.32031367286622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03358125686645508, 51.28768819403519], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4429507255554199, 51.31688050404585], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4333376884460449, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.18477201461791992, 51.76783988732215], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.49420973579561], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5581784248352051, 51.36492148825952], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11872529983520508, 51.19827878319753], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3495669364929199, 51.44716034698012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5691647529602051, 51.63250976332742], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6295895576477051, 51.24472459284824], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3192257881164551, 51.782285200755226], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09263277053833008, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2642941474914551, 51.45229536554371], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4318356513977051, 51.43945673623716], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5059933662414551, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12009859085083008, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15855073928833008, 51.37349493730543], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07628202438354492, 51.57962980707403], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08027315139770508, 51.70660846336452], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.48993452350154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19013643264770508, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3852725028991699, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.007617473602294922, 51.24644390808839], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.54718906424884], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.661482304757875], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3205990791320801, 51.75679035106036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24644136428833008, 51.708310456678895], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2999997138977051, 51.37692386745589], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4387021064758301, 51.23784668914442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6240963935852051, 51.18192559252129], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4676699638366699, 51.49848454717058], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3440737724304199, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.248163159055906], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.177621156752494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.61034179610213], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24843692779541016, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6054925918579102, 51.682773832813275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7235956192016602, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.801821500783056], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.004248619079589844, 51.96626938051444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.012488365173339844, 51.699799849741936], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.6304693222045898, 51.77463825786987], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24320125579833984, 51.256758449834216], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.39125919342041016, 51.12938401413808], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.402632657661314], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9790277481079102, 51.55828981766069], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.8001230280236], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.49675583839416504, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.502249002456665, 51.68319956129154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.67979362137999], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.66914840783795], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5400145053863525, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5606138706207275, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.57778000831604, 51.66233415804706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.570913553237915, 51.6461462068968], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.64095139503479, 51.6508327873501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.686269998550415, 51.64870258356996], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.66567063331604, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7034361362457275, 51.615884803202704], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.719228982925415, 51.6218534384778], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6773436069488525, 51.6180165487737], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.625845193862915, 51.613752957501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6074157357215881, 51.619402129700624], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5878463387489319, 51.624730892862914], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6005492806434631, 51.62036135325299], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6002059578895569, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5957427620887756, 51.62600970290609], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5863013863563538, 51.63613234359897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5624404549598694, 51.645826649677026], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.546819269657135, 51.64731789743238], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5452743172645569, 51.6450810074049], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5461326241493225, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5559173226356506, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5584922432899475, 51.63559962935197], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5615821480751038, 51.63155079658897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6159988045692444, 51.64572013010323], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6108489632606506, 51.62419804470685], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.004742145538330078, 51.88920636981512], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07340669631958008, 51.91123787572315], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09675264358520508, 51.9518830439622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.024096965789794922, 51.891749018068246], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04606962203979492, 51.94934379943591], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12709379196166992, 51.89937609970991], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06379365921020508, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.2219715118408203, 51.10697105503078], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.5131092071533203, 51.50532341149336], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.8099842071533203, 52.0862573323384], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.5468273162841797, 51.974729774949644], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4094982147216797, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11836051940917969, 50.878777255570405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7715320587158203, 51.09662294502994], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4856433868408203, 51.52241608253254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9747791290283203, 51.45400691005982], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4032459259033203, 51.14144802734405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.31344707827588], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-95.00152587890625, 51.17934297928927], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.656370848706096], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24918794631958008, 51.48480373951605], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03782987594604492, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.46427482966438], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24232149124145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22034883499145508, 51.415481636209535], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09537935256958008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15168428421020508, 51.35977664828088], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10911226272583008, 51.45742980658966], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.021221637725830078, 51.47368506015889], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.47967237816338], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.477106480966924], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3672909736633301, 51.59754765771458], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5101132392883301, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4565548896789551, 51.549751017014195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4538083076477051, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.34519646305082], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15443086624145508, 51.30400383245547], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12160062789916992, 51.31430545880777], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.14631986618041992, 51.39920565355378], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.19301176071166992, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.10786771774291992, 51.6580747314511], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2740359306335449, 51.69043633297444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.784833893735296], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6419491767883301, 51.75424007403353], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6872677803039551, 51.5693878622646], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6282162666320801, 51.37863823622005], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5677914619445801, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.20524263381958008, 51.19483648846098], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3124880790710449, 51.206023006029305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3523135185241699, 51.45828549061809], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3619265556335449, 51.64699834847127], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3248476982116699, 51.797575198911495], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04332304000854492, 51.763590385710735], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2807736396789551, 51.7644403180351], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.77123920059797], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6790280342102051, 51.68021937787971], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6488156318664551, 51.467696956223364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6474423408508301, 51.342623007528275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5774044990539551, 51.23956626148356], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3837704658508301, 51.163844261348224], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.14756441116333008, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.5369398104669], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13245820999145508, 51.46684144864417], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06516695022583008, 51.5463350479341], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.05418062210083008, 51.43260799126726], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07353544235229492, 51.492499698989036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2505612373352051, 51.53437713632629], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2752804756164551, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15717744827270508, 51.599253751127776], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2766537666320801, 51.55316672962128], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06104707717895508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06242036819458008, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.49762961696846], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18052339553833008, 51.50104924156018], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3576779365539551, 51.49933946133651], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4277157783508301, 51.524979430024345], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4098629951477051, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06392240524291992, 51.58901622923166], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.23970365524291992, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.21498441696166992, 51.46256367014164], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5636715888977051, 51.228387892306834], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3219723701477051, 51.14403276295328], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.06804227828979492, 51.16470543789416], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.28425258391496], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6652951240539551, 51.72447619956401], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5897641181945801, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4263424873352051, 51.755090182378176], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15305757522583008, 51.777187382825616], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03508329391479492, 51.7406361640977], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18189668655395508, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10636568069458008, 51.54889704878878], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12147188186645508, 51.52412499689334], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15031099319458008, 51.49335472541077], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4359555244445801, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08452177047729492, 51.67681321379402], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.09413480758666992, 51.670000116998196], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11460542678833008, 51.39235087498254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24094820022583008, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.22996187210083008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21210908889770508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19974946975708008, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17640352249145508, 51.38720911696497], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.20674467086791992, 51.43346414054374], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.026714801788330078, 51.339191508712105], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.006244182586669922, 51.398348862404816], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2945065498352051, 51.441168762039396], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05430936813354492, 51.590722643120145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5252194404602051, 51.53523137707125], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3288388252258301, 51.57365561973001], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.23957490921020508, 51.62569000377442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.612047408844404], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11885404586791992, 51.57450912314331], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.15593290328979492, 51.461708066319034], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07216215133666992, 51.45486265825492], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11610746383666992, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08864164352416992, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.015857219696044922, 51.46598592502469], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07615327835083008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12421846389770508, 51.435176390963065], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.17915010452270508, 51.4830933498849], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2903866767883301, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3178524971008301, 51.533522879549764], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.57792297653431], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4126095771789551, 51.50959718054333], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3727841377258301, 51.48052764515145], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3617978096008301, 51.4608524464555], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3302121162414551, 51.451439569222494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3549313545227051, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3782773017883301, 51.456574106519724], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2546811103820801, 51.486514064995276], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3041195869445801, 51.49677467073], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21348237991333008, 51.5283970022217], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19700288772583008, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12971162796020508, 51.59669458697305], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03220796585083008, 51.591575826028006], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.05156278610229492, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.08314847946166992, 51.54121061341154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.003368854522705078, 51.57024144581124], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.003497600555419922, 51.519852590742715], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.47026338272035], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04731416702270508, 51.44031275716012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09949922561645508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06928682327270508, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08988618850708008, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08576631546020508, 51.43860069927038], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07203340530395508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08851289749145508, 51.442024750875085], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09812593460083008, 51.4428807236673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08164644241333008, 51.434320273775626], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.18464326858520508, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3054928779602051, 51.40091918770499], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.41976382669734], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3906369209289551, 51.38378095727871], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4730343818664551, 51.317738820339706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4812741279602051, 51.26964837349673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.21485567092895508, 51.22666790215265], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.04868745803833008, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.13258695602416992, 51.27222592445553], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.22871732711791992, 51.33490177391887], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.2712893486022949, 51.389780068199364], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3262209892272949, 51.47539580264131], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3275942802429199, 51.5429188223739], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3152346611022949, 51.59840071243278], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.16953706741333008, 51.572802100290254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.10224580764770508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11597871780395508, 51.571948564823956], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.001995563507080078, 51.56511970412418], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.023968219757080078, 51.47796179607121], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13520479202270508, 51.69724635547481], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24506807327270508, 51.5480430645337], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3013730049133301, 51.45999681055089], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.35291596261771], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3343319892883301, 51.32031367286622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.03358125686645508, 51.28768819403519], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4429507255554199, 51.31688050404585], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4333376884460449, 51.57706953722565], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.18477201461791992, 51.76783988732215], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5801510810852051, 51.49420973579561], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5581784248352051, 51.36492148825952], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.11872529983520508, 51.19827878319753], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3495669364929199, 51.44716034698012], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5691647529602051, 51.63250976332742], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.413768647687114], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6295895576477051, 51.24472459284824], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3192257881164551, 51.782285200755226], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.62995247363852], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19425630569458008, 51.630804919553746], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09263277053833008, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.13657808303833008, 51.530105692125886], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2642941474914551, 51.45229536554371], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4318356513977051, 51.43945673623716], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5059933662414551, 51.51301590715673], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.12009859085083008, 51.62910001170426], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.15855073928833008, 51.37349493730543], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.4463044544036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.07628202438354492, 51.57962980707403], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.08027315139770508, 51.70660846336452], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19288301467895508, 51.48993452350154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.19013643264770508, 51.49078959803455], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3852725028991699, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24657011032104492, 51.34090729023285], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3372073173522949, 51.445448545784195], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.007617473602294922, 51.24644390808839], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.17927885055541992, 51.54718906424884], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.029461383819580078, 51.705757442694036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4455685615539551, 51.661482304757875], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3205990791320801, 51.75679035106036], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5540585517883301, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.3466916084289551, 51.408629296986234], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24644136428833008, 51.708310456678895], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.2999997138977051, 51.37692386745589], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.4387021064758301, 51.23784668914442], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6240963935852051, 51.18192559252129], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4676699638366699, 51.49848454717058], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.3440737724304199, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.019848346710205078, 51.248163159055906], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6021237373352051, 51.177621156752494], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.61034179610213], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.24843692779541016, 51.62654252978602], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6054925918579102, 51.682773832813275], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7235956192016602, 51.63847621195153], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.801821500783056], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.004248619079589844, 51.96626938051444], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.012488365173339844, 51.699799849741936], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.6304693222045898, 51.77463825786987], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.24320125579833984, 51.256758449834216], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.39125919342041016, 51.12938401413808], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7153558731079102, 51.402632657661314], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9790277481079102, 51.55828981766069], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.68788231035757], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7016229629516602, 51.8001230280236], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.49675583839416504, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.502249002456665, 51.68319956129154], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.67979362137999], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5249083042144775, 51.66914840783795], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5400145053863525, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5606138706207275, 51.66701906487643], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.57778000831604, 51.66233415804706], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.570913553237915, 51.6461462068968], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.64095139503479, 51.6508327873501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.686269998550415, 51.64870258356996], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.66567063331604, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7034361362457275, 51.615884803202704], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.719228982925415, 51.6218534384778], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6773436069488525, 51.6180165487737], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.642324686050415, 51.61332657634482], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.625845193862915, 51.613752957501], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6074157357215881, 51.619402129700624], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5878463387489319, 51.624730892862914], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6005492806434631, 51.62036135325299], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6002059578895569, 51.62483746174322], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5957427620887756, 51.62600970290609], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5863013863563538, 51.63613234359897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5624404549598694, 51.645826649677026], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.546819269657135, 51.64731789743238], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5452743172645569, 51.6450810074049], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5461326241493225, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5559173226356506, 51.64188525876832], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5584922432899475, 51.63559962935197], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.5615821480751038, 51.63155079658897], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6159988045692444, 51.64572013010323], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6108489632606506, 51.62419804470685], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.6213498115539551, 51.74233687689103], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.004742145538330078, 51.88920636981512], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.07340669631958008, 51.91123787572315], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.09675264358520508, 51.9518830439622], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.024096965789794922, 51.891749018068246], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.04606962203979492, 51.94934379943591], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.12709379196166992, 51.89937609970991], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.03371000289916992, 51.92733099026086], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.06379365921020508, 51.765290234358325], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.2219715118408203, 51.10697105503078], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.5131092071533203, 51.50532341149336], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.8099842071533203, 52.0862573323384], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.5468273162841797, 51.974729774949644], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.4094982147216797, 51.26191485308451], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [0.11836051940917969, 50.878777255570405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.7715320587158203, 51.09662294502994], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4856433868408203, 51.52241608253254], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-0.9747791290283203, 51.45400691005982], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.4032459259033203, 51.14144802734405], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.31344707827588], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - { - type: 'Feature', - geometry: { - type: 'Point', - coordinates: [-1.3867664337158203, 51.265352133925376], - }, - properties: {}, - }, - ], - }, -}; diff --git a/components/Map/testMetaMarkers.js b/components/Map/testMetaMarkers.js new file mode 100644 index 000000000..0e5dce7fe --- /dev/null +++ b/components/Map/testMetaMarkers.js @@ -0,0 +1,224 @@ +const metaMarkersA = { + id: '1', + name: 'Aesop', + label: 'A', + type: 'FeatureCollection', + features: [ + { + geometry: { + coordinates: [ + -0.3484224, + 51.3960673, + ], + type: 'Point', + }, + properties: { + category: 'Retail', + name: 'Aesop', + }, + type: 'Feature', + }, + { + geometry: { + coordinates: [ + -0.349404970957125, + 51.3949483990099, + ], + type: 'Point', + }, + properties: { + category: 'Retail', + name: 'Aesop', + }, + type: 'Feature', + }, + { + geometry: { + coordinates: [ + -0.348814, + 51.398839, + ], + type: 'Point', + }, + properties: { + category: 'Retail', + name: 'Aesop', + }, + type: 'Feature', + }, + { + geometry: { + coordinates: [ + -0.348622, + 51.399212, + ], + type: 'Point', + }, + properties: { + category: 'Retail', + name: 'Aesop', + }, + type: 'Feature', + }, + { + geometry: { + coordinates: [ + -0.348979, + 51.399185, + ], + type: 'Point', + }, + properties: { + category: 'Retail', + name: 'Aesop', + }, + type: 'Feature', + }, + { + geometry: { + coordinates: [ + -0.351540131829349, + 51.4072566688305, + ], + type: 'Point', + }, + properties: { + category: 'Retail', + name: 'Aesop', + }, + type: 'Feature', + }, + { + geometry: { + coordinates: [ + -0.34933990240097, + 51.425163269043, + ], + type: 'Point', + }, + properties: { + category: 'Retail', + name: 'Aesop', + }, + type: 'Feature', + }, + { + geometry: { + coordinates: [ + -0.349287762648642, + 51.4283193108185, + ], + type: 'Point', + }, + properties: { + category: 'Retail', + name: 'Aesop', + }, + type: 'Feature', + }, + { + geometry: { + coordinates: [ + -0.348165273894053, + 51.4323932568167, + ], + type: 'Point', + }, + properties: { + category: 'Retail', + name: 'Aesop', + }, + type: 'Feature', + }, + { + geometry: { + coordinates: [ + -0.347987732253237, + 51.4324653882346, + ], + type: 'Point', + }, + properties: { + category: 'Retail', + name: 'Aesop', + }, + type: 'Feature', + }, + ], +}; + +const metaMarkersB = { + id: '2', + label: 'B', + name: 'A.P.C', + type: 'FeatureCollection', + features: [ + { + geometry: { + coordinates: [ + -0.347981788742138, + 51.4323681173447, + ], + type: 'Point', + }, + properties: { + category: 'Retail', + name: 'A.P.C', + }, + type: 'Feature', + }, + { + geometry: { + coordinates: [ + -0.348029081486836, + 51.4325423397993, + ], + type: 'Point', + }, + properties: { + category: 'Retail', + name: 'A.P.C', + }, + type: 'Feature', + }, + { + geometry: { + coordinates: [ + -0.34796932686546, + 51.4323630758005, + ], + type: 'Point', + }, + properties: { + category: 'Retail', + name: 'A.P.C', + }, + type: 'Feature', + }, + ], +}; + +const metaMarkersC = { + id: '3', + label: 'C', + name: 'Steves Magical House', + type: 'FeatureCollection', + features: [ + { + geometry: { + coordinates: [ + -0.35156215809263, + 51.4328170652326, + ], + type: 'Point', + }, + properties: { + category: 'Magic', + name: 'Steves Magical House', + }, + type: 'Feature', + }, + ], +}; + +export { metaMarkersA, metaMarkersB, metaMarkersC }; diff --git a/constants/mapbox.js b/constants/mapbox.js index 59156b2f1..42faf4230 100644 --- a/constants/mapbox.js +++ b/constants/mapbox.js @@ -12,7 +12,6 @@ export const MARKER_LAYER = 'marker-layer'; export const HIGHLIGHTED_MARKER_LAYER = 'highlighted-marker-layer'; export const CLUSTER_LAYER = 'cluster-layer'; export const HIGHLIGHTED_CLUSTER_LAYER = 'highlighted-cluster-layer'; -export const HEATMAP_LAYER = 'heatmap-layer'; /** * The latitude offset when calculating the next map center, this offset ensures that the active @@ -32,14 +31,3 @@ export const DEFAULT_MARKER_CONFIG = { 'text-color': '#FFFFFF', }, }; - -export const DEFAULT_HEATMAP_COLOR_STOPS = [ - [0, 'rgba(216, 237, 197, 0.4)'], - [35, 'rgba(0, 169, 207, 0.5)'], - [70, 'rgba(23, 133, 187, 0.6)'], - [140, 'rgba(29, 33, 121, 0.7)'], -]; - -export const DEFAULT_HEATMAP_INTENSITY = 6; -export const DEFAULT_HEATMAP_SPREAD = 0.15; -export const DEFAULT_HEATMAP_CELL_DENSITY = 2;