diff --git a/app/api/data/energyCost/filter/route.js b/app/api/data/energyCost/filter/route.js new file mode 100644 index 0000000000000000000000000000000000000000..24c6a8a3fdb382f7e7ee31efb95c2ecf34ffc13a --- /dev/null +++ b/app/api/data/energyCost/filter/route.js @@ -0,0 +1,104 @@ +import { PrismaClient } from '@prisma/client'; +// api/data/energyCost/filter route: get all energy efficiency costs by LAD (local authority district) + +export async function GET(request) { + const type = request.nextUrl.searchParams.get('type'); + const prisma = new PrismaClient(); + + try { + const records = await prisma.heatingCost.findMany({ + include: { + lad19: true + } + }); + let aggregatedData = []; + let totalData; + if (type == 'dwelling') { + totalData = [ + { name: 'Detached', value: 0 }, + { name: 'Flats', value: 0 }, + { name: 'Semi-Detached', value: 0 }, + { name: 'Terraced', value: 0 } + ]; + records.map((lad) => { + let detached = + parseFloat(lad.detached_Biomass) + + parseFloat(lad.detached_Gas) + + parseFloat(lad.detached_Oil) + + parseFloat(lad.detached_Resistance); + let flats = + parseFloat(lad.flats_Biomass) + + parseFloat(lad.flats_Gas) + + parseFloat(lad.flats_Oil) + + parseFloat(lad.flats_Resistance); + let semi = + parseFloat(lad.semi_detached_Biomass) + + parseFloat(lad.semi_detached_Gas) + + parseFloat(lad.semi_detached_Oil) + + parseFloat(lad.semi_detached_Resistance); + let terraced = + parseFloat(lad.terraced_Biomass) + + parseFloat(lad.terraced_Gas) + + parseFloat(lad.terraced_Oil) + + parseFloat(lad.terraced_Resistance); + aggregatedData.push({ + Detached: detached, + Flats: flats, + 'Semi-Detached': semi, + Terraced: terraced, + lad19cd: lad.lad19.lad19cd, + lad19nm: lad.lad19nm + }); + totalData.find((v) => v.name == 'Detached').value += detached; + totalData.find((v) => v.name == 'Flats').value += flats; + totalData.find((v) => v.name == 'Semi-Detached').value += semi; + totalData.find((v) => v.name == 'Terraced').value += terraced; + }); + } else if (type == 'boiler') { + totalData = [ + { name: 'Biomass', value: 0 }, + { name: 'Gas', value: 0 }, + { name: 'Oil', value: 0 }, + { name: 'Resistance', value: 0 } + ]; + records.map((lad) => { + let biomass = + parseFloat(lad.detached_Biomass) + + parseFloat(lad.flats_Biomass) + + parseFloat(lad.semi_detached_Biomass) + + parseFloat(lad.terraced_Biomass); + let gas = + parseFloat(lad.flats_Gas) + + parseFloat(lad.detached_Gas) + + parseFloat(lad.semi_detached_Gas) + + parseFloat(lad.terraced_Gas); + let oil = + parseFloat(lad.detached_Oil) + + parseFloat(lad.flats_Oil) + + parseFloat(lad.semi_detached_Oil) + + parseFloat(lad.terraced_Oil); + let resistance = + parseFloat(lad.detached_Resistance) + + parseFloat(lad.flats_Resistance) + + parseFloat(lad.semi_detached_Resistance) + + parseFloat(lad.terraced_Resistance); + aggregatedData.push({ + Biomass: biomass, + Gas: gas, + Oil: oil, + Resistance: resistance, + lad19cd: lad.lad19.lad19cd, + lad19nm: lad.lad19nm + }); + totalData.find((v) => v.name == 'Biomass').value += biomass; + totalData.find((v) => v.name == 'Gas').value += gas; + totalData.find((v) => v.name == 'Oil').value += oil; + totalData.find((v) => v.name == 'Resistance').value += resistance; + }); + } + return Response.json({ total: totalData, aggregate: aggregatedData }); + } catch (error) { + console.error('Prisma error: ', error); + return Response.json({ error: 'Something went wrong' }); + } +} diff --git a/app/api/data/energyCost/route.js b/app/api/data/energyCost/route.js new file mode 100644 index 0000000000000000000000000000000000000000..938e1f039397b03b9cba2d219f6de471d26ae811 --- /dev/null +++ b/app/api/data/energyCost/route.js @@ -0,0 +1,20 @@ +import { PrismaClient } from '@prisma/client'; +// api/data/energyCost/ route: get all energy efficiency costs by LAD (local authority district) + +export async function GET() { + const prisma = new PrismaClient(); + + try { + const records = await prisma.lad19.findMany({ + select: { + lad19cd: true, + HeatingCost: true + } + }); + + return Response.json(records); + } catch (error) { + console.error('Prisma error: ', error); + return Response.json({ error: 'Something went wrong' }); + } +} diff --git a/app/api/data/energyCost/search/route.js b/app/api/data/energyCost/search/route.js new file mode 100644 index 0000000000000000000000000000000000000000..8e4195dfe6c4e4b8630a3ab1e0ffe54fdcf8533c --- /dev/null +++ b/app/api/data/energyCost/search/route.js @@ -0,0 +1,20 @@ +import { PrismaClient } from '@prisma/client'; +// api/data/energyCost/search route: get lad names for listing + +export async function GET() { + const prisma = new PrismaClient(); + + try { + const records = await prisma.lad19.findMany({ + select: { + lad19cd: true, + lad19nm: true + } + }); + + return Response.json(records); + } catch (error) { + console.error('Prisma error: ', error); + return Response.json({ error: 'Something went wrong' }); + } +} diff --git a/app/api/geojson/lad/route.js b/app/api/geojson/lad17/route.js similarity index 91% rename from app/api/geojson/lad/route.js rename to app/api/geojson/lad17/route.js index 5d7578bee320e6efbf3996cb2e5e90f701d1df99..73553b6c644a7bb224bb962ab316f10351d5280a 100644 --- a/app/api/geojson/lad/route.js +++ b/app/api/geojson/lad17/route.js @@ -1,13 +1,13 @@ import { promises as fs } from 'fs'; -// api/geojson/lad/ route: get local authority district geojson +// api/geojson/lad17/ route: get local authority district geojson 2017 // Important: Removed geojson from database due to quota limits - this api route has been deprecated // Instead, please fetch from a cdn or place geojson in public server folder export async function GET(request) { const file = await fs.readFile( - process.cwd() + '/public/eng_wal_lad.geojson', + process.cwd() + '/public/lad17.geojson', 'utf8' ); const ladTracs = JSON.parse(file); diff --git a/app/api/geojson/lad19/route.js b/app/api/geojson/lad19/route.js new file mode 100644 index 0000000000000000000000000000000000000000..7d13dd2e11b094b40e02acc6342f46c9dcee0dd6 --- /dev/null +++ b/app/api/geojson/lad19/route.js @@ -0,0 +1,15 @@ +import { promises as fs } from 'fs'; + +// api/geojson/lad19/ route: get local authority district geojson 2019 + +// Important: Removed geojson from database due to quota limits - this api route has been deprecated +// Instead, please fetch from a cdn or place geojson in public server folder + +export async function GET(request) { + const file = await fs.readFile( + process.cwd() + '/public/lad17.geojson', + 'utf8' + ); + const ladTracs = JSON.parse(file); + return Response.json(ladTracs); +} \ No newline at end of file diff --git a/app/components/Navbar.js b/app/components/Navbar.js index a863e98e194bd4ffced4142c7178f14b25eae35d..7ef4acfd65741b037099898b91a1435690b73315 100644 --- a/app/components/Navbar.js +++ b/app/components/Navbar.js @@ -34,7 +34,7 @@ export default function NavContainer({ isSidebarOpen, setSidebarOpen }) { return ( <nav - className={`static translate-x-0 z-20 left-0 h-screen ${sidebarWidth} flex flex-col bg-white dark:bg-gray-800 overflow-y-auto transition-all duration-300 ease-in-out`} + className={`static translate-x-0 z-20 left-0 h-screen ${sidebarWidth} flex flex-col bg-white dark:bg-gray-800 overflow-y-auto transition-all duration-300 ease-in-out overflow-hidden`} > <div className='flex items-center justify-between h-16 px-6 border-b'> <button @@ -63,7 +63,7 @@ export default function NavContainer({ isSidebarOpen, setSidebarOpen }) { isActive={pathname.includes('/demand')} /> <MenuItem - title={isSidebarOpen ? 'Energy Efficieny Costs' : ''} + title={isSidebarOpen ? 'Energy Efficiency Costs' : ''} href='/costs' icon={<PoundIcon />} isActive={pathname.includes('/costs')} diff --git a/app/components/icons/Search.js b/app/components/icons/Search.js new file mode 100644 index 0000000000000000000000000000000000000000..b1848acc61a56225adb856df6f5c79570d3c7193 --- /dev/null +++ b/app/components/icons/Search.js @@ -0,0 +1,21 @@ +const Search = ({ className }) => { + return ( + <svg + className={className ? className : 'w-6 h-6 text-gray-800 dark:text-white'} + aria-hidden='true' + xmlns='http://www.w3.org/2000/svg' + fill='none' + viewBox='0 0 20 20' + > + <path + stroke='currentColor' + strokeLinecap='round' + strokeLinejoin='round' + strokeWidth='2' + d='m19 19-4-4m0-7A7 7 0 1 1 1 8a7 7 0 0 1 14 0Z' + /> + </svg> + ); +}; + +export default Search; diff --git a/app/costs/EnergyBarGraph.js b/app/costs/EnergyBarGraph.js new file mode 100644 index 0000000000000000000000000000000000000000..f55d9df0d51e25b84caf7fd04ed66d030458f8b5 --- /dev/null +++ b/app/costs/EnergyBarGraph.js @@ -0,0 +1,116 @@ +'use client'; +import * as d3 from 'd3'; +import * as Plot from '@observablehq/plot'; +import { useEffect, useRef, useState } from 'react'; + +export default function EnergyBarGraph({ graph, filters }) { + const ref = useRef(); + const plot = useRef(); + const [type, setType] = useState(graph); + const [current, setCurrent] = useState([]); + const [dwellingTotal, setDwellingTotal] = useState([]); + const [dwellingData, setDwellingData] = useState(null); + const [width, setWidth] = useState(928); + const [height, setHeight] = useState(1200); + + useEffect(() => { + setWidth(window.innerWidth / 2); + setHeight(window.innerHeight / 3); + + const handleResize = () => { + setWidth(window.innerWidth / 2); + setHeight(window.innerHeight / 3); + }; + + function loadData() { + d3.json(`/api/data/energyCost/filter?type=${type}`).then((data) => { + setDwellingTotal(data.total); + setDwellingData(data.aggregate); + }); + } + + loadData(); + + window.addEventListener('resize', handleResize); + + // Cleanup the event listener on component unmount + return () => window.removeEventListener('resize', handleResize); + }, [type]); + + useEffect(() => { + if (current.length < 1) return; + plot.current?.remove(); + plot.current = Plot.plot({ + x: { label: 'Cost in Millions', axis: 'bottom' }, + y: { label: `${type.charAt(0).toUpperCase() + type.slice(1)} Type` }, + marks: [ + Plot.barX(current, { + x: 'value', + y: 'name', + fill: '#b45309' + }), + Plot.text(current, { + x: 'value', + y: 'name', + text: (d) => '£' + Math.round(d.value).toLocaleString('en-GB'), + textAnchor: 'start', + dx: 3, + filter: (d) => d.value <= 0.007, + fill: 'white' + }), + Plot.text(current, { + x: 'value', + y: 'name', + text: (d) => '£' + Math.round(d.value).toLocaleString('en-GB'), + textAnchor: 'end', + dx: -3, + filter: (d) => d.value > 0.007, + fill: 'white' + }), + Plot.ruleX([0]), + Plot.ruleY([-1]) + ], + height, + width: width / 2, + marginLeft: 100 + }); + ref.current.append(plot.current); + + return () => plot.current.remove(); + }, [current, width, height, type]); + + useEffect(() => { + if (filters.length < 1) { + // Show total data + setCurrent(dwellingTotal); + } else { + let data = dwellingData + .filter((v) => filters.includes(v.lad19cd)) + .map(({ lad19cd, lad19nm, ...v }) => v); + + if (data.length < 1) return setCurrent(dwellingTotal); + + let sum = Object.keys(data[0]).map((v) => { + return { name: v, value: 0 }; + }); + data.forEach((v) => { + Object.keys(v).forEach((k) => { + sum.find((j) => j.name == k).value += v[k]; + }); + }); + setCurrent(sum); + } + }, [filters, dwellingTotal, dwellingData]); + + return ( + <section className='rounded-md bg-white dark:bg-gray-800 shrink h-full text-center p-2'> + <span className='text-sm font-semibold'> + Breakdown of energy efficiency improvement costs by {type} type (£) + </span> + <svg + className='m-2 rounded-md w-full h-3/4' + ref={ref} + /> + </section> + ); +} diff --git a/app/costs/FilterList.js b/app/costs/FilterList.js new file mode 100644 index 0000000000000000000000000000000000000000..c095e872c8b2e10c29b2609d795e736375114039 --- /dev/null +++ b/app/costs/FilterList.js @@ -0,0 +1,122 @@ +'use client'; +import { useEffect, useState } from 'react'; +import * as d3 from 'd3'; +import Search from '../components/icons/Search'; + +export default function FilterList({ setFilter }) { + const [list, setList] = useState([ + { + lad19nm: 'Select All', + lad19cd: 'all', + checked: true, + show: true + } + ]); + + useEffect(() => { + function loadData() { + d3.json(`/api/data/energyCost/search`).then((data) => { + data = data.map((v) => ({ ...v, checked: false, show: true })); + data.unshift({ + lad19nm: 'Select All', + lad19cd: 'all', + checked: true, + show: true + }); + setList(data); + }); + } + + loadData(); + }, []); + + const doSearch = (e) => { + let data = [...list]; + data = data.map((v) => { + if ( + v.lad19nm.toLowerCase().includes(e.target.value.toLowerCase()) || + v.lad19cd.toLowerCase().includes(e.target.value.toLowerCase()) + ) { + v.show = true; + } else { + v.show = false; + } + return v; + }); + setList(data); + }; + + const selectBox = (e) => { + if (e.target.value == 'all') { + if (e.target.checked) { + setList((l) => + l.map((v) => { + v.checked = v.lad19cd == 'all' ? true : false; + return v; + }) + ); + setFilter([]); + } + } else { + let l = [...list]; + if (e.target.checked) { + l.find((v) => v.lad19cd == e.target.value).checked = e.target.checked; + l.find((v) => v.lad19cd == 'all').checked = false; + setList(l); + } else { + l.find((v) => v.lad19cd == e.target.value).checked = e.target.checked; + // Atleast 1 checkboxed - select all + if (l.filter((v) => v.checked).length < 1) { + l.find((v) => v.lad19cd == 'all').checked = true; + } + setList(l); + } + let filter = list + .filter((v) => v.checked && v.lad19cd != 'all') + .map((v) => v.lad19cd); + setFilter(filter); + } + }; + + return ( + <section className='rounded-md bg-white dark:bg-gray-800 shrink h-full p-2 overflow-auto'> + <div className='relative w-full'> + <div className='absolute inset-y-0 start-0 flex items-center ps-3 pointer-events-none'> + <Search className={'w-4 h-4 text-gray-500 dark:text-gray-400'} /> + </div> + <input + type='text' + className='bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full ps-8 p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500' + placeholder='Search by Local Authority District...' + onChange={doSearch} + /> + </div> + + <div className='space-y-1 p-2'> + {list + .filter((v) => v.show) + .map((v) => ( + <div + className='flex' + key={v.lad19cd} + > + <div className='flex items-center h-5'> + <input + type='checkbox' + value={v.lad19cd} + className='w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 rounded focus:ring-blue-500 dark:focus:ring-blue-600 dark:ring-offset-gray-800 focus:ring-2 dark:bg-gray-700 dark:border-gray-600' + onChange={selectBox} + checked={v.checked} + /> + </div> + <div className='ms-2 text-sm'> + <label className='font-medium text-gray-900 dark:text-gray-300'> + {v.lad19nm} + </label> + </div> + </div> + ))} + </div> + </section> + ); +} diff --git a/app/costs/LADMap.js b/app/costs/LADMap.js new file mode 100644 index 0000000000000000000000000000000000000000..a8a245f1c919969d004174f81295a89c62f592f0 --- /dev/null +++ b/app/costs/LADMap.js @@ -0,0 +1,239 @@ +'use client'; +import * as d3 from 'd3'; +import { useEffect, useRef, useState } from 'react'; + +import ZoomIn from '../components/icons/ZoomIn'; +import ZoomOut from '../components/icons/ZoomOut'; +import Reset from '../components/icons/Reset'; + +export default function Map() { + const mapRef = useRef(); + const [ladTracs, setLadTracs] = useState(null); + const [energyCost, setEnergyCost] = useState(null); + const [largestTotal, setLargestTotal] = useState(10000000); + const [smallestTotal, setSmallestTotal] = useState(0); + const [width, setWidth] = useState(928); + const [height, setHeight] = useState(1200); + const hoverRefName = useRef(); + const hoverRefTotal = useRef(); + + useEffect(() => { + setWidth(window.innerWidth / 2); + setHeight(window.innerHeight); + + const handleResize = () => { + setWidth(window.innerWidth / 2); + setHeight(window.innerHeight); + }; + + loadData(); + + window.addEventListener('resize', handleResize); + + // Cleanup the event listener on component unmount + return () => window.removeEventListener('resize', handleResize); + }, []); + + const loadData = () => { + d3.json('/api/data/energyCost').then((data) => { + setEnergyCost(data); + const mapped = data.reduce((res, item) => { + if (item.HeatingCost != null) { + res.push(parseFloat(item.HeatingCost.total)); + } + return res; + }, []); + const largestValue = Math.max(...mapped); + setLargestTotal(largestValue); + const smallestValue = Math.min(...mapped); + setSmallestTotal(smallestValue); + }); + + d3.json('/api/geojson/lad19').then((data) => { + setLadTracs(data); + }); + }; + + const zoomed = (event) => { + const { transform } = event; + g.attr('transform', transform); + }; + + d3.select(mapRef.current).selectAll('*').remove(); + + d3.select(mapRef.current) + .attr('width', width) + .attr('height', height) + .attr('viewBox', [0, 0, width, height]) + .attr('style', 'max-width: 100%; height: auto;') + .call( + d3 + .zoom() + .scaleExtent([0.5, 10]) + .translateExtent([ + [-width, -height], + [2 * width, 2 * height] + ]) + .on('zoom', zoomed) + ); + + const g = d3.select(mapRef.current).append('g'); + + const tooltip = d3 + .select(mapRef.current) + .append('div') + .style('opacity', 0) + .attr('class', 'absolute transition-opacity bg-white border-solid p-5'); + + // Functions for zoom buttons + const zoom = d3.zoom().scaleExtent([1, 40]).on('zoom', zoomed); + + const zoomIn = () => { + d3.select(mapRef.current).transition().call(zoom.scaleBy, 2); + }; + + const zoomOut = () => { + d3.select(mapRef.current).transition().call(zoom.scaleBy, 0.5); + }; + + const reset = () => { + d3.select(mapRef.current) + .transition() + .duration(750) + .call( + zoom.transform, + d3.zoomIdentity, + d3 + .zoomTransform(d3.select(mapRef.current).node()) + .invert([width / 2, height / 2]) + ); + }; + + // Draw the map + useEffect(() => { + if (!ladTracs) return; + + const path = d3.geoPath().projection( + d3.geoTransverseMercator().fitExtent( + [ + [20, 20], + [width - 20, height - 20] + ], + ladTracs + ) + ); + + g.selectAll('path') + .data(ladTracs.features) + .enter() + .append('path') + .attr('class', 'tract') + .attr('d', path) + .attr('fill', 'silver') + .text(function (d) { + return d.properties.LAD13NM; + }); + }, [g, height, ladTracs, width]); + + useEffect(() => { + if (!energyCost) return; + const color = d3.scaleQuantize( + [smallestTotal, largestTotal], + ['#fef3c7', '#fdba74', '#f59e0b', '#b45309', '#7c2d12'] + ); + g.selectAll('path') + .join('path') + .attr('fill', (d) => { + const foundItem = energyCost.find( + (item) => item.lad19cd === d.properties.LAD13CD + ); + if (foundItem) { + d.properties.name = foundItem.HeatingCost?.lad19nm; + d.properties.value = Math.round(foundItem.HeatingCost?.total); + return color(foundItem.HeatingCost?.total); + } + + // If no match was found, return grey + return 'grey'; + }) + .on('mousemove', function (event, d) { + if (hoverRefName.current) { + hoverRefName.current.innerHTML = d.properties?.name; + } + if (hoverRefTotal.current) { + hoverRefTotal.current.innerHTML = + '£' + d.properties?.value.toLocaleString('en-GB'); + } + }) + .on('mouseleave', () => { + if (hoverRefName.current) { + hoverRefName.current.innerHTML = 'Hover to view'; + } + if (hoverRefTotal.current) { + hoverRefTotal.current.innerHTML = '£0'; + } + }) + .append('title'); + }, [g, tooltip, energyCost, largestTotal, smallestTotal]); + + return ( + <> + <section className='py-4 px-6 w-full bg-white dark:bg-gray-800 rounded-md shadow-lg text-center space-y-2'> + <span>Total Energy Efficiency Improvement Costs</span> + <div className='grid grid-cols-5 gap-1 mb-2'> + <div className='h-3 w-full bg-amber-100' /> + <div className='h-3 w-full bg-amber-300' /> + <div className='h-3 w-full bg-amber-500' /> + <div className='h-3 w-full bg-amber-700' /> + <div className='h-3 w-full bg-amber-900' /> + </div> + + <div className='flex justify-between mt-4 text-sm text-gray-600 dark:text-gray-300'> + <span> + {'£' + Math.round(smallestTotal).toLocaleString('en-GB')}{' '} + </span> + <span> + {'£' + + ( + (Math.round(largestTotal) + Math.round(smallestTotal)) / + 2 + ).toLocaleString('en-GB')} + </span> + + <span>{'£' + Math.round(largestTotal).toLocaleString('en-GB')} </span> + </div> + </section> + + <section className='relative flex flex-row mt-2 rounded-md bg-white dark:bg-gray-800 shrink h-full'> + <div className='absolute inset-2 flex flex-col mt-2 ml-2 h-min rounded-md bg-gray-200 dark:bg-gray-600 p-2 w-64'> + <span ref={hoverRefName}>Hover to view</span> + <span ref={hoverRefTotal}>£0</span> + </div> + <svg + className='m-2 rounded-md' + ref={mapRef} + /> + <div className='absolute end-2 top-2 flex flex-col mt-2 mr-2 h-min rounded-md bg-gray-200 dark:bg-gray-600'> + <button + onClick={zoomIn} + className='m-2' + > + <ZoomIn /> + </button> + <button + onClick={zoomOut} + className='m-2' + > + <ZoomOut /> + </button> + <button + onClick={reset} + className='m-2' + > + <Reset /> + </button> + </div> + </section> + </> + ); +} diff --git a/app/costs/page.js b/app/costs/page.js new file mode 100644 index 0000000000000000000000000000000000000000..3c01ec09f2d270de2ab7b8b31e8b57389fa3506e --- /dev/null +++ b/app/costs/page.js @@ -0,0 +1,40 @@ +'use client'; +import { useEffect, useState } from 'react'; +import EnergyBarGraph from './EnergyBarGraph'; +import FilterList from './FilterList'; +import Map from './LADMap'; + +export default function EnergyCosts() { + const [filter, setFilter] = useState([]); + + useEffect(() => {}, [filter]); + + return ( + <div className='p-2 flex flex-col lg:flex-row h-full justify-start items-center space-x-2 w-full'> + <div className='flex flex-col lg:w-1/2 h-full'> + <Map /> + </div> + <div className='flex flex-col lg:flex-row lg:w-1/2 h-full space-x-2'> + <div className='flex flex-col lg:w-2/3 space-y-2'> + <EnergyBarGraph + graph={'dwelling'} + filters={filter} + /> + <EnergyBarGraph + graph={'boiler'} + filters={filter} + /> + </div> + <div className='lg:w-1/3'> + <FilterList setFilter={setFilter} /> + </div> + </div> + </div> + ); +} + +/* +1. Setup db tables + import +2. Draw pie charts +3. List authorities +*/ diff --git a/app/demand/LADMap.js b/app/demand/LADMap.js index 866daf24cfeb02c025f40cd6a3565d8f62e27f98..fccc0d89509f3231f765456cf2e9b8471d5c80d2 100644 --- a/app/demand/LADMap.js +++ b/app/demand/LADMap.js @@ -175,7 +175,7 @@ export default function LADMap() { } // Get geojson data for the map useEffect(() => { - d3.json('/api/geojson/lad').then((data) => { + d3.json('/api/geojson/lad17').then((data) => { setLadTracs(data); }); }, []); diff --git a/package-lock.json b/package-lock.json index 3ade2875ef3b71a232d64a23c31d59ff408cfceb..32ca3795c048ec0f594eab9bb28813cff9597ef8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,6 +10,7 @@ "hasInstallScript": true, "dependencies": { "@headlessui/react": "^1.7.17", + "@observablehq/plot": "^0.6.11", "@prisma/client": "^5.5.1", "@vercel/postgres": "^0.5.0", "bcryptjs": "^2.4.3", @@ -681,6 +682,19 @@ "node": ">= 8" } }, + "node_modules/@observablehq/plot": { + "version": "0.6.11", + "resolved": "https://registry.npmjs.org/@observablehq/plot/-/plot-0.6.11.tgz", + "integrity": "sha512-7f43OizjVcno6/lZ+IC/bIceud9ZYJa7PCnZTjHCf3utcaGXgLqC1qxpYLzNZTnVHpKTFfqoPY/jOuFC/kSWgA==", + "dependencies": { + "d3": "^7.8.0", + "interval-tree-1d": "^1.0.0", + "isoformat": "^0.2.0" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/@prisma/client": { "version": "5.5.1", "resolved": "https://registry.npmjs.org/@prisma/client/-/client-5.5.1.tgz", @@ -1698,6 +1712,11 @@ "node": ">=8" } }, + "node_modules/binary-search-bounds": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/binary-search-bounds/-/binary-search-bounds-2.0.5.tgz", + "integrity": "sha512-H0ea4Fd3lS1+sTEB2TgcLoK21lLhwEJzlQv3IN47pJS976Gx4zoWe0ak3q+uYh60ppQxg9F16Ri4tS1sfD4+jA==" + }, "node_modules/bindings": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", @@ -4296,6 +4315,14 @@ "node": ">=12" } }, + "node_modules/interval-tree-1d": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/interval-tree-1d/-/interval-tree-1d-1.0.4.tgz", + "integrity": "sha512-wY8QJH+6wNI0uh4pDQzMvl+478Qh7Rl4qLmqiluxALlNvl+I+o5x38Pw3/z7mDPTPS1dQalZJXsmbvxx5gclhQ==", + "dependencies": { + "binary-search-bounds": "^2.0.0" + } + }, "node_modules/is-array-buffer": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", @@ -4652,6 +4679,11 @@ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" }, + "node_modules/isoformat": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/isoformat/-/isoformat-0.2.1.tgz", + "integrity": "sha512-tFLRAygk9NqrRPhJSnNGh7g7oaVWDwR0wKh/GM2LgmPa50Eg4UfyaCO4I8k6EqJHl1/uh2RAD6g06n5ygEnrjQ==" + }, "node_modules/iterator.prototype": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", diff --git a/package.json b/package.json index 05a5e5a46857a5b2ccb38a48c6a1e2ea928373d9..46408fa008fd509f0b63a23f55035a20acb9196d 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ }, "dependencies": { "@headlessui/react": "^1.7.17", + "@observablehq/plot": "^0.6.11", "@prisma/client": "^5.5.1", "@vercel/postgres": "^0.5.0", "bcryptjs": "^2.4.3", diff --git a/prisma/migrations/20231128183836_add_heating_cost_table/migration.sql b/prisma/migrations/20231128183836_add_heating_cost_table/migration.sql new file mode 100644 index 0000000000000000000000000000000000000000..5daffdd61543470afa80ff5ff335b072fd3dbc08 --- /dev/null +++ b/prisma/migrations/20231128183836_add_heating_cost_table/migration.sql @@ -0,0 +1,29 @@ +-- AlterTable +ALTER TABLE "lsoaCoordinates" ALTER COLUMN "x_coordinate" SET DATA TYPE DECIMAL, +ALTER COLUMN "y_coordinate" SET DATA TYPE DECIMAL; + +-- CreateTable +CREATE TABLE "HeatingCost" ( + "lsoa11cd" TEXT NOT NULL, + "detached_Biomass" MONEY NOT NULL, + "detached_Gas" MONEY NOT NULL, + "detached_Oil" MONEY NOT NULL, + "detached_Resistance" MONEY NOT NULL, + "flats_Biomass" MONEY NOT NULL, + "flats_Gas" MONEY NOT NULL, + "flats_Oil" MONEY NOT NULL, + "flats_Resistance" MONEY NOT NULL, + "semi_detached_Biomass" MONEY NOT NULL, + "semi_detached_Gas" MONEY NOT NULL, + "semi_detached_Oil" MONEY NOT NULL, + "semi_detached_Resistance" MONEY NOT NULL, + "terraced_Biomass" MONEY NOT NULL, + "terraced_Gas" MONEY NOT NULL, + "terraced_Oil" MONEY NOT NULL, + "terraced_Resistance" MONEY NOT NULL, + + CONSTRAINT "HeatingCost_pkey" PRIMARY KEY ("lsoa11cd") +); + +-- AddForeignKey +ALTER TABLE "HeatingCost" ADD CONSTRAINT "lsoa11cd___fk" FOREIGN KEY ("lsoa11cd") REFERENCES "lsoa"("lsoa11cd") ON DELETE NO ACTION ON UPDATE NO ACTION; diff --git a/prisma/migrations/20231201160705_create_lad_table/migration.sql b/prisma/migrations/20231201160705_create_lad_table/migration.sql new file mode 100644 index 0000000000000000000000000000000000000000..f2a3e230c7bfca752608a600e88b9cbe426af23a --- /dev/null +++ b/prisma/migrations/20231201160705_create_lad_table/migration.sql @@ -0,0 +1,43 @@ +/* + Warnings: + + - The primary key for the `HeatingCost` table will be changed. If it partially fails, the table could be left without primary key constraint. + - You are about to drop the column `lsoa11cd` on the `HeatingCost` table. All the data in the column will be lost. + - You are about to drop the column `lad17nm` on the `lsoa` table. All the data in the column will be lost. + - Added the required column `lad17cd` to the `HeatingCost` table without a default value. This is not possible if the table is not empty. + +*/ +-- DropForeignKey +ALTER TABLE "HeatingCost" DROP CONSTRAINT "lsoa11cd___fk"; + +-- DropIndex +DROP INDEX "lsoa__index"; + +-- AlterTable +ALTER TABLE "HeatingCost" DROP CONSTRAINT "HeatingCost_pkey", +DROP COLUMN "lsoa11cd", +ADD COLUMN "lad17cd" TEXT NOT NULL, +ADD CONSTRAINT "HeatingCost_pkey" PRIMARY KEY ("lad17cd"); + +-- AlterTable +ALTER TABLE "lsoa" DROP COLUMN "lad17nm"; + +-- CreateTable +CREATE TABLE "lad" ( + "lad17cd" TEXT NOT NULL, + "lad17nm" TEXT NOT NULL, + + CONSTRAINT "lad_pkey" PRIMARY KEY ("lad17cd") +); + +-- CreateIndex +CREATE INDEX "lad__index" ON "lad"("lad17cd"); + +-- CreateIndex +CREATE INDEX "lsoa__index" ON "lsoa"("lsoa11cd"); + +-- AddForeignKey +ALTER TABLE "HeatingCost" ADD CONSTRAINT "lad17cd___fk" FOREIGN KEY ("lad17cd") REFERENCES "lad"("lad17cd") ON DELETE NO ACTION ON UPDATE NO ACTION; + +-- AddForeignKey +ALTER TABLE "lsoa" ADD CONSTRAINT "lad17cd___fk" FOREIGN KEY ("lad17cd") REFERENCES "lad"("lad17cd") ON DELETE NO ACTION ON UPDATE NO ACTION; diff --git a/prisma/migrations/20231201161931_add_total_heatingcost/migration.sql b/prisma/migrations/20231201161931_add_total_heatingcost/migration.sql new file mode 100644 index 0000000000000000000000000000000000000000..e9492efaf5236f32ae136f99d22607dc51335cc4 --- /dev/null +++ b/prisma/migrations/20231201161931_add_total_heatingcost/migration.sql @@ -0,0 +1,8 @@ +/* + Warnings: + + - Added the required column `total` to the `HeatingCost` table without a default value. This is not possible if the table is not empty. + +*/ +-- AlterTable +ALTER TABLE "HeatingCost" ADD COLUMN "total" MONEY NOT NULL; diff --git a/prisma/migrations/20231201162149_change_fk_heatingcost/migration.sql b/prisma/migrations/20231201162149_change_fk_heatingcost/migration.sql new file mode 100644 index 0000000000000000000000000000000000000000..8748f2db14ab61c12f194ef6bb21069fefaa1983 --- /dev/null +++ b/prisma/migrations/20231201162149_change_fk_heatingcost/migration.sql @@ -0,0 +1,23 @@ +/* + Warnings: + + - The primary key for the `HeatingCost` table will be changed. If it partially fails, the table could be left without primary key constraint. + - You are about to drop the column `lad17cd` on the `HeatingCost` table. All the data in the column will be lost. + - A unique constraint covering the columns `[lad17nm]` on the table `lad` will be added. If there are existing duplicate values, this will fail. + - Added the required column `lad17nm` to the `HeatingCost` table without a default value. This is not possible if the table is not empty. + +*/ +-- DropForeignKey +ALTER TABLE "HeatingCost" DROP CONSTRAINT "lad17cd___fk"; + +-- AlterTable +ALTER TABLE "HeatingCost" DROP CONSTRAINT "HeatingCost_pkey", +DROP COLUMN "lad17cd", +ADD COLUMN "lad17nm" TEXT NOT NULL, +ADD CONSTRAINT "HeatingCost_pkey" PRIMARY KEY ("lad17nm"); + +-- CreateIndex +CREATE UNIQUE INDEX "lad_lad17nm_key" ON "lad"("lad17nm"); + +-- AddForeignKey +ALTER TABLE "HeatingCost" ADD CONSTRAINT "lad17cd___fk" FOREIGN KEY ("lad17nm") REFERENCES "lad"("lad17nm") ON DELETE NO ACTION ON UPDATE NO ACTION; diff --git a/prisma/migrations/20231201163045_change_money_to_decimal/migration.sql b/prisma/migrations/20231201163045_change_money_to_decimal/migration.sql new file mode 100644 index 0000000000000000000000000000000000000000..4f4d09f8afe7d4848f87d7d5624f765d23606ae3 --- /dev/null +++ b/prisma/migrations/20231201163045_change_money_to_decimal/migration.sql @@ -0,0 +1,40 @@ +/* + Warnings: + + - You are about to alter the column `detached_Biomass` on the `HeatingCost` table. The data in that column could be lost. The data in that column will be cast from `Money` to `Decimal`. + - You are about to alter the column `detached_Gas` on the `HeatingCost` table. The data in that column could be lost. The data in that column will be cast from `Money` to `Decimal`. + - You are about to alter the column `detached_Oil` on the `HeatingCost` table. The data in that column could be lost. The data in that column will be cast from `Money` to `Decimal`. + - You are about to alter the column `detached_Resistance` on the `HeatingCost` table. The data in that column could be lost. The data in that column will be cast from `Money` to `Decimal`. + - You are about to alter the column `flats_Biomass` on the `HeatingCost` table. The data in that column could be lost. The data in that column will be cast from `Money` to `Decimal`. + - You are about to alter the column `flats_Gas` on the `HeatingCost` table. The data in that column could be lost. The data in that column will be cast from `Money` to `Decimal`. + - You are about to alter the column `flats_Oil` on the `HeatingCost` table. The data in that column could be lost. The data in that column will be cast from `Money` to `Decimal`. + - You are about to alter the column `flats_Resistance` on the `HeatingCost` table. The data in that column could be lost. The data in that column will be cast from `Money` to `Decimal`. + - You are about to alter the column `semi_detached_Biomass` on the `HeatingCost` table. The data in that column could be lost. The data in that column will be cast from `Money` to `Decimal`. + - You are about to alter the column `semi_detached_Gas` on the `HeatingCost` table. The data in that column could be lost. The data in that column will be cast from `Money` to `Decimal`. + - You are about to alter the column `semi_detached_Oil` on the `HeatingCost` table. The data in that column could be lost. The data in that column will be cast from `Money` to `Decimal`. + - You are about to alter the column `semi_detached_Resistance` on the `HeatingCost` table. The data in that column could be lost. The data in that column will be cast from `Money` to `Decimal`. + - You are about to alter the column `terraced_Biomass` on the `HeatingCost` table. The data in that column could be lost. The data in that column will be cast from `Money` to `Decimal`. + - You are about to alter the column `terraced_Gas` on the `HeatingCost` table. The data in that column could be lost. The data in that column will be cast from `Money` to `Decimal`. + - You are about to alter the column `terraced_Oil` on the `HeatingCost` table. The data in that column could be lost. The data in that column will be cast from `Money` to `Decimal`. + - You are about to alter the column `terraced_Resistance` on the `HeatingCost` table. The data in that column could be lost. The data in that column will be cast from `Money` to `Decimal`. + - You are about to alter the column `total` on the `HeatingCost` table. The data in that column could be lost. The data in that column will be cast from `Money` to `Decimal`. + +*/ +-- AlterTable +ALTER TABLE "HeatingCost" ALTER COLUMN "detached_Biomass" SET DATA TYPE DECIMAL, +ALTER COLUMN "detached_Gas" SET DATA TYPE DECIMAL, +ALTER COLUMN "detached_Oil" SET DATA TYPE DECIMAL, +ALTER COLUMN "detached_Resistance" SET DATA TYPE DECIMAL, +ALTER COLUMN "flats_Biomass" SET DATA TYPE DECIMAL, +ALTER COLUMN "flats_Gas" SET DATA TYPE DECIMAL, +ALTER COLUMN "flats_Oil" SET DATA TYPE DECIMAL, +ALTER COLUMN "flats_Resistance" SET DATA TYPE DECIMAL, +ALTER COLUMN "semi_detached_Biomass" SET DATA TYPE DECIMAL, +ALTER COLUMN "semi_detached_Gas" SET DATA TYPE DECIMAL, +ALTER COLUMN "semi_detached_Oil" SET DATA TYPE DECIMAL, +ALTER COLUMN "semi_detached_Resistance" SET DATA TYPE DECIMAL, +ALTER COLUMN "terraced_Biomass" SET DATA TYPE DECIMAL, +ALTER COLUMN "terraced_Gas" SET DATA TYPE DECIMAL, +ALTER COLUMN "terraced_Oil" SET DATA TYPE DECIMAL, +ALTER COLUMN "terraced_Resistance" SET DATA TYPE DECIMAL, +ALTER COLUMN "total" SET DATA TYPE DECIMAL; diff --git a/prisma/migrations/20231205112738_setup_lad19/migration.sql b/prisma/migrations/20231205112738_setup_lad19/migration.sql new file mode 100644 index 0000000000000000000000000000000000000000..eaded76b7c0b4323382db5d2760542c280cbb0d4 --- /dev/null +++ b/prisma/migrations/20231205112738_setup_lad19/migration.sql @@ -0,0 +1,57 @@ +/* + Warnings: + + - The primary key for the `HeatingCost` table will be changed. If it partially fails, the table could be left without primary key constraint. + - You are about to drop the column `lad17nm` on the `HeatingCost` table. All the data in the column will be lost. + - You are about to drop the `lad` table. If the table is not empty, all the data it contains will be lost. + - Added the required column `lad19nm` to the `HeatingCost` table without a default value. This is not possible if the table is not empty. + +*/ +-- DropForeignKey +ALTER TABLE "HeatingCost" DROP CONSTRAINT "lad17cd___fk"; + +-- DropForeignKey +ALTER TABLE "lsoa" DROP CONSTRAINT "lad17cd___fk"; + +-- AlterTable +ALTER TABLE "HeatingCost" DROP CONSTRAINT "HeatingCost_pkey", +DROP COLUMN "lad17nm", +ADD COLUMN "lad19nm" TEXT NOT NULL, +ADD CONSTRAINT "HeatingCost_pkey" PRIMARY KEY ("lad19nm"); + +-- DropTable +DROP TABLE "lad"; + +-- CreateTable +CREATE TABLE "lad17" ( + "lad17cd" TEXT NOT NULL, + "lad17nm" TEXT NOT NULL, + + CONSTRAINT "lad17_pkey" PRIMARY KEY ("lad17cd") +); + +-- CreateTable +CREATE TABLE "lad19" ( + "lad19cd" TEXT NOT NULL, + "lad19nm" TEXT NOT NULL, + + CONSTRAINT "lad19_pkey" PRIMARY KEY ("lad19cd") +); + +-- CreateIndex +CREATE UNIQUE INDEX "lad17_lad17nm_key" ON "lad17"("lad17nm"); + +-- CreateIndex +CREATE INDEX "lad__index" ON "lad17"("lad17cd"); + +-- CreateIndex +CREATE UNIQUE INDEX "lad19_lad19nm_key" ON "lad19"("lad19nm"); + +-- CreateIndex +CREATE INDEX "lad19__index" ON "lad19"("lad19cd"); + +-- AddForeignKey +ALTER TABLE "HeatingCost" ADD CONSTRAINT "lad19cd___fk" FOREIGN KEY ("lad19nm") REFERENCES "lad19"("lad19nm") ON DELETE NO ACTION ON UPDATE NO ACTION; + +-- AddForeignKey +ALTER TABLE "lsoa" ADD CONSTRAINT "lad17cd___fk" FOREIGN KEY ("lad17cd") REFERENCES "lad17"("lad17cd") ON DELETE NO ACTION ON UPDATE NO ACTION; diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 3466716d6f7bae793433a93ad4a498e749ecbeda..cec8821a9df749fae2f1006e8561053e191c0e7f 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -36,6 +36,28 @@ model HeatingType { lsoa lsoa @relation(fields: [lsoa11cd], references: [lsoa11cd], onDelete: NoAction, onUpdate: NoAction, map: "lsoa11cd___fk") } +model HeatingCost { + lad19nm String @id + detached_Biomass Decimal @db.Decimal + detached_Gas Decimal @db.Decimal + detached_Oil Decimal @db.Decimal + detached_Resistance Decimal @db.Decimal + flats_Biomass Decimal @db.Decimal + flats_Gas Decimal @db.Decimal + flats_Oil Decimal @db.Decimal + flats_Resistance Decimal @db.Decimal + semi_detached_Biomass Decimal @db.Decimal + semi_detached_Gas Decimal @db.Decimal + semi_detached_Oil Decimal @db.Decimal + semi_detached_Resistance Decimal @db.Decimal + terraced_Biomass Decimal @db.Decimal + terraced_Gas Decimal @db.Decimal + terraced_Oil Decimal @db.Decimal + terraced_Resistance Decimal @db.Decimal + total Decimal @db.Decimal + lad19 lad19 @relation(fields: [lad19nm], references: [lad19nm], onDelete: NoAction, onUpdate: NoAction, map: "lad19cd___fk") +} + model admin { username String @id password String @@ -53,9 +75,26 @@ model lsoa { lsoa11cd String @id lsoa11nm String? lad17cd String? - lad17nm String? HeatDemands HeatDemand? HeatingType HeatingType? - @@index([lsoa11cd, lad17cd], map: "lsoa__index") + lad17 lad17? @relation(fields: [lad17cd], references: [lad17cd], onDelete: NoAction, onUpdate: NoAction, map: "lad17cd___fk") + + @@index([lsoa11cd], map: "lsoa__index") +} + +model lad17 { + lad17cd String @id + lad17nm String @unique + lsoa lsoa[] + + @@index([lad17cd], map: "lad__index") +} + +model lad19 { + lad19cd String @id + lad19nm String @unique + HeatingCost HeatingCost? + + @@index([lad19cd], map: "lad19__index") } diff --git a/public/eng_wal_lad.geojson b/public/lad17.geojson similarity index 100% rename from public/eng_wal_lad.geojson rename to public/lad17.geojson diff --git a/public/lad19.geojson b/public/lad19.geojson new file mode 100644 index 0000000000000000000000000000000000000000..3d41cd6507b6168fe341d96c271d50164681b6c7 --- /dev/null +++ b/public/lad19.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"EPSG:27700"}},"features":[{"type":"Feature","id":1,"geometry":{"type":"Polygon","coordinates":[[[448986.0254,536729.6745],[453194.6,533938.4],[453342.4409,533287.425100001],[451898.9208,534023.2414],[452435,533448.25],[451738,532018.5],[453270.8,529013],[454454.98,528446.73],[453471.9133,526822.3913],[452499.69,526687.43],[451711.3,525603.300000001],[448476.6765,525831.960100001],[445354.8031,526096.096000001],[444216.0036,528004.899599999],[443410.7002,527859.9011],[443024.0975,526445.396],[440052.7012,527819.7026],[442604.5971,528543.395500001],[442166.2979,529897.9977],[443235.8966,532101.7969],[442351.0037,533093.603],[443974.9015,533135.301000001],[445116.8012,535009.9045],[444836.197,536055.495200001],[447097.001,537152.0013],[448290.1026,536324.7981],[448986.0254,536729.6745]]]},"properties":{"OBJECTID":1,"lad19cd":"E06000001","lad19nm":"Hartlepool","lad19nmw":" ","bng_e":447160,"bng_n":531474,"long":-1.27018,"lat":54.67614,"GlobalID":"9414dd65-d937-412f-b2ab-6c1272a5398e"}},{"type":"Feature","id":2,"geometry":{"type":"Polygon","coordinates":[[[451752.6985,520561.9001],[452424.3989,520272.503],[453996.699,517963.104],[451913.304,516875.4954],[454380.8035,514732.198899999],[454495.2037,513716.0997],[455944.603,513640.001499999],[455389.496,512278.5012],[449638.4999,513046.4014],[446561.5008,513911.503799999],[446818.3495,517057.0789],[447269.9909,518121.7192],[446921.9037,518582.205600001],[446566.0684,519052.9419],[446696.0693,519116.1766],[447825.6,519665.6],[448421.95,521970.800000001],[451752.6985,520561.9001]]]},"properties":{"OBJECTID":2,"lad19cd":"E06000002","lad19nm":"Middlesbrough","lad19nmw":" ","bng_e":451141,"bng_n":516887,"long":-1.21099,"lat":54.54467,"GlobalID":"b15774a0-3863-439d-b1f5-140f7f8e590f"}},{"type":"Feature","id":3,"geometry":{"type":"Polygon","coordinates":[[[451965.6361,521061.7556],[454348.4,523581.4],[455224,522988.949999999],[454518.7,523685.449999999],[454878.39,524704.140000001],[456145,524056.6],[454937.95,524772.130000001],[454695.72,526167.800000001],[455915.9,526404.380000001],[455759.638,528394.460000001],[457378.216,526201.554],[461281.59,525001.566],[464678.651,522463.176000001],[467216.133,521573.385],[468715.796,522045.262],[471325.4675,520116.999700001],[474222.72,520220.59],[478074.077,518800.567],[477689.3026,517966.802999999],[475975.5996,517666.798900001],[474608.2964,515577.297],[474692.2971,510900.795600001],[472584.2988,511876.6963],[467927.9995,510802.2038],[464636.299,512421.2004],[462483.8022,511393.204700001],[458730.0979,512758.503799999],[457197.2998,511786.302100001],[455389.496,512278.5012],[455944.603,513640.001499999],[454495.2037,513716.0997],[454380.8035,514732.198899999],[451913.304,516875.4954],[453996.699,517963.104],[452424.3989,520272.503],[451752.6985,520561.9001],[451965.6361,521061.7556]]]},"properties":{"OBJECTID":3,"lad19cd":"E06000003","lad19nm":"Redcar and Cleveland","lad19nmw":" ","bng_e":464361,"bng_n":519597,"long":-1.00608,"lat":54.56752,"GlobalID":"4b6764d4-ffcd-4aa1-9123-0f370f4f1017"}},{"type":"Feature","id":4,"geometry":{"type":"Polygon","coordinates":[[[451965.6361,521061.7556],[451752.6985,520561.9001],[448421.95,521970.800000001],[447825.6,519665.6],[446696.0693,519116.1766],[446566.0684,519052.9419],[446921.9037,518582.205600001],[447269.9909,518121.7192],[446818.3495,517057.0789],[446561.5008,513911.503799999],[449638.4999,513046.4014],[448237.3012,512006.698999999],[448206.2998,510472.1983],[446675.497,510803.703400001],[445437.6,509167.3018],[442644.396,507839.102],[442552.4965,508756.599400001],[441295.1,508026.6983],[440760.9025,508729.097200001],[440192.1004,511141.196799999],[439290.7009,510204.305],[438503.3965,511071.096899999],[438149.502,509250.498],[436894.8015,509491.598999999],[436707.0038,510384.603399999],[437547.0024,513968.397500001],[435714.9993,515437.097100001],[435879.7026,517964.503599999],[438161.3006,519001.2969],[438396.4003,522220.295399999],[437351.7016,523257.498500001],[436388.0024,522354.1971],[435563.1994,524065.1973],[438017.8036,524761.3981],[440052.7012,527819.7026],[443024.0975,526445.396],[443410.7002,527859.9011],[444216.0036,528004.899599999],[445354.8031,526096.096000001],[448476.6765,525831.960100001],[451711.3,525603.300000001],[453500,525467.9],[453813.5,526338.9],[454353.15,524341.4],[452725.1512,522105.074999999],[451965.6361,521061.7556]]]},"properties":{"OBJECTID":4,"lad19cd":"E06000004","lad19nm":"Stockton-on-Tees","lad19nmw":" ","bng_e":444940,"bng_n":518183,"long":-1.30664,"lat":54.556911,"GlobalID":"54fc2108-e369-430e-b865-6a53a4d33d97"}},{"type":"Feature","id":5,"geometry":{"type":"Polygon","coordinates":[[[419709.2991,515678.2981],[419162.9979,517140.999399999],[420069.5011,517931.903000001],[418897.3008,518698.603499999],[418911.4988,519918.5043],[419872.1968,521341.596999999],[420823.7016,521243.395099999],[420606.6998,524780.8025],[425492.6983,524779.8028],[425536.7022,523211.001800001],[426954.9022,524003.1951],[426369.5028,522285.096899999],[427487.0961,520635.9989],[429000.7987,520883.898],[428617.7991,521969.1973],[430674.6038,522465.1953],[434423.5011,522948.696900001],[435529.0979,521874.304500001],[436388.0024,522354.1971],[437351.7016,523257.498500001],[438396.4003,522220.295399999],[438161.3006,519001.2969],[435879.7026,517964.503599999],[435714.9993,515437.097100001],[437547.0024,513968.397500001],[436707.0038,510384.603399999],[435163.8994,512200.3036],[434127.1984,511835.498],[435127.8025,511126.1011],[434847.0005,508818.601600001],[435526.5007,507985.3002],[434922.5994,507466.1987],[435360.7997,506474.4026],[434327.0999,506817.104499999],[434096.6999,508845.7039],[432560.7027,509038.4987],[433023.8031,510212.7026],[431764.8977,508958.8015],[431577.2978,509932.602700001],[430623.7977,510041.7015],[431217.5988,508513.798900001],[429542.796,508523.995999999],[428915.9982,510048.899499999],[427107.8975,511386.796499999],[427346.4024,512288.0985],[426526.8021,512184.598099999],[427221.3001,513139.504799999],[425826.3017,512879.499199999],[425247.6963,513924.4001],[423837.0983,513261.4999],[423801.8012,514513.501499999],[422449.3968,514427.1962],[422232.898,515532.0999],[419709.2991,515678.2981]]]},"properties":{"OBJECTID":5,"lad19cd":"E06000005","lad19nm":"Darlington","lad19nmw":" ","bng_e":428029,"bng_n":515648,"long":-1.56835,"lat":54.535339,"GlobalID":"253eba32-7bfa-4df1-9667-135f3967dd70"}},{"type":"Feature","id":6,"geometry":{"type":"MultiPolygon","coordinates":[[[[355156.201,384385.5002],[358131.9013,385425.8024],[358057.9019,383421.995999999],[359710.0967,383069.696799999],[358865.1016,381750.204500001],[360448.9036,380778.1028],[359515.6039,379630.801200001],[358800.7983,380554.796700001],[358511.1988,379342.103800001],[357116.8023,379436.4968],[357345.1988,378866.9998],[354451.3967,380052.8004],[353398.2963,378990.0046],[351892.3029,379820.796800001],[350927.8039,379109.7004],[349968.3014,380020.899499999],[349253.504,381465.495999999],[349874.8024,383181.604800001],[352229.5011,383343.998299999],[353550.3022,384651.804],[355156.201,384385.5002]]],[[[350553.1978,389731.799799999],[352540.9006,389370.903100001],[352692.7004,388433.8014],[354161.5003,387836.602299999],[353953.4032,385216.002499999],[351213.5035,383681.1018],[349213.2022,384537.896600001],[349563.0978,383902.2985],[348271.8965,382026.895300001],[347872.4975,382454.6029],[348303.1041,381654.301999999],[347566.2018,380912.4044],[345044.7961,381955.2958],[344666.1005,382586.395199999],[345579.9995,382851.999199999],[345588.6981,383767.497099999],[347696.2016,384666.0999],[348433.6976,387413.803400001],[349698.3004,387364.497500001],[350553.1978,389731.799799999]]]]},"properties":{"OBJECTID":6,"lad19cd":"E06000006","lad19nm":"Halton","lad19nmw":" ","bng_e":354246,"bng_n":382146,"long":-2.68853,"lat":53.33424,"GlobalID":"7e5dcc8c-981c-403c-bf78-954e034ff82a"}},{"type":"Feature","id":7,"geometry":{"type":"Polygon","coordinates":[[[361791.1006,394518.7996],[362224.0982,395896.995100001],[363641.9025,396220.8024],[363410.8016,396926.600299999],[367158.6024,398358.3005],[367582.2007,396058.198899999],[370229.2033,391101.897600001],[368282.0002,388925.8005],[371724.8986,387929.695699999],[370826.6982,385621.1965],[367700.3029,385779.6011],[365410.3032,383570.3035],[365582.6992,382955.999399999],[362670.997,380858.899700001],[361050.2984,381545.5031],[360448.9036,380778.1028],[358865.1016,381750.204500001],[359710.0967,383069.696799999],[358057.9019,383421.995999999],[358131.9013,385425.8024],[355156.201,384385.5002],[353953.4032,385216.002499999],[354161.5003,387836.602299999],[355115.9981,388075.7039],[356007.2974,392639.497500001],[355233.4985,393119.800000001],[355690.4975,393999.098300001],[354787.4984,393784.4998],[355128.0029,395326.0985],[357645.4014,394368.8025],[358410.9966,393251.802200001],[360493.6001,394152.204500001],[360337.8014,395015.497400001],[361217.3021,393828.0973],[361791.1006,394518.7996]]]},"properties":{"OBJECTID":7,"lad19cd":"E06000007","lad19nm":"Warrington","lad19nmw":" ","bng_e":362744,"bng_n":388456,"long":-2.56167,"lat":53.391628,"GlobalID":"fb33a02e-4a49-43b5-b107-c5663303dc6a"}},{"type":"Feature","id":8,"geometry":{"type":"Polygon","coordinates":[[[363748.5029,429031.4004],[369402.9987,431708.6041],[370677.3966,430117.7995],[370310.1039,428992.4016],[371077.4964,428204.6971],[371465.6987,424838.1008],[372966.4977,423266.500600001],[373792.4961,421751.204399999],[375369.8011,421263.604],[375568.5977,419017.9968],[376122.8967,417715.6995],[375608.0009,415062.8989],[375025.3966,414992.099199999],[372205.998,414225.298599999],[371095.0007,416703.099400001],[369689.696,413818.904999999],[368397.9011,413492.8983],[366280.6023,414615.696900001],[364921.8987,418843.296800001],[366064.6972,421812.9967],[364461.1977,422995.698100001],[363060.7988,427981.201099999],[363748.5029,429031.4004]]]},"properties":{"OBJECTID":8,"lad19cd":"E06000008","lad19nm":"Blackburn with Darwen","lad19nmw":" ","bng_e":369490,"bng_n":422806,"long":-2.4636,"lat":53.700802,"GlobalID":"2c5b0f9a-b946-4c18-99a6-4d0e878a5e43"}},{"type":"Feature","id":9,"geometry":{"type":"Polygon","coordinates":[[[331213.323,442676.177100001],[333041.8011,441857.199100001],[333572.7995,437130.702099999],[334590.8007,436258.9016],[335319.5981,433501.900800001],[333963.401,433247.003699999],[334425.1986,431366.801899999],[332292.8032,431242.7974],[332040.2982,432108.299699999],[330433.0259,431649.225400001],[331213.323,442676.177100001]]]},"properties":{"OBJECTID":9,"lad19cd":"E06000009","lad19nm":"Blackpool","lad19nmw":" ","bng_e":332819,"bng_n":436635,"long":-3.02199,"lat":53.82164,"GlobalID":"f5c31ac5-8c80-4f8e-b2df-37f9e093922b"}},{"type":"Feature","id":10,"geometry":{"type":"Polygon","coordinates":[[[510169.58,428170.779999999],[504412.3559,425954.4791],[504178.8041,427276.3028],[505475.8017,429362.295700001],[504129.1028,429396.096100001],[504376.9989,430522.503599999],[506338.804,431536.4034],[506013.0993,433954.101299999],[508155.8011,434253.195699999],[507866.7353,434932.5623],[508507.9971,435947.1009],[510966.6001,436533.0031],[513544.8967,433120.799900001],[515254.9965,433081.101199999],[515180.0984,431094.799799999],[516047.2974,430159.7974],[515695.9514,428621.971899999],[515851.8343,428112.4025],[515529.3632,427742.783500001],[513098.15,428711.550000001],[510169.58,428170.779999999]]]},"properties":{"OBJECTID":10,"lad19cd":"E06000010","lad19nm":"Kingston upon Hull, City of","lad19nmw":" ","bng_e":511894,"bng_n":431650,"long":-0.30382,"lat":53.769199,"GlobalID":"059b65e6-f473-45a8-aaf8-3a30aafdf809"}},{"type":"Feature","id":11,"geometry":{"type":"Polygon","coordinates":[[[459323.7011,419602.0996],[461561.6993,423461.3049],[463561.1018,422385.402799999],[467405.9817,422776.3278],[467424.3994,422778.2004],[467405.1008,423093.8727],[467369.7017,423672.904300001],[468574.1979,423223.302999999],[468878.0037,424789.8046],[472258.294,425369.9092],[471880.5994,426771.997199999],[468594.1015,427088.896500001],[467800.5968,428688.7985],[470745.3039,430447.0952],[470273.2989,434465.9048],[471197.0013,436072.9048],[469834.7029,436878.7042],[469270.6005,441109.1032],[470863.299,443264.7962],[471022.4039,444363.7016],[469132.3968,444702.004799999],[470920.6022,447789.301100001],[470880.1024,452129.398700001],[470020.7032,453010.4965],[470559.7983,455585.0995],[472603.9963,456508.6952],[473586.1974,458488.2985],[478666.6969,459343.2038],[478775.3998,458781.5046],[483007.4,460102.0966],[483289.1997,458153.104499999],[486376.2001,457775.502499999],[486099.1,460215.0042],[487890.3973,460961.1007],[488823.4002,462975.903899999],[487781.2986,463844.995200001],[490696.8017,464724.003599999],[494071.5959,467407.4954],[496610.8027,466510.902100001],[500394.9971,469057.7031],[501130.5967,470089.897600001],[500834.5001,471108.696],[502860.996,472429.8978],[502398.4975,475383.802200001],[503347.603,476516.9979],[505136.5009,476830.898],[506226.3001,474361.604800001],[508108.2023,473599.302999999],[509572.3025,474014.904100001],[510890.1024,472484.0023],[513414.196,473023.4979],[515766.9983,472178.0998],[516822.1356,475015.658],[524664.52,471964.888],[525840.388,470651.074999999],[524035.229,469242.515000001],[519975.321,468547.491],[517121.268,463766.491],[517206.531,458301.477],[521252.799,446622.517999999],[529410.044,434292.051999999],[539948.47,420591.5],[542056.927,414493.515000001],[542150.469,413681.287],[541855.983,413145.546],[539659.334,410364.109999999],[541882.6924,413324.717700001],[542004.2497,414140.1458],[541834.536,414672.7335],[537702.9,418002.300000001],[534438.1,418898.800000001],[528792,416484.699999999],[525498.2,417086.699999999],[517981.42,425083.02],[517116.1,425020],[516843.5,427802.4],[516007.15,427326.550000001],[515902.9359,428182.3838],[515921.218,428222.430500001],[515695.9514,428621.971899999],[516047.2974,430159.7974],[515180.0984,431094.799799999],[515254.9965,433081.101199999],[513544.8967,433120.799900001],[510966.6001,436533.0031],[508507.9971,435947.1009],[507866.7353,434932.5623],[508155.8011,434253.195699999],[506013.0993,433954.101299999],[506338.804,431536.4034],[504376.9989,430522.503599999],[504129.1028,429396.096100001],[505475.8017,429362.295700001],[504178.8041,427276.3028],[504412.3559,425954.4791],[496298.1994,424541.295700001],[493566.8003,426506.803099999],[490458.0989,427268.595000001],[490005.1977,426692.300000001],[491236.3008,426896.001700001],[487752.9026,425864.9968],[486180.7014,423890.502],[483098.2029,424126.5045],[485094.8021,423645.102299999],[486026.0983,423150.004000001],[485273.8024,422928.2974],[485951.1012,422921.599400001],[486054.9972,421690.2018],[485807.802,420893.300000001],[484528.3994,421078.197000001],[481089.9039,418441.3018],[481231.0016,419319.1006],[480142.9009,418759.0009],[476256.7975,415781.903100001],[475119.4985,416283.499500001],[469695.3036,418585.2006],[466844.7964,418526.1975],[466773.996,418770.397600001],[462971.3986,418147.296],[460952.1137,418952.643200001],[459323.7011,419602.0996]]]},"properties":{"OBJECTID":11,"lad19cd":"E06000011","lad19nm":"East Riding of Yorkshire","lad19nmw":" ","bng_e":488056,"bng_n":443597,"long":-0.66195,"lat":53.881119,"GlobalID":"0af0cd1d-a627-4136-bc13-528d9d70c104"}},{"type":"Feature","id":12,"geometry":{"type":"Polygon","coordinates":[[[519052.7445,417440.3894],[526293.28,411082.27],[527270.46,410641.050000001],[528260.3,411429.300000001],[531602.014,407926.879000001],[532379.913,407415.429],[532019.433,408401.639],[533848.0923,405093.9344],[530092.3963,403611.196900001],[529606.1025,404375.098200001],[528388.2988,404190.601],[527799.2963,400901.502499999],[526467.3974,400493.1994],[526869.3029,399579.301000001],[525696.7975,398677.599099999],[527452.5998,396641.6019],[524971.9989,394618.0012],[524198.8018,394862.0013],[523015.3965,396028.897299999],[522665.0968,398132.2952],[520789.7989,398414.904300001],[520296.2,400170.901699999],[518828.9997,400328.6965],[519190.1004,403173.802100001],[518703.1965,405381.000299999],[518084.8005,405465.6961],[520014.6972,409222.8006],[519611.5961,409846.702],[517809.1021,409400.399800001],[516956.9008,411408.8049],[515854.0992,411203.8035],[516022.7024,412210.895300001],[513082.3982,414321.5011],[516988.4959,415611.8018],[519052.7445,417440.3894]]]},"properties":{"OBJECTID":12,"lad19cd":"E06000012","lad19nm":"North East Lincolnshire","lad19nmw":" ","bng_e":523465,"bng_n":404564,"long":-0.13911,"lat":53.52327,"GlobalID":"dbeb33f7-359e-4386-a783-201a420ce844"}},{"type":"Feature","id":13,"geometry":{"type":"MultiPolygon","coordinates":[[[[478597.6289,396373.115],[474986.2006,397208.6996],[472053.5972,396493.904200001],[471779.3995,397069.6994],[473075.6962,398163.0964],[470701.1021,401171.5952],[470917.6999,402082.304500001],[469724.7962,402396.804500001],[470114.1033,404292.6018],[473510.5985,405103.499700001],[472898.1966,406255.899900001],[473546.3985,408341.3029],[472872.2988,408571.7969],[473058.596,410194.102600001],[475119.4985,416283.499500001],[476256.7975,415781.903100001],[480142.9009,418759.0009],[481231.0016,419319.1006],[481089.9039,418441.3018],[484528.3994,421078.197000001],[485807.802,420893.300000001],[486054.9972,421690.2018],[486513.0727,421046.687100001],[486975.8963,420396.5022],[486271.496,422797.205],[489896.297,424606.3971],[491791.0038,425120.4],[493447.9972,422802.703400001],[497628.3009,421068.5998],[501074.024,423504.538000001],[502869.163,423446.535],[502926.57,422549.25],[502925.026,423445.215],[506062.48,423817.23],[506383.33,422622.23],[506541.6,424066.300000001],[512678.73,425539.880000001],[519052.7445,417440.3894],[516988.4959,415611.8018],[513082.3982,414321.5011],[511992.0961,414413.604699999],[512559.3975,412307.297700001],[510325.4971,408174.500700001],[504947.4994,408562.5996],[504122.4985,409803.104499999],[501666.501,406904.404200001],[500089.7979,406527.302200001],[499426.9033,405576.904200001],[504081.3969,406665.002800001],[505769.6969,404206.5965],[505162.3986,403166.804099999],[500355.0993,401968.1972],[501101.0959,398494.001700001],[495842.8989,396757.198799999],[491079.1005,396589.9967],[491311.1989,402672.9955],[483732.2975,403312.702299999],[483534.533,402389.4936],[482942.6021,401150.001399999],[481872.6982,400949.6987],[481814.6572,400736.093],[481868.5331,398776.4739],[479916.7966,396067.8961],[478597.6289,396373.115]]],[[[497790.3988,421987.3968],[496810.3991,421526.0988],[495603.0995,422511.4968],[497790.3988,421987.3968]]]]},"properties":{"OBJECTID":13,"lad19cd":"E06000013","lad19nm":"North Lincolnshire","lad19nmw":" ","bng_e":497800,"bng_n":410993,"long":-0.52407,"lat":53.58643,"GlobalID":"80b70e63-f2ac-451e-a798-dc9f52d7d949"}},{"type":"Feature","id":14,"geometry":{"type":"Polygon","coordinates":[[[461651.1005,462701.702400001],[464629.9998,461931.502900001],[465425.4998,462603.8005],[467784.7004,459044.599300001],[466642.0008,456769.4005],[467252.3003,457008.6021],[467493.996,456115.797599999],[466013.9003,454577.597899999],[470559.7983,455585.0995],[470020.7032,453010.4965],[470880.1024,452129.398700001],[470920.6022,447789.301100001],[469132.3968,444702.004799999],[471022.4039,444363.7016],[470863.299,443264.7962],[469500.0029,444062.797800001],[466315.6036,442579.802300001],[465282.0028,444210.4955],[461574.6028,442445.500700001],[459564.597,443518.003699999],[458918.1018,442551.100500001],[458783.5727,442665.688100001],[452922.6974,447657.798699999],[451015.5983,453472.804199999],[451473.7021,454675.300000001],[453730.8041,454673.500499999],[453066.7963,456354.3993],[454141.3009,456553.4024],[455705.3973,455123.2018],[456680.6973,455346.897700001],[455871.997,456657.4026],[456379.2991,459658.203600001],[457724.2005,459584.2048],[459719.497,461720.303400001],[461728.1011,461727.701199999],[461651.1005,462701.702400001]]]},"properties":{"OBJECTID":14,"lad19cd":"E06000014","lad19nm":"York","lad19nmw":" ","bng_e":460864,"bng_n":452589,"long":-1.07375,"lat":53.96582,"GlobalID":"c58c570c-eb3d-4c57-97f2-c63292c28974"}},{"type":"Feature","id":15,"geometry":{"type":"Polygon","coordinates":[[[430748.999,336405.804199999],[433161.8996,337895.097899999],[433988.0959,341063.301000001],[435383.3994,341078.696599999],[435804.2026,339383.5019],[439786.8969,339376.8038],[438813.4025,337736.703299999],[441570.8973,336678.2962],[441245.2009,333953.995999999],[440270.1976,333833.9004],[439198.8014,332054.4998],[438902.9027,329886.3004],[437380.6995,329455.103800001],[436168.9971,330697.498199999],[434123.0016,330406.701400001],[433532.8037,332045.3024],[430933.4987,332550.297800001],[429896.0969,335340.3992],[430748.999,336405.804199999]]]},"properties":{"OBJECTID":15,"lad19cd":"E06000015","lad19nm":"Derby","lad19nmw":" ","bng_e":435609,"bng_n":335375,"long":-1.47189,"lat":52.914639,"GlobalID":"2ac53c0d-a88b-4aa1-b472-d944b4d822f8"}},{"type":"Feature","id":16,"geometry":{"type":"Polygon","coordinates":[[[455201.0963,307300.695499999],[455667.6019,309240.700099999],[457057.1998,310757.296],[458008.4984,310282.8018],[458986.6018,307872.901699999],[459680.2011,308748.700999999],[462642.297,308389.7037],[464453.3988,306785.7029],[464594.9995,304520.701199999],[463026.5003,302658.6042],[461260.1032,302460.900800001],[460812.0995,300165.797800001],[459690.9031,300333.5998],[458115.2967,299255.6983],[457726.303,298472.2026],[456948.8019,298630.6972],[457144.8035,299555.4025],[456035.6037,299776.699200001],[456596.6966,302025.395500001],[453156.7994,304373.303400001],[453737.6969,305275.6951],[454863.4034,305044.101399999],[455201.0963,307300.695499999]]]},"properties":{"OBJECTID":16,"lad19cd":"E06000016","lad19nm":"Leicester","lad19nmw":" ","bng_e":458946,"bng_n":304594,"long":-1.1304,"lat":52.635921,"GlobalID":"740d335e-346f-40d3-b19e-66fa3b4946fc"}},{"type":"Feature","id":17,"geometry":{"type":"Polygon","coordinates":[[[490252.7969,318512.0962],[493877.5979,318926.897500001],[494224.5995,317895.602700001],[496433.0968,318229.997],[498670.6003,316638.3026],[498538.5969,314953.105],[501805.3973,313503.799799999],[506145.1027,313125.598099999],[505953.6029,310704.801100001],[504488.9998,309191.904100001],[501100.6012,307911.2007],[499943.8026,308522.4957],[501933.204,305782.100199999],[500414.6039,305989.1009],[498904.6034,304131.9025],[498101.4025,301376.5012],[498714.0023,300447.3972],[497765.9027,300605.901799999],[496851.2039,299621.8035],[496175.9004,300728.3968],[495826.7963,299782.497500001],[494737.2032,299890.5966],[489931.2973,296467.1965],[487368.1963,292674.102299999],[485403.2993,294255.1997],[485611.7015,295304.3994],[484155.2032,297061.896299999],[483757.7995,299009.298800001],[481888.7019,300662.5956],[479959.4977,300501.7017],[480939.3985,303213.995300001],[480698.5026,306040.2962],[482457.7018,308668.204],[482139.698,311473.301100001],[479688.4991,313761.796],[480225.6978,315267.605],[482692.9004,316956.101600001],[484379.9966,316181.5034],[490252.7969,318512.0962]]]},"properties":{"OBJECTID":17,"lad19cd":"E06000017","lad19nm":"Rutland","lad19nmw":" ","bng_e":492992,"bng_n":308655,"long":-0.6263,"lat":52.667648,"GlobalID":"c3abff0e-a2ee-4e59-b0b4-719a899ac837"}},{"type":"Feature","id":18,"geometry":{"type":"Polygon","coordinates":[[[454920.7972,347117.797900001],[457568.6986,345806.0034],[456900.2962,344761.602399999],[457937.0962,344513.4034],[457664.3001,343558.296800001],[458990.7985,343260.402100001],[459192.0027,341522.5996],[461502.104,339409.104499999],[460600.1025,338663.9978],[458442.9967,338730.998600001],[457777.1008,337518.4957],[457071.1009,338070.4977],[456694.7963,333953.5962],[455509.9976,332716.700200001],[452968.5976,334395.6996],[453162.2989,335258.7026],[453965.2029,334970.0952],[455078.8963,335856.8014],[450694.1975,339798.403100001],[451678.8969,341416.1],[450661.2008,343285.604900001],[452052.2993,342921.999],[453576.9018,343649.300799999],[452514.5009,344079.297700001],[452089.097,345921.2005],[453100.9968,347049.997400001],[454920.7972,347117.797900001]]]},"properties":{"OBJECTID":18,"lad19cd":"E06000018","lad19nm":"Nottingham","lad19nmw":" ","bng_e":456082,"bng_n":339969,"long":-1.16667,"lat":52.954189,"GlobalID":"44dfbfcc-4229-4442-a437-66ae896119fe"}},{"type":"Feature","id":19,"geometry":{"type":"Polygon","coordinates":[[[335069.5007,272770.499600001],[336535.3984,272851.1965],[336160.2975,274080.4047],[337036.6981,274729.5988],[338762.2987,274738.396299999],[337309.1973,275633.0002],[337639.7996,276868.196699999],[339293.899,275490.301100001],[339627.5024,276717.199899999],[341916.9992,277838.898800001],[344415.3022,277336.602600001],[345281.9983,276995.600199999],[345137.6025,275624.4027],[346145.9982,275543.3959],[346129.302,273494.5024],[350190.3986,273303.596999999],[349103.3038,271019.800799999],[347836.9036,271167.6984],[351400.3036,268101.596100001],[353751.4982,268428.8024],[353121.1962,268944.504799999],[354719.5013,271787.900900001],[357569.7035,269436.8039],[357958.1036,267827.5045],[354875.1021,267517.103399999],[356448.6968,265551.1961],[359305.5033,264997.5046],[357214.3002,262740.1008],[357148.2985,260427.9026],[360898.5975,261771.3981],[363802.4998,261809.8971],[364197.8999,261230.8028],[366264.3019,262200.0954],[365770.802,264484.701400001],[369304.0992,265310.494999999],[370891.2982,263690.998600001],[368144.2995,262087.0977],[367682.8976,260457.304199999],[368350.0962,259675.9979],[371206.1029,259979.601],[373839.4023,258627.2981],[372505.4998,258213.5965],[373263.897,256781.6964],[372224.302,256135.201400001],[371240.4024,252773.2038],[370333.0004,252304.8978],[371684.9019,249741.3017],[374145.5002,250825.801200001],[376049.9032,249649.697899999],[375976.5963,245074.297599999],[376941.1036,243556.901900001],[375985.097,235939.5024],[373131.4978,235019.795600001],[372700.8006,233152.100299999],[371726.1024,232928.904100001],[370073.6025,233280.803400001],[370136.6031,235241.202299999],[368303.2972,235201.9035],[368253.1013,236195.899],[367233.4016,236119.800799999],[366326.6015,234472.102399999],[367758.1997,233024.8967],[366105.502,231516.398499999],[366276.0016,229630.2984],[365678.2017,229242.8993],[368105.5972,228235.397600001],[368050.5037,225597.2028],[369272.1002,224554.4013],[369864.9036,222184.6996],[366519.4041,220317.6041],[365089.2982,220855.9],[363486.4996,218153.703500001],[360111.796,218279.5975],[359951.1987,216935.702099999],[358689.9023,217684.3978],[357003.3008,215779.703],[356232.7009,216245.899599999],[355272.7037,214366.797499999],[354193.6973,215433.102299999],[352324.6986,215252.304],[352060.296,216474.804099999],[350827.2966,215978.995999999],[350528.3966,216946.8989],[349189.0029,215591.8968],[346471.1999,218872.897600001],[347202.5039,220498.202400001],[342576.9999,223386.095699999],[342192.4997,224689.9025],[340811.3035,224293.596000001],[341989.9021,225170.505000001],[339743.1971,226508.402000001],[333237.0029,223383.896400001],[332939.1006,225891.6985],[330775.4976,225881.2015],[329597.4021,229251.796700001],[326793.1991,232169.001700001],[324673.6989,236599.603399999],[325588.8018,238533.5998],[325311.0009,239685.699999999],[322937.8002,242814.304500001],[323198.5008,245574.4044],[324383.7036,245804.0987],[324435.7959,247064.9977],[321926.2961,248343.1019],[322357.7025,249453.404100001],[325255.2973,250120.6031],[326721.5,251374.404200001],[326049.0988,252193.5997],[324916.5984,251285.7995],[323321.5006,252276.495999999],[325255.6023,254507.7973],[324779.5985,256626.300799999],[326846.0994,257748.5996],[326818.9979,260284.3038],[328790.4991,260483.5967],[328530.1036,261856.3038],[329390.8963,262569.6996],[331456.0037,263375.198999999],[333400.6014,262839.802200001],[335295.0031,263902.798],[331012.8977,265040.0024],[331879.4041,269766.6994],[334212.5997,270589.7039],[335069.5007,272770.499600001]]]},"properties":{"OBJECTID":19,"lad19cd":"E06000019","lad19nm":"Herefordshire, County of","lad19nmw":" ","bng_e":349434,"bng_n":242834,"long":-2.73931,"lat":52.081539,"GlobalID":"8c31a59d-7a86-42d7-ac79-4825320a5628"}},{"type":"Feature","id":20,"geometry":{"type":"Polygon","coordinates":[[[378787.5026,315079.5988],[375926.6972,314900.0002],[374674.2972,315839.101399999],[371756.502,307322.3993],[371787.2973,304083.1965],[370541.6005,303347.3971],[370433.2026,301953.596100001],[366133.898,303590.1976],[362995.803,306471.3029],[362523.5011,308297.700099999],[358026.3975,311442],[359742.4008,313565.5022],[355512.701,315090.195699999],[355327.7972,318297.6976],[356703.4032,319024.2996],[357424.5987,318184.200099999],[358205.2988,320061.002900001],[360145.6008,320081.097100001],[359776.4034,322433.603700001],[360809.6003,323276.9023],[362893.3993,322916.6954],[364101.6965,321971.2961],[363844.4012,320970.9024],[364902.696,322503.003900001],[366179.3035,322232.801200001],[367299.7991,323186.3982],[367928.1964,322529.496300001],[367067.4038,320710.297],[368204.9996,320418.9004],[369324.2996,320830.4026],[368228.8031,324910.9046],[372043.6032,325577.3038],[374641.6962,323853.8972],[375052.9021,322031.9987],[374131.3022,321399.299799999],[379018.8013,315959.596899999],[378787.5026,315079.5988]]]},"properties":{"OBJECTID":20,"lad19cd":"E06000020","lad19nm":"Telford and Wrekin","lad19nmw":" ","bng_e":367035,"bng_n":313057,"long":-2.48941,"lat":52.714169,"GlobalID":"993bcf6e-944e-45ed-af57-b7f992186207"}},{"type":"Feature","id":21,"geometry":{"type":"Polygon","coordinates":[[[385828.4962,342600.900900001],[386377.5018,342690.395300001],[385640.5005,346464.505000001],[386512.1024,346979.797499999],[384100.6034,352925.5955],[386796.3014,355073.3007],[387961.3038,354745.104699999],[388597.8968,354704.5963],[389299.7988,352552.9022],[391693.9007,351931.699999999],[392281.6994,350089.997199999],[391262.8984,350013.9989],[391796.997,347154.497400001],[393154.9997,345953.101299999],[393053.503,344488.8005],[394152.5037,344425.498600001],[393928.304,343143.095699999],[394776.1024,341906.299699999],[394179.1023,341834.9002],[394642.2026,341061.601500001],[391924.2018,339862.004899999],[391339.7011,341541.7041],[390312.8035,342092.5964],[389173.3031,339564.800000001],[388212.3989,339605.0984],[387893.8015,338771.497099999],[385828.4962,342600.900900001]]]},"properties":{"OBJECTID":21,"lad19cd":"E06000021","lad19nm":"Stoke-on-Trent","lad19nmw":" ","bng_e":389438,"bng_n":346652,"long":-2.15888,"lat":53.017071,"GlobalID":"712be138-9cb6-49e6-b5df-bf0d1a020aad"}},{"type":"Feature","id":22,"geometry":{"type":"Polygon","coordinates":[[[364607.9021,170099.198899999],[365911.3968,170118.4034],[365833.0027,168908.5997],[366653.9964,169284.202199999],[367449.8015,168647.704399999],[376235.5984,171227.1961],[377503.5981,170938.5987],[378359.5014,169317.3028],[379613.8968,170018.901900001],[380725.9989,168577.704500001],[379864.7033,167449.997300001],[380490.5034,166503.9981],[379447.6021,166247.8014],[379765.5977,163430.897700001],[376113.5963,160776.897399999],[379450.4962,160439.604],[379131.503,159391.1041],[379952.6039,158503.598099999],[373099.8038,155128.904100001],[372148.2001,156263.599300001],[368585.6988,152886.7959],[367048.9019,153311.904300001],[366751.7993,152769.999399999],[364778.4017,153438.797900001],[365424.5012,154752.301899999],[361208.6035,156097.197000001],[356332.9031,153935.4958],[355563.0041,155271.4034],[351670.4035,157895.0024],[352219.5988,159253.803400001],[350784.7026,160095.502499999],[352008.4016,161387.9025],[351783.196,164763.1964],[352771.3006,162559.2972],[353534.4964,162625.598200001],[352973.2963,160538.195699999],[354196.0966,160475.703600001],[355243.5987,164206.2958],[356244.6975,164206.3957],[356469.697,165530.296800001],[357361.5982,164827.098099999],[356767.5003,165780.7951],[358129.8977,165704.297],[359041.1007,166666.8015],[360390.8007,166858.996400001],[361088.5967,168227.4047],[362817.6025,168149.497],[363512.2983,170773.695900001],[364607.9021,170099.198899999]]]},"properties":{"OBJECTID":22,"lad19cd":"E06000022","lad19nm":"Bath and North East Somerset","lad19nmw":" ","bng_e":366217,"bng_n":161999,"long":-2.48654,"lat":51.356041,"GlobalID":"9d01e346-bc8e-4257-95d5-5a3ccf1c1815"}},{"type":"Feature","id":23,"geometry":{"type":"Polygon","coordinates":[[[356530.3471,172654.4266],[356362.2959,173239.663799999],[355870.1742,174583.2227],[354322.8974,176400.5537],[354176.3972,176572.623299999],[354150.1964,176603.3971],[353394.8201,176293.153100001],[353248.3403,176232.991699999],[352868.3263,176076.9144],[352554.7028,175948.104699999],[350892.4985,177889.598999999],[350251.2966,179057.104800001],[353370.0982,183052.801000001],[354814.0969,179554.702299999],[359783.0984,179992.1971],[359271.6985,178197.400900001],[361783.6966,177178.4025],[364283.3023,177340.1962],[364510.0002,173831.400599999],[363838.5966,172475.5987],[362613.8011,172005.203400001],[364607.9021,170099.198899999],[363512.2983,170773.695900001],[362817.6025,168149.497],[361088.5967,168227.4047],[360390.8007,166858.996400001],[359041.1007,166666.8015],[356044.796,167351.4955],[356338.7984,171118.8971],[355607.8984,171469.096799999],[355918.4836,171752.672700001],[356608.4036,172382.5953],[356530.3471,172654.4266]]]},"properties":{"OBJECTID":23,"lad19cd":"E06000023","lad19nm":"Bristol, City of","lad19nmw":" ","bng_e":359990,"bng_n":174846,"long":-2.57742,"lat":51.471149,"GlobalID":"2b2585db-4a31-43e4-aa12-74bcce4f54c9"}},{"type":"Feature","id":24,"geometry":{"type":"Polygon","coordinates":[[[350363.3965,178207.198100001],[352554.7028,175948.104699999],[352868.3263,176076.9144],[353248.3403,176232.991699999],[353394.8201,176293.153100001],[354150.1964,176603.3971],[354176.3972,176572.623299999],[354322.8974,176400.5537],[355870.1742,174583.2227],[356362.2959,173239.663799999],[356530.3471,172654.4266],[356608.4036,172382.5953],[355918.4836,171752.672700001],[355607.8984,171469.096799999],[356338.7984,171118.8971],[356044.796,167351.4955],[359041.1007,166666.8015],[358129.8977,165704.297],[356767.5003,165780.7951],[357361.5982,164827.098099999],[356469.697,165530.296800001],[356244.6975,164206.3957],[355243.5987,164206.2958],[354196.0966,160475.703600001],[352973.2963,160538.195699999],[353534.4964,162625.598200001],[352771.3006,162559.2972],[351783.196,164763.1964],[352008.4016,161387.9025],[350784.7026,160095.502499999],[352219.5988,159253.803400001],[351670.4035,157895.0024],[346813.7987,158441.8958],[343053.6963,158903.8036],[343610.8975,156123.599400001],[338944.597,156025.7974],[338411.496,156766.4954],[337540.3971,154991.9034],[334801.2971,156409.997400001],[333033.1025,156625.795700001],[332223.9982,155623.102700001],[330857.8345,156234.3292],[331584.3298,157448.5538],[331129.9937,158063.851500001],[331652.75,161577.949999999],[330842.95,162409.189999999],[332738.9,163178.050000001],[333123.82,164407.65],[333076.575,165316.84],[331847.96,165944.34],[334719,166989.59],[334742.38,166194.960000001],[336277.5,166714.16],[338134.46,165760.76],[336592.14,166752.029999999],[340841.4,172998.5],[344556.8,176553.300000001],[347630.101,177475.647500001],[349236.1977,177315.0034],[349390.504,178401.102600001],[350363.3965,178207.198100001]]]},"properties":{"OBJECTID":24,"lad19cd":"E06000024","lad19nm":"North Somerset","lad19nmw":" ","bng_e":347613,"bng_n":166719,"long":-2.75439,"lat":51.397072,"GlobalID":"53fadbc1-9628-44fb-88e1-aaa3c71193bf"}},{"type":"Feature","id":25,"geometry":{"type":"Polygon","coordinates":[[[363118.8061,197748.1316],[366230.5961,196244.604900001],[366144.699,194117.8037],[369449.7977,194948.3959],[373385.3962,193530.401799999],[372380.0017,193002.0031],[373175.8975,192152.0964],[372759.9012,188798.6963],[374428.0007,188817.200999999],[374777.4017,189496.196599999],[377161.8981,188135.496099999],[379893.998,188356.7028],[380503.3987,186666.0967],[381208.9039,186560.397],[382055.3995,185702.102700001],[381611.8977,181962.5031],[382587.1977,180914.903000001],[377582.2972,177668.902100001],[378473.1019,176537.695900001],[379927.9017,176451.400599999],[379548.901,173332.103499999],[380286.298,173246.2981],[379613.8968,170018.901900001],[378359.5014,169317.3028],[377503.5981,170938.5987],[376235.5984,171227.1961],[367449.8015,168647.704399999],[366653.9964,169284.202199999],[365833.0027,168908.5997],[365911.3968,170118.4034],[364607.9021,170099.198899999],[362613.8011,172005.203400001],[363838.5966,172475.5987],[364510.0002,173831.400599999],[364283.3023,177340.1962],[361783.6966,177178.4025],[359271.6985,178197.400900001],[359783.0984,179992.1971],[354814.0969,179554.702299999],[353370.0982,183052.801000001],[354118.48,186292.83],[356620.13,189832.210000001],[360266.36,192665.02],[360727.172,195348.596999999],[363118.8061,197748.1316]]]},"properties":{"OBJECTID":25,"lad19cd":"E06000025","lad19nm":"South Gloucestershire","lad19nmw":" ","bng_e":367559,"bng_n":183198,"long":-2.46922,"lat":51.54673,"GlobalID":"19a45ee6-2c66-4daa-a73f-9d0ac3f5ea62"}},{"type":"Feature","id":26,"geometry":{"type":"Polygon","coordinates":[[[246426.5295,60875.7032999992],[246999.897,61842.4970999993],[248422.4998,61412.1002999991],[250032.7026,62615.0958999991],[250274.9012,61266.4020000007],[252160.1015,60385.6041000001],[252881.8989,57827.8961999994],[255144.5992,57717.4978],[256428.7015,56609.5050000008],[255971.2985,55203.8972999994],[254321.503,55075.4041000009],[254062.0969,52751.4992999993],[251333.6001,51089.0952000003],[249044.0038,51800.5150000006],[248211.58,53241],[250331.9,52854.3000000007],[249839.8,53194],[250802.02,55374.0800000001],[250695.1,55757.5],[249614.8,53462.0500000007],[246976.5128,53608.4900000002],[246882.6,54181.5],[246164.7,53242.0999999996],[246227.5,54412.0500000007],[244942.55,53952.5999999996],[244216.2,56766.3499999996],[245171.21,57467.2699999996],[244107.1998,56993.1952],[243364.6,57843.8000000007],[244371.86,60612.7100000009],[246262.55,60005.3499999996],[246426.5295,60875.7032999992]]]},"properties":{"OBJECTID":26,"lad19cd":"E06000026","lad19nm":"Plymouth","lad19nmw":" ","bng_e":249945,"bng_n":58255,"long":-4.11297,"lat":50.404942,"GlobalID":"cfbf0304-d0e3-4542-b196-f02f43416473"}},{"type":"Feature","id":27,"geometry":{"type":"Polygon","coordinates":[[[287687.303,65412.4952000007],[288744.3033,66833.8982999995],[289090.802,66410.9993999992],[291601.2994,68318.6032999996],[292272.6041,69761.6002999991],[293104.4736,69621.7028999999],[292620.9,65758.3499999996],[295010.2,63681.3000000007],[292479.9,62647.1999999993],[290740.86,63495.7200000007],[289313.8,59329.0999999996],[290309.25,56945.9800000004],[292110.2,57027.8000000007],[292634.35,56207.75],[293122.07,56654.5299999993],[292580.2,57291],[294742.0662,56624.4495999999],[292900.1152,54341.2631000001],[290284.0025,53762.5998999998],[288162.3999,56106.1991000008],[287839.8036,57898.7959000003],[286473.6959,57823.8973999992],[284454.2002,59727.6024999991],[284702.2033,61423.7969000004],[287439.8027,62581.8954000007],[287687.303,65412.4952000007]]]},"properties":{"OBJECTID":27,"lad19cd":"E06000027","lad19nm":"Torbay","lad19nmw":" ","bng_e":289730,"bng_n":64613,"long":-3.55523,"lat":50.470921,"GlobalID":"86c63e9f-03af-4ce7-9061-b2cae06f831e"}},{"type":"Feature","id":28,"geometry":{"type":"Polygon","coordinates":[[[414715.2986,196490.204600001],[417125.5031,195965.4048],[418938.3035,196527.304],[420077.3009,197041.3968],[421051.6033,199297.4011],[422004.5015,199086.601399999],[420829.201,196927.499399999],[421408.499,194863.8002],[423630.0978,192963.6041],[422682.3033,191609.001800001],[423151.2988,190878.7009],[421521.9016,189668.7972],[421497.9992,187230.0953],[422514.4998,185668.0024],[424000.5978,186460.795499999],[424512.5996,185956.6998],[427655.3036,180005.103399999],[419595.4019,178011.604],[419832.9008,176642.096100001],[415766.7005,175968.5988],[414136.6025,176185.296800001],[413043.2991,178695.3983],[411369.7991,178001.397],[410718.497,180611.6998],[411409.6969,179120.896500001],[411887.0035,179626.501800001],[410232.5001,183055.3003],[410546.1999,183835.297],[409446.3005,184531.797700001],[409792.9971,185161.0975],[410827.6039,184771.099199999],[410965.1975,186655.4998],[412309.398,187053.3959],[411350.0027,187610.896299999],[411742.7974,188666.903999999],[411015.4016,190426.000499999],[412012.9963,191848.0034],[414728.5979,192676.7962],[413992.9983,195987.998400001],[414715.2986,196490.204600001]]]},"properties":{"OBJECTID":28,"lad19cd":"E06000030","lad19nm":"Swindon","lad19nmw":" ","bng_e":418551,"bng_n":186564,"long":-1.73367,"lat":51.577629,"GlobalID":"34728a3f-39d9-4902-a2d7-b8945e9f2ee5"}},{"type":"Feature","id":29,"geometry":{"type":"Polygon","coordinates":[[[531011.2011,310371.0966],[533246.0991,308906.795700001],[534698.4007,301468.404899999],[527194.1996,299301.295299999],[522976.2984,298283.796499999],[522287.2009,296296.5954],[522991.7002,295318.995200001],[522131.5012,295670.604499999],[520980.804,294830.494999999],[519800.5977,295440.700300001],[519182.1027,293125.5031],[517524.7959,292843.503799999],[515933.4991,291254.798599999],[513154.6991,295603.003900001],[513631.7996,296319.9987],[512042.0034,297561.0034],[509528.9995,297817.899900001],[508718.0977,299559.001499999],[507472.302,299057.904899999],[503186.1977,298398.4037],[502228.5008,299296.896500001],[503603.4967,303961.5013],[501950.0981,305791.0976],[504763.8983,307404.4958],[507959.1976,306780.704299999],[511676.4009,308374.2981],[512669.2959,309871.7995],[515777.6015,309433.8049],[517754.2972,307382.402100001],[520976.096,309159.703299999],[522343.3992,307608.8972],[523189.5981,308534.202400001],[525850.1969,307594.501399999],[528418.5004,309965.2028],[529410.9997,309388.197899999],[531011.2011,310371.0966]]]},"properties":{"OBJECTID":29,"lad19cd":"E06000031","lad19nm":"Peterborough","lad19nmw":" ","bng_e":517372,"bng_n":300777,"long":-0.26874,"lat":52.59214,"GlobalID":"d9f6b815-7df2-4f1c-adc1-1315c09ab3f2"}},{"type":"Feature","id":30,"geometry":{"type":"Polygon","coordinates":[[[513353.1001,220771.7041],[512340.5983,220092.498500001],[510537.2963,220326.8015],[508723.0035,218503.703299999],[506419.3005,221540.2041],[502891.5027,223505.601500001],[504501.6972,224338.0033],[504231.5972,225990.9001],[507629.997,226615.201400001],[508626.6023,226415.7985],[508838.8961,224932.0032],[511131.3034,225358.101299999],[511733.0033,223452.3968],[513680.9979,221301.4025],[513353.1001,220771.7041]]]},"properties":{"OBJECTID":30,"lad19cd":"E06000032","lad19nm":"Luton","lad19nmw":" ","bng_e":508606,"bng_n":222559,"long":-0.42319,"lat":51.891022,"GlobalID":"e36283bf-eda7-43b8-8917-e56b2f3b5c86"}},{"type":"Feature","id":31,"geometry":{"type":"MultiPolygon","coordinates":[[[[595718.2092,186217.950099999],[593105.86,183937.15],[585227.17,185551.689999999],[583736.2978,185484.1031],[583620.9877,185613.187000001],[582242.4336,185416.3807],[582197.0751,185403.578199999],[582503.1001,189021.8024],[582954.2039,189736.297900001],[585490.7969,189390.596799999],[593290.6,187463.5984],[593494.5993,186302.300899999],[595718.2092,186217.950099999]]],[[[583581.9,185575.25],[582330.4931,184847.4662],[582104.5232,185196.044299999],[583581.9,185575.25]]]]},"properties":{"OBJECTID":31,"lad19cd":"E06000033","lad19nm":"Southend-on-Sea","lad19nmw":" ","bng_e":587777,"bng_n":186837,"long":0.706923,"lat":51.549171,"GlobalID":"2a4dc8a3-6846-4aab-b338-ef632d275013"}},{"type":"Feature","id":32,"geometry":{"type":"Polygon","coordinates":[[[565233.498,187905.901799999],[565870.0003,188078.9023],[566020.4974,187022.3048],[567767.296,186964.201400001],[568434.2967,185707.801000001],[570754.4981,186738.8959],[573231.6884,185152.4859],[573906.87,185126.390000001],[575062.2,182715.5],[576433.47,182355.550000001],[569576.2181,180814.039799999],[568247.4,182295.6],[569163.492,180721.259],[569848.85,180510.07],[569174.37,176419.68],[567215.83,175521.98],[562744.4,175193],[561107.75,177570.289999999],[559682.05,177307.6],[558585.2,176070.199999999],[553565.4981,179127.662799999],[554880.6035,180182.4027],[554624.8995,180978.2049],[555681.0011,181163.401900001],[555313.1972,182418.102700001],[556099.0999,183481.6982],[556473.7967,182292.4987],[557157.0979,182311.803099999],[557223.3964,183903.297599999],[561956.6964,184981.898800001],[560412.2975,187750.496300001],[565233.498,187905.901799999]]]},"properties":{"OBJECTID":32,"lad19cd":"E06000034","lad19nm":"Thurrock","lad19nmw":" ","bng_e":562123,"bng_n":181590,"long":0.334861,"lat":51.509979,"GlobalID":"d30fec34-19fb-4925-9e9d-a5517c0110ad"}},{"type":"Feature","id":33,"geometry":{"type":"MultiPolygon","coordinates":[[[[575626.54,168136.609999999],[576570.88,170972.390000001],[578259.6,169306.65],[580626.54,168472.35],[581136.84,168945.34],[580779.09,168508.609999999],[581876.23,167659.08],[582364.88,168713.550000001],[583400.3,168851.66],[582929.0139,167240.3375],[582696.4962,166617.095699999],[583516.3027,166328.8982],[581314.7971,162568.804500001],[578650.6035,163080.797900001],[577337.6023,161827.5967],[576032.3019,162541.802200001],[574622.2975,163408.5041],[574381.3026,164711.801100001],[571126.5384,166084.970100001],[570801.7031,164419.6799],[570862.8771,163062.7993],[568528.0018,163757.7042],[567240.1975,163330.796399999],[567304.2039,164278.795],[569251.4977,168247.598999999],[570784.403,168671.0977],[570656.3984,169439.5978],[571757.7984,169474.3978],[572221.2038,171120.396600001],[573192.2989,171418.101399999],[572998.004,174523.8024],[570960.4525,175818.0725],[570587.1,176683.859999999],[571513.45,176812.48],[570836.27,177086.02],[571495.47,178855.939999999],[576866.74,179538.560000001],[581715.9,178370.5],[584810.09,178766.779999999],[586990.7,176810],[585622.4,178194.6],[587633.71,178305.25],[589088.45,176930.289999999],[589357.76,175242.34],[588484.6,174132],[586232.88,173865.18],[585766.9,175499.15],[584860.8073,175394.928400001],[583275.4,175212.57],[582126.44,174193.609999999],[581235.2,172279],[582047.82,173185.41],[582509.83,172721.609999999],[581641.57,171943.140000001],[578381.59,170954.199999999],[576207.619,171226.373],[575086.4,169816.25],[575626.54,168136.609999999]]],[[[579729.6017,170287.0952],[578268.9974,170135.5985],[578449.4982,170778.804400001],[579729.6017,170287.0952]]],[[[581512.2004,170173.0978],[582038.1034,169506.0987],[580761.8009,169538.1995],[581512.2004,170173.0978]]]]},"properties":{"OBJECTID":33,"lad19cd":"E06000035","lad19nm":"Medway","lad19nmw":" ","bng_e":578207,"bng_n":175198,"long":0.563174,"lat":51.44772,"GlobalID":"bac1b120-062f-4d67-90c4-5d32e72dedf4"}},{"type":"Feature","id":34,"geometry":{"type":"Polygon","coordinates":[[[483497.6019,172036.804300001],[484659.8999,175115.902899999],[485922.598,174139.5024],[488715.497,173788.8028],[489396.3,175024.899],[491171.5029,175035.8958],[492309.6016,174042.9001],[493413.1041,174468.498199999],[493084.9012,172551.8969],[495273.5032,172355.703],[495278.4997,169270.0963],[492118.2008,171117.497500001],[490749.298,168793.3028],[492812.7977,165900.300899999],[488139.2992,163641.497400001],[485406.9024,159918.6031],[481058.9024,162174.0975],[482683.3032,164140.9045],[484402.2005,164328.300799999],[483458.5038,168044.897],[484079.1013,168449.801100001],[483497.6019,172036.804300001]]]},"properties":{"OBJECTID":34,"lad19cd":"E06000036","lad19nm":"Bracknell Forest","lad19nmw":" ","bng_e":488169,"bng_n":168792,"long":-0.73363,"lat":51.411301,"GlobalID":"c6b67506-1136-465e-b63f-8d37c21fc270"}},{"type":"Feature","id":35,"geometry":{"type":"Polygon","coordinates":[[[428907.2997,180748.000800001],[429143.8999,182093.195699999],[430948.4965,183925.201300001],[432621.0978,183123.6008],[433867.1986,183653.3991],[436810.603,181209.998500001],[437241.1024,182315.302100001],[438393.4981,182091.396199999],[439858.7031,183122.801000001],[440132.3979,182031.203400001],[441364.3008,183316.795399999],[442832.3009,182571.5988],[443962.0969,183920.4027],[445698.4985,182959.0978],[446626.9006,185194.8978],[451374.0028,182357.4001],[453725.7004,182088.9969],[455258.9025,182377.404300001],[455269.5963,181353.1975],[459709.3968,183018.001],[459627.8037,180045.501800001],[461639.6975,179334.995200001],[462430.704,177129.0967],[463428.8016,176705.4979],[465956.5972,177416.704299999],[467007.9002,175580.300000001],[465889.1031,173913.1972],[466165.2961,172920.3014],[467219.6993,173080.4956],[469541.0962,170181.195499999],[468844.8998,166443.795299999],[470969.7015,164568.801999999],[470683.4,163129.903899999],[466241.9999,162547.7005],[463657.701,165380.999500001],[461663.8968,164277.5954],[461659.0982,162748.303099999],[460075.997,162365.2028],[457408.7032,162349.397299999],[452222.2959,163930.704700001],[445378.4005,163316.7004],[441089.5011,163919.697799999],[439894.396,162112.6951],[438804.704,161908.4035],[439824.5026,159869.997],[435050.8019,159039.504699999],[435913.4991,161081.5002],[434869.5012,162029.098999999],[435218.4982,163521.401799999],[431013.6984,166376.9044],[431185.7976,167986.103800001],[429925.8038,168593.9998],[430334.1982,169315.5033],[433010.0998,169541.998400001],[433175.504,172162.1984],[429094.5038,177323.501],[428907.2997,180748.000800001]]]},"properties":{"OBJECTID":35,"lad19cd":"E06000037","lad19nm":"West Berkshire","lad19nmw":" ","bng_e":450575,"bng_n":172095,"long":-1.27364,"lat":51.445591,"GlobalID":"c610d0b0-29ca-45b4-9a4e-d9f4fc90da21"}},{"type":"Feature","id":36,"geometry":{"type":"Polygon","coordinates":[[[467007.9002,175580.300000001],[468618.2018,174607.8983],[469644.2007,176625.400800001],[472471.1024,177641.0001],[473635.2968,175644.1017],[472675.0027,174557.602700001],[473102.2041,173916.2963],[474563.1959,172341.097200001],[473398.2018,172436.300000001],[473551.5022,170563.0962],[472290.0986,168658.001499999],[471475.1979,168361.296399999],[469541.0962,170181.195499999],[467219.6993,173080.4956],[466165.2961,172920.3014],[465889.1031,173913.1972],[467007.9002,175580.300000001]]]},"properties":{"OBJECTID":36,"lad19cd":"E06000038","lad19nm":"Reading","lad19nmw":" ","bng_e":470226,"bng_n":173154,"long":-0.99071,"lat":51.453018,"GlobalID":"257727f1-287f-4545-ad15-59bce2e20639"}},{"type":"Feature","id":37,"geometry":{"type":"Polygon","coordinates":[[[494342.7018,178838.997199999],[493149.897,179292.5974],[493055.2025,181910.098099999],[495073.5028,183109.8047],[497928.6025,181359.795600001],[499474.7988,182536.198899999],[498939.1007,182116.199100001],[499421.2966,180119.7006],[502320.796,179981.000299999],[502020.9974,178182.595100001],[504919.2023,178392.095100001],[503611.1976,175520.3971],[502587.903,175761.3982],[501859.6992,177444.0965],[500018.1978,178567.504899999],[499682.698,177907.9037],[497229.0998,179079.998199999],[496744.1995,178508.6018],[495423.2995,179280.400900001],[494342.7018,178838.997199999]]]},"properties":{"OBJECTID":37,"lad19cd":"E06000039","lad19nm":"Slough","lad19nmw":" ","bng_e":498920,"bng_n":179246,"long":-0.57617,"lat":51.503502,"GlobalID":"7fe57932-ac9b-47df-9d2f-f7d3fdcb85a5"}},{"type":"Feature","id":38,"geometry":{"type":"Polygon","coordinates":[[[480346.1004,183507.800799999],[483785.8987,184297.604699999],[485000.0994,186022.501],[486257.9989,185845.9015],[488311.9013,187273.2029],[489100.3023,187195.1953],[489488.1994,185785.398800001],[490613.6008,185618.0967],[490091.3009,179927.695599999],[493685.6034,177143.3026],[494938.0034,177932.796599999],[494342.7018,178838.997199999],[495423.2995,179280.400900001],[496744.1995,178508.6018],[497229.0998,179079.998199999],[499682.698,177907.9037],[500018.1978,178567.504899999],[501859.6992,177444.0965],[502587.903,175761.3982],[501489.2981,174217.9],[502779.7986,171734.900699999],[499346.2006,173414.199999999],[497819.1988,172344.7961],[496215.7983,166832.903899999],[496383.9975,165851.7048],[492812.7977,165900.300899999],[490749.298,168793.3028],[492118.2008,171117.497500001],[495278.4997,169270.0963],[495273.5032,172355.703],[493084.9012,172551.8969],[493413.1041,174468.498199999],[492309.6016,174042.9001],[491171.5029,175035.8958],[489396.3,175024.899],[488715.497,173788.8028],[485922.598,174139.5024],[484659.8999,175115.902899999],[483497.6019,172036.804300001],[482238.3997,172239.7962],[481112.3964,174547.4956],[481928.6987,175506.5011],[481375.7024,177106.903000001],[482171.5982,179363.1972],[479604.4984,181417.599099999],[480346.1004,183507.800799999]]]},"properties":{"OBJECTID":38,"lad19cd":"E06000040","lad19nm":"Windsor and Maidenhead","lad19nmw":" ","bng_e":492079,"bng_n":176541,"long":-0.67541,"lat":51.480339,"GlobalID":"1234ad2e-cd01-4ac9-9722-28d9deaf60c7"}},{"type":"Feature","id":39,"geometry":{"type":"Polygon","coordinates":[[[476591.7036,183461.404100001],[477752.1959,185399.499299999],[480346.1004,183507.800799999],[479604.4984,181417.599099999],[482171.5982,179363.1972],[481375.7024,177106.903000001],[481928.6987,175506.5011],[481112.3964,174547.4956],[482238.3997,172239.7962],[483497.6019,172036.804300001],[484079.1013,168449.801100001],[483458.5038,168044.897],[484402.2005,164328.300799999],[482683.3032,164140.9045],[481058.9024,162174.0975],[478238.5968,162098.999],[475024.5978,163543.4955],[470645.1017,162796.499299999],[470683.4,163129.903899999],[470969.7015,164568.801999999],[468844.8998,166443.795299999],[469541.0962,170181.195499999],[471475.1979,168361.296399999],[472290.0986,168658.001499999],[473551.5022,170563.0962],[473398.2018,172436.300000001],[474563.1959,172341.097200001],[473102.2041,173916.2963],[474996.9027,174880.2004],[476883.0016,178101.998199999],[478509.1008,178903.998600001],[477902.0005,181103.399],[476379.8962,182545.8961],[476591.7036,183461.404100001]]]},"properties":{"OBJECTID":39,"lad19cd":"E06000041","lad19nm":"Wokingham","lad19nmw":" ","bng_e":476624,"bng_n":169902,"long":-0.89935,"lat":51.422958,"GlobalID":"a4e07713-1f83-439e-9ef3-ab37328cf707"}},{"type":"Feature","id":40,"geometry":{"type":"Polygon","coordinates":[[[488587.7975,255602.6039],[491131.704,256034.000399999],[493941.1013,254585.705],[493776.4969,251620.8037],[493089.3041,251368.4959],[493482.1977,249871.804300001],[495423.7035,249309.495300001],[496530.3968,246752.0973],[491372.402,239759.5989],[493174.2035,238517.104499999],[493396.9026,237054.5032],[492665.7965,236420.104800001],[493199.4993,235581.005000001],[491972.2962,234321.295600001],[493128.196,231282.295499999],[492633.0966,230939.4036],[488461.6976,233153.5998],[488428.2968,231824.700200001],[486627.897,230902.304300001],[485113.1969,232622.5019],[482252.3008,232570.696699999],[481094.4964,235529.0998],[477511.3,238583.195599999],[478787.8004,239766.096999999],[478068.4023,240892.704500001],[479652.1961,241239.6952],[480191.7034,242151.6042],[479109.0032,244310.496200001],[477530.9974,245234.501700001],[477379.2966,246535.499299999],[476309.2031,246792.195800001],[476719.502,248147.097999999],[480303.2014,248902.2018],[480025.9035,250129.600500001],[481254.6979,250014.803400001],[481669.8037,251635.499399999],[482740.3013,251024.704299999],[483673.502,252976.4956],[485608.4035,252803.0952],[488587.7975,255602.6039]]]},"properties":{"OBJECTID":40,"lad19cd":"E06000042","lad19nm":"Milton Keynes","lad19nmw":" ","bng_e":486408,"bng_n":242308,"long":-0.7407,"lat":52.072411,"GlobalID":"07fe222b-bfa7-42e7-8814-6b3944c8a01e"}},{"type":"Feature","id":41,"geometry":{"type":"Polygon","coordinates":[[[523996.6,109075.196900001],[524849.9968,110241.0032],[527618.6965,109239],[527938.3988,111444.6986],[528898.6021,111918.302999999],[528964.8017,110627.102600001],[531277.7969,111339.898600001],[531282.4966,110391.0002],[532244.2995,109895.0022],[533939.5995,110440.9959],[534839.3005,109927.302999999],[535739.8014,106404.101500001],[538316.4984,106471.302200001],[537731.0991,104295.595000001],[539529.8993,104344.1011],[539862.3979,103579.100099999],[538319.7471,101780.125600001],[525737.5455,104633.1073],[523604.0031,108612.2994],[523996.6,109075.196900001]]]},"properties":{"OBJECTID":41,"lad19cd":"E06000043","lad19nm":"Brighton and Hove","lad19nmw":" ","bng_e":530279,"bng_n":106850,"long":-0.15079,"lat":50.8465,"GlobalID":"4c213862-6cee-4469-b4fb-c23783e3c3c2"}},{"type":"Feature","id":42,"geometry":{"type":"MultiPolygon","coordinates":[[[[463910.0049,102999.386700001],[463468.651,103403.137],[464580.8,103209.199999999],[465173.5,104571.949999999],[467404.9,104009.529999999],[467462.945,99430.466],[468357.035,100131.364],[468549.029,99316.2229999993],[464326.643,97958.4989999998],[462904.45,99365],[462699.379,101193.517999999],[464129.72,101451.91],[463876.9319,101752.5353],[464158.0523,102278.3957],[463910.0049,102999.386700001]]],[[[462326.0989,106902.0989],[466680.497,106764.6982],[468861.7032,106372.9004],[469055.4136,104844.0395],[468956.2476,104486.723200001],[468963.977,104432.7995],[468863.4642,104219.5987],[468852.7476,104190.5677],[468768.703,103443.189999999],[467957.247,104431.679],[465018.572,104604.647],[464281.2,103609.6],[463025.052,104644.229],[463267.412,105557.380000001],[462271.1268,105186.5886],[462326.0989,106902.0989]]],[[[464020.65,102122.5],[463398.181,101946.029999999],[463739.337,102733.824999999],[464020.65,102122.5]]]]},"properties":{"OBJECTID":42,"lad19cd":"E06000044","lad19nm":"Portsmouth","lad19nmw":" ","bng_e":465619,"bng_n":101352,"long":-1.07006,"lat":50.807999,"GlobalID":"f9fcf90e-308a-4fb7-8f24-a048624d6fe8"}},{"type":"Feature","id":43,"geometry":{"type":"Polygon","coordinates":[[[443658.5962,116637.4022],[445435.2997,115930.204600001],[445217.3992,114783.902799999],[446955.4004,113592.8037],[447774.5967,111495.1042],[444760.2506,109141.077299999],[443399.7,110411.25],[443348.95,111794.699999999],[444267.35,112707.1],[443947.3,112544.1],[443129,112116.35],[442778.9,109458.199999999],[442362.78,110738.029999999],[439283.1,112563.5],[438976.9,111737.4],[437585.41,112521.880000001],[436846.2504,114491.5734],[438763.5034,116864.6971],[440583.9964,116580.7984],[441807.0028,117579.602499999],[443658.5962,116637.4022]]]},"properties":{"OBJECTID":43,"lad19cd":"E06000045","lad19nm":"Southampton","lad19nmw":" ","bng_e":442303,"bng_n":113700,"long":-1.39952,"lat":50.9212,"GlobalID":"e30b8962-d71c-4a49-9e18-70564d31772d"}},{"type":"Feature","id":44,"geometry":{"type":"Polygon","coordinates":[[[448615.8,96641.3000000007],[449825.0124,96065.0961000007],[450702.75,92514.5700000003],[450033.5333,96357.9204999991],[451135.057,96550.9450000003],[453160.446,94966.9149999991],[453546.982,93488.6659999993],[454078.335,94021.1209999993],[455563.498,93454],[455437.0726,93219.9911000002],[455376.4898,93107.8546999991],[459759.08,92972.3340000007],[463013.726,91610.7239999995],[463939.563,88695.4489999991],[463451.98,89300.0299999993],[463079,88586.5],[464904.839,88714.8650000002],[465775.24,87952.0590000004],[463805.998,85421.9079999998],[461464.63,85100.1999999993],[459456.95,83640.6999999993],[457750.42,77819.9399999995],[449530.3,75313.4000000004],[443315.4,80980.8000000007],[439120.3,82828.3000000007],[436533.7,85360.1999999993],[429318.199,84910.7129999995],[432016.19,86611.8000000007],[433847.74,89833.8200000003],[435291.32,89805.0099999998],[434719.95,89690.8699999992],[435420.34,88821.3399999999],[435647.63,89154.3900000006],[435125.41,89675.6099999994],[437556.084,90126.4069999997],[440611.23,92056.1490000002],[441617.832,91805.2650000006],[440893.61,91826.1899999995],[441535.9,91165],[441450.49,90794.9900000002],[441544.2,89486.6999999993],[441615.99,90704.3900000006],[442619.32,90264.4499999993],[441879.007,91218.5399999991],[443520.51,91609.5199999996],[442158.21,92064.2799999993],[445729.71,93475.9499999993],[448615.8,96641.3000000007]]]},"properties":{"OBJECTID":44,"lad19cd":"E06000046","lad19nm":"Isle of Wight","lad19nmw":" ","bng_e":447183,"bng_n":85949,"long":-1.33366,"lat":50.671291,"GlobalID":"a8d4d5ae-4d24-41d7-a624-0395aaa2aeee"}},{"type":"Feature","id":45,"geometry":{"type":"Polygon","coordinates":[[[411575.3979,556785.3013],[413248.7991,556554.497400001],[414090.4961,557446.901900001],[414926.5041,556913.5046],[417008.0027,558240.104900001],[417736.3962,557154.4956],[419420.9034,557189.5956],[419869.2038,556473.1007],[420950.0984,557252.797499999],[420904.8,555976.9027],[422591.5993,555416.403200001],[422519.6035,553895.498500001],[426123.396,556440.5],[427053.7027,553747.5009],[428366.0032,554230.4026],[428216.5037,553526.1042],[430901.5985,553578.1993],[430949.8981,553570.7015],[431758.3016,553040.4033],[431943.0982,548600.204299999],[433401.3032,546209.398600001],[432839.5012,545053.7994],[437218.7995,545517.9965],[437816.6983,547802.502599999],[437250.7985,549558.5],[441979.4334,551953.352],[443719.2717,549405.2608],[443171.22,549458.356000001],[445003.8,541727.4],[448986.0254,536729.6745],[448290.1026,536324.7981],[447097.001,537152.0013],[444836.197,536055.495200001],[445116.8012,535009.9045],[443974.9015,533135.301000001],[442351.0037,533093.603],[443235.8966,532101.7969],[442166.2979,529897.9977],[442604.5971,528543.395500001],[440052.7012,527819.7026],[438017.8036,524761.3981],[435563.1994,524065.1973],[436388.0024,522354.1971],[435529.0979,521874.304500001],[434423.5011,522948.696900001],[430674.6038,522465.1953],[428617.7991,521969.1973],[429000.7987,520883.898],[427487.0961,520635.9989],[426369.5028,522285.096899999],[426954.9022,524003.1951],[425536.7022,523211.001800001],[425492.6983,524779.8028],[420606.6998,524780.8025],[420823.7016,521243.395099999],[419872.1968,521341.596999999],[418911.4988,519918.5043],[418897.3008,518698.603499999],[420069.5011,517931.903000001],[419162.9979,517140.999399999],[419709.2991,515678.2981],[418128.6962,516372.2994],[417372.6983,514748.6042],[414354.9977,515198.4954],[414594.5002,512401.2961],[413511.0002,509923.6953],[410495.0971,512580.3048],[409306.9013,512032.8016],[409225.5968,509620.0022],[403823.5976,506445.301000001],[402039.5973,506235.700999999],[400308.0025,507946.9011],[397199.6969,508869.497099999],[397299.5034,509805.599099999],[392540.0996,507436.8971],[389063.3964,506991.704600001],[389793.9995,508529.0045],[388941.9961,515253.5996],[387315.6991,515286.800100001],[386548.1993,517404.304],[380423.199,522376.8006],[379121.8975,526327.6997],[381516.4034,528412.6029],[381206.7024,529905.5955],[378990.496,530676.8048],[377420.1004,532376.1983],[377170.4977,533681.8046],[379118.7974,536896.904300001],[380030.2971,544057.604599999],[381924.7978,544854.896400001],[386019.1962,543073.6962],[387332.8983,545780.4014],[389204.5024,545427.602399999],[391121.0009,549681.004899999],[394801.2993,549269.1028],[397545.7009,550387.2027],[400036.5009,552765.202099999],[401366.9982,552600.1993],[403369.303,550907.9037],[404420.5978,551044.604599999],[405637.7996,548799.0973],[405619.1988,549414.701099999],[408438.9025,550680.5988],[409435.5985,555169.3039],[411575.3979,556785.3013]]]},"properties":{"OBJECTID":45,"lad19cd":"E06000047","lad19nm":"County Durham","lad19nmw":" ","bng_e":410381,"bng_n":532242,"long":-1.8405,"lat":54.685131,"GlobalID":"b3eedf88-adc9-4caa-a4fa-52c878918623"}},{"type":"Feature","id":46,"geometry":{"type":"Polygon","coordinates":[[[371724.8986,387929.695699999],[375091.0026,385450.895199999],[377481.6003,385664.404100001],[379198.6013,384549.203299999],[380330.4998,383560.7963],[380031.6988,382620.4954],[383030.3038,384895.7041],[384071.9024,384769.4003],[387753.6025,383989.103700001],[388048.2975,383029.7983],[387168.7968,382432.099300001],[389397.6017,381165.401900001],[390503.2974,382893.6972],[390032.3972,383480.099400001],[390846.3991,385612.698899999],[391898.6998,385013.3005],[393763.7986,385470.399599999],[395566.3008,384501.8969],[397398.6008,386357.795600001],[398030.7991,385931.897500001],[399645.7015,384185.897299999],[399464.6977,373737.1982],[401775.4008,370445.3005],[400747.1015,369548.0974],[400937.9994,368500.8971],[400083.5967,366292.699200001],[396988.4997,366172.503599999],[395402.3973,363841.900699999],[392604.7986,363508.7961],[390712.1036,365197.9026],[390641.196,362176.497400001],[389690.1035,362508.5024],[385953.4006,357646.1043],[383527.7036,354764.2992],[383138.0997,355224.7973],[380443.8034,353494.002800001],[378792.3012,353838.404200001],[376800.3027,351045.503699999],[374541.898,350654.3956],[374326.504,347720.395500001],[375242.7034,346425.995999999],[374394.8968,345675.2009],[374540.3974,344631.399700001],[370775.9993,343300.7006],[370908.8025,341438.2037],[367775.3,340267.4988],[365082.2981,342004.8015],[364516.9013,338994.1033],[362399.1986,340989.0023],[360701.2025,339937.6033],[359950.4979,340792.298599999],[360154.2004,342637.500399999],[357635.4991,344557.500800001],[354804.3018,343358.704],[353161.3992,344461.998199999],[355251.7035,349249.697699999],[353016.3026,351014.102600001],[351942.4988,349900.3015],[349647.7004,352706.598200001],[351093.1998,355204.1033],[352459.7032,355394.298800001],[352842.4967,358157.097999999],[355176.0963,357840.998500001],[355955.3041,359485.4977],[357188.6003,359218.903999999],[358279.6033,361704.3026],[360493.699,360979.800000001],[360211.7014,362580.6018],[361072.7991,362198.101299999],[361827.4036,363079.199100001],[363786.7022,361539.6997],[366685.8966,363118.3978],[368741.7036,361834.495300001],[370425.6996,362618.800799999],[370452.1003,363837.402000001],[369527.3013,364494.7039],[369600.3031,367377.798599999],[371326.8024,366849.999700001],[372934.9026,364184.1028],[373891.4039,364827.0987],[374808.4031,363943.001800001],[375455.5992,365154.494999999],[375207.3981,366563.1018],[372701.4025,367701.9958],[372441.6006,369216.9022],[373311.8008,369485.495300001],[373645.6021,370885.804400001],[375808.1003,369673.701400001],[376808.3004,372499.102600001],[375798.7009,372447.297499999],[373810.6023,374488.6031],[372454.9988,374670.4011],[371582.8033,373880.0973],[369884.2959,376491.799699999],[366899.3035,377107.803400001],[365972.7977,380611.9004],[367209.5981,383045.503799999],[365582.6992,382955.999399999],[365410.3032,383570.3035],[367700.3029,385779.6011],[370826.6982,385621.1965],[371724.8986,387929.695699999]]]},"properties":{"OBJECTID":46,"lad19cd":"E06000049","lad19nm":"Cheshire East","lad19nmw":" ","bng_e":380510,"bng_n":363462,"long":-2.29299,"lat":53.167931,"GlobalID":"5faf60e5-9d68-4466-b3ed-9a7fa0b49452"}},{"type":"Feature","id":47,"geometry":{"type":"Polygon","coordinates":[[[353161.3992,344461.998199999],[351298.6997,343127.000299999],[349080.2011,343500.0035],[348530.7008,344444.903100001],[346172.5968,343884.803400001],[343988.3977,344750.3956],[343473.8976,347039.2004],[342341.6034,347629.001599999],[342718.1965,349227.404100001],[341763.402,350140.602700001],[342504.501,351121.301999999],[341618.0003,351617.1],[342363.2961,351835.5975],[341030.4985,353379.5955],[341436.8975,354167.899900001],[339686.5041,355359.798699999],[341131.5994,358631.202299999],[339169.2996,357658.300799999],[335612.9986,359943.296700001],[334590.8007,361944.8038],[333553.7039,362356.7958],[336983.501,363539.997099999],[338584.7903,365405.293400001],[338592.4073,365488.9263],[336685.7965,368665.6],[331672.6015,372855.6006],[327891.6104,373707.426999999],[327869.9007,373720.307399999],[327674.0278,373840.767000001],[327650.046,373856.130000001],[327290.7522,374166.139799999],[327277.6496,374179.6361],[327214.1884,374242.6382],[327091.0012,374378.442199999],[327023.9248,374461.4527],[326616.659,375034.4682],[326256.5298,375568.8619],[327479.032,375107.991],[327703.863,375577.878],[326077.121,376108.089],[328249.602,376384.538000001],[326210.343,376277.846000001],[326560.6121,376510.510199999],[326844.459,376444.833000001],[327483.529,377123.551999999],[326603.9893,376539.3232],[326260.062,376674.466],[326970.675,377491.149],[326116.969,376751.214],[325417.06,377429.391000001],[326426.297,377754.135],[325235.9039,377513.153999999],[325550.7861,377803.7607],[325637.9798,377883.023],[325671.0014,377913.040899999],[325688.9294,377929.338099999],[325838.8916,378068.206800001],[327022.832,378002.445],[326163.6207,378366.749],[328536.7986,380475.2995],[331706.398,378355.496300001],[333947.0016,379365.2972],[335584.2976,378691.5001],[338219.8616,379429.442199999],[340803.8005,377331.2994],[340076.6026,378160.402100001],[343066.8967,377568.7015],[342945.9004,377001.104],[344139.9996,378303.101299999],[343698.7981,379221.498400001],[345725.3022,379111],[347521.901,377894.2983],[349968.3014,380020.899499999],[350927.8039,379109.7004],[351892.3029,379820.796800001],[353398.2963,378990.0046],[354451.3967,380052.8004],[357345.1988,378866.9998],[357116.8023,379436.4968],[358511.1988,379342.103800001],[358800.7983,380554.796700001],[359515.6039,379630.801200001],[360448.9036,380778.1028],[361050.2984,381545.5031],[362670.997,380858.899700001],[365582.6992,382955.999399999],[367209.5981,383045.503799999],[365972.7977,380611.9004],[366899.3035,377107.803400001],[369884.2959,376491.799699999],[371582.8033,373880.0973],[372454.9988,374670.4011],[373810.6023,374488.6031],[375798.7009,372447.297499999],[376808.3004,372499.102600001],[375808.1003,369673.701400001],[373645.6021,370885.804400001],[373311.8008,369485.495300001],[372441.6006,369216.9022],[372701.4025,367701.9958],[375207.3981,366563.1018],[375455.5992,365154.494999999],[374808.4031,363943.001800001],[373891.4039,364827.0987],[372934.9026,364184.1028],[371326.8024,366849.999700001],[369600.3031,367377.798599999],[369527.3013,364494.7039],[370452.1003,363837.402000001],[370425.6996,362618.800799999],[368741.7036,361834.495300001],[366685.8966,363118.3978],[363786.7022,361539.6997],[361827.4036,363079.199100001],[361072.7991,362198.101299999],[360211.7014,362580.6018],[360493.699,360979.800000001],[358279.6033,361704.3026],[357188.6003,359218.903999999],[355955.3041,359485.4977],[355176.0963,357840.998500001],[352842.4967,358157.097999999],[352459.7032,355394.298800001],[351093.1998,355204.1033],[349647.7004,352706.598200001],[351942.4988,349900.3015],[353016.3026,351014.102600001],[355251.7035,349249.697699999],[353161.3992,344461.998199999]]]},"properties":{"OBJECTID":47,"lad19cd":"E06000050","lad19nm":"Cheshire West and Chester","lad19nmw":" ","bng_e":353097,"bng_n":363145,"long":-2.70298,"lat":53.163361,"GlobalID":"6716b133-3f4a-4a6d-9419-3b7b18655be8"}},{"type":"Feature","id":48,"geometry":{"type":"Polygon","coordinates":[[[374540.3974,344631.399700001],[375339.0964,342507.797499999],[374599.399,342145.201300001],[374149.903,339605.8982],[372362.2006,340564.004000001],[372843.201,338954.2048],[371523.4965,339262.6964],[370722.7032,338555.5989],[368429.2983,334372.7962],[370068.4988,330817.9037],[370459.1004,331618.604499999],[374602.2024,332762.2972],[373571.6027,326638.200200001],[372043.6032,325577.3038],[368228.8031,324910.9046],[369324.2996,320830.4026],[368204.9996,320418.9004],[367067.4038,320710.297],[367928.1964,322529.496300001],[367299.7991,323186.3982],[366179.3035,322232.801200001],[364902.696,322503.003900001],[363844.4012,320970.9024],[364101.6965,321971.2961],[362893.3993,322916.6954],[360809.6003,323276.9023],[359776.4034,322433.603700001],[360145.6008,320081.097100001],[358205.2988,320061.002900001],[357424.5987,318184.200099999],[356703.4032,319024.2996],[355327.7972,318297.6976],[355512.701,315090.195699999],[359742.4008,313565.5022],[358026.3975,311442],[362523.5011,308297.700099999],[362995.803,306471.3029],[366133.898,303590.1976],[370433.2026,301953.596100001],[370541.6005,303347.3971],[371787.2973,304083.1965],[371756.502,307322.3993],[374674.2972,315839.101399999],[375926.6972,314900.0002],[378787.5026,315079.5988],[379252.4993,313720.297900001],[378148.5021,312010.8972],[378476.3999,310903.904100001],[379610.4998,309514.6017],[383349.701,309513.801999999],[383951.9038,307356.6994],[383342.4041,306575.503],[384220.0002,306482.899599999],[384339.8009,305574.7995],[382749.9965,301364.704600001],[381027.3971,300934.5977],[378172.0994,301734.0989],[378282.6987,299584.804099999],[379754.4998,299510.6953],[382343.0038,296834.501399999],[380944.0972,295097.398600001],[382707.1964,293800.4999],[381833.797,292568.102600001],[382392.301,291833.402899999],[380321.0015,290459.496200001],[378860.6033,287966],[380567.9988,284188.9011],[378903.6013,282217.395500001],[375384.7988,282444.600400001],[374723.0997,278280.9023],[377259.8989,276420.104900001],[375095.8012,276732.695499999],[373504.7023,276014.1011],[372160.5017,276647.299900001],[371845.5981,274546.9011],[367769.9984,274448.599300001],[366838.1004,273148.001599999],[367264.8977,270439.8967],[365123.103,270247.301899999],[365202.6018,271125.1006],[363367.3996,271920.302999999],[361786.302,270705.300799999],[361738.2992,268261.600299999],[360911.6989,268984.4034],[357958.1036,267827.5045],[357569.7035,269436.8039],[354719.5013,271787.900900001],[353121.1962,268944.504799999],[353751.4982,268428.8024],[351400.3036,268101.596100001],[347836.9036,271167.6984],[349103.3038,271019.800799999],[350190.3986,273303.596999999],[346129.302,273494.5024],[346145.9982,275543.3959],[345137.6025,275624.4027],[345281.9983,276995.600199999],[344415.3022,277336.602600001],[341916.9992,277838.898800001],[339627.5024,276717.199899999],[339293.899,275490.301100001],[337639.7996,276868.196699999],[337309.1973,275633.0002],[338762.2987,274738.396299999],[337036.6981,274729.5988],[336160.2975,274080.4047],[336535.3984,272851.1965],[335069.5007,272770.499600001],[333725.597,273405.3979],[329236.4003,272313.8003],[327847.0003,272769.300000001],[324494.6986,276040.703500001],[321529.1975,277257.7951],[319908.6967,279696.1972],[317162.003,281060.796499999],[316114.501,283442.9047],[318779.6016,287123.6011],[319932.2034,286876.002],[324674.9027,289582.1973],[330232.4037,289759.396600001],[330052.4964,292261.100500001],[331980.3979,291800.202400001],[332689.9019,295470.401799999],[331364.6979,298001.5973],[326374.3005,295385.7961],[326472.4992,293512.0024],[323228.1006,292779.5021],[322969.6014,293515.001599999],[324715.0974,294302.0963],[322893.7963,299265.4955],[324390.2007,299246.900800001],[326300.4989,300746.7015],[326041.8019,301844.5973],[327457.9983,304006.5984],[328366.9998,304188.7962],[326776.0988,305388.6028],[328981.9,306031.5987],[329874.6999,309134.7005],[329327.904,310910.802100001],[331012.304,312600.1985],[331185.2029,314648.702099999],[332515.0983,314093.0012],[334075.5998,314774.2962],[334024.1012,313525.103700001],[335175.6971,313632.902899999],[334930.0025,315394.298699999],[333159.5983,315590.8024],[333129.3966,316696.8958],[331129.4993,317635.497199999],[331883.6008,318361.6993],[331465.4031,319380.0978],[330252.2001,318990.699200001],[330000.5031,319705.5046],[329079.9997,319528.495300001],[329409.596,319963.500800001],[327267.3973,319869.5977],[326472.2023,321567.1018],[326827.8036,322555.298900001],[324672.7013,321252.0019],[321823.6039,322650.401699999],[322359.401,323823.7958],[321349.0017,323946.9005],[321391.9997,325274.500499999],[322554.0009,327848.003900001],[321771.1983,328408.703400001],[324182.7962,330552.399700001],[322540.7016,331874.101399999],[323688.4966,332552.997099999],[322891.6032,333139.2992],[325141.3011,333527.698100001],[326427.9016,337547.1975],[327726.5977,336993.1961],[330518.4001,337397.4004],[332269.6016,340345.0966],[334130.0997,340652.898499999],[334614.5959,341735.0987],[335609.9974,339739.5999],[337669.6961,338322.795499999],[340474.8968,339828.304500001],[340728.3005,339169.802999999],[343580.3991,338688.8007],[346355.901,333443.202299999],[349317.5022,336623.0021],[351125.8008,336679.2959],[351448.1002,340216.103499999],[350715.9965,341650.302999999],[351298.6997,343127.000299999],[353161.3992,344461.998199999],[354804.3018,343358.704],[357635.4991,344557.500800001],[360154.2004,342637.500399999],[359950.4979,340792.298599999],[360701.2025,339937.6033],[362399.1986,340989.0023],[364516.9013,338994.1033],[365082.2981,342004.8015],[367775.3,340267.4988],[370908.8025,341438.2037],[370775.9993,343300.7006],[374540.3974,344631.399700001]]]},"properties":{"OBJECTID":48,"lad19cd":"E06000051","lad19nm":"Shropshire","lad19nmw":" ","bng_e":350227,"bng_n":302960,"long":-2.73667,"lat":52.62212,"GlobalID":"fc1ef04b-a2eb-4b28-9a3e-23f0f56d083e"}},{"type":"Feature","id":49,"geometry":{"type":"Polygon","coordinates":[[[234998.8202,85587.6272999998],[235649.1028,84586.1967999991],[237422.3021,84098.1963999998],[236457.2012,78812.9992999993],[236764.9976,77969.6007000003],[237886.598,78521.6027000006],[238223.3015,77526.2975999992],[238275.8968,78606.6984000001],[239309.2998,78294.8976000007],[238672.5007,76863.1973999999],[240026.0017,74225.9024],[239127.2983,73222.6995000001],[240826.6961,73987.4005999994],[241888.3961,72519.3008999992],[243667.5978,72749.2949999999],[243637.9948,71370.7397000007],[243628.5275,70929.8644999992],[243878.07,69338.9199999999],[245128.79,69879.6999999993],[245418.32,69090.6400000006],[244015.2,68164.5],[242603.75,68916.2599999998],[241858.0361,68077.1411000006],[242640.37,66331.2899999991],[240387.95,65386.4100000001],[241755.25,64065.25],[242697.45,65085.6199999992],[243891.58,61989.9000000004],[242249.35,60848.4499999993],[241153.73,62306.5500000007],[242122.21,60379.0500000007],[243125.27,60733.7599999998],[242899.37,57834.4000000004],[241782.96,57197.0399999991],[241377.78,57238.1199999992],[241527.22,56885.9800000004],[243549.8,56597.6500000004],[243025.2,56310.9000000004],[244023.7,54744.5999999996],[242986.4981,54449.9031000007],[243817.5,53382.6999999993],[243028.95,51997.7300000004],[245622.4,53255.9299999997],[245674.83,51494.0099999998],[243434.161,50424.0209999997],[244300.48,48713.6300000008],[241742.24,48097.7899999991],[242107.92,49543.5700000003],[241450.97,50553.3699999992],[235926.82,53825.8900000006],[228677.51,54361.9499999993],[226791.87,54075.4499999993],[225722.21,52986.3200000003],[225745.4,52681.6999999993],[224121.21,51068.25],[222369.52,51592.2100000009],[222037.55,50850.5399999991],[219369.65,50172.4900000002],[216589.99,51252.9000000004],[215138.56,50336.9100000001],[214572.09,50921.5299999993],[212667.2,50474.1999999993],[212307.4021,51100.0364999995],[214451.79,51925.6999999993],[212956.9,51603.5999999996],[212645.51,51658.5],[210210.27,50421.3399999999],[209822.3,49410.9000000004],[208973.5,50136.8000000007],[208755.8,53253.3599999994],[203892.3,51541.25],[203133.52,50429.3599999994],[204057.7,47910.0700000003],[203247.2,48153.1999999993],[201986.23,47055.0800000001],[201489.06,44776.5500000007],[201551.92,43912.1799999997],[202863.16,43293.6699999999],[201494.4,42112.5],[201790.15,41192.9000000004],[200523.64,40437.6400000006],[200461.94,39250.5099999998],[199056.43,40648.0700000003],[195970.983,41259.4250000007],[191946.983,37065.1630000006],[190761.9,38240.7280000001],[189162,37840.8000000007],[187822.65,35969.5600000005],[187075,32231.3900000006],[185044.88,30920.1199999992],[184505.05,32034.4100000001],[185491.47,32160.9600000009],[185919.7,33379.9600000009],[185467.75,32887.9700000007],[184059.18,32699.2400000002],[184935.7,36622.8499999996],[184095.63,35737.7400000002],[183535.21,38176.5500000007],[184110.39,38158.0800000001],[184020.5,38824.6999999993],[183279.15,39160.8499999996],[182948.54,38243.0099999998],[182613.52,38782.9199999999],[182883.89,38135.4499999993],[181764.32,37060.4199999999],[181459.34,37400.5700000003],[182035.01,35611.1600000001],[180414.82,36111.3000000007],[182666.27,35048.4499999993],[181999.32,33601.9700000007],[178566.9,34575.9499999993],[181249.35,32444.3000000007],[182285.15,32871.1400000006],[182756.3,31520.0999999996],[181838.45,32051.3499999996],[180269.05,31246.5500000007],[180486.4,30538.3000000007],[178976.55,29695.5899999999],[179752.14,27806.7259999998],[178443.91,26787.0669999998],[175520.799,26954.6799999997],[176283.742,28040.1260000002],[175749.778,28232.9360000007],[175280.44,26822.0800000001],[173873.116,26642.1750000007],[173824.492,28411.807],[173461.51,26999.8900000006],[174145.635,26302.3939999994],[174454.099,26223.5360000003],[174930.615,25329.6850000005],[174732.086,26319.1160000004],[175438.075,26546.9230000004],[175810.24,25964.3100000005],[178070.416,26206.7359999996],[178851.042,25475.0470000003],[177043.15,24900.0700000003],[180055.5,25142.5500000007],[179721.38,23287.0099999998],[180564.6,23122.1999999993],[181206.58,21442.8499999996],[180336.8,19511],[178294.56,18621.8800000008],[178649.63,17420.8300000001],[177869.8,16176.5],[176368.62,16794.8000000007],[173187.99,16319.9499999993],[171460.1,13064.3000000007],[171616.24,11844.5800000001],[169446.09,11553.2400000002],[169241.96,12888.6300000008],[167380.4,13433.0999999996],[167550.6,14371],[165891.3748,16734.2690999992],[166876.344,18578.443],[166519.557,20005.3059999999],[165248.19,20904.0800000001],[165363.8,22515.3000000007],[162866.77,25838.7200000007],[161268.9,26661.6600000001],[159532.45,26408.0600000005],[157561.3,28113],[154840.79,27502.8000000007],[154899.19,28452.4000000004],[151100.115,31089.875],[147778.25,30818.3499999996],[147662.3,29771.6999999993],[146311.28,28968.4900000002],[147365.4,26916.4900000002],[146635.52,24952.2899999991],[144022.2831,22978.7032999992],[141025.19,23065.6300000008],[139735.4,21877.4000000004],[138888.86,22346.1699999999],[137072.7,21413.0999999996],[136264.2982,21806.8052999992],[135785,23633.75],[134515.13,24153.3300000001],[134116.5892,25378.0464999992],[136269.87,27652.2100000009],[134930.91,31848.4000000004],[137795.9,36039],[140944.4,36050.3000000007],[143109.97,38798.3599999994],[143784.99,38244.8499999996],[147646.585,41132.7129999995],[150551.418,41399.8959999997],[152155.459,41217.0399999991],[152527.214,39078.6620000005],[154803.252,38266.7780000009],[155026.215,38279.307],[158046.972,41688.0059999991],[158006.592,43354.1640000008],[159247.234,43693.7369999997],[159900.658,42783.6219999995],[163047.156,43544.3489999995],[164633.72,45418.6679999996],[165668.82,45296.8399999999],[166439.985,46629.8210000005],[169035.425,48025.4719999991],[169756.133,51490.4179999996],[172263.069,51590.9609999992],[173719.867,53777.2219999991],[175713.91,54338.4000000004],[176374.576,57554.1989999991],[175646.169,59179.8540000003],[176644.85,59061.6600000001],[176466.253,60899.8839999996],[178014.636,61594.4030000009],[179681.782,61629.9499999993],[179932.378,63045.2880000006],[181463.095,61859.6870000008],[183124.749,62891.7770000007],[183980.288,64694.2090000007],[184173,67127.5],[184942.017,67481.8399999999],[184412.287,68223.6919999998],[184850.34,70388.5899999999],[184019.68,70883.5600000005],[185683.017,72028.6300000008],[185292.1233,73510.4921000004],[185863.52,74005.3599999994],[184983.85,76605.5199999996],[188681.13,75636.25],[189585.63,77333.5299999993],[191544.864,78521.0299999993],[191172.43,77134.5150000006],[192164.58,76251.6909999996],[192379.13,74129.5500000007],[192821.953,74242.5779999997],[192767.581,75815.7829999998],[192494.086,78000.5580000002],[193650.141,79187.1760000009],[192312.9,80466.6999999993],[193529.4,81266.3000000007],[194219.5,80125.5999999996],[195842.14,79816.9800000004],[197123.9683,80509.8351000007],[196977.3,81227.5999999996],[198451.4,81552.5999999996],[199620.48,80765.75],[202208.5,81328.1999999993],[204133.59,83961.3200000003],[205088.9,87318.6999999993],[204537.9,87563.1999999993],[204753.3,89220.5999999996],[206356,89929.5],[206838.2,89330.4000000004],[207524.72,90703.1699999999],[210808.78,91911.4700000007],[210774.03,92845.5600000005],[212702.24,94100],[212845.6,96718.8000000007],[214215.5,96794.8000000007],[214241.2,97698.5999999996],[219491.21,101103.42],[219903.7,106368.619999999],[220754.03,106471.890000001],[220115.56,107262.9],[219402.97,114732.939999999],[221174.0748,117412.7424],[227500.3028,117253.3959],[226977.6978,115559.0009],[229737.5012,110191.497300001],[228841.9968,110157.1971],[228170.1946,108114.052100001],[227706.9031,103818.205600001],[224358.8026,102225.897500001],[227303.8972,101319.4969],[229156.915,98909.3808999993],[230222.684,98637.1978999991],[229864.6388,99982.1037000008],[231352.7004,100362.500800001],[232202.1973,99476.9043000005],[231843.1795,96952.2551000006],[233391.6208,93676.9257999994],[232785.8109,91868.1821999997],[234181.0037,90398.8028999995],[234998.8202,85587.6272999998]]]},"properties":{"OBJECTID":49,"lad19cd":"E06000052","lad19nm":"Cornwall","lad19nmw":" ","bng_e":212497,"bng_n":64493,"long":-4.64254,"lat":50.450218,"GlobalID":"2949e219-e43d-46ed-9200-b46b5c0bdd36"}},{"type":"Feature","id":50,"geometry":{"type":"MultiPolygon","coordinates":[[[[91728.7001999998,12925.2994999997],[93216.7028000001,11933.0034999996],[93223.0021000002,11130.4032000005],[92271.3982999995,9909.10280000046],[91191.9961999999,10139.5968999993],[91068.5016000001,9192.89780000038],[90494.2991000004,10370.0009000003],[89765.3037999999,9800.30399999954],[89430.3975999998,10357.4045000002],[90787.5016999999,10729.8979000002],[90515.8021999998,11963.2049000002],[91728.7001999998,12925.2994999997]]],[[[92396.8964,17707.4005999994],[92563.4961000001,16152.9955000002],[94490.2019999996,15671.6032999996],[92812.398,15024.5985000003],[91440.5022999998,15970.3978000004],[92396.8964,17707.4005999994]]],[[[88295.3000999996,16593.8992999997],[90299.6002000002,14851.0982000008],[89268.0028999997,13332.8027999997],[88295.3000999996,16593.8992999997]]],[[[87552.9972000001,16536.9956],[88242.8037999999,15229.7997999992],[87867.9007999999,14013.2980000004],[86999.8031000001,14851.1982000005],[87552.9972000001,16536.9956]]],[[[87804.7024999997,8861.40269999951],[89294.1974999998,8363.29529999942],[89158.7971000001,7706.20340000093],[88539.4034000002,8272.40130000003],[88258.0983999996,7054.10009999946],[87443.0987999998,7766.59610000066],[87804.7024999997,8861.40269999951]]]]},"properties":{"OBJECTID":50,"lad19cd":"E06000053","lad19nm":"Isles of Scilly","lad19nmw":" ","bng_e":91327,"bng_n":11447,"long":-6.30217,"lat":49.923321,"GlobalID":"78fa1568-7724-4333-8e4b-a8827fd77ae3"}},{"type":"Feature","id":51,"geometry":{"type":"Polygon","coordinates":[[[381208.9039,186560.397],[383111.9959,186978.397299999],[383341.1014,188167.397],[385730.5036,189416.0995],[385788.6973,188587.196799999],[386933.4003,188200.7974],[387664.3002,189037.797800001],[389528.8961,187954.298],[396142.4987,197075.797],[399017.4031,194635.5955],[400420.8032,194729.7985],[401665.1973,193253.901000001],[403520.5009,193129.296700001],[402651.6034,195541.496200001],[404102.998,196850.4015],[405567.5022,195386.7005],[408633.4035,194762.7991],[407078.4014,197884.5955],[408815.2978,198210.202299999],[410438.9977,195287.698799999],[412832.9017,196045.002],[412323.8021,197204.800100001],[413091.7966,200505.5952],[414715.2986,196490.204600001],[413992.9983,195987.998400001],[414728.5979,192676.7962],[412012.9963,191848.0034],[411015.4016,190426.000499999],[411742.7974,188666.903999999],[411350.0027,187610.896299999],[412309.398,187053.3959],[410965.1975,186655.4998],[410827.6039,184771.099199999],[409792.9971,185161.0975],[409446.3005,184531.797700001],[410546.1999,183835.297],[410232.5001,183055.3003],[411887.0035,179626.501800001],[411409.6969,179120.896500001],[410718.497,180611.6998],[411369.7991,178001.397],[413043.2991,178695.3983],[414136.6025,176185.296800001],[415766.7005,175968.5988],[419832.9008,176642.096100001],[419595.4019,178011.604],[427655.3036,180005.103399999],[428907.2997,180748.000800001],[429094.5038,177323.501],[433175.504,172162.1984],[433010.0998,169541.998400001],[430334.1982,169315.5033],[429925.8038,168593.9998],[431185.7976,167986.103800001],[431013.6984,166376.9044],[435218.4982,163521.401799999],[434869.5012,162029.098999999],[435913.4991,161081.5002],[435050.8019,159039.504699999],[433009.3,160036.8992],[432603.2967,157560.598099999],[433597.2965,155311.002],[433373.8966,154321.895099999],[431998.8018,153667.3025],[432157.5027,151397.6022],[432903.7962,151366.801000001],[432478.5984,150031.303300001],[431844.0997,149645.7037],[429570.4994,150803.5023],[427493.2964,150473.796700001],[425690.2994,146543.8016],[421769.5997,146226.802300001],[421467.0967,145026.196],[423238.5975,143557.996300001],[422997.8005,142196.9959],[424290.2963,139727.2028],[423680.4998,136489.1997],[426256.1003,135405.799799999],[425495.6995,132602.5022],[426174.6968,131031.801899999],[425690.1016,126864.504699999],[425874.1973,126000.1022],[428192.1973,125005.696799999],[428345.003,123452.2015],[426137.8991,122248.3961],[426795.6983,120468.4956],[427971.9964,119977.0962],[426802.0965,117751.803200001],[425733.1985,117821.5033],[423865.5025,116259.700300001],[419780.5035,119745.9024],[417338.0031,119860.7995],[414110.6965,121352.602499999],[413051.8987,120741.297499999],[411614.8011,123351.2004],[410383.3023,122821.202099999],[408941.6039,120567.8971],[408902.4975,123002.100299999],[408043.5023,122244.1973],[405157.2033,122036.9966],[403610.2979,120324.596799999],[403126.5024,121160.497500001],[401134.0999,120595.3992],[400514.599,119591.396600001],[397528.9964,119197.0995],[395297.2975,116865.297],[392944.6023,116177.603800001],[391621.3029,118020.496300001],[391687.9972,119872.0963],[387987.1026,122424.095799999],[386549.2959,126502.2984],[383121.4035,130234.100199999],[381274.5016,129969.4959],[377269.8012,131201.703199999],[374712.7027,133654.5011],[374582.2988,135574.101600001],[375984.2972,136212.299000001],[375863.8039,136861.5031],[379238.2023,141842.997199999],[382974.4023,150552.5041],[382419.0974,154553.3989],[381601.8964,155266.4048],[380525.0997,154963.8014],[380226.1008,156743.7019],[381142.1024,157273.700200001],[381066.1983,158233.195499999],[379952.6039,158503.598099999],[379131.503,159391.1041],[379450.4962,160439.604],[376113.5963,160776.897399999],[379765.5977,163430.897700001],[379447.6021,166247.8014],[380490.5034,166503.9981],[379864.7033,167449.997300001],[380725.9989,168577.704500001],[379613.8968,170018.901900001],[380286.298,173246.2981],[379548.901,173332.103499999],[379927.9017,176451.400599999],[378473.1019,176537.695900001],[377582.2972,177668.902100001],[382587.1977,180914.903000001],[381611.8977,181962.5031],[382055.3995,185702.102700001],[381208.9039,186560.397]]]},"properties":{"OBJECTID":51,"lad19cd":"E06000054","lad19nm":"Wiltshire","lad19nmw":" ","bng_e":405209,"bng_n":158863,"long":-1.92661,"lat":51.328831,"GlobalID":"f989d61c-c603-4161-add8-b68944aa2849"}},{"type":"Feature","id":52,"geometry":{"type":"Polygon","coordinates":[[[504689.396,270534.999500001],[506705.0001,269634.2973],[506770.1031,267653.5043],[507752.7,266371.9012],[510953.1029,265944.4036],[511163.8962,265173.6042],[510476.2004,264894.0042],[511114.7968,260665.704600001],[513399.1982,260455.9046],[513202.8008,261700.6983],[513761.4037,261825.602600001],[516637.8005,261629.298800001],[517164.899,261281.2984],[516506.3,258284.5962],[518860.8998,258271.4999],[520357.0981,256118.2963],[519753.304,255455.7959],[517047.2997,256120.5956],[515957.4015,253272.300899999],[514887.2009,253606.895099999],[513257.1028,251030.502599999],[512245.7966,250806.796700001],[513431.0983,247694.397600001],[510988.903,245136.6997],[510785.4973,243141.500800001],[509554.7983,242407.6009],[507008.7976,241701.403000001],[504819.9977,244395.901799999],[502920.3027,242971.7994],[502362.3017,240621.302200001],[500077.6035,243588.3029],[496738.6011,245288.2963],[497131.099,246080.2996],[496530.3968,246752.0973],[495423.7035,249309.495300001],[493482.1977,249871.804300001],[493089.3041,251368.4959],[493776.4969,251620.8037],[493941.1013,254585.705],[491131.704,256034.000399999],[493169.7017,259663.701400001],[491970.2019,264199.802999999],[494883.0996,265501.9002],[496554.0024,264792.5033],[498005.0013,262666.6018],[499618.3041,262988.5997],[500321.8964,264597.199200001],[499542.6969,266755.601399999],[501390.2997,269547.5022],[500989.5979,269872.599099999],[504689.396,270534.999500001]]]},"properties":{"OBJECTID":52,"lad19cd":"E06000055","lad19nm":"Bedford","lad19nmw":" ","bng_e":505721,"bng_n":256463,"long":-0.45463,"lat":52.196281,"GlobalID":"d21e18e2-c257-4b78-b562-ae8b30d81aad"}},{"type":"Feature","id":53,"geometry":{"type":"Polygon","coordinates":[[[496530.3968,246752.0973],[497131.099,246080.2996],[496738.6011,245288.2963],[500077.6035,243588.3029],[502362.3017,240621.302200001],[502920.3027,242971.7994],[504819.9977,244395.901799999],[507008.7976,241701.403000001],[509554.7983,242407.6009],[510785.4973,243141.500800001],[510988.903,245136.6997],[513431.0983,247694.397600001],[512245.7966,250806.796700001],[513257.1028,251030.502599999],[514887.2009,253606.895099999],[515957.4015,253272.300899999],[517047.2997,256120.5956],[519753.304,255455.7959],[519028.8022,254551.504699999],[522090.3006,252659.996200001],[520884.6995,251071.6009],[525228.2967,250597.796499999],[526390.1989,251173.1018],[527085.7028,250500.4044],[526369.9985,244065.896199999],[525375.8997,241777.601199999],[523836.8024,241984.502],[522226.5997,239087.801200001],[523551.4986,236125.199200001],[520641.6021,234852.103599999],[520410.8971,233294.999399999],[518870.4971,232650.8038],[518003.1991,235071.8007],[517062.9983,235119.597100001],[516053.2009,232861.4035],[512230.7988,232957.7959],[513491.3038,231585.198799999],[513459.6015,230072.1019],[511843.1985,228944.3047],[511222.601,229380.899800001],[511388.6978,232293.1961],[510589.2979,232171.200999999],[509715.4038,227193.196],[511131.3034,225358.101299999],[508838.8961,224932.0032],[508626.6023,226415.7985],[507629.997,226615.201400001],[504231.5972,225990.9001],[504501.6972,224338.0033],[502891.5027,223505.601500001],[506419.3005,221540.2041],[508723.0035,218503.703299999],[510537.2963,220326.8015],[512340.5983,220092.498500001],[513353.1001,220771.7041],[514471.5014,218081.1043],[512849.5,217209.8037],[512188.7985,215762.398],[509990.7971,216979.7995],[508821.2022,218022.201099999],[507035.0004,217694.095100001],[505439.0039,218562.4965],[504902.3989,218264.901699999],[505409.5031,217422.3029],[503319.8996,216413.9015],[502698.7991,215188.302300001],[503336.703,214040.400900001],[502157.6015,212863.297900001],[499772.6022,215220.5031],[500465.0966,214990.099099999],[500864.7018,215764.997300001],[497615.3974,220030.1964],[495068.8031,221668.0975],[492871.2964,221772.0977],[491396.5023,223409.598999999],[490042.1026,223206.897],[489373.8981,224192.7049],[492633.0966,230939.4036],[493128.196,231282.295499999],[491972.2962,234321.295600001],[493199.4993,235581.005000001],[492665.7965,236420.104800001],[493396.9026,237054.5032],[493174.2035,238517.104499999],[491372.402,239759.5989],[496530.3968,246752.0973]]]},"properties":{"OBJECTID":53,"lad19cd":"E06000056","lad19nm":"Central Bedfordshire","lad19nmw":" ","bng_e":504615,"bng_n":234492,"long":-0.47754,"lat":51.999031,"GlobalID":"5a8b4b35-45a7-4e0e-8a1b-9bc642767999"}},{"type":"Feature","id":54,"geometry":{"type":"MultiPolygon","coordinates":[[[[391123.7043,649427.867000001],[391525.6025,649676.9014],[392668.302,649768.395199999],[392617.2981,649919.402000001],[393334.404,651900.205],[393658.6612,652067.282299999],[394722.9096,652158.036],[394698.7967,655530.9957],[397945.6078,657535.9723],[401096.0981,652379.942299999],[399832.83,652459.85],[403987.863,647387.482000001],[408231.985,645023.757999999],[408011.711,643390.834000001],[407293.82,643484.447000001],[408071.55,643262.550000001],[408174.376,641405.541999999],[410077.084,638841.869000001],[412164.212,637887.299000001],[413302.444,639680.301999999],[412995.974,640647.552999999],[413425.922,640374.375],[413262.635,639331.374],[415558.434,636673.747],[415480.38,636107.915999999],[413588.679,635965.251],[414567.016,634445.57],[416131.974,636181.957],[417570.43,635946.189999999],[422821.67,631698],[422034.07,630909.02],[422448.86,631221.92],[424149.9,628793.1],[422690.96,627151.15],[424681.59,625405.52],[424557.031,622622.691],[425930.17,622144.289999999],[425826.2,616349.4],[426968.8,615344.1],[426676.5,612618.5],[424703.116,610183.762],[424876.923,610071.741],[425992.607,606142.459000001],[426322.9,604741.1],[427316.4234,605072.2927],[428697.792,603200.284],[427384.634,599685.25],[427482.284,597585.161],[432002.719,588018.011],[431185.59,587806.16],[430351.82,585470.880000001],[429389.8205,585350.0266],[430291.17,585173.550000001],[432840.3183,580350.749700001],[431957.85,581617.9],[430571.35,583350.800000001],[430697.31,582823.039999999],[429853.65,582843.65],[428204.82,583679.310000001],[429810.65,582680.15],[427592.7,581919.5],[430211.6,582636.800000001],[431607.4136,581822.372300001],[432058.82,581234.8324],[433397.68,576155.359999999],[433853.8,576903.5],[434464.4188,575670.9153],[432521.3985,574737.602499999],[432819.9027,573352.399],[431494.303,572722.7993],[431383.2998,573499.796800001],[429975.0021,573394.497],[429488.6012,574219.400900001],[428396.9963,573387.399],[427243.603,573540.6951],[427017.5976,574369.697799999],[423225.7023,574536.300100001],[422592.3991,576160.0953],[418379.9974,574593.003900001],[419596.4984,572088.400900001],[416066.3013,569970.3971],[415670.3982,567658.9988],[414564.8015,567752.801899999],[414827.0005,565236.7664],[414828.6022,565221.396500001],[413859.6014,565567.6974],[412080.3007,564649.800100001],[410749.2016,562083.704700001],[411187.8966,559517.7991],[410278.2025,559459.9957],[409539.0987,558103.903899999],[411575.3979,556785.3013],[409435.5985,555169.3039],[408438.9025,550680.5988],[405619.1988,549414.701099999],[405637.7996,548799.0973],[404420.5978,551044.604599999],[403369.303,550907.9037],[401366.9982,552600.1993],[400036.5009,552765.202099999],[397545.7009,550387.2027],[394801.2993,549269.1028],[391121.0009,549681.004899999],[389204.5024,545427.602399999],[387332.8983,545780.4014],[386019.1962,543073.6962],[381924.7978,544854.896400001],[380030.2971,544057.604599999],[379054.1973,545655.2972],[377702.502,545856.1997],[375046.8997,548660.697000001],[373672.8026,551370.001399999],[372925.899,549839.2996],[370512.6026,548912.504899999],[368257.6031,546272.2007],[366424.0994,545809.802999999],[364220.7964,547016.797499999],[362682.1031,550272.3956],[363287.4968,551122.0024],[361257.7029,554570.6952],[363130.5025,555927.596799999],[363804.5033,558428.401000001],[365155.9018,559523.1976],[363732.4992,560834.802200001],[363694.3988,562783.304400001],[361965.3023,563367.3972],[361597.5973,564245.195900001],[363412.5001,566043.701099999],[363468.0966,569243.995100001],[369228.5003,571829.195],[367908.5979,574332.5985],[369067.3011,576551.703199999],[368021.3986,577484.496200001],[364213.3017,576701.500399999],[363823.401,578129.1017],[362229.103,579125.5965],[361905.5008,581296.2951],[358216.5038,582615.5975],[356937.8021,584781.997400001],[357136.203,587050.8979],[356180.3036,588517.3981],[357677.7963,592130.603800001],[359931.996,592345.3024],[360028.6034,594692.000600001],[361224.7968,594942.099099999],[358992.6032,596399.002],[360273.2014,596629.596000001],[361400.598,598959.799000001],[363691.8016,600458.0001],[364622.0011,602784.1043],[367084.8009,603343.1043],[369956.4979,606849.8005],[373788.7034,607290.704299999],[374764.0034,606094.096799999],[376070.4993,606192.298699999],[378704.4006,608184.398499999],[378155.9968,608840.400699999],[379187.8003,609745.8015],[378252.0023,611761.604499999],[378846.9,612748.602],[380262.9975,612584.099099999],[383607.3014,615480.0001],[385461.5992,614972.0955],[387771.7993,616763.602700001],[388206.0008,618712.8048],[389634.0041,619406.5962],[387371.8974,620178.895099999],[387293.5034,621767.700300001],[385645.497,623996.202400001],[384939.3982,629130.2028],[381891.0013,631888.6032],[381875.3027,634500.3956],[380191.2984,636364.702],[380665.8017,637299.4044],[378937.8018,637673.7972],[380853.3026,639320.595899999],[385346.1024,638635.1021],[384481.5995,639897.0009],[386356.0976,641215.9033],[386347.2012,642512.202299999],[389627.5977,645942.700300001],[388994.6986,647259.703299999],[390566.504,647687.300899999],[390723.6961,649180.003599999],[391123.7043,649427.867000001]]],[[[413989.038,643600.074999999],[414022.563,641587.591],[412500.127,641666.982999999],[411702.024,643201.566],[409230.584,643004.198000001],[409463.672,643898.942],[412636.784,644025.331],[413989.038,643600.074999999]]]]},"properties":{"OBJECTID":54,"lad19cd":"E06000057","lad19nm":"Northumberland","lad19nmw":" ","bng_e":395322,"bng_n":600699,"long":-2.07523,"lat":55.300369,"GlobalID":"34ffc1a7-7de8-4055-b234-451dbb651ae1"}},{"type":"Feature","id":55,"geometry":{"type":"Polygon","coordinates":[[[398154.0213,92182.1169000007],[399141.2027,93050.2039999999],[399438.7999,98113.8045000006],[400157.0025,98729.6982000005],[399681.7984,99040.8991],[403060.2039,98861.5004999992],[404383.6022,99907.8010000009],[404831.3007,97828.9960999992],[405770.3967,98273.9987000003],[406108.0979,97089.8976000007],[407586.2972,97839.6030000001],[409025.8024,95985.4037999995],[409636.5966,100794.7971],[411000.5028,101129.5013],[411804.8992,100067.6952],[413916.4016,99619.6034999993],[415223.9034,96152.2960000001],[417803.0987,97799.8044000007],[418506.5014,95998.1000999995],[418145.2028,94238.1039000005],[422541.9971,94743.6992000006],[421792.6646,93133.4229000006],[419541.585,92749.6699999999],[418283.5961,91577.3956000004],[417223.45,92411.1500000004],[416909.535,91525.1050000004],[416949.147,90959.9240000006],[418019.59,90684.75],[418484.921,91679.2660000008],[417836.1116,90190.477],[413919.829,91178.7339999992],[409494.549,90841.6669999994],[406255.953,89425.3540000003],[403849.6663,87001.7416999992],[404757.147,88837.0820000004],[403466.2,89390.5500000007],[403047.4,90666.0370000005],[400651.46,90340.7599999998],[401204.36,91076.1899999995],[400448.04,92250.0500000007],[400814.6,93071.6500000004],[399284.089,92407.9959999993],[400910.528,89762.1679999996],[397219.452,91048.6119999997],[398154.0213,92182.1169000007]]]},"properties":{"OBJECTID":55,"lad19cd":"E06000058","lad19nm":"Bournemouth, Christchurch and Poole","lad19nmw":" ","bng_e":410815,"bng_n":94066,"long":-1.84807,"lat":50.74609,"GlobalID":"7f23503d-135f-4b16-a7c7-ff7ffacb44a4"}},{"type":"Feature","id":56,"geometry":{"type":"MultiPolygon","coordinates":[[[[377269.8012,131201.703199999],[381274.5016,129969.4959],[383121.4035,130234.100199999],[386549.2959,126502.2984],[387987.1026,122424.095799999],[391687.9972,119872.0963],[391621.3029,118020.496300001],[392944.6023,116177.603800001],[395297.2975,116865.297],[397528.9964,119197.0995],[400514.599,119591.396600001],[401134.0999,120595.3992],[403126.5024,121160.497500001],[403222.4007,119874.5956],[405655.1967,118001.8017],[408978.2037,113093.296700001],[411210.4963,114704.9954],[413403.0971,114212.296399999],[412995.9972,111625.196900001],[410748.0968,110056.495999999],[410403.4037,107116.997400001],[412061.502,106210.197000001],[413671.0039,107108.399900001],[414003.4035,104845.997500001],[414840.4009,104108.998400001],[413941.7964,103442.099300001],[413349.801,101027.8004],[413916.4016,99619.6034999993],[411804.8992,100067.6952],[411000.5028,101129.5013],[409636.5966,100794.7971],[409025.8024,95985.4037999995],[407586.2972,97839.6030000001],[406108.0979,97089.8976000007],[405770.3967,98273.9987000003],[404831.3007,97828.9960999992],[404383.6022,99907.8010000009],[403060.2039,98861.5004999992],[399681.7984,99040.8991],[400157.0025,98729.6982000005],[399438.7999,98113.8045000006],[399141.2027,93050.2039999999],[398154.0213,92182.1169000007],[396297.9,92155.6999999993],[397144.514,91814.9230000004],[397079.025,90545.716],[395329.4,90608],[395018.903,89812.4008000009],[396023.1,89553.4000000004],[394889.303,89595.3049999997],[395075.184,88723.5920000002],[394480.2896,88340.9823000003],[394491.833,88297.3039999995],[394517.3154,87843.1679999996],[394521.552,87767.6649999991],[395447.093,87485.2050000001],[396250.113,88914.9900000002],[398253.838,89756.2569999993],[398790.267,89012.3739999998],[397640.693,89163.4309999999],[398349.492,87553.7829999998],[396352.958,86472.0250000004],[398318.773,87202.6420000009],[398214.492,86493.5700000003],[396765.33,85642.5700000003],[398047.829,86082.2929999996],[398183.453,85378.6390000004],[398566.78,86939.7469999995],[399289.068,87007.2019999996],[399354.775,85698.1640000008],[400110.142,86232.9399999995],[400570.388,85289.0439999998],[401627.888,86366.2620000001],[401260.547,85265.5700000003],[402350.742,84530.1789999995],[402148.034,85511.8819999993],[403641.803,86727.8920000009],[404256.544,85825.534],[403644.317,82941.7119999994],[405486.377,82493.6429999992],[403165.256,79739.227],[403211.07,78762.9829999991],[404062.926,78647.2620000001],[403541.3031,77188.2358999997],[398230.81,76587.2999000009],[396204.9,75197.5998999998],[395568.59,77091.9600000009],[391987.46,77712.8800000008],[390576.2,79225.1999999993],[389761.9,78762.9000000004],[388918.62,79541.4299999997],[386834.2,79486.25],[386054.14,80384.0600000005],[382786.21,79657.5775000006],[372172.8,81962],[370197.4,81902.4000000004],[369014.36,80964.8900000006],[368079.25,79475.0500000007],[368613.9827,78945.6301000006],[367569.05,78777.9000000004],[368626.001,78933.7312000003],[368860.6,78979.6999999993],[368181.25,78327.5500000007],[369492.78,77480.7100000009],[368226.7,78026.0999999996],[366792.5,76041.6999999993],[364915.7221,77628.4682],[365018.35,78248.3499999996],[363485.89,79924.3300000001],[362237.09,80005.6799999997],[360465.24,82312.4600000009],[356866.23,84000],[364899.7571,77532.0384],[366853.3,75959.1999999993],[367484.69,74687.5899999999],[369099.1482,74562.3818999995],[370197.5,74477.1999999993],[370470.1,71539.5999999996],[367712.3,68244.9000000004],[368200.7,73594.5],[362516.3,79285],[355045.6,85120.5],[344089.291,91244.2410000004],[335752.478,93083.3570000008],[333192.4183,91386.5562999994],[332829.499,92532.2021999992],[334136.3989,95381.3967000004],[332796.4033,96893.7038000003],[337605.7969,99847.3982999995],[337185.1009,100961.1995],[332374.0995,102220.2991],[332873.9976,102838.6021],[334603.597,105013.6995],[337708.3985,106050.002800001],[341738.6008,105788.4977],[342990.803,107415.0021],[344324.4993,106222.603399999],[346789.8963,107763.102399999],[349808.6028,107398.4968],[349828.1024,108204.496099999],[353628.1026,109944.198100001],[356753.896,109308.699999999],[357222.2979,110408.0953],[356218.2968,112230.603599999],[357643.3979,114315.8967],[356809.0967,115863.8036],[358073.5015,116742.302200001],[357734.4976,119833.397399999],[358268.4972,120384.5996],[358953.9998,119881.9035],[359762.4033,120968.102600001],[361049.4986,120162.1033],[361811.1031,120773.0984],[361681.903,122382.297700001],[363150.7029,121522.603800001],[364841.4022,121725.2958],[365668.0026,119377.197899999],[368049.0031,116756.4981],[368992.6998,117898.001399999],[368695.4983,118810.600099999],[370045.0004,119195.899800001],[370955.5025,117989.2952],[375907.0987,119992.901699999],[375187.6017,121336.497099999],[373641.8011,121331.298599999],[373339.1992,122907.297499999],[376959.1025,126940.302999999],[375574.0972,130000.097200001],[377269.8012,131201.703199999]]],[[[402549.492,88354.6459999997],[403186.765,88036.9890000001],[402809.607,87405.0989999995],[400940.748,88090.2760000005],[402549.492,88354.6459999997]]]]},"properties":{"OBJECTID":56,"lad19cd":"E06000059","lad19nm":"Dorset","lad19nmw":" ","bng_e":370871,"bng_n":99796,"long":-2.41467,"lat":50.79697,"GlobalID":"0e6546ef-3c87-41d3-8648-244937fc3b3d"}},{"type":"Feature","id":57,"geometry":{"type":"Polygon","coordinates":[[[460619.8989,235588.003],[459335.9038,236330.9003],[460312.3004,238890.397700001],[464396.5986,240897.903000001],[466753.103,241040.0024],[465733.6012,242136.1986],[466827.9022,242370.101600001],[470845.4979,241894.797700001],[471920.4972,243091.895],[475162.8015,236430.2019],[476237.1,237596.698000001],[477107.5971,237433.3048],[477511.3,238583.195599999],[481094.4964,235529.0998],[482252.3008,232570.696699999],[485113.1969,232622.5019],[486627.897,230902.304300001],[488428.2968,231824.700200001],[488461.6976,233153.5998],[492633.0966,230939.4036],[489373.8981,224192.7049],[490042.1026,223206.897],[491396.5023,223409.598999999],[492871.2964,221772.0977],[495068.8031,221668.0975],[497615.3974,220030.1964],[500864.7018,215764.997300001],[500465.0966,214990.099099999],[499772.6022,215220.5031],[499280.8997,215585.6986],[497872.3959,212979.5046],[494321.1987,214362.4987],[491969.196,213858.1031],[489970.6015,216637.397500001],[490155.1012,218413.3992],[488231.6026,218279.397500001],[486553.6008,216238.1018],[488073.1985,214007.500299999],[489057.4032,214332.5973],[490745.497,212098.3968],[490430.4038,211219.7983],[491631.8988,208586.302100001],[490198.2971,206435.9977],[488170.8036,206372.695800001],[489109.6027,203740.499199999],[487368.1963,203025.004000001],[485365.6029,206427.9],[484857.501,209103.6041],[483912.4027,208595.399499999],[482259.2019,209979.903200001],[480167.801,209444.396500001],[480480.396,208458.0988],[478596.2016,208225.4954],[479023.0979,207522.296700001],[477625.5023,206080.8993],[475714.6022,206465.599199999],[475170.9971,204816.3013],[473545.9038,206618.395400001],[470519.4964,207384.2962],[470082.9039,206421.8017],[467058.0961,207021.5001],[467035.2985,205580.4026],[465997.6988,205530.096999999],[463538.296,206828.295399999],[463340.0023,209491.403100001],[461743.4039,209595.4033],[460541.4966,210976.8978],[460430.6995,212458.3038],[461437.2978,213559.898499999],[459306.6998,215468.1022],[460606.8964,216668.498600001],[463601.8984,214916.000299999],[465745.301,216118.0962],[464715.699,216584.502699999],[464497.0977,219314.801100001],[463593.2988,220196.898600001],[464172.3989,221375.801200001],[462473.9988,222096.8048],[463415.7991,224698.800000001],[462905.0011,225295.699100001],[465072.9987,228139.0952],[463406.9027,227606.897600001],[462272.9017,229157.3038],[465097.0001,234201.199999999],[460619.8989,235588.003]]]},"properties":{"OBJECTID":57,"lad19cd":"E07000004","lad19nm":"Aylesbury Vale","lad19nmw":" ","bng_e":477330,"bng_n":223020,"long":-0.87746,"lat":51.900372,"GlobalID":"2bf0c91e-f15d-4de8-9e1d-30bdd70882eb"}},{"type":"Feature","id":58,"geometry":{"type":"Polygon","coordinates":[[[491631.8988,208586.302100001],[495853.4031,206323.5998],[497676.6005,206880.2005],[498620.6023,205111.296800001],[499582.1001,205272.7006],[500242.8015,203792.804300001],[499364.1006,202436.8024],[500723.4968,200788.0044],[500431.3991,199208.396500001],[502121.1007,199180.104599999],[503466.6039,198202.204500001],[502379.4019,197620.301100001],[502277.798,196544.8989],[501293.2965,196749.500399999],[501183.0023,194258.003599999],[502416.9005,190613.8967],[501035.1024,189131.401000001],[497953.7005,189023.301999999],[496465.4999,189734.398399999],[496111.2014,193533.7009],[494504.1978,193768.4037],[494064.4969,192012.296399999],[491824.3963,190721.7958],[491542.5966,192134.9013],[490848.2965,191899.898600001],[490574.0987,195953.498199999],[485943.4003,200199.6028],[485640.5015,201126.897399999],[486717.9991,201362.899800001],[487368.1963,203025.004000001],[489109.6027,203740.499199999],[488170.8036,206372.695800001],[490198.2971,206435.9977],[491631.8988,208586.302100001]]]},"properties":{"OBJECTID":58,"lad19cd":"E07000005","lad19nm":"Chiltern","lad19nmw":" ","bng_e":495432,"bng_n":198692,"long":-0.62112,"lat":51.678902,"GlobalID":"4b393083-77b0-4d7a-9000-98094d747e3f"}},{"type":"Feature","id":59,"geometry":{"type":"Polygon","coordinates":[[[491824.3963,190721.7958],[494064.4969,192012.296399999],[494504.1978,193768.4037],[496111.2014,193533.7009],[496465.4999,189734.398399999],[497953.7005,189023.301999999],[501035.1024,189131.401000001],[502416.9005,190613.8967],[503946.1037,190047.398800001],[505700.3971,185577.6983],[504439.8015,183254.903200001],[505366.9998,179778.6982],[504919.2023,178392.095100001],[502020.9974,178182.595100001],[502320.796,179981.000299999],[499421.2966,180119.7006],[498939.1007,182116.199100001],[499474.7988,182536.198899999],[497928.6025,181359.795600001],[495073.5028,183109.8047],[493055.2025,181910.098099999],[493149.897,179292.5974],[494342.7018,178838.997199999],[494938.0034,177932.796599999],[493685.6034,177143.3026],[490091.3009,179927.695599999],[490613.6008,185618.0967],[491715.2976,185800.5045],[492119.6024,186807.6962],[491824.3963,190721.7958]]]},"properties":{"OBJECTID":59,"lad19cd":"E07000006","lad19nm":"South Bucks","lad19nmw":" ","bng_e":498198,"bng_n":185455,"long":-0.58484,"lat":51.559441,"GlobalID":"fc3c5180-9fd0-4946-ad1b-f1ecd2b5ac61"}},{"type":"Feature","id":60,"geometry":{"type":"Polygon","coordinates":[[[475170.9971,204816.3013],[475714.6022,206465.599199999],[477625.5023,206080.8993],[479023.0979,207522.296700001],[478596.2016,208225.4954],[480480.396,208458.0988],[480167.801,209444.396500001],[482259.2019,209979.903200001],[483912.4027,208595.399499999],[484857.501,209103.6041],[485365.6029,206427.9],[487368.1963,203025.004000001],[486717.9991,201362.899800001],[485640.5015,201126.897399999],[485943.4003,200199.6028],[490574.0987,195953.498199999],[490848.2965,191899.898600001],[491542.5966,192134.9013],[491824.3963,190721.7958],[492119.6024,186807.6962],[491715.2976,185800.5045],[490613.6008,185618.0967],[489488.1994,185785.398800001],[489100.3023,187195.1953],[488311.9013,187273.2029],[486257.9989,185845.9015],[485000.0994,186022.501],[483785.8987,184297.604699999],[480346.1004,183507.800799999],[477752.1959,185399.499299999],[476591.7036,183461.404100001],[476238.7985,184704.498199999],[473656.3959,186330.002900001],[473430.2998,187930.704700001],[475111.5008,189537.704700001],[473298.1974,190078.5999],[473583.1962,191546.0998],[472777.2003,191936.9979],[472848.0996,193028.5955],[473828.998,193629.3035],[472688.9039,195181.599199999],[474311.804,195283.300100001],[474042.7017,196909.004699999],[475456.1031,197793.9014],[477710.4017,197218.896],[476300.7024,198089.096899999],[477537.7007,198604.499399999],[476489.4978,199885.3028],[476939.6039,202751.4024],[475170.9971,204816.3013]]]},"properties":{"OBJECTID":60,"lad19cd":"E07000007","lad19nm":"Wycombe","lad19nmw":" ","bng_e":482477,"bng_n":197052,"long":-0.80883,"lat":51.666199,"GlobalID":"0280510f-25f0-48b7-b90a-fe96e43cae9b"}},{"type":"Feature","id":61,"geometry":{"type":"Polygon","coordinates":[[[547969.6016,261792.702],[547274.6996,260884.202],[548739.2038,259898.904100001],[548202.203,258425.3959],[549270.697,257785.499],[549273.6982,254599.900900001],[547985.1023,254894.196699999],[547484.3962,254004.601299999],[546562.6973,254687.595799999],[543984.1039,253158.203600001],[543966.4018,256798.9014],[541419.8982,259558.501499999],[545538.702,261852.8048],[546763.4975,261236.201300001],[547268.4993,262079.799799999],[547969.6016,261792.702]]]},"properties":{"OBJECTID":61,"lad19cd":"E07000008","lad19nm":"Cambridge","lad19nmw":" ","bng_e":545420,"bng_n":257901,"long":0.126436,"lat":52.200169,"GlobalID":"393d3ae8-5834-4744-85a2-d01083150fe5"}},{"type":"Feature","id":62,"geometry":{"type":"Polygon","coordinates":[[[551873.3,292281.004799999],[552523.9738,291554.916200001],[552532.6048,291534.1503],[553239.6962,292370.699100001],[556807.4001,293141.1986],[560767.7998,291883.5986],[561773.1036,289508.0985],[565113.3015,286848.5998],[565236.7961,284823.5995],[561625.5995,281731.3046],[564037.1974,276449.996400001],[566460.0003,275112.599199999],[565288.204,272889.3956],[565825.6995,271416.597200001],[567612.5032,271524.2963],[570947.2017,268127.5986],[570585.2023,266813.104900001],[565560.2003,264733.000299999],[562592.3988,268797.596899999],[560959.1017,269220.195900001],[559771.2028,265858.098300001],[561262.7013,263873.0965],[560045.3016,263045.5034],[562052.8008,261353.297800001],[565424.3959,262927.0973],[564928.7029,263820.101600001],[565756.9028,264487.000700001],[569479.1026,262283.9014],[570450.4038,263049.4023],[571833.3974,261707.896299999],[570488.1002,254794.6951],[569086.2007,254541.4976],[567780.9993,255604.4034],[566719.3982,254042.4005],[565445.2972,253978.798699999],[563920.8019,253779.3958],[558855.3002,255937.9979],[552067.702,261609.304500001],[552337.9999,262161.396400001],[550995.102,263553.398],[551639.7998,265140.503699999],[551001.5002,265830.8961],[552982.4008,268254.9022],[553359.2991,271795.998600001],[550375.799,271029.797900001],[549832.4,271849.0034],[547885.3041,271040.3049],[547442.0001,271777.8038],[545943.9962,271332.801200001],[541945.7022,272801.400800001],[539318.8018,274710.890799999],[539778.8838,275338.234099999],[538552.4968,278358.5001],[539996.2977,279744.4034],[539078.5977,281976.804300001],[539881.0977,281588.795399999],[542014.2022,283356.2995],[543338.697,282901.899499999],[544646.0999,284333.499700001],[544522.4982,282450.398800001],[551873.3,292281.004799999]]]},"properties":{"OBJECTID":62,"lad19cd":"E07000009","lad19nm":"East Cambridgeshire","lad19nmw":" ","bng_e":555576,"bng_n":275765,"long":0.283149,"lat":52.35788,"GlobalID":"28582140-60ac-4f55-95bd-f23741a311bc"}},{"type":"Feature","id":63,"geometry":{"type":"Polygon","coordinates":[[[545970.0848,311508.6954],[547796.9995,311147.5043],[547812.797,308673.102600001],[546889.1028,308063.3971],[550326.7986,304981.7992],[548528.996,302383.0031],[550434.9985,299506.6965],[549592.8975,298698.297900001],[550396.5023,298169.099400001],[549567.4037,297482.695800001],[549619.6032,296732.3006],[550258.6037,296886.0966],[549542.0996,296452.1008],[550195.496,295666.8956],[549715.3036,295171.1975],[551413.8027,294562.1018],[549782.303,293590.799900001],[551873.3,292281.004799999],[544522.4982,282450.398800001],[544646.0999,284333.499700001],[543338.697,282901.899499999],[542014.2022,283356.2995],[539881.0977,281588.795399999],[539078.5977,281976.804300001],[539996.2977,279744.4034],[538552.4968,278358.5001],[537416.6984,281493.1028],[538376.2998,283167.703500001],[536606.8025,285964.8028],[533302.0996,287956.1028],[532556.8038,292120.0009],[531079.396,292745.901699999],[531029.9999,291523.9015],[529732.3015,290412.0998],[529225.6012,291010.0986],[528123.2036,289571.600400001],[522991.7002,295318.995200001],[522287.2009,296296.5954],[522976.2984,298283.796499999],[527194.1996,299301.295299999],[534698.4007,301468.404899999],[533246.0991,308906.795700001],[536804.2965,309378.7006],[538582.3027,311267.100099999],[538179.6964,314926.702500001],[539453.7974,316411.0976],[541179.9999,316042.203199999],[544097.1025,317872.599300001],[546682.8031,317829.501599999],[546739.9991,317793.402000001],[545882.0776,312598.342900001],[545970.0848,311508.6954]]]},"properties":{"OBJECTID":63,"lad19cd":"E07000010","lad19nm":"Fenland","lad19nmw":" ","bng_e":536361,"bng_n":294959,"long":0.009016,"lat":52.535439,"GlobalID":"ac43bdf4-9aba-43e4-a1f0-4297eb7991e0"}},{"type":"Feature","id":64,"geometry":{"type":"Polygon","coordinates":[[[507472.302,299057.904899999],[508718.0977,299559.001499999],[509528.9995,297817.899900001],[512042.0034,297561.0034],[513631.7996,296319.9987],[513154.6991,295603.003900001],[515933.4991,291254.798599999],[517524.7959,292843.503799999],[519182.1027,293125.5031],[519800.5977,295440.700300001],[520980.804,294830.494999999],[522131.5012,295670.604499999],[522991.7002,295318.995200001],[528123.2036,289571.600400001],[529225.6012,291010.0986],[529732.3015,290412.0998],[531029.9999,291523.9015],[531079.396,292745.901699999],[532556.8038,292120.0009],[533302.0996,287956.1028],[536606.8025,285964.8028],[538376.2998,283167.703500001],[537416.6984,281493.1028],[538552.4968,278358.5001],[539778.8838,275338.234099999],[539318.8018,274710.890799999],[538120.5,274492.1],[536947.9312,272702.353800001],[535424.502,270135.204],[533261.6988,270300.3967],[532562.3032,267732.6017],[530732.6995,265541.098999999],[529565.8007,266085.6031],[528336.6022,263790.800000001],[526795.1963,266628.297800001],[524564.8001,266240.4988],[524029.102,264063.402000001],[524510.696,262908.8025],[524755.5001,263525.695900001],[525890.103,263390.704600001],[527621.4009,262205.7038],[526522.2023,260250.9033],[523920.6959,260501.7015],[523401.1994,257784.099400001],[524769.0962,257013.300100001],[526304.4997,258692.599400001],[529371.8026,258202.5996],[529969.8994,255542.201199999],[527392.4026,255659.6975],[526199.9029,253709.795700001],[523914.1988,253870.299699999],[522090.3006,252659.996200001],[519028.8022,254551.504699999],[519753.304,255455.7959],[520357.0981,256118.2963],[518860.8998,258271.4999],[516506.3,258284.5962],[517164.899,261281.2984],[516637.8005,261629.298800001],[513761.4037,261825.602600001],[513202.8008,261700.6983],[513399.1982,260455.9046],[511114.7968,260665.704600001],[510476.2004,264894.0042],[511163.8962,265173.6042],[510953.1029,265944.4036],[507752.7,266371.9012],[506770.1031,267653.5043],[506705.0001,269634.2973],[504689.396,270534.999500001],[504563.799,272309.8015],[503427.8027,272505.6954],[503789.2991,273405.297900001],[502332.0011,274618.400699999],[502992.9004,276181.903100001],[502474.5994,276782.201300001],[506166.5976,277470.204299999],[507764.9027,280465.097100001],[511427.598,282987.1951],[510880.703,283686.9048],[512757.5016,286735.5022],[511489.8976,289256.7005],[511790.9001,291114.798599999],[507722.3994,293158.603599999],[508526.1032,294623.5043],[507235.0009,296851.4965],[508056.4975,297436.2991],[507472.302,299057.904899999]]]},"properties":{"OBJECTID":64,"lad19cd":"E07000011","lad19nm":"Huntingdonshire","lad19nmw":" ","bng_e":521008,"bng_n":274269,"long":-0.2247,"lat":52.353149,"GlobalID":"b69c0eff-d621-4e7d-8ec8-253715527ec6"}},{"type":"Feature","id":65,"geometry":{"type":"Polygon","coordinates":[[[536947.9312,272702.353800001],[538120.5,274492.1],[539318.8018,274710.890799999],[541945.7022,272801.400800001],[545943.9962,271332.801200001],[547442.0001,271777.8038],[547885.3041,271040.3049],[549832.4,271849.0034],[550375.799,271029.797900001],[553359.2991,271795.998600001],[552982.4008,268254.9022],[551001.5002,265830.8961],[551639.7998,265140.503699999],[550995.102,263553.398],[552337.9999,262161.396400001],[552067.702,261609.304500001],[558855.3002,255937.9979],[563920.8019,253779.3958],[565445.2972,253978.798699999],[565606.6035,251206.5022],[563704.8967,249263.7983],[563225.8009,247603.9035],[564153.9969,246884.8993],[564926.6004,243518.902799999],[563269.4997,241689.896299999],[564008.7025,240256.296700001],[560961.6,241632.002900001],[559420.1033,244150.1021],[556709.0036,246025.895199999],[556031.1029,246252.9002],[554396.8988,244437.399900001],[553233.7021,245761.001],[551046.4028,246103.1031],[549723.4992,243893.695499999],[550228.097,242463.9048],[548713.1989,241839.5035],[548655.3021,241079.900900001],[547592.2993,241567.101500001],[546034.7001,240905.800799999],[545372.597,242293.3036],[544457.0984,242299.901699999],[543656.6019,237979.7983],[542051.4039,236168.096899999],[539993.5026,241400.7991],[537520.8005,240938.601399999],[535877.1971,242422.9965],[528645.3963,237488.798900001],[528081.6979,240290.9968],[526595.5999,241012.9001],[527071.3976,242843.596100001],[526369.9985,244065.896199999],[527085.7028,250500.4044],[526390.1989,251173.1018],[525228.2967,250597.796499999],[520884.6995,251071.6009],[522090.3006,252659.996200001],[523914.1988,253870.299699999],[526199.9029,253709.795700001],[527392.4026,255659.6975],[529969.8994,255542.201199999],[529371.8026,258202.5996],[526304.4997,258692.599400001],[524769.0962,257013.300100001],[523401.1994,257784.099400001],[523920.6959,260501.7015],[526522.2023,260250.9033],[527621.4009,262205.7038],[525890.103,263390.704600001],[524755.5001,263525.695900001],[524510.696,262908.8025],[524029.102,264063.402000001],[524564.8001,266240.4988],[526795.1963,266628.297800001],[528336.6022,263790.800000001],[529565.8007,266085.6031],[530732.6995,265541.098999999],[532562.3032,267732.6017],[533261.6988,270300.3967],[535424.502,270135.204],[536947.9312,272702.353800001]],[[547969.6016,261792.702],[547268.4993,262079.799799999],[546763.4975,261236.201300001],[545538.702,261852.8048],[541419.8982,259558.501499999],[543966.4018,256798.9014],[543984.1039,253158.203600001],[546562.6973,254687.595799999],[547484.3962,254004.601299999],[547985.1023,254894.196699999],[549273.6982,254599.900900001],[549270.697,257785.499],[548202.203,258425.3959],[548739.2038,259898.904100001],[547274.6996,260884.202],[547969.6016,261792.702]]]},"properties":{"OBJECTID":65,"lad19cd":"E07000012","lad19nm":"South Cambridgeshire","lad19nmw":" ","bng_e":543295,"bng_n":247586,"long":0.091017,"lat":52.108051,"GlobalID":"cde7210b-593f-4a75-8538-22732f10508d"}},{"type":"Feature","id":66,"geometry":{"type":"Polygon","coordinates":[[[328388.3564,559538.7764],[327876.699,557334.804],[330953.2034,557188.595899999],[331407.2012,555521.203199999],[332281.3014,555177.9014],[331288.4971,554002.9977],[332423.8008,553079.402100001],[331399.3024,552366.0963],[331647.8993,551648.6017],[334436.2965,551323.604699999],[334010.604,549922.795700001],[332816.0018,549243.000299999],[333879.2024,548479.798699999],[334092.0982,545630.104499999],[335698.2031,545499.901699999],[335197.596,544486.401799999],[336576.6979,544761.5031],[336774.299,542804.203400001],[336302.7969,541154.795499999],[334045.0024,539690.3047],[336732.4965,536660.502],[336144.4011,533918.9967],[331541.1999,534413.6951],[330365.0997,533894.3038],[330009.5974,532880.1041],[332099.7039,532143.195],[329777.4989,530009.2959],[329478.4011,528189.196900001],[329898.6024,524707.5035],[332629.3996,524849.8027],[333279.9019,523558.3024],[335002.5013,522706.396299999],[333068.2017,521136.295700001],[334272.5001,520451.8017],[333579.8985,519563.9958],[334348.198,518958.799000001],[333716.1976,515462.999700001],[334385.004,514952.2959],[334374.6976,512086.5962],[330381.9031,510979.802999999],[328956.398,509058.403000001],[328200.2022,509304.002699999],[327977.701,507914.9003],[326446.9972,508969.398499999],[324427.0974,507150.999],[321097.8984,510314.103499999],[321584.3982,511602.4048],[320787.7027,512580.2049],[315595.5981,515767.502499999],[312098.6038,516704.204399999],[311136.3969,520652.304300001],[310048.8981,522093.2018],[307452.1986,523421.7015],[306625.6971,521666.0041],[304368.7024,521672.902100001],[303868.1035,523532.299900001],[302485.8025,524339.5988],[300218.0974,524649.300100001],[299682.0035,523471.997099999],[298509.1291,523971.511499999],[298968.5,525251.449999999],[298161.6726,529724.4553],[298687.95,529556.699999999],[300445.1358,529103.1614],[298703.462,529577.043],[302176.18,534131.289999999],[302784.39,536911.58],[303851.96,536302.619999999],[302977.7,536882.25],[307633.456,541343.414000001],[307674.3,546172.699999999],[310256.5,553412.699999999],[312386.952,556004.086999999],[314293.497,556991.68],[317609.7,554483.9],[317531.986,555953.143999999],[318307.8174,555532.751399999],[319129.771,556327.233999999],[319030.91,555657.859999999],[319969.53,556936.17],[319803.843,558104.983999999],[318544.147,556827.675000001],[316210.9,558219.699999999],[315858.849,559195.041999999],[317769.93,561521.34],[319045.25,561663.73],[318804.9,561004],[321191.184,562743.056],[322965.735,562785],[326191.69,560297.07],[328398.6007,559626.5045],[328405.5787,559580.2908],[328388.8397,559557.2005],[328388.3564,559538.7764]]]},"properties":{"OBJECTID":66,"lad19cd":"E07000026","lad19nm":"Allerdale","lad19nmw":" ","bng_e":317520,"bng_n":532997,"long":-3.2809,"lat":54.685242,"GlobalID":"ef76f8dd-34ef-4cff-a580-4e7f82dcfa36"}},{"type":"Feature","id":67,"geometry":{"type":"MultiPolygon","coordinates":[[[[321703.9945,480149.6414],[323931.6022,479229.2015],[325265.1007,480912.7996],[324164.7973,478024.7963],[325497.1991,474986.595899999],[324159.5039,474298.502900001],[324329.5006,471632.696],[323296.7984,469403.1042],[325236.3007,467671.6998],[324942.667,467017.423800001],[323393.78,465728.529999999],[324783.2,463819.199999999],[323456.87,465490.68],[323015.87,464973.109999999],[323315.71,465903.619999999],[322174.4,468119.6],[320655.532,467588.0395],[320286.9,466668.4],[318891.3584,468873.5529],[319315.58,473913.720000001],[318502.05,473932.699999999],[317993.4,475250.029999999],[320652.89,476428.640000001],[320286.47,477579.93],[320819.35,477332.25],[320975.84,479727.5],[321703.9945,480149.6414]]],[[[318306.41,473451.369999999],[317336.85,472528.4],[318663.3,468936.550000001],[318816.4,467718.5],[318187.2,467376.35],[318799.02,467560.859999999],[318524.83,466974],[320218.3,465641.699999999],[319817.63,464655.33],[320888.42,463927.18],[321214.35,462410.359999999],[322943.2,462787.199999999],[323224.03,462006.76],[323307.2,462782.050000001],[323283.31,461870.300000001],[320878.2,461977],[317158.1,468686.35],[316717.75,472646.9],[318306.41,473451.369999999]]]]},"properties":{"OBJECTID":67,"lad19cd":"E07000027","lad19nm":"Barrow-in-Furness","lad19nmw":" ","bng_e":321741,"bng_n":474165,"long":-3.1999,"lat":54.15731,"GlobalID":"db6ac3ed-adee-47ea-b421-79dc7c768b6c"}},{"type":"Feature","id":68,"geometry":{"type":"Polygon","coordinates":[[[362682.1031,550272.3956],[361334.4974,551115.904200001],[358025.5977,551304.200300001],[356411.998,549154.895500001],[355055.603,548977.6962],[355779.1978,547384.802200001],[354751.2036,547061.9046],[351944.4034,548511.5996],[351496.8038,547818.698000001],[348732.0039,547388.701099999],[344665.3996,549499.796800001],[343463.6985,547983.8007],[341794.997,547833.8037],[341974.5992,546836.599099999],[340897.9014,546426.396500001],[339336.798,543646.6022],[336774.299,542804.203400001],[336576.6979,544761.5031],[335197.596,544486.401799999],[335698.2031,545499.901699999],[334092.0982,545630.104499999],[333879.2024,548479.798699999],[332816.0018,549243.000299999],[334010.604,549922.795700001],[334436.2965,551323.604699999],[331647.8993,551648.6017],[331399.3024,552366.0963],[332423.8008,553079.402100001],[331288.4971,554002.9977],[332281.3014,555177.9014],[331407.2012,555521.203199999],[330953.2034,557188.595899999],[327876.699,557334.804],[328388.3564,559538.7764],[330629.249,560000.044],[328404.435,560561.476],[328020.229,561622.051000001],[328738.489,561238.578],[328229.298,561673.422],[328730.684,561961.157],[327912.538,562388.289999999],[329913.251,561834.032],[329397.911,562107.003],[328549.03,562934.050000001],[329287.2895,562338.766100001],[328914.76,563119.253],[330604.829,563931.875],[332141.325,566078.651000001],[332922.2899,565939.9365],[333010.6667,565924.2391],[332697.7017,566976.0043],[334533.2996,571807.5013],[332791.1017,573038.298900001],[332951.5012,573642.695900001],[338852.7965,573174.799900001],[340285.5984,574300.797599999],[340043.004,575366.102600001],[342836.6039,576311.202099999],[343536.2962,578178.797499999],[345325.9032,579663.3026],[347321.0019,581474.304199999],[347472.9996,582972.495300001],[350067.2998,583327.8036],[355295.7981,586770.7981],[356180.3036,588517.3981],[357136.203,587050.8979],[356937.8021,584781.997400001],[358216.5038,582615.5975],[361905.5008,581296.2951],[362229.103,579125.5965],[363823.401,578129.1017],[364213.3017,576701.500399999],[368021.3986,577484.496200001],[369067.3011,576551.703199999],[367908.5979,574332.5985],[369228.5003,571829.195],[363468.0966,569243.995100001],[363412.5001,566043.701099999],[361597.5973,564245.195900001],[361965.3023,563367.3972],[363694.3988,562783.304400001],[363732.4992,560834.802200001],[365155.9018,559523.1976],[363804.5033,558428.401000001],[363130.5025,555927.596799999],[361257.7029,554570.6952],[363287.4968,551122.0024],[362682.1031,550272.3956]]]},"properties":{"OBJECTID":68,"lad19cd":"E07000028","lad19nm":"Carlisle","lad19nmw":" ","bng_e":348576,"bng_n":565154,"long":-2.80498,"lat":54.978329,"GlobalID":"858f9a8a-aa84-443f-88e2-4704d01dc560"}},{"type":"Feature","id":69,"geometry":{"type":"Polygon","coordinates":[[[298509.1291,523971.511499999],[299682.0035,523471.997099999],[300218.0974,524649.300100001],[302485.8025,524339.5988],[303868.1035,523532.299900001],[304368.7024,521672.902100001],[306625.6971,521666.0041],[307452.1986,523421.7015],[310048.8981,522093.2018],[311136.3969,520652.304300001],[312098.6038,516704.204399999],[315595.5981,515767.502499999],[320787.7027,512580.2049],[321584.3982,511602.4048],[321097.8984,510314.103499999],[324427.0974,507150.999],[325039.6972,504488.801000001],[326389.4961,503532.2048],[327176.8995,504145.3993],[327721.6012,502747.1995],[324091.9027,501104.299799999],[322458.4983,496081.297599999],[321644.3975,495940.098099999],[319332.301,492719.100099999],[320020.7966,491707.999500001],[319505.9997,489090.198799999],[320149.9583,487592.2892],[319734.62,485653.66],[320417.67,484672.359999999],[319057.6,484128.359999999],[320072.65,484439.93],[320214.84,483365.58],[317545.06,480479.619999999],[318305.06,480121.33],[318487.13,480733.529999999],[319258.88,479321.07],[318260.7,478034.5],[316089.03,478688.68],[315400.1,477764.4],[313855.79,477972.1],[309296.87,485155.210000001],[307578.7,488600.41],[307537.64,494578.279999999],[308442.81,495898.939999999],[307973.25,495751.279999999],[306791.15,495155.92],[302550.41,502752.4],[293990.47,514203.93],[295685.25,515638.220000001],[297187.7673,518599.9067],[298509.1291,523971.511499999]]]},"properties":{"OBJECTID":69,"lad19cd":"E07000029","lad19nm":"Copeland","lad19nmw":" ","bng_e":310871,"bng_n":508739,"long":-3.37664,"lat":54.466171,"GlobalID":"22e7c8eb-07cf-428d-8da7-209bb2d6c373"}},{"type":"Feature","id":70,"geometry":{"type":"Polygon","coordinates":[[[362682.1031,550272.3956],[364220.7964,547016.797499999],[366424.0994,545809.802999999],[368257.6031,546272.2007],[370512.6026,548912.504899999],[372925.899,549839.2996],[373672.8026,551370.001399999],[375046.8997,548660.697000001],[377702.502,545856.1997],[379054.1973,545655.2972],[380030.2971,544057.604599999],[379118.7974,536896.904300001],[377170.4977,533681.8046],[377420.1004,532376.1983],[378990.496,530676.8048],[381206.7024,529905.5955],[381516.4034,528412.6029],[379121.8975,526327.6997],[380423.199,522376.8006],[386548.1993,517404.304],[387315.6991,515286.800100001],[388941.9961,515253.5996],[389793.9995,508529.0045],[389063.3964,506991.704600001],[388591.3996,507374.1951],[387822.2014,505968.897299999],[383918.198,506310.999399999],[381103.1032,504915.798800001],[380102.4991,502748.699100001],[380262.7996,500225.001499999],[381150.8999,499529.6006],[380777.0028,497972.6962],[379503.3965,497912.803400001],[377701.1003,496065.0023],[376200.2024,495676.703500001],[375260.1995,497377.9965],[372751.6973,496783.696599999],[371270.9998,497925.899599999],[370034.0015,497083.300799999],[368681.3992,498090.3026],[366722.6036,497056.0986],[365150.996,499993.4978],[364222.0992,499192.497099999],[362744.6007,499763.2037],[362207.0969,499285.3005],[360893.8978,501441.6033],[358535.0023,501175.0996],[355539.0027,503687.000499999],[355403.2972,505812.702099999],[354433.8017,504314.6009],[348945.0975,508020.100199999],[347819.5972,509933.4025],[347223.8009,509111.3978],[345763.1965,509300.2038],[344042.6996,510877.802200001],[343364.6011,509879.8978],[341378.3988,509932.602700001],[340476.9993,508100.3972],[338204.0008,510328.999299999],[337487.0021,510082.799799999],[336593.6992,511622.2991],[334436.5026,511514.4999],[334374.6976,512086.5962],[334385.004,514952.2959],[333716.1976,515462.999700001],[334348.198,518958.799000001],[333579.8985,519563.9958],[334272.5001,520451.8017],[333068.2017,521136.295700001],[335002.5013,522706.396299999],[333279.9019,523558.3024],[332629.3996,524849.8027],[329898.6024,524707.5035],[329478.4011,528189.196900001],[329777.4989,530009.2959],[332099.7039,532143.195],[330009.5974,532880.1041],[330365.0997,533894.3038],[331541.1999,534413.6951],[336144.4011,533918.9967],[336732.4965,536660.502],[334045.0024,539690.3047],[336302.7969,541154.795499999],[336774.299,542804.203400001],[339336.798,543646.6022],[340897.9014,546426.396500001],[341974.5992,546836.599099999],[341794.997,547833.8037],[343463.6985,547983.8007],[344665.3996,549499.796800001],[348732.0039,547388.701099999],[351496.8038,547818.698000001],[351944.4034,548511.5996],[354751.2036,547061.9046],[355779.1978,547384.802200001],[355055.603,548977.6962],[356411.998,549154.895500001],[358025.5977,551304.200300001],[361334.4974,551115.904200001],[362682.1031,550272.3956]]]},"properties":{"OBJECTID":70,"lad19cd":"E07000030","lad19nm":"Eden","lad19nmw":" ","bng_e":359636,"bng_n":526396,"long":-2.62678,"lat":54.631069,"GlobalID":"78719f69-7428-4087-936d-c0a1eb2f1bea"}},{"type":"Feature","id":71,"geometry":{"type":"Polygon","coordinates":[[[376200.2024,495676.703500001],[379945.7028,492125.100099999],[378980,489778.1019],[379309.9014,484654.998400001],[378090.3002,482484.5996],[376489.9998,483844.9003],[375786.9022,482774.3967],[374238.0015,482702.997099999],[373651.8024,481096.696900001],[370052.1984,481319.203199999],[370144.7986,482748.704],[362512.5022,477911.6986],[359323.4033,477935.901699999],[358350.7994,478665.3029],[355703.401,474137.698899999],[352015.8963,475052.8969],[352170.5984,476729.7969],[349964.0964,476959.5012],[347972.304,478292.0997],[345401.5929,475705.060000001],[343740.2,476651.5],[343713.92,477703.140000001],[345143.01,479198.619999999],[342216.36,478508.710000001],[341237.01,477443.390000001],[341613.75,476525.550000001],[340657.64,476355.24],[341389.29,475964.119999999],[339881.44,474751.949999999],[340791.68,474714.890000001],[339658.49,473113.57],[334799.4,473677.4],[335520.12,476414.98],[334394.6,475629],[334502.46,476520.949999999],[334154.4,476150.9],[332335.39,478441.109999999],[333350.91,477793.02],[332589.32,478330.99],[332743.62,480149.109999999],[330695.11,477231.630000001],[330828.7,474545.380000001],[327822.79,469805.58],[324942.667,467017.423800001],[325236.3007,467671.6998],[323296.7984,469403.1042],[324329.5006,471632.696],[324159.5039,474298.502900001],[325497.1991,474986.595899999],[324164.7973,478024.7963],[325265.1007,480912.7996],[323931.6022,479229.2015],[321703.9945,480149.6414],[321683.559,480185.4998],[321678.0175,480200.013800001],[321660.4017,480220.8311],[321628.1711,480274.248299999],[321624.5579,480289.8948],[323211.73,483210.529999999],[322017.55,482127.210000001],[321245.97,484938.58],[320032.09,485618.99],[320149.9583,487592.2892],[319505.9997,489090.198799999],[320020.7966,491707.999500001],[319332.301,492719.100099999],[321644.3975,495940.098099999],[322458.4983,496081.297599999],[324091.9027,501104.299799999],[327721.6012,502747.1995],[327176.8995,504145.3993],[326389.4961,503532.2048],[325039.6972,504488.801000001],[324427.0974,507150.999],[326446.9972,508969.398499999],[327977.701,507914.9003],[328200.2022,509304.002699999],[328956.398,509058.403000001],[330381.9031,510979.802999999],[334374.6976,512086.5962],[334436.5026,511514.4999],[336593.6992,511622.2991],[337487.0021,510082.799799999],[338204.0008,510328.999299999],[340476.9993,508100.3972],[341378.3988,509932.602700001],[343364.6011,509879.8978],[344042.6996,510877.802200001],[345763.1965,509300.2038],[347223.8009,509111.3978],[347819.5972,509933.4025],[348945.0975,508020.100199999],[354433.8017,504314.6009],[355403.2972,505812.702099999],[355539.0027,503687.000499999],[358535.0023,501175.0996],[360893.8978,501441.6033],[362207.0969,499285.3005],[362744.6007,499763.2037],[364222.0992,499192.497099999],[365150.996,499993.4978],[366722.6036,497056.0986],[368681.3992,498090.3026],[370034.0015,497083.300799999],[371270.9998,497925.899599999],[372751.6973,496783.696599999],[375260.1995,497377.9965],[376200.2024,495676.703500001]]]},"properties":{"OBJECTID":71,"lad19cd":"E07000031","lad19nm":"South Lakeland","lad19nmw":" ","bng_e":349265,"bng_n":489555,"long":-2.78108,"lat":54.299079999999996,"GlobalID":"0d1d1e0e-7a63-40a7-b675-d881da7698d3"}},{"type":"Feature","id":72,"geometry":{"type":"Polygon","coordinates":[[[433859.2998,359761.898600001],[437037.3009,356415.396500001],[442027.8963,356921.7016],[442909.3015,354987.5952],[444868.4023,353958.0999],[444027.1999,352232.004000001],[444613.7041,350838.203],[444896.5014,348413.1971],[446571.8978,345370.698100001],[444897.2023,342516.495100001],[442334.596,341930.9027],[441359.9968,342947.2018],[439760.9992,342346.103800001],[435094.3028,342925.9978],[435383.3994,341078.696599999],[433988.0959,341063.301000001],[433161.8996,337895.097899999],[430748.999,336405.804199999],[428991.1025,337683.998299999],[426708.4985,337784.0997],[426495.0009,338935.4001],[427005.7,340653.1984],[428907.3986,341106.798599999],[428876.0014,341933.0021],[426806.9033,343194.301000001],[426992.1039,344639.6973],[428497.6026,345053.198899999],[428358.0961,346456.7972],[429164.3972,346351.397299999],[428533.5016,346791.3014],[429186.7,347327.398],[427943.6004,347088.496300001],[427019.0982,348204.9967],[428191.3975,349527.3982],[427481.8028,350906.9033],[430030.1038,352511.2041],[431335.0991,354513.7009],[432290.6028,354441.7015],[432773.2027,355237.603700001],[431492.5963,356020.7995],[431986.3023,358243.303300001],[433859.2998,359761.898600001]]]},"properties":{"OBJECTID":72,"lad19cd":"E07000032","lad19nm":"Amber Valley","lad19nmw":" ","bng_e":436166,"bng_n":348084,"long":-1.46219,"lat":53.028839,"GlobalID":"547ed4c4-86ad-44ac-afcb-b35ec1daebe3"}},{"type":"Feature","id":73,"geometry":{"type":"Polygon","coordinates":[[[445655.6984,376291.097200001],[445145.6012,377782.9002],[446040.1986,378107.2973],[445280.6965,379337.0953],[447937.7005,379406.995300001],[450488.4008,378555.099099999],[451358.4032,379342.103800001],[453192.6984,378879.6962],[453416.7002,379685.195599999],[454964.9001,379000.9015],[454755.3024,376996.0954],[455676.2015,375952.1042],[454682.1027,375092.4003],[455145.302,374556.2038],[453298.598,374096.295399999],[452609.6984,372581.499],[453360.6998,371241.7026],[452886.8973,369249.6028],[453761.7972,365601.2971],[450861.597,364883.502599999],[449576.0023,363293.397700001],[447159.3997,364019.4999],[446849.5008,363236.504000001],[445331.5026,363013.5978],[445476.3024,359488.9967],[446923.2034,356320.9036],[446350.8972,355728.0033],[446786.5992,354779.005000001],[444868.4023,353958.0999],[442909.3015,354987.5952],[442027.8963,356921.7016],[441721.0975,360061.3029],[443369.7964,362595.7974],[441655.4009,364246.604900001],[443079.6033,365566.3971],[445637.3037,365639.995999999],[446133.3018,368996.6952],[445533.5973,371608.997400001],[444710.4022,373564.6976],[446701.8977,374324.600099999],[445655.6984,376291.097200001]]]},"properties":{"OBJECTID":73,"lad19cd":"E07000033","lad19nm":"Bolsover","lad19nmw":" ","bng_e":448666,"bng_n":371548,"long":-1.27228,"lat":53.23875,"GlobalID":"7d96b37c-f900-4419-9f40-f0f554af5575"}},{"type":"Feature","id":74,"geometry":{"type":"Polygon","coordinates":[[[445533.5973,371608.997400001],[443674.0969,371586.9037],[443413.7014,372346.496300001],[441449.0023,372040.6039],[440092.7969,370970.600199999],[440097.8017,368709.297499999],[438774.6013,368529.898800001],[437494.201,368647.7951],[437407.7021,369430.1011],[434847.7013,369588.595799999],[434531.0002,370529.996300001],[435381.2969,371145.0002],[434682.2971,372285.603700001],[435377.4959,373729.4005],[434742.7994,374162.296599999],[435832.9036,374688.096000001],[436295.196,376443.4036],[437500.5002,376059.4035],[439067.0041,376898.4033],[440149.6961,376276.9013],[441615.0001,378188.804],[442301.8961,377097.7963],[444518.3994,377181.702299999],[445655.6984,376291.097200001],[446701.8977,374324.600099999],[444710.4022,373564.6976],[445533.5973,371608.997400001]]]},"properties":{"OBJECTID":74,"lad19cd":"E07000034","lad19nm":"Chesterfield","lad19nmw":" ","bng_e":440049,"bng_n":373359,"long":-1.40115,"lat":53.255749,"GlobalID":"bac32b33-9c0b-4bf3-aed4-57d1e1f356ed"}},{"type":"Feature","id":75,"geometry":{"type":"Polygon","coordinates":[[[423119.4976,388395.5023],[422485.6008,385575.999399999],[427356.4037,383301.3005],[425909.7005,382992.5989],[424562.6966,380495.703600001],[425047.1022,380007.0035],[426128.6976,380707.0031],[426809.0965,379448.5034],[426928.8972,377717.898800001],[428186.4999,376691.9025],[427476.3033,375827.6998],[427783.704,374044.8002],[429062.3975,373911.1984],[429644.4988,372594.495300001],[428657.3012,371637.499299999],[428871.9036,369649.0984],[432453.6983,367399.9023],[430271.8985,367075.495100001],[430170.3029,365465.8959],[433859.2998,359761.898600001],[431986.3023,358243.303300001],[431492.5963,356020.7995],[432773.2027,355237.603700001],[432290.6028,354441.7015],[431335.0991,354513.7009],[430030.1038,352511.2041],[427481.8028,350906.9033],[428191.3975,349527.3982],[427019.0982,348204.9967],[427943.6004,347088.496300001],[429186.7,347327.398],[428533.5016,346791.3014],[429164.3972,346351.397299999],[428358.0961,346456.7972],[428497.6026,345053.198899999],[426992.1039,344639.6973],[426806.9033,343194.301000001],[428876.0014,341933.0021],[428907.3986,341106.798599999],[427005.7,340653.1984],[426495.0009,338935.4001],[423600.498,338630.5974],[423039.7019,333957.805],[421732.497,336065.3017],[419713.702,336103.400800001],[419299.701,334720.196699999],[416979.2027,335034.896600001],[417819.696,333116.3958],[417194.9018,330163.201099999],[415088.2969,331838.4016],[411656.9993,331897.2048],[409739.6021,336227.395300001],[411533.9005,338713.703600001],[411728.3026,342205.0042],[416042.5968,344750.5956],[416261.701,348918.4025],[414914.6972,349751.604],[415132.8038,351366.501800001],[413877.8972,354593.2981],[414577.2021,356201.097899999],[412013.5982,359962.701099999],[412633.0991,361926.598999999],[409402.9975,365710.7958],[406868.5976,366989.399800001],[405535.396,368993.496099999],[406055.7995,369406.697799999],[406936.0999,368157.195499999],[407646.2965,368968.203299999],[407936.0032,367363.502699999],[408597.3973,368738.999],[410624.8001,366418.303200001],[411346.9026,366734.3028],[411367.004,368187.4968],[408491.2009,369983.602700001],[410480.8991,372609.1011],[414088.0968,373285.897399999],[412264.0996,376190.396],[411917.7988,378442.101500001],[416033.8982,382395.399900001],[418061.804,382446.0953],[418244.3991,380278.8957],[420050.1994,380784.6009],[420283.5017,382029.4046],[421984.4001,383656.9987],[421834.4966,385884.301200001],[423119.4976,388395.5023]]]},"properties":{"OBJECTID":75,"lad19cd":"E07000035","lad19nm":"Derbyshire Dales","lad19nmw":" ","bng_e":419697,"bng_n":358493,"long":-1.70711,"lat":53.12326,"GlobalID":"eced577a-6953-4783-a8f9-1e0724bdf341"}},{"type":"Feature","id":76,"geometry":{"type":"Polygon","coordinates":[[[446571.8978,345370.698100001],[447930.9972,341602.196799999],[447627.2986,340031.7963],[448404.9975,339325.7984],[448396.3979,335001.8961],[450798.1018,334213.501800001],[451248.4965,333028.201099999],[451239.3033,331672.999],[449373.8005,330903.7992],[445913.4967,330814.3048],[443845.8003,331667.400599999],[444550.8025,332672.7028],[441245.2009,333953.995999999],[441570.8973,336678.2962],[438813.4025,337736.703299999],[439786.8969,339376.8038],[435804.2026,339383.5019],[435383.3994,341078.696599999],[435094.3028,342925.9978],[439760.9992,342346.103800001],[441359.9968,342947.2018],[442334.596,341930.9027],[444897.2023,342516.495100001],[446571.8978,345370.698100001]]]},"properties":{"OBJECTID":76,"lad19cd":"E07000036","lad19nm":"Erewash","lad19nmw":" ","bng_e":443721,"bng_n":338063,"long":-1.3509,"lat":52.938202,"GlobalID":"ae02266e-17f9-4ec0-af53-abc3fdc8f078"}},{"type":"Feature","id":77,"geometry":{"type":"Polygon","coordinates":[[[406087.1967,404640.102399999],[407115.9989,404109.804199999],[408481.1997,404870.5964],[410585.1991,402591.6987],[411883.9034,402726.3002],[413609.504,400735.200099999],[413272.6025,398268.6962],[415470.7029,396470.200999999],[417006.296,396187.102],[417392.1979,391606.203299999],[419469.3019,391208.2972],[419712.0035,389842.698100001],[423119.4976,388395.5023],[421834.4966,385884.301200001],[421984.4001,383656.9987],[420283.5017,382029.4046],[420050.1994,380784.6009],[418244.3991,380278.8957],[418061.804,382446.0953],[416033.8982,382395.399900001],[411917.7988,378442.101500001],[412264.0996,376190.396],[414088.0968,373285.897399999],[410480.8991,372609.1011],[408491.2009,369983.602700001],[411367.004,368187.4968],[411346.9026,366734.3028],[410624.8001,366418.303200001],[408597.3973,368738.999],[407936.0032,367363.502699999],[407646.2965,368968.203299999],[406936.0999,368157.195499999],[406055.7995,369406.697799999],[405535.396,368993.496099999],[406868.5976,366989.399800001],[402988.1998,368519.7017],[402609.702,369909.503900001],[400937.9994,368500.8971],[400747.1015,369548.0974],[401775.4008,370445.3005],[399464.6977,373737.1982],[399645.7015,384185.897299999],[398030.7991,385931.897500001],[397850.2982,386519.2994],[399788.4977,387718.6961],[400607.1003,390930.096799999],[399186.8968,391007.704600001],[398352.8017,392562.6995],[399152.2016,393663.6044],[399817.1988,393236.196699999],[399550.2979,393862.297499999],[401040.6999,395384.0019],[400905.5963,398263.5976],[402525.5034,401459.003],[403325.2991,400833.302100001],[405271.9993,401475.3983],[404951.9012,402698.1982],[406087.1967,404640.102399999]]]},"properties":{"OBJECTID":77,"lad19cd":"E07000037","lad19nm":"High Peak","lad19nmw":" ","bng_e":410474,"bng_n":387660,"long":-1.84398,"lat":53.385689,"GlobalID":"9045077a-957e-4370-a211-58b3e673aea1"}},{"type":"Feature","id":78,"geometry":{"type":"Polygon","coordinates":[[[426809.0965,379448.5034],[427748.0028,380596.4048],[428045.4022,379502.298],[429295.304,379980.701099999],[429301.9,378917.195499999],[430966.3965,378742.6954],[433264.6001,380185.9023],[435544.5986,380150.9023],[436385.8999,380685.599300001],[436068.3001,381664.4991],[437255.0035,382430.4998],[438662.9961,382116.299699999],[439311.0002,382947.6018],[440946.4988,382172.503699999],[440951.8004,380251.103599999],[444217.1991,380081.702099999],[445075.0977,381531.897],[446779.0962,381960.0045],[447480.8993,381267.8026],[447020.9981,380018.100299999],[447937.7005,379406.995300001],[445280.6965,379337.0953],[446040.1986,378107.2973],[445145.6012,377782.9002],[445655.6984,376291.097200001],[444518.3994,377181.702299999],[442301.8961,377097.7963],[441615.0001,378188.804],[440149.6961,376276.9013],[439067.0041,376898.4033],[437500.5002,376059.4035],[436295.196,376443.4036],[435832.9036,374688.096000001],[434742.7994,374162.296599999],[435377.4959,373729.4005],[434682.2971,372285.603700001],[435381.2969,371145.0002],[434531.0002,370529.996300001],[434847.7013,369588.595799999],[437407.7021,369430.1011],[437494.201,368647.7951],[438774.6013,368529.898800001],[440097.8017,368709.297499999],[440092.7969,370970.600199999],[441449.0023,372040.6039],[443413.7014,372346.496300001],[443674.0969,371586.9037],[445533.5973,371608.997400001],[446133.3018,368996.6952],[445637.3037,365639.995999999],[443079.6033,365566.3971],[441655.4009,364246.604900001],[443369.7964,362595.7974],[441721.0975,360061.3029],[442027.8963,356921.7016],[437037.3009,356415.396500001],[433859.2998,359761.898600001],[430170.3029,365465.8959],[430271.8985,367075.495100001],[432453.6983,367399.9023],[428871.9036,369649.0984],[428657.3012,371637.499299999],[429644.4988,372594.495300001],[429062.3975,373911.1984],[427783.704,374044.8002],[427476.3033,375827.6998],[428186.4999,376691.9025],[426928.8972,377717.898800001],[426809.0965,379448.5034]]]},"properties":{"OBJECTID":78,"lad19cd":"E07000038","lad19nm":"North East Derbyshire","lad19nmw":" ","bng_e":437369,"bng_n":362955,"long":-1.44253,"lat":53.16243,"GlobalID":"72cc9ad6-da21-4ac8-8287-ea4fc3836040"}},{"type":"Feature","id":79,"geometry":{"type":"Polygon","coordinates":[[[417194.9018,330163.201099999],[417819.696,333116.3958],[416979.2027,335034.896600001],[419299.701,334720.196699999],[419713.702,336103.400800001],[421732.497,336065.3017],[423039.7019,333957.805],[423600.498,338630.5974],[426495.0009,338935.4001],[426708.4985,337784.0997],[428991.1025,337683.998299999],[430748.999,336405.804199999],[429896.0969,335340.3992],[430933.4987,332550.297800001],[433532.8037,332045.3024],[434123.0016,330406.701400001],[436168.9971,330697.498199999],[437380.6995,329455.103800001],[438902.9027,329886.3004],[439198.8014,332054.4998],[440270.1976,333833.9004],[441245.2009,333953.995999999],[444550.8025,332672.7028],[443845.8003,331667.400599999],[445913.4967,330814.3048],[445515.1036,330044.2952],[444198.7961,330204.6993],[443788.2993,328616.403899999],[443110.4975,328821.295299999],[440898.1003,326753.7971],[441331.7987,326348.6031],[439354.6001,322829.9003],[437610.3986,322941.6983],[437697.6974,321856.4989],[436328.0031,321165.296800001],[436801.3026,320082.096799999],[435962.2027,318939.204],[434245.2017,318055.7969],[433496.5996,319002.9957],[430274.001,318506.297900001],[429627.7036,317084.404899999],[430846.0021,314990.304300001],[430489.1971,313722.397299999],[427293.197,311490.2962],[423408.3963,311289.603700001],[423290.4013,313842.003],[420074.0029,314976.8982],[422587.4026,320844.0987],[426326.3977,320493.598999999],[426105.397,321256.7006],[427816.0988,322555.698799999],[427610.6978,323625.2026],[426348.1976,324387.304500001],[428032.9027,326099.904300001],[425230.3982,328612.2951],[420948.4988,329708.001399999],[420254.3966,329272.796],[420000.1024,329950.0022],[418590.8978,329163.7972],[417194.9018,330163.201099999]]]},"properties":{"OBJECTID":79,"lad19cd":"E07000039","lad19nm":"South Derbyshire","lad19nmw":" ","bng_e":431443,"bng_n":325363,"long":-1.5348,"lat":52.824902,"GlobalID":"268a34dc-170f-4aed-ae79-9ba04427491b"}},{"type":"Feature","id":80,"geometry":{"type":"Polygon","coordinates":[[[326101.9991,112616.903100001],[325882.4001,108877.9033],[327420.9038,107412.6028],[327110.6009,106240.8982],[331567.9964,106697.0976],[331800.8039,104299.3039],[332873.9976,102838.6021],[332374.0995,102220.2991],[337185.1009,100961.1995],[337605.7969,99847.3982999995],[332796.4033,96893.7038000003],[334136.3989,95381.3967000004],[332829.499,92532.2021999992],[333192.4183,91386.5562999994],[327500.7,89282.5999999996],[325706.5985,89916.0721000005],[325603.67,89741.6199999992],[323655.1,89668.5999999996],[322669.1,87860.4000000004],[315878.41,87886.3800000008],[311219.94,86708.8399999999],[308109.443,82121.6600000001],[307563.67,83919.9700000007],[307675.409,81919.8560000006],[304426.738,80816.8010000009],[303728.375,79431.1860000007],[299198.251,80746.4820000008],[299980.78,82029],[296917.3332,89461.0588000007],[296180.4003,89830.9955000002],[296721.1031,94960.2971999999],[293405.0962,96855.0048999991],[290596.3007,95097.2980000004],[289351.2965,95110.1042999998],[288232.9034,95007.6037000008],[289325.4977,96804.4992999993],[290288.999,96529.7979000006],[290986.3003,98187.4035],[289867.3961,98435.9023000002],[289288.8979,99953.1980000008],[292619.3007,99713.0966999996],[292504.4964,100887.000700001],[294070.9014,102730.0032],[293933.5964,104179.598200001],[294657.6034,103003.3049],[294210.9025,101020.102600001],[295745.597,101024.9012],[295548.4988,100207.5952],[297158.7015,101442.6017],[298384.8987,101089.2028],[299367.9986,102367.9968],[300714.9035,101517.5002],[304283.2011,102252.399900001],[303779.5021,104225.695],[304614.1991,104696.500299999],[304521.4998,103919.4027],[305466.1035,103783.2017],[305184.5017,106113.3047],[306603.6004,107232.5043],[309900.7014,107030.202199999],[309832.2014,108206.895400001],[313377.2974,111340.7983],[314463.3038,111081.102700001],[315155.4025,109313.398700001],[317347.5993,109280.998],[319621.9994,110837.002599999],[320893.998,111965.5995],[326101.9991,112616.903100001]]]},"properties":{"OBJECTID":80,"lad19cd":"E07000040","lad19nm":"East Devon","lad19nmw":" ","bng_e":313790,"bng_n":96050,"long":-3.22359,"lat":50.757599,"GlobalID":"83ce68d2-dec9-4a80-a6cb-ea71c79e11d2"}},{"type":"Feature","id":81,"geometry":{"type":"Polygon","coordinates":[[[296917.3332,89461.0588000007],[297163.551,87158.6860000007],[296367.1112,88087.2573000006],[296256.4197,87987.2887999993],[295413.4318,88541.0861000009],[294160.7973,89363.9990999997],[291387.9997,89272.5953000002],[289744.9981,90867.7986999992],[289351.2965,95110.1042999998],[290596.3007,95097.2980000004],[293405.0962,96855.0048999991],[296721.1031,94960.2971999999],[296180.4003,89830.9955000002],[296917.3332,89461.0588000007]]]},"properties":{"OBJECTID":81,"lad19cd":"E07000041","lad19nm":"Exeter","lad19nmw":" ","bng_e":293239,"bng_n":92005,"long":-3.51368,"lat":50.717819,"GlobalID":"58df3120-d2a8-4c16-a22e-0bd075a182b7"}},{"type":"Feature","id":82,"geometry":{"type":"Polygon","coordinates":[[[287618.399,124318.4035],[292391.0032,123784.496400001],[293551.6027,125033.9987],[293468.5007,126267.795499999],[294611.3981,126716.1972],[296085.4007,127099.997300001],[297691.1016,126109.6008],[300430.3005,126674.699100001],[300906.6012,125433.5044],[303266.7005,125253.3959],[303309.4016,120694.400900001],[306478.597,121223.399499999],[309219.8984,118099.003799999],[311935.096,116573.500499999],[318152.5976,117124.1029],[316583.1008,113001.2031],[319621.9994,110837.002599999],[317347.5993,109280.998],[315155.4025,109313.398700001],[314463.3038,111081.102700001],[313377.2974,111340.7983],[309832.2014,108206.895400001],[309900.7014,107030.202199999],[306603.6004,107232.5043],[305184.5017,106113.3047],[305466.1035,103783.2017],[304521.4998,103919.4027],[304614.1991,104696.500299999],[303779.5021,104225.695],[304283.2011,102252.399900001],[300714.9035,101517.5002],[299367.9986,102367.9968],[298384.8987,101089.2028],[297158.7015,101442.6017],[295548.4988,100207.5952],[295745.597,101024.9012],[294210.9025,101020.102600001],[294657.6034,103003.3049],[293933.5964,104179.598200001],[294070.9014,102730.0032],[292504.4964,100887.000700001],[292619.3007,99713.0966999996],[289288.8979,99953.1980000008],[289867.3961,98435.9023000002],[290986.3003,98187.4035],[290288.999,96529.7979000006],[289325.4977,96804.4992999993],[288232.9034,95007.6037000008],[286608.0987,96193.3043000009],[285818.799,95851.0022],[282194.097,97376.5954999998],[281569.8964,95828.0987999998],[279577.601,95739.9039999992],[278466.1009,93477.1018000003],[277453.8959,92986.4022000004],[278370.2025,92082.3010000009],[277536.396,90720.9006999992],[275435.8018,93483.0000999998],[271713.099,92393.8018999994],[270505.7994,94115.5989999995],[272727.9011,97047.2997999992],[271645.4977,99519.9020000007],[269988.2982,99626.6015000008],[270701.4959,100875.504000001],[270547.404,103704.6042],[267825.396,103830.898],[266326.5016,105607.399499999],[267446.8982,107098.8026],[266091.8967,107108.199899999],[264578.9032,109557.198899999],[266526.2959,110388.401000001],[265060.1015,112672.7971],[266212.5961,113463.1008],[271430.3016,113530.1017],[272380.8005,114365.002699999],[272337.7036,112942.399900001],[274701.2988,112961.304500001],[276724.2987,110056.9958],[277377.2004,111542.2007],[278090.0024,111565.1041],[278608.4024,113789.6974],[285699.9959,114610.002499999],[286761.0033,115364.896500001],[287963.7022,117275.0997],[287897.9973,119859.899800001],[286366.0979,120017.3047],[285818.296,124195.4987],[287443.1997,122430.0041],[287618.399,124318.4035]]]},"properties":{"OBJECTID":82,"lad19cd":"E07000042","lad19nm":"Mid Devon","lad19nmw":" ","bng_e":288064,"bng_n":108911,"long":-3.59212,"lat":50.86882,"GlobalID":"694720d9-de9e-497e-a2fb-850bf96bbbfe"}},{"type":"Feature","id":83,"geometry":{"type":"Polygon","coordinates":[[[279956.2166,149618.222899999],[279063.1999,148486.795399999],[279524.4039,143677.0022],[275217.9013,142926.9969],[271535.8961,143573.6018],[271756.402,139279.7009],[273807.3033,136703.7983],[279619.1974,132684.998600001],[281548.0964,132615.498500001],[284692.9029,130037.296499999],[288346.7017,129638.2008],[286835.4975,125254.095699999],[287618.399,124318.4035],[287443.1997,122430.0041],[285818.296,124195.4987],[286366.0979,120017.3047],[287897.9973,119859.899800001],[287963.7022,117275.0997],[286761.0033,115364.896500001],[285699.9959,114610.002499999],[278608.4024,113789.6974],[278090.0024,111565.1041],[277377.2004,111542.2007],[276724.2987,110056.9958],[274701.2988,112961.304500001],[272337.7036,112942.399900001],[272380.8005,114365.002699999],[271430.3016,113530.1017],[266212.5961,113463.1008],[266258.3974,115944.400599999],[262731.0036,114956.303400001],[259772.4036,115957.8967],[260033.904,118448.603800001],[262377.2987,119219.903000001],[262625.9038,122061.7995],[260854.0979,122175.397],[258851.3973,120585.5021],[257171.4001,122173.6975],[257377.5019,125107.997500001],[255303.8031,125464.895400001],[253726.3992,124665.804099999],[251308.601,125643.304300001],[251677.3037,126567.799699999],[248158.9959,126138.502499999],[247324.2,127253.303400001],[245928.6923,126951.060799999],[245985.8882,128334.833699999],[247311.72,129971.68],[247369.395,132057.345000001],[249361.9998,132670.2029],[249290.2018,133415.399599999],[248545.07,133812.157],[248643.94,135718.210000001],[248335.271,133472.663000001],[247004.5,133038.199999999],[246708.929,131938.479],[244801.989,133123.535],[244548.155,137728.222999999],[243303.9,138088.210000001],[243652.52,139224.310000001],[241874.13,140611.640000001],[244546.48,140681.92],[245100.67,141485.65],[245519.11,144453.960000001],[244310.29,145613.189999999],[245618.1,145803.689999999],[246304.8187,146904.078],[247946.76,146486.609999999],[254284.5,148529.699999999],[257678.76,147249.5],[258429.84,148309.210000001],[263338.09,148480.449999999],[265652.83,149841.609999999],[267975.66,148876.59],[270679.81,150009.220000001],[273477.07,149555.279999999],[275367.18,151197.789999999],[276549.09,150208.59],[279956.2166,149618.222899999]]]},"properties":{"OBJECTID":83,"lad19cd":"E07000043","lad19nm":"North Devon","lad19nmw":" ","bng_e":265110,"bng_n":132532,"long":-3.92691,"lat":51.07621,"GlobalID":"f4a59b03-4c78-4eeb-b046-9a11d0a55044"}},{"type":"Feature","id":84,"geometry":{"type":"Polygon","coordinates":[[[267198.1035,73099.6048000008],[267480.4969,72153.4956],[269372.4993,72136.4004999995],[270554.8988,70104.4021000005],[272591.4041,72265.7035000008],[272533.9031,70650.2959000003],[273568.3037,70181.6999999993],[273027.1968,68382.8048999999],[274137.9962,67704.6989999991],[272534.1009,67058.7039000001],[273998.3001,64189.8950999994],[275270.2987,64478.9024],[274693.9029,68357.9021000005],[275563.6002,69321.4962000009],[276895.697,68837.6046999991],[278658.5983,66130.5996000003],[281569.8964,63809.9038999993],[282618.8001,64893.1038000006],[282355.997,64066.9002999999],[283319.2015,63661.2963999994],[285567.2999,64521.1002999991],[286366.5019,66195.4011000004],[287687.303,65412.4952000007],[287439.8027,62581.8954000007],[284702.2033,61423.7969000004],[284454.2002,59727.6024999991],[286473.6959,57823.8973999992],[287839.8036,57898.7959000003],[288162.3999,56106.1991000008],[290284.0025,53762.5998999998],[292900.1152,54341.2631000001],[292099.16,50717.5800000001],[290801.66,49643.9299999997],[289589.328,49881.8440000005],[288137.86,50956.9499999993],[288812.807,51483.1710000001],[287976.316,52684.3210000005],[288545.0573,53279.2029999997],[286717.194,54812.4112],[286739.0102,54644.1114000008],[287699.918,53674.6740000006],[287757.9,52347.0999999996],[287930.8806,51895.2546999995],[287910.1081,50780.3397000004],[288481.8487,50456.0628999993],[288826,49557.0999999996],[288169.5,48531.6999999993],[285252.844,47646.5030000005],[283083.031,44645.4539999999],[281751.585,38985.0329999998],[283051.88,37040.5280000009],[280184.375,37176.3029999994],[277330.89,34965.8000000007],[276131.6,36425.4000000004],[273589.59,37538.1099999994],[274487.46,38847.5800000001],[276986.19,38834.4000000004],[276084.4,39345.5999999996],[277446.01,40096.9000000004],[275032.97,39228.5700000003],[274844.4,40418.0999999996],[274881.2,40888.0999999996],[274134.69,41841.9000000004],[273634.9,41177.6999999993],[274281.79,40825.0700000003],[274679.23,39325.0099999998],[273511.3,39707.9900000002],[274146.5,38863],[273000.8,38140.5],[272591.64,35951.1600000001],[270007.46,36834.6199999992],[266708.4,39569.5],[267532.47,39713.3699999992],[267654.83,41730.0700000003],[266014.4,43535.6999999993],[266371.4727,43945.0029000007],[266883.7071,43796.8359999992],[267204.7279,44406.0738999993],[266795.5,44042.1999999993],[265078.54,44142.0399999991],[263506.4,45772.4000000004],[261658.3,45802.4000000004],[261465.231,47017.1899999995],[261356.896,47357.2249999996],[260246.3,46720.4000000004],[258254.7,47181.3000000007],[255131.8,45635.0999999996],[252359.1,47183.5999999996],[255330.68,47922.3800000008],[253923.68,48438.4000000004],[253706.9,47736.0999999996],[249244.97,48753.6199999992],[249252.6,50585.8000000007],[248604.73,50771.7599999998],[249044.0038,51800.5150000006],[251333.6001,51089.0952000003],[254062.0969,52751.4992999993],[254321.503,55075.4041000009],[255971.2985,55203.8972999994],[256428.7015,56609.5050000008],[255144.5992,57717.4978],[252881.8989,57827.8961999994],[252160.1015,60385.6041000001],[250274.9012,61266.4020000007],[250032.7026,62615.0958999991],[248422.4998,61412.1002999991],[246999.897,61842.4970999993],[246426.5295,60875.7032999992],[245476.8,60344.8499999996],[244562.51,61026.3000000007],[246559.11,63299.9299999997],[246989.15,62947.0700000003],[247374.2239,64881.3103],[250441.5009,64697.1998999994],[250493.9972,63295.6010999996],[252647.096,65406.8968000002],[253843.8007,63605.8023000006],[256456.0009,64429.8964000009],[256527.601,65168.7050000001],[257605.7005,65244.6031999998],[261380.2977,68544.9985000007],[262096.4967,68306.3968000002],[261856.4005,67243.3011000007],[265343.3028,65386.1027000006],[266709.798,66786.4019000009],[265912.5006,69941.5987],[266220.0002,72433.2954999991],[267198.1035,73099.6048000008]]]},"properties":{"OBJECTID":84,"lad19cd":"E07000044","lad19nm":"South Hams","lad19nmw":" ","bng_e":270676,"bng_n":54036,"long":-3.81996,"lat":50.371948,"GlobalID":"0b36bb22-38e3-4802-b421-927be5213f7f"}},{"type":"Feature","id":85,"geometry":{"type":"Polygon","coordinates":[[[293116.12,72544.4900000002],[294083.045,71958.4100000001],[293104.4736,69621.7028999999],[292272.6041,69761.6002999991],[291601.2994,68318.6032999996],[289090.802,66410.9993999992],[288744.3033,66833.8982999995],[287687.303,65412.4952000007],[286366.5019,66195.4011000004],[285567.2999,64521.1002999991],[283319.2015,63661.2963999994],[282355.997,64066.9002999999],[282618.8001,64893.1038000006],[281569.8964,63809.9038999993],[278658.5983,66130.5996000003],[276895.697,68837.6046999991],[275563.6002,69321.4962000009],[274693.9029,68357.9021000005],[275270.2987,64478.9024],[273998.3001,64189.8950999994],[272534.1009,67058.7039000001],[274137.9962,67704.6989999991],[273027.1968,68382.8048999999],[273568.3037,70181.6999999993],[272533.9031,70650.2959000003],[272591.4041,72265.7035000008],[270554.8988,70104.4021000005],[269372.4993,72136.4004999995],[267480.4969,72153.4956],[267198.1035,73099.6048000008],[267692.7,76269.4974000007],[266863.7003,79137.3965000007],[269764.6014,84666.6037000008],[272532.4025,85580.6020999998],[272021.2994,85937.0000999998],[273108.7982,87681.4008000009],[272148.0012,89521.6040000003],[277553.9003,89909.6030000001],[277536.396,90720.9006999992],[278370.2025,92082.3010000009],[277453.8959,92986.4022000004],[278466.1009,93477.1018000003],[279577.601,95739.9039999992],[281569.8964,95828.0987999998],[282194.097,97376.5954999998],[285818.799,95851.0022],[286608.0987,96193.3043000009],[288232.9034,95007.6037000008],[289351.2965,95110.1042999998],[289744.9981,90867.7986999992],[291387.9997,89272.5953000002],[294160.7973,89363.9990999997],[295413.4318,88541.0861000009],[296256.4197,87987.2887999993],[296260.6714,87871.8607000001],[296331.45,85950.3300000001],[297491.223,84050.8100000005],[297916.513,78981.9199999999],[299454.154,80335.0989999995],[296228.6,76403.9000000004],[296091.55,74722.8100000005],[293816.729,72271.6309999991],[293743.2044,72872.2518000007],[293116.12,72544.4900000002]]]},"properties":{"OBJECTID":85,"lad19cd":"E07000045","lad19nm":"Teignbridge","lad19nmw":" ","bng_e":283144,"bng_n":80205,"long":-3.65289,"lat":50.60981,"GlobalID":"d037a1e3-7dd0-43e3-975d-b63ee8904d64"}},{"type":"Feature","id":86,"geometry":{"type":"MultiPolygon","coordinates":[[[[245928.6923,126951.060799999],[247324.2,127253.303400001],[248158.9959,126138.502499999],[251677.3037,126567.799699999],[251308.601,125643.304300001],[253726.3992,124665.804099999],[255303.8031,125464.895400001],[257377.5019,125107.997500001],[257171.4001,122173.6975],[258851.3973,120585.5021],[260854.0979,122175.397],[262625.9038,122061.7995],[262377.2987,119219.903000001],[260033.904,118448.603800001],[259772.4036,115957.8967],[262731.0036,114956.303400001],[266258.3974,115944.400599999],[266212.5961,113463.1008],[265060.1015,112672.7971],[266526.2959,110388.401000001],[264578.9032,109557.198899999],[266091.8967,107108.199899999],[267446.8982,107098.8026],[266326.5016,105607.399499999],[263431.1989,104686.303200001],[262216.0006,108037.403899999],[259637.803,107712.9968],[259716.4032,109641.504799999],[256780.7986,108625.795499999],[256553.3009,109654.301100001],[255688.4022,109022.301999999],[254550.8971,110386.101600001],[253032.8989,109623.9998],[253320.9978,108542.7993],[252050.2031,107750.8959],[252020.9991,106097.8991],[250229.2978,107114.2982],[249344.3966,105805.2029],[247701.4033,105717.597999999],[248058.2001,103989.102700001],[246694.6978,103106.295399999],[247258.7012,102031.5031],[245681.6024,101186.295],[247389.2041,100841.9036],[244573.9032,99580.0047999993],[245917.8976,97624.9045000002],[242979.8031,95980.5952000003],[242317.8978,92807.4035],[242460.6034,90797.3988000005],[243657.0029,90022.8004999999],[243771.4032,88822.8039999995],[243071.0017,88088.6041999999],[236645.5019,87306.5980999991],[234998.8202,85587.6272999998],[234181.0037,90398.8028999995],[232785.8109,91868.1821999997],[233391.6208,93676.9257999994],[231843.1795,96952.2551000006],[232202.1973,99476.9043000005],[231352.7004,100362.500800001],[229864.6388,99982.1037000008],[230222.684,98637.1978999991],[229156.915,98909.3808999993],[227303.8972,101319.4969],[224358.8026,102225.897500001],[227706.9031,103818.205600001],[228170.1946,108114.052100001],[228841.9968,110157.1971],[229737.5012,110191.497300001],[226977.6978,115559.0009],[227500.3028,117253.3959],[221174.0748,117412.7424],[222966.4,127806.49],[229965.2,126609.199999999],[232315.7,124419.800000001],[235657.1,123676.699999999],[238494.5,124565.800000001],[244732.389,131853.926000001],[245187.651,130445.095000001],[246565.4,130666.699999999],[245985.8882,128334.833699999],[245928.6923,126951.060799999]]],[[[214588.298,143667.7049],[213329.104,143304.5988],[212711.2026,144881.397500001],[213054.2961,148214.6033],[214588.298,143667.7049]]]]},"properties":{"OBJECTID":86,"lad19cd":"E07000046","lad19nm":"Torridge","lad19nmw":" ","bng_e":244206,"bng_n":114334,"long":-4.21728,"lat":50.907391,"GlobalID":"8a43e8d7-de3d-4a3a-9e6f-feab23fa8bed"}},{"type":"Feature","id":87,"geometry":{"type":"Polygon","coordinates":[[[243628.5275,70929.8644999992],[243637.9948,71370.7397000007],[243667.5978,72749.2949999999],[241888.3961,72519.3008999992],[240826.6961,73987.4005999994],[239127.2983,73222.6995000001],[240026.0017,74225.9024],[238672.5007,76863.1973999999],[239309.2998,78294.8976000007],[238275.8968,78606.6984000001],[238223.3015,77526.2975999992],[237886.598,78521.6027000006],[236764.9976,77969.6007000003],[236457.2012,78812.9992999993],[237422.3021,84098.1963999998],[235649.1028,84586.1967999991],[234998.8202,85587.6272999998],[236645.5019,87306.5980999991],[243071.0017,88088.6041999999],[243771.4032,88822.8039999995],[243657.0029,90022.8004999999],[242460.6034,90797.3988000005],[242317.8978,92807.4035],[242979.8031,95980.5952000003],[245917.8976,97624.9045000002],[244573.9032,99580.0047999993],[247389.2041,100841.9036],[245681.6024,101186.295],[247258.7012,102031.5031],[246694.6978,103106.295399999],[248058.2001,103989.102700001],[247701.4033,105717.597999999],[249344.3966,105805.2029],[250229.2978,107114.2982],[252020.9991,106097.8991],[252050.2031,107750.8959],[253320.9978,108542.7993],[253032.8989,109623.9998],[254550.8971,110386.101600001],[255688.4022,109022.301999999],[256553.3009,109654.301100001],[256780.7986,108625.795499999],[259716.4032,109641.504799999],[259637.803,107712.9968],[262216.0006,108037.403899999],[263431.1989,104686.303200001],[266326.5016,105607.399499999],[267825.396,103830.898],[270547.404,103704.6042],[270701.4959,100875.504000001],[269988.2982,99626.6015000008],[271645.4977,99519.9020000007],[272727.9011,97047.2997999992],[270505.7994,94115.5989999995],[271713.099,92393.8018999994],[275435.8018,93483.0000999998],[277536.396,90720.9006999992],[277553.9003,89909.6030000001],[272148.0012,89521.6040000003],[273108.7982,87681.4008000009],[272021.2994,85937.0000999998],[272532.4025,85580.6020999998],[269764.6014,84666.6037000008],[266863.7003,79137.3965000007],[267692.7,76269.4974000007],[267198.1035,73099.6048000008],[266220.0002,72433.2954999991],[265912.5006,69941.5987],[266709.798,66786.4019000009],[265343.3028,65386.1027000006],[261856.4005,67243.3011000007],[262096.4967,68306.3968000002],[261380.2977,68544.9985000007],[257605.7005,65244.6031999998],[256527.601,65168.7050000001],[256456.0009,64429.8964000009],[253843.8007,63605.8023000006],[252647.096,65406.8968000002],[250493.9972,63295.6010999996],[250441.5009,64697.1998999994],[247374.2239,64881.3103],[244917.57,61656.7100000009],[244478.7267,61799.2243000008],[243891.58,61989.9000000004],[242697.45,65085.6199999992],[241755.25,64065.25],[240387.95,65386.4100000001],[242640.37,66331.2899999991],[241858.0361,68077.1411000006],[242603.75,68916.2599999998],[244015.2,68164.5],[245418.32,69090.6400000006],[245128.79,69879.6999999993],[243878.07,69338.9199999999],[243628.5275,70929.8644999992]]]},"properties":{"OBJECTID":87,"lad19cd":"E07000047","lad19nm":"West Devon","lad19nmw":" ","bng_e":256376,"bng_n":86999,"long":-4.03361,"lat":50.66489,"GlobalID":"5958613a-2606-4980-ab33-db7e60a5c3f8"}},{"type":"Feature","id":88,"geometry":{"type":"Polygon","coordinates":[[[556033.7722,95537.2994999997],[556368.3011,99579.6049000006],[557529.6015,101917.695699999],[557077.599,102511.2958],[558341.2041,103063.397700001],[559272.6981,102411.4044],[559836.7015,103673.6031],[560529.3032,103049.9016],[561382.4031,103999.6997],[564945.8851,102561.3969],[559588.646,95655.1699999999],[556033.7722,95537.2994999997]]]},"properties":{"OBJECTID":88,"lad19cd":"E07000061","lad19nm":"Eastbourne","lad19nmw":" ","bng_e":559339,"bng_n":99575,"long":0.258516,"lat":50.773869,"GlobalID":"ec192d21-6ed4-4f2e-847b-53ff554c6aba"}},{"type":"Feature","id":89,"geometry":{"type":"Polygon","coordinates":[[[576156.4129,107728.3332],[577561.9009,108831.5966],[577382.8017,111679.8013],[578506.6035,113659.4046],[583265.9991,112013.3958],[584093.8032,112785.2049],[587158.5646,111191.6362],[582546.42,109191.76],[576156.4129,107728.3332]]]},"properties":{"OBJECTID":89,"lad19cd":"E07000062","lad19nm":"Hastings","lad19nmw":" ","bng_e":581528,"bng_n":110694,"long":0.578395,"lat":50.867241,"GlobalID":"f4d6aa35-650a-40cd-b33f-fd33beb1b854"}},{"type":"Feature","id":90,"geometry":{"type":"Polygon","coordinates":[[[550819.0965,101319.674699999],[551276.824,101212.2424],[551331.654,100534.559699999],[551062.7202,100082.8397],[551653.0035,97731.5979999993],[551661.5526,97697.5448000003],[549761.764,97559.0580000002],[545200.31,100082.970000001],[545234.5,99388.75],[538319.7471,101780.125600001],[539862.3979,103579.100099999],[539529.8993,104344.1011],[537731.0991,104295.595000001],[538316.4984,106471.302200001],[535739.8014,106404.101500001],[534839.3005,109927.302999999],[533939.5995,110440.9959],[532244.2995,109895.0022],[531282.4966,110391.0002],[531277.7969,111339.898600001],[532195.0023,117561.297700001],[533276.004,118049.098099999],[532416.1018,121320.6017],[535290.8001,123130.4036],[536173.5988,121678.699200001],[538765.2029,121925.998400001],[539273.0986,124441.998199999],[540717.0974,123495.698999999],[541283.3023,121726.195599999],[542405.1005,122122.6021],[543271.9038,120557.0002],[544288.8991,120721.7031],[543981.1027,118339.095100001],[544681.801,116086.300000001],[549256.6968,115012.8972],[547241.2988,111579.899900001],[547753.9025,109930.402100001],[548887.4006,110039.1009],[549824.6991,108517.0966],[547871.0978,104406.103399999],[549323.1026,101670.7963],[550819.0965,101319.674699999]]]},"properties":{"OBJECTID":90,"lad19cd":"E07000063","lad19nm":"Lewes","lad19nmw":" ","bng_e":541474,"bng_n":105686,"long":0.007671,"lat":50.833408,"GlobalID":"825ce1fd-7410-46fb-8209-bbcfb2e26582"}},{"type":"Feature","id":91,"geometry":{"type":"Polygon","coordinates":[[[567948.2009,134262.3971],[569549.2021,132036.404300001],[572731.2021,131269.2039],[573456.0996,128583.602600001],[578066.9027,127764.3971],[578409.7983,126588.8037],[580294.6027,125853.6041],[582858.3962,126862.5953],[586760.6023,127638.6031],[587913.2041,126067.402899999],[590044.2968,125065.6996],[592389.3983,125939.999399999],[595126.2969,124797.1965],[595057.4011,123228.795399999],[595554.702,123448.102700001],[597712.5004,119607.502],[599644.5986,121419.5033],[600686.7001,120960.9046],[601609.8996,118784.6976],[600750.0241,117710.077099999],[594882.28,118303.550000001],[595102.2,117875.995999999],[591985.38,116210.380000001],[587158.5646,111191.6362],[584093.8032,112785.2049],[583265.9991,112013.3958],[578506.6035,113659.4046],[577382.8017,111679.8013],[577561.9009,108831.5966],[576156.4129,107728.3332],[567560.5452,105006.1304],[567365.9017,107286.798800001],[572481.5004,111111.504000001],[571381.098,113312.503900001],[570000.0998,113606.299900001],[567012.8977,112071.3992],[567057.0005,113675.699999999],[565873.1993,115317.300100001],[566405.5994,117506.803300001],[564689.2993,118168.6039],[564166.7026,119665.995300001],[564682.4971,120361.5962],[563258.7977,120843.3983],[563445.6967,126302.9955],[565207.5014,126876.101399999],[564664.3992,127590.197000001],[565552.2026,132201.596999999],[567932.2962,133239.799799999],[567948.2009,134262.3971]]]},"properties":{"OBJECTID":91,"lad19cd":"E07000064","lad19nm":"Rother","lad19nmw":" ","bng_e":578721,"bng_n":119666,"long":0.542937,"lat":50.948711,"GlobalID":"3607e6a7-23a0-4ea3-a08c-a6706fae59f0"}},{"type":"Feature","id":92,"geometry":{"type":"Polygon","coordinates":[[[550819.0965,101319.674699999],[549323.1026,101670.7963],[547871.0978,104406.103399999],[549824.6991,108517.0966],[548887.4006,110039.1009],[547753.9025,109930.402100001],[547241.2988,111579.899900001],[549256.6968,115012.8972],[544681.801,116086.300000001],[543981.1027,118339.095100001],[544288.8991,120721.7031],[543271.9038,120557.0002],[542405.1005,122122.6021],[541283.3023,121726.195599999],[540717.0974,123495.698999999],[539273.0986,124441.998199999],[538815.2999,127100.0973],[540214.2971,128166.302100001],[540077.998,129476.697000001],[541221.7034,130559.1971],[539662.4964,130455.096899999],[539279.9998,132393.1022],[538324.1993,132494.903000001],[537614.1017,134514.095100001],[540856.6039,135575.601199999],[540763.8964,136486.600400001],[541422.6026,135746.102399999],[543216.901,136582.2031],[542046.696,137337.197000001],[541923.4983,139796.503],[543499.5994,140151.701300001],[549297.3038,140831.5967],[551262.2997,139780.5975],[550638.297,138261.102499999],[552095.2982,137366.898499999],[555889.9969,138488.297499999],[557199.5022,137461.001499999],[559387.2962,137247.2027],[559239.2974,138102.198000001],[562815.1969,138529.8956],[563542.9967,136621.6018],[565244.802,136555.0009],[564747.5012,134267.3957],[566348.2963,134808.1009],[567948.2009,134262.3971],[567932.2962,133239.799799999],[565552.2026,132201.596999999],[564664.3992,127590.197000001],[565207.5014,126876.101399999],[563445.6967,126302.9955],[563258.7977,120843.3983],[564682.4971,120361.5962],[564166.7026,119665.995300001],[564689.2993,118168.6039],[566405.5994,117506.803300001],[565873.1993,115317.300100001],[567057.0005,113675.699999999],[567012.8977,112071.3992],[570000.0998,113606.299900001],[571381.098,113312.503900001],[572481.5004,111111.504000001],[567365.9017,107286.798800001],[567560.5452,105006.1304],[564945.8851,102561.3969],[561382.4031,103999.6997],[560529.3032,103049.9016],[559836.7015,103673.6031],[559272.6981,102411.4044],[558341.2041,103063.397700001],[557077.599,102511.2958],[557529.6015,101917.695699999],[556368.3011,99579.6049000006],[556033.7722,95537.2994999997],[552133.6794,97464.2742999997],[551661.5526,97697.5448000003],[551653.0035,97731.5979999993],[551062.7202,100082.8397],[551331.654,100534.559699999],[551276.824,101212.2424],[550819.0965,101319.674699999]]]},"properties":{"OBJECTID":92,"lad19cd":"E07000065","lad19nm":"Wealden","lad19nmw":" ","bng_e":555048,"bng_n":117180,"long":0.205156,"lat":50.93322,"GlobalID":"fe041774-33b6-4f85-9a7e-5867a91218b3"}},{"type":"Feature","id":93,"geometry":{"type":"Polygon","coordinates":[[[577747.25,194636.699999999],[577595.5055,193744.5713],[576648.0019,191714.401699999],[577849.802,190828.6952],[576324.8037,188958.000700001],[576516.752,186107.2162],[575956.4678,184416.2651],[575925.5262,184413.262399999],[574754.38,184234.119999999],[573906.87,185126.390000001],[573231.6884,185152.4859],[570754.4981,186738.8959],[568434.2967,185707.801000001],[567767.296,186964.201400001],[566020.4974,187022.3048],[565870.0003,188078.9023],[565233.498,187905.901799999],[564536.9965,193376.3959],[566289.0967,197421.2981],[569114.102,197031.899499999],[569891.3969,194660.0985],[573490.8031,194403.8018],[574152.6011,195010.998],[574608.9982,194116.604],[576917.5243,194008.7028],[577747.25,194636.699999999]]]},"properties":{"OBJECTID":93,"lad19cd":"E07000066","lad19nm":"Basildon","lad19nmw":" ","bng_e":571548,"bng_n":190848,"long":0.475055,"lat":51.590359,"GlobalID":"6dfb6c54-59c5-4590-bec8-5c563fc1c8aa"}},{"type":"Feature","id":94,"geometry":{"type":"Polygon","coordinates":[[[582134.4964,246338.4957],[583998.5975,246577.0974],[585971.8962,245010.695800001],[585388.0964,244212.904100001],[586353.8981,242402.102499999],[585198.7981,242331.3027],[585038.4976,241308.0956],[586314.7011,240021.304],[588098.0996,240520.601],[588039.5019,238235.395199999],[589647.6022,236824.698999999],[589596.7961,235480.503799999],[590636.3004,235204.1029],[590525.0004,233845.0019],[591174.101,233434.1995],[590028.5982,232032.8007],[589027.4004,232035.999700001],[587633.0039,226544.1018],[585806.3024,226209.297599999],[587507.0029,223527.6952],[587100.9996,222672.899900001],[588489.6988,222772.4014],[589648.8966,221864.4013],[589511.1959,220797.9966],[588348.296,220181.902899999],[588966.7003,219226.896299999],[586943.2963,218578.202],[587610.6021,218124.901699999],[586801.5967,216833.001499999],[585957.4014,217939.9047],[584753.0041,215837.6964],[583468.102,215237.498299999],[582960.5031,212904.1962],[581765.9999,211885.197799999],[582801.9011,210295.8028],[580803.8012,210340.9999],[579478.5973,208941.000600001],[579090.4033,209487.5042],[577636.7001,209041.002],[574104.3016,214654.0953],[574791.7995,215511.899700001],[573611.1974,219871.8017],[573161.1985,221409.1017],[569919.999,222885.698999999],[567395.4025,227937.502900001],[566590.7011,228078.3026],[567083.7969,231158.0011],[565812.4992,233034.9038],[566570.0966,233300.097899999],[566747.9014,234813.504699999],[565756.103,237554.9999],[567388.4025,237872.799000001],[566859.0036,240625.401000001],[564323.1031,239751.701099999],[564008.7025,240256.296700001],[563269.4997,241689.896299999],[564926.6004,243518.902799999],[567206.6978,244355.303400001],[568273.8973,243925.296499999],[569128.9019,245101.899700001],[571622.1012,242448.099300001],[572241.8,243135.102700001],[574389.1025,242979.0973],[574978.2038,244230.099199999],[577050.501,245087.4038],[582134.4964,246338.4957]]]},"properties":{"OBJECTID":94,"lad19cd":"E07000067","lad19nm":"Braintree","lad19nmw":" ","bng_e":577253,"bng_n":227335,"long":0.575911,"lat":51.91634,"GlobalID":"91f67720-eaf7-4fda-8354-da4f3efde06d"}},{"type":"Feature","id":95,"geometry":{"type":"Polygon","coordinates":[[[561328.0022,204608.900699999],[562283.2997,202067.3982],[563257.8,201706.9013],[564400.2027,202671.7951],[566116.7997,200913.7984],[566923.8015,199657.498],[566104.3002,198667.701300001],[566289.0967,197421.2981],[564536.9965,193376.3959],[565233.498,187905.901799999],[560412.2975,187750.496300001],[558841.3,187531.9989],[557304.9978,191410.398700001],[556199.096,191601.403999999],[556906.7036,192371.503599999],[556018.0015,193395.7004],[554024.9971,194889.3029],[552402.402,194083.103599999],[550596.9975,197463.2961],[551801.6999,197199.601500001],[551631.8021,197942.5989],[552824.3018,198106.6019],[553252.5997,199664.595899999],[554921.598,199639.802999999],[554433.2018,200701.599099999],[556648.5013,202527.396500001],[559252.8028,200530.598099999],[560582.5992,204268.3981],[561328.0022,204608.900699999]]]},"properties":{"OBJECTID":95,"lad19cd":"E07000068","lad19nm":"Brentwood","lad19nmw":" ","bng_e":558560,"bng_n":196070,"long":0.290091,"lat":51.641079,"GlobalID":"ca5c33a0-3aa7-4859-8bb6-ef083f2f9e2c"}},{"type":"Feature","id":96,"geometry":{"type":"MultiPolygon","coordinates":[[[[582503.1001,189021.8024],[582197.0751,185403.578199999],[580998.8,185006.6],[578461.7089,185629.6106],[581986.2,184140.4],[581758.7,183400],[583029.3,183630.699999999],[578680.05,181908.4],[577304.55,182086],[574754.38,184234.119999999],[575925.5262,184413.262399999],[575956.4678,184416.2651],[576516.752,186107.2162],[576324.8037,188958.000700001],[577849.802,190828.6952],[582503.1001,189021.8024]]],[[[582308.8903,184789.5902],[582283.7283,184738.5889],[581048,184994.77],[582099.107,185210.7984],[582104.5232,185196.044299999],[582330.4931,184847.4662],[582308.8903,184789.5902]]]]},"properties":{"OBJECTID":96,"lad19cd":"E07000069","lad19nm":"Castle Point","lad19nmw":" ","bng_e":579490,"bng_n":187920,"long":0.588084,"lat":51.561588,"GlobalID":"8d9e42db-6860-4b89-95cc-2ca7ff97c04f"}},{"type":"Feature","id":97,"geometry":{"type":"Polygon","coordinates":[[[567606.204,217594.603499999],[568624.502,217299.8979],[573611.1974,219871.8017],[574791.7995,215511.899700001],[574104.3016,214654.0953],[577636.7001,209041.002],[579090.4033,209487.5042],[578902.5973,206738.0012],[580447.9032,205899.601199999],[579961.7991,203676.997400001],[580643.6986,203231.305],[580450.3025,201352.8027],[581232.0992,200645.1953],[582003.2907,196918.1176],[583252.4,196412.800000001],[582981.3,195951.800000001],[580499.013,195541.459000001],[579209.532,195663.505999999],[579104.67,194805.66],[577747.25,194636.699999999],[576917.5243,194008.7028],[574608.9982,194116.604],[574152.6011,195010.998],[573490.8031,194403.8018],[569891.3969,194660.0985],[569114.102,197031.899499999],[566289.0967,197421.2981],[566104.3002,198667.701300001],[566923.8015,199657.498],[566116.7997,200913.7984],[564400.2027,202671.7951],[563257.8,201706.9013],[562283.2997,202067.3982],[561328.0022,204608.900699999],[562209.1024,206131.7048],[562024.2976,210261.7026],[560980.9016,211567.6987],[561506.1038,213237.400800001],[563024.003,213334.1031],[562929.3003,214025.994999999],[564501.8973,213623.500299999],[565538.3015,215403.8006],[565873.9002,214820.4976],[566517.8972,215600.904200001],[565677.8986,218471.3026],[566282.3028,220315.004799999],[567039.2983,220061.7973],[567606.204,217594.603499999]]]},"properties":{"OBJECTID":97,"lad19cd":"E07000070","lad19nm":"Chelmsford","lad19nmw":" ","bng_e":572116,"bng_n":206972,"long":0.491177,"lat":51.735031,"GlobalID":"10a9b73e-3cf4-4956-8b1c-1c8cf1cc0502"}},{"type":"Feature","id":98,"geometry":{"type":"MultiPolygon","coordinates":[[[[605183.3919,220740.3324],[605233.6,219414.390000001],[604500.44,218692.5],[605643.5,217400.23],[604484.73,217936.91],[604172.63,219094.960000001],[603753.8977,218660.1273],[602948.71,217823.98],[606305.95,216298.529999999],[604136.8416,216541.7206],[601117.1,216555.4],[601461.2482,215851.203400001],[602580.22,215982.68],[601522.5,215725.869999999],[600320.26,215717.140000001],[599622.52,212899.789999999],[597772.73,214345.130000001],[598216.36,213297.67],[596571.156,213682.763],[596110.27,213111.66],[595267.61,213824.73],[596228.0386,212944.75],[593474.3989,213834.1],[594303.8026,213815.0954],[593980.4972,214901.904300001],[591668.9036,216198.903100001],[590000.1033,214955.8989],[587529.1986,214461.600400001],[587149.4971,215683.000700001],[587717.4993,215876.295399999],[586801.5967,216833.001499999],[587610.6021,218124.901699999],[586943.2963,218578.202],[588966.7003,219226.896299999],[588348.296,220181.902899999],[589511.1959,220797.9966],[589648.8966,221864.4013],[588489.6988,222772.4014],[587100.9996,222672.899900001],[587507.0029,223527.6952],[585806.3024,226209.297599999],[587633.0039,226544.1018],[589027.4004,232035.999700001],[590028.5982,232032.8007],[591174.101,233434.1995],[593218.9009,232865.102399999],[594131.1015,233775.002],[595922.5966,232978.199999999],[598576.5993,234488.397700001],[601000.5978,234898.000499999],[602243.6975,234335.2016],[603565.8012,235109.9998],[604209.1963,233492.7028],[606106.5993,233744.3007],[607934.4963,232810.3981],[606722.596,230610.4978],[603405.7976,230664.802200001],[601668.1015,228635.802999999],[603524.3039,226920.604],[602982.1993,226130.600099999],[603960.7974,225499.400800001],[603334.6015,224313.700200001],[605124.2002,223479.099099999],[605191.7026,221463.9959],[604386.3541,221183.342499999],[605183.3919,220740.3324]]],[[[601767.793,214816.298599999],[602971.5961,216106.2995],[604553.1765,216385.299699999],[606877.91,215729.74],[606977.56,214754.470000001],[603307.33,212550.789999999],[600332.49,212320.74],[600241.39,213700.439999999],[601767.793,214816.298599999]]]]},"properties":{"OBJECTID":98,"lad19cd":"E07000071","lad19nm":"Colchester","lad19nmw":" ","bng_e":596944,"bng_n":223693,"long":0.859777,"lat":51.877022,"GlobalID":"0e844ee1-93f9-4134-b862-e438ae0f1b3a"}},{"type":"Feature","id":99,"geometry":{"type":"Polygon","coordinates":[[[549393.9029,215943.396199999],[550931.4996,215711.2027],[551577.797,213074.497400001],[553985.5032,213077.4965],[554460.6991,211379.602600001],[558420.3979,212670.303099999],[558743.4971,210631.796599999],[562024.2976,210261.7026],[562209.1024,206131.7048],[561328.0022,204608.900699999],[560582.5992,204268.3981],[559252.8028,200530.598099999],[556648.5013,202527.396500001],[554433.2018,200701.599099999],[554921.598,199639.802999999],[553252.5997,199664.595899999],[552824.3018,198106.6019],[551631.8021,197942.5989],[551801.6999,197199.601500001],[550596.9975,197463.2961],[552402.402,194083.103599999],[548106.8983,193800.9044],[543642.9975,191573.602],[540036.3027,194159.7017],[540060.7988,195527.3002],[537625.1006,196029.4965],[537543.796,199883.103399999],[536935.5001,202352.396600001],[537248.1034,206701.1018],[538252.7971,207044.5035],[539081.2031,209217.8014],[539932.1016,210332.0024],[542044.0988,211002.600500001],[542558.5988,207884.403100001],[544592.8038,206234.0954],[545239.901,207378.8978],[548306.099,208722.803099999],[549645.8967,211568.998299999],[548092.8982,213021.102700001],[548875,214966.695800001],[549849.5992,215305.898700001],[549393.9029,215943.396199999]]]},"properties":{"OBJECTID":99,"lad19cd":"E07000072","lad19nm":"Epping Forest","lad19nmw":" ","bng_e":548919,"bng_n":203758,"long":0.154147,"lat":51.712791,"GlobalID":"ca89a0b4-a356-4f57-bf02-a2585ae8f6f2"}},{"type":"Feature","id":100,"geometry":{"type":"Polygon","coordinates":[[[542044.0988,211002.600500001],[548092.8982,213021.102700001],[549645.8967,211568.998299999],[548306.099,208722.803099999],[545239.901,207378.8978],[544592.8038,206234.0954],[542558.5988,207884.403100001],[542044.0988,211002.600500001]]]},"properties":{"OBJECTID":100,"lad19cd":"E07000073","lad19nm":"Harlow","lad19nmw":" ","bng_e":545276,"bng_n":209589,"long":0.103888,"lat":51.76614,"GlobalID":"22095ff3-e12d-444a-b8d5-742148eee8ef"}},{"type":"Feature","id":101,"geometry":{"type":"MultiPolygon","coordinates":[[[[583950.67,196274.18],[583252.4,196412.800000001],[582003.2907,196918.1176],[581232.0992,200645.1953],[580450.3025,201352.8027],[580643.6986,203231.305],[579961.7991,203676.997400001],[580447.9032,205899.601199999],[578902.5973,206738.0012],[579090.4033,209487.5042],[579478.5973,208941.000600001],[580803.8012,210340.9999],[582801.9011,210295.8028],[581765.9999,211885.197799999],[582960.5031,212904.1962],[583468.102,215237.498299999],[584753.0041,215837.6964],[585957.4014,217939.9047],[586801.5967,216833.001499999],[587717.4993,215876.295399999],[587149.4971,215683.000700001],[587529.1986,214461.600400001],[590000.1033,214955.8989],[591668.9036,216198.903100001],[593980.4972,214901.904300001],[594303.8026,213815.0954],[593474.3989,213834.1],[596228.0386,212944.75],[598545.743,212880.465299999],[598575.86,212879.630000001],[598584.704,212868.046499999],[599566.241,211582.471999999],[597041.1508,211974.5319],[595811.4,212165.470000001],[595483.93,211663.76],[596973.5,211171.9],[596824.3,210325.039999999],[597565.9,211030.199999999],[599045.9,210485.73],[597278.4,208868.5],[596659.13,209256.529999999],[597067.3,208658.199999999],[596290.3,208270.300000001],[592861.6,208853.9],[592645.3003,207894.9],[591793.503,208678.595699999],[589035.43,206958.640000001],[587470.06,207805.85],[586961.05,206251.23],[586516.58,206497.51],[587395.9007,205117.495100001],[589876.9963,204985.7028],[589837.5024,204248.7038],[591422.2032,204697.7952],[589344.7034,202263.901900001],[590650.1027,202705.195599999],[591291.9972,204067.695599999],[591605.9031,204226.200200001],[593384.099,204726.497],[593058.9962,205842.397600001],[594857.8,206245.9],[597136.14,205469.02],[599228.3687,208043.230699999],[599931.54,208908.390000001],[602383.024,209384.545],[603749.095,207530.708000001],[603193.158,203311.556],[603805.47,202822.380999999],[603180.137,202934.895],[603804.531,202634.612],[602779.314,202639.486],[603934.816,202393.126],[602767.23,201894.380000001],[603807.7,201736.184],[602872.036,201440.361],[603808.729,201535.876],[602956.98,201251.664000001],[603673.473,201343.343],[602902.163,200493.608999999],[603575.088,200232.630999999],[603175.902,196747.130000001],[601136.328,195519.866],[598040.5,195262.4],[593479.28,195572.66],[591341.99,196730.439999999],[589432,195924.1],[588463.13,196497.859999999],[583950.67,196274.18]]],[[[591383.5,206752.699999999],[592642.1,206298.199999999],[591442.4,205889.199999999],[590347.8,206494.699999999],[591383.5,206752.699999999]]],[[[588013.2,207051.5],[588414.6,205552.4],[587158,205793.800000001],[588013.2,207051.5]]],[[[595895.7796,212108.3464],[597174.6681,211522.407299999],[595601.4115,211639.2466],[595895.7796,212108.3464]]]]},"properties":{"OBJECTID":101,"lad19cd":"E07000074","lad19nm":"Maldon","lad19nmw":" ","bng_e":591413,"bng_n":212072,"long":0.773106,"lat":51.774578,"GlobalID":"619b0c47-1cd1-446f-95aa-c41583d73ddd"}},{"type":"Feature","id":102,"geometry":{"type":"MultiPolygon","coordinates":[[[[594828.2366,193110.804400001],[595343.82,192514.369999999],[593820.89,191208.26],[591614.1,190772.199999999],[594480.67,191198.32],[593657.6,190088.6],[594665.6,190385.800000001],[595405.4,188543.699999999],[597716.2,188012.300000001],[595718.2092,186217.950099999],[593494.5993,186302.300899999],[593290.6,187463.5984],[585490.7969,189390.596799999],[582954.2039,189736.297900001],[582503.1001,189021.8024],[577849.802,190828.6952],[576648.0019,191714.401699999],[577595.5055,193744.5713],[577747.25,194636.699999999],[579104.67,194805.66],[579209.532,195663.505999999],[580499.013,195541.459000001],[582981.3,195951.800000001],[583252.4,196412.800000001],[583950.67,196274.18],[588463.13,196497.859999999],[589432,195924.1],[591341.99,196730.439999999],[592828.87,195389.65],[594459.88,195246.17],[598476.78,194622.23],[598398.809,193879.868000001],[597982.432,193728.290999999],[597771.36,192412.119999999],[595431.86,192664.57],[594828.2366,193110.804400001]]],[[[603038.8017,192243.600199999],[598787.4998,188343.896500001],[596958.3989,188572.700999999],[595950.5969,188848.801899999],[596769.0016,190774.8006],[596865.6008,190839.202199999],[596671.3966,192122.9047],[598661.004,192375.102499999],[599100.8038,194504.2031],[604827.1967,195443.404200001],[603038.8017,192243.600199999]]],[[[596672.7982,191182.9038],[595752.6989,188887.400900001],[594632.698,191154.202],[596117.4027,192362.7961],[596672.7982,191182.9038]]]]},"properties":{"OBJECTID":102,"lad19cd":"E07000075","lad19nm":"Rochford","lad19nmw":" ","bng_e":585979,"bng_n":191417,"long":0.683442,"lat":51.5909,"GlobalID":"f8d0b360-550c-4e38-b099-93b671768b42"}},{"type":"Feature","id":103,"geometry":{"type":"MultiPolygon","coordinates":[[[[610528.57,231922.27],[614515.4,231434.6],[617957.4,232469],[618703.97,231805.199999999],[621930,231691.699999999],[623178.6086,232750.822000001],[625352.9472,231812.5151],[626306.1462,232982.9495],[626711.35,231473.949999999],[625914.25,231581.15],[623584,229174.6],[623809.5501,229006.3258],[624174.3,228734.199999999],[623812,227622.1],[623448.89,226889.74],[623738.5291,227626.1894],[622576.4454,227690.8718],[622015.22,227722.109999999],[621089.26,226883.16],[622238,226255.699999999],[621147.9,226188.1],[620251.6,225526.300000001],[621027.2,224863.1],[620977.0222,224842.464],[618883.48,223981.48],[621206.9,223516.1],[622198.8,224203],[622697.9,222325.33],[622897.9,223044],[623817.1,223181.199999999],[623902.1,222495.800000001],[624042.92,223352.050000001],[625007.4676,223383.9274],[625241.6,222072],[625236.6,223391.5],[625138.639,223388.262499999],[625021.6,224884.5],[626286.3,224788.699999999],[625166.1,224912.4],[624711.7,225883.699999999],[626616.7,224616],[626447.6,222962.960000001],[622461.99,217650.27],[616334.74,213225.84],[610861.08,212283.560000001],[610077.6,212273.1],[608167.63,215701.140000001],[609954.1374,215914.7992],[611056.91,216990.43],[611292.31,217616.33],[611520.64,218055.689999999],[610028.11,218192.609999999],[611219.8327,217649.3685],[610648.5601,216877.7104],[607809.3,216093.970000001],[605689.85,219369.73],[608230.97,219443.199999999],[605748.1,219808.210000001],[605183.3919,220740.3324],[604386.3541,221183.342499999],[605191.7026,221463.9959],[605124.2002,223479.099099999],[603334.6015,224313.700200001],[603960.7974,225499.400800001],[602982.1993,226130.600099999],[603524.3039,226920.604],[601668.1015,228635.802999999],[603405.7976,230664.802200001],[606722.596,230610.4978],[607934.4963,232810.3981],[609462.3969,233390.602],[609949.7436,232682.9234],[610528.57,231922.27]]],[[[624278.67,225558.810000001],[623466.28,223898.27],[622184,224556.699999999],[622378.6,225251.800000001],[624278.67,225558.810000001]]],[[[621637.6796,224848.919199999],[622038.6,225106.300000001],[621881.48,224178.74],[620852.7,223982],[621637.6796,224848.919199999]]],[[[622611.4,226622.199999999],[623246.5,225860.300000001],[622477.3,225927.300000001],[622611.4,226622.199999999]]],[[[624670.1,225214.5],[624763.5,224419.6],[624157.9009,224557.498],[624670.1,225214.5]]]]},"properties":{"OBJECTID":103,"lad19cd":"E07000076","lad19nm":"Tendring","lad19nmw":" ","bng_e":614190,"bng_n":222141,"long":1.108981,"lat":51.856739,"GlobalID":"c9543e16-67de-43a7-ad8f-e645ec639015"}},{"type":"Feature","id":104,"geometry":{"type":"Polygon","coordinates":[[[542051.4039,236168.096899999],[543656.6019,237979.7983],[544457.0984,242299.901699999],[545372.597,242293.3036],[546034.7001,240905.800799999],[547592.2993,241567.101500001],[548655.3021,241079.900900001],[548713.1989,241839.5035],[550228.097,242463.9048],[549723.4992,243893.695499999],[551046.4028,246103.1031],[553233.7021,245761.001],[554396.8988,244437.399900001],[556031.1029,246252.9002],[556709.0036,246025.895199999],[559420.1033,244150.1021],[560961.6,241632.002900001],[564008.7025,240256.296700001],[564323.1031,239751.701099999],[566859.0036,240625.401000001],[567388.4025,237872.799000001],[565756.103,237554.9999],[566747.9014,234813.504699999],[566570.0966,233300.097899999],[565812.4992,233034.9038],[567083.7969,231158.0011],[566590.7011,228078.3026],[567395.4025,227937.502900001],[569919.999,222885.698999999],[573161.1985,221409.1017],[573611.1974,219871.8017],[568624.502,217299.8979],[567606.204,217594.603499999],[567039.2983,220061.7973],[566282.3028,220315.004799999],[565677.8986,218471.3026],[566517.8972,215600.904200001],[565873.9002,214820.4976],[565538.3015,215403.8006],[564501.8973,213623.500299999],[562929.3003,214025.994999999],[563024.003,213334.1031],[561506.1038,213237.400800001],[560980.9016,211567.6987],[562024.2976,210261.7026],[558743.4971,210631.796599999],[558420.3979,212670.303099999],[554460.6991,211379.602600001],[553985.5032,213077.4965],[551577.797,213074.497400001],[550931.4996,215711.2027],[549393.9029,215943.396199999],[549553.7004,220340.997400001],[551262.0029,221111.696799999],[549793.6977,222706.700200001],[550368.9968,223913.604699999],[546332.1984,222801.802999999],[546211.3011,227141.500800001],[544829.7009,232466.996400001],[544064.8973,233837.0042],[542184.2978,233751.5987],[542051.4039,236168.096899999]]]},"properties":{"OBJECTID":104,"lad19cd":"E07000077","lad19nm":"Uttlesford","lad19nmw":" ","bng_e":557832,"bng_n":228865,"long":0.294485,"lat":51.935921,"GlobalID":"95e6114d-a5ac-4f70-b61e-3a1cbcd34732"}},{"type":"Feature","id":105,"geometry":{"type":"Polygon","coordinates":[[[395223.9989,218495.695599999],[393383.2972,220036.804500001],[391301.9965,220135.1963],[391410.9962,221004.997300001],[390293.8976,220669.803300001],[391521.3975,224541.605],[392556.4001,224152.0965],[392995.8041,224986.397700001],[392770.4006,226713.0034],[397349.3036,224876.3991],[397488.8017,222970.604699999],[399393.4026,222708.399700001],[398357.4024,218410.9998],[396840.3029,217750.798800001],[395223.9989,218495.695599999]]]},"properties":{"OBJECTID":105,"lad19cd":"E07000078","lad19nm":"Cheltenham","lad19nmw":" ","bng_e":394925,"bng_n":222232,"long":-2.07515,"lat":51.898609,"GlobalID":"5221de15-8aac-4765-9e6a-8ac094ed14e3"}},{"type":"Feature","id":106,"geometry":{"type":"Polygon","coordinates":[[[416007.5965,246053.7972],[417496.2011,243875.1008],[418689.5005,244675.8016],[418555.8975,241703.202500001],[419773.2973,240949.8982],[420539.7005,241645.2991],[420311.8977,240186.9965],[421447.2014,239315.9959],[421086.4964,237945.7981],[423156.3036,237037.1982],[425858.2019,237907.3991],[426333.7028,237293.2049],[423015.6016,233215.0023],[423049.2002,232166.4024],[423282.7993,229555.4998],[425351.3037,228636.402899999],[426550.8035,226643.903200001],[424473.3037,224921.8961],[425344.4026,222360.3993],[423584.2965,222054.3969],[423012.0975,219877.200200001],[421657.5988,218592.097999999],[422386.8992,216905.8007],[421700.3989,215139.496300001],[422027.2991,211752.795700001],[419446.6032,209430.9004],[420748.1026,208031.6009],[421706.896,204621.097200001],[421103.3988,202800.498299999],[421652.5034,201524.603499999],[424413.6012,198427.699999999],[423018.6028,198015.2981],[422004.5015,199086.601399999],[421051.6033,199297.4011],[420077.3009,197041.3968],[418938.3035,196527.304],[417125.5031,195965.4048],[414715.2986,196490.204600001],[413091.7966,200505.5952],[412323.8021,197204.800100001],[412832.9017,196045.002],[410438.9977,195287.698799999],[408815.2978,198210.202299999],[407078.4014,197884.5955],[408633.4035,194762.7991],[405567.5022,195386.7005],[404102.998,196850.4015],[402651.6034,195541.496200001],[403520.5009,193129.296700001],[401665.1973,193253.901000001],[400420.8032,194729.7985],[399017.4031,194635.5955],[396142.4987,197075.797],[389528.8961,187954.298],[387664.3002,189037.797800001],[386933.4003,188200.7974],[385788.6973,188587.196799999],[385730.5036,189416.0995],[383341.1014,188167.397],[383111.9959,186978.397299999],[381208.9039,186560.397],[380503.3987,186666.0967],[379893.998,188356.7028],[380903.0038,191236.998299999],[379764.3032,192674.4968],[378336.3988,191850.9026],[377699.3029,192746.7961],[380492.8038,196369.2992],[380241.9973,198024.5954],[383013.7972,197537.2049],[383998.9996,195818.4969],[386807.9022,195681.3961],[387126.2028,196852.400900001],[385449.9984,198185.6993],[386228.9011,199361.8026],[389734.8,198964.1964],[391537.797,200738.898399999],[390807.804,202729.6986],[394246.7035,203291.697699999],[394328.8986,204125.598999999],[395357.6019,204418.895],[393908.1036,205369.502900001],[392778.7034,205041.9967],[393012.5004,207626.696799999],[395061.0023,207898.399],[394315.5003,210035.2974],[392122.1987,211207.002],[390842.4992,213484.899900001],[392177.3993,213801.8992],[393318.5982,217556.204500001],[394439.102,217372.597100001],[395223.9989,218495.695599999],[396840.3029,217750.798800001],[398357.4024,218410.9998],[399393.4026,222708.399700001],[400497.3009,224048.896],[402765.8964,222663.8025],[404952.8,222907.602700001],[406141.6965,221007.5966],[407251.6961,221754.2029],[410170.1015,221662.3991],[408302.8013,222032.803099999],[409149.0001,223288.503699999],[407809.9033,223711.2027],[407852.4973,225302.2972],[405377.198,226266.3013],[404792.3016,228761.097200001],[406215.2013,230104.002800001],[407168.8003,229097.6008],[408718.7976,229630.8982],[409130.3003,231354.8047],[408102.1989,231689.198999999],[409340.302,232975.500800001],[412992.6003,232189.3958],[413353.8988,233820.198999999],[411144.0988,234271.999700001],[412100.5011,236960.3002],[411441.0034,238382.403100001],[409459.5998,239455.4959],[408705.1025,241297.4987],[410607.502,242349.997400001],[411628.0014,241612.398499999],[412502.4973,243019.795700001],[412929.6987,242280.0974],[413640.2003,244305.997500001],[416007.5965,246053.7972]]]},"properties":{"OBJECTID":106,"lad19cd":"E07000079","lad19nm":"Cotswold","lad19nmw":" ","bng_e":402125,"bng_n":208209,"long":-1.97059,"lat":51.772549,"GlobalID":"7924745c-d543-42a8-819e-1ba271ee4422"}},{"type":"Feature","id":107,"geometry":{"type":"Polygon","coordinates":[[[362333.6014,198469.386],[360938.75,199750.635],[357913.427,197274.551999999],[355185.87,192696.460000001],[354976.11,190288.24],[354401.3941,192516.07],[354191.0831,193186.633400001],[353988.23,194117.66],[352976.8,194438],[353981.1,196368.550000001],[352664.2188,196153.038699999],[352569.24,196259.6],[354624.75,197436.890000001],[353732.8249,198926.8729],[352802.61,200480.82],[352865.4079,200488.578],[352976.5363,200502.3068],[353077.5191,200514.782199999],[353837.58,200608.68],[353722.3116,200896.982999999],[352585.17,203741.140000001],[353869.6588,205103.577500001],[354051.4726,205575.2554],[354352.4972,206356.2005],[353142.3036,208024.6029],[353902.4983,210836.498],[353304.6983,211769.800899999],[354627.404,212654.997500001],[354547.699,213998.402899999],[355272.7037,214366.797499999],[356232.7009,216245.899599999],[357003.3008,215779.703],[358689.9023,217684.3978],[359951.1987,216935.702099999],[360111.796,218279.5975],[363486.4996,218153.703500001],[365089.2982,220855.9],[366519.4041,220317.6041],[369864.9036,222184.6996],[369272.1002,224554.4013],[368050.5037,225597.2028],[368105.5972,228235.397600001],[365678.2017,229242.8993],[366276.0016,229630.2984],[366105.502,231516.398499999],[367758.1997,233024.8967],[366326.6015,234472.102399999],[367233.4016,236119.800799999],[368253.1013,236195.899],[368303.2972,235201.9035],[370136.6031,235241.202299999],[370073.6025,233280.803400001],[371726.1024,232928.904100001],[372700.8006,233152.100299999],[373131.4978,235019.795600001],[375985.097,235939.5024],[375900.9974,235069.701300001],[377806.2001,233952.101299999],[377666.8009,230863.295399999],[378623.2032,230938.503900001],[379455.7977,229852.8047],[381509.2962,230085.3981],[381709.7006,228332.799799999],[380626.1017,228184.0024],[379791.6026,226119.903200001],[380592.7999,225012.3002],[379648.1962,222747.898399999],[380143.6007,221793.4016],[378085.8973,221152.495100001],[377054.9019,219738],[378336.8028,218077.0954],[376834.8791,217585.8837],[376206.3037,217380.3049],[375864.5263,216577.739600001],[375836.7024,216512.4033],[376074.57,214585.619999999],[375171.6,213731.1],[376289.15,211418.029999999],[375979.1315,211047.3182],[375186.44,210483.99],[372275.71,211511.92],[370835.1,213021],[370263.12,212650.43],[369347.6,210334.4],[373633.55,208656.390000001],[373845.9,206978.4],[370253.6,204251.1],[369061.22,204670.08],[366814.15,203100.970000001],[366674.63,199899.939999999],[366218.723,200282.622],[363118.8061,197748.1316],[362333.6014,198469.386]]]},"properties":{"OBJECTID":107,"lad19cd":"E07000080","lad19nm":"Forest of Dean","lad19nmw":" ","bng_e":367175,"bng_n":212759,"long":-2.47755,"lat":51.812489,"GlobalID":"418c58ca-bb96-4019-89fd-3f05b9387509"}},{"type":"Feature","id":108,"geometry":{"type":"Polygon","coordinates":[[[386573.8002,218569.104599999],[387888.2031,217490.6033],[387167.0983,216285.7982],[384701.0995,213639.095799999],[384419.2008,214434.2982],[382911.7976,214095.7951],[381973.6003,212136.7958],[379483.5011,214043.100099999],[379526.4002,214893.9966],[379899.6572,214873.933700001],[380901.2971,216269.003],[380298.5007,217930.497400001],[381642.7013,218887.803400001],[382206.0038,218242.3981],[381677.7015,219656.103399999],[382302.6694,219802.137599999],[385827.5974,220625.7959],[386573.8002,218569.104599999]]]},"properties":{"OBJECTID":108,"lad19cd":"E07000081","lad19nm":"Gloucester","lad19nmw":" ","bng_e":384071,"bng_n":216449,"long":-2.23263,"lat":51.846409,"GlobalID":"a58e923d-6002-4ac8-9220-51c31e378e7b"}},{"type":"Feature","id":109,"geometry":{"type":"Polygon","coordinates":[[[379483.5011,214043.100099999],[381973.6003,212136.7958],[382911.7976,214095.7951],[384419.2008,214434.2982],[384701.0995,213639.095799999],[387167.0983,216285.7982],[389063.2975,214005.101],[390842.4992,213484.899900001],[392122.1987,211207.002],[394315.5003,210035.2974],[395061.0023,207898.399],[393012.5004,207626.696799999],[392778.7034,205041.9967],[393908.1036,205369.502900001],[395357.6019,204418.895],[394328.8986,204125.598999999],[394246.7035,203291.697699999],[390807.804,202729.6986],[391537.797,200738.898399999],[389734.8,198964.1964],[386228.9011,199361.8026],[385449.9984,198185.6993],[387126.2028,196852.400900001],[386807.9022,195681.3961],[383998.9996,195818.4969],[383013.7972,197537.2049],[380241.9973,198024.5954],[380492.8038,196369.2992],[377699.3029,192746.7961],[378336.3988,191850.9026],[379764.3032,192674.4968],[380903.0038,191236.998299999],[379893.998,188356.7028],[377161.8981,188135.496099999],[374777.4017,189496.196599999],[374428.0007,188817.200999999],[372759.9012,188798.6963],[373175.8975,192152.0964],[372380.0017,193002.0031],[373385.3962,193530.401799999],[369449.7977,194948.3959],[366144.699,194117.8037],[366230.5961,196244.604900001],[363118.8061,197748.1316],[366218.723,200282.622],[366674.63,199899.939999999],[366814.15,203100.970000001],[369061.22,204670.08],[370253.6,204251.1],[373845.9,206978.4],[373633.55,208656.390000001],[369347.6,210334.4],[370263.12,212650.43],[370835.1,213021],[372275.71,211511.92],[375186.44,210483.99],[375979.1315,211047.3182],[376289.15,211418.029999999],[375171.6,213731.1],[376074.57,214585.619999999],[375836.7024,216512.4033],[378881.2984,216480.4025],[379526.4002,214893.9966],[379483.5011,214043.100099999]]]},"properties":{"OBJECTID":109,"lad19cd":"E07000082","lad19nm":"Stroud","lad19nmw":" ","bng_e":378807,"bng_n":202410,"long":-2.30818,"lat":51.720009,"GlobalID":"e7cfd0fc-0adf-4f49-b4b2-d06cd56868e6"}},{"type":"Feature","id":110,"geometry":{"type":"Polygon","coordinates":[[[411144.0988,234271.999700001],[413353.8988,233820.198999999],[412992.6003,232189.3958],[409340.302,232975.500800001],[408102.1989,231689.198999999],[409130.3003,231354.8047],[408718.7976,229630.8982],[407168.8003,229097.6008],[406215.2013,230104.002800001],[404792.3016,228761.097200001],[405377.198,226266.3013],[407852.4973,225302.2972],[407809.9033,223711.2027],[409149.0001,223288.503699999],[408302.8013,222032.803099999],[410170.1015,221662.3991],[407251.6961,221754.2029],[406141.6965,221007.5966],[404952.8,222907.602700001],[402765.8964,222663.8025],[400497.3009,224048.896],[399393.4026,222708.399700001],[397488.8017,222970.604699999],[397349.3036,224876.3991],[392770.4006,226713.0034],[392995.8041,224986.397700001],[392556.4001,224152.0965],[391521.3975,224541.605],[390293.8976,220669.803300001],[391410.9962,221004.997300001],[391301.9965,220135.1963],[393383.2972,220036.804500001],[395223.9989,218495.695599999],[394439.102,217372.597100001],[393318.5982,217556.204500001],[392177.3993,213801.8992],[390842.4992,213484.899900001],[389063.2975,214005.101],[387167.0983,216285.7982],[387888.2031,217490.6033],[386573.8002,218569.104599999],[385827.5974,220625.7959],[382302.6694,219802.137599999],[381677.7015,219656.103399999],[382206.0038,218242.3981],[381642.7013,218887.803400001],[380298.5007,217930.497400001],[380901.2971,216269.003],[379899.6572,214873.933700001],[379526.4002,214893.9966],[378881.2984,216480.4025],[375836.7024,216512.4033],[375864.5263,216577.739600001],[376206.3037,217380.3049],[376834.8791,217585.8837],[378336.8028,218077.0954],[377054.9019,219738],[378085.8973,221152.495100001],[380143.6007,221793.4016],[379648.1962,222747.898399999],[380592.7999,225012.3002],[379791.6026,226119.903200001],[380626.1017,228184.0024],[381709.7006,228332.799799999],[381509.2962,230085.3981],[382827.096,229816.595000001],[384949.2016,233027.595899999],[387387.2002,232471.805],[387687.4029,233478.096899999],[388793.0986,233089.2982],[387216.8985,235644.2969],[387957.4039,236029.396600001],[387703.8023,238162.0962],[388343.0996,238810.7005],[391976.5991,238195.5966],[392054.9025,237250.697000001],[390532.3035,236616.898499999],[389824.6959,234767.9977],[390437.6997,233455.203500001],[392396.2975,235218.0989],[394270.9028,234674.304500001],[395924.6972,235140.0012],[396697.3006,233928.797900001],[397463.2998,234017.8025],[401184.502,237496.196799999],[403430.8029,237702.4977],[404780,236839.8047],[406032.499,238454.102600001],[411144.0988,234271.999700001]]]},"properties":{"OBJECTID":110,"lad19cd":"E07000083","lad19nm":"Tewkesbury","lad19nmw":" ","bng_e":386347,"bng_n":226279,"long":-2.19998,"lat":51.934849,"GlobalID":"300cc26a-bc1c-4ef9-90f3-0849329e10b3"}},{"type":"Feature","id":111,"geometry":{"type":"Polygon","coordinates":[[[439824.5026,159869.997],[438804.704,161908.4035],[439894.396,162112.6951],[441089.5011,163919.697799999],[445378.4005,163316.7004],[452222.2959,163930.704700001],[457408.7032,162349.397299999],[460075.997,162365.2028],[461659.0982,162748.303099999],[461663.8968,164277.5954],[463657.701,165380.999500001],[466241.9999,162547.7005],[470683.4,163129.903899999],[470645.1017,162796.499299999],[470124.4013,160837.9],[471079.6989,160285.798],[470927.5033,157084.4044],[469662.9995,155456.700300001],[471107.3033,154658.198899999],[471382.004,153382.604],[470336.1015,149952.196],[471665.2961,149314.5985],[471089.898,148949.403000001],[471637.502,147912.299900001],[470965.1997,143956.702099999],[465013.5023,143580],[464826.2982,140985.7026],[462683.4975,140814.3016],[460829.2987,138620.399599999],[457869.9979,137465.000399999],[457146.098,138654.799799999],[455111.7034,139482.402899999],[455036.4012,140232.7981],[457043.0018,140842.2037],[456591.799,143142.895099999],[455555.4031,142684.7962],[454030.5038,143765.8968],[448392.902,144173.800000001],[446158.9027,143023.3993],[446116.6963,145343.395199999],[444927.4039,146064.4988],[444190.3037,144988.8967],[443144.4012,146369.501499999],[440032.5008,147471.596000001],[439981.1011,148514.1976],[437783.8005,150849.599099999],[440772.2971,153931.596899999],[439928.3986,155851.397299999],[440619.4007,158758.1953],[439824.5026,159869.997]]]},"properties":{"OBJECTID":111,"lad19cd":"E07000084","lad19nm":"Basingstoke and Deane","lad19nmw":" ","bng_e":454508,"bng_n":151423,"long":-1.22021,"lat":51.259369,"GlobalID":"c4362c8b-58c2-4e15-a11c-8f6841ddbce8"}},{"type":"Feature","id":112,"geometry":{"type":"Polygon","coordinates":[[[470965.1997,143956.702099999],[471819.2973,143477.599300001],[473374.7034,145104.003699999],[476633.4978,146203.9989],[480501.5033,146352.896199999],[482192.9034,143114.0034],[481640.0968,139348.4013],[484135.7036,139938.702299999],[486237.6995,136037.499],[487909.699,135514.6986],[487664.3012,134515.8046],[486959.8497,134505.3005],[487401.3003,132643.7005],[485501.902,131824.295],[484341.5004,130045.6042],[481176.5017,130365.4026],[480516.6,127903.1974],[477457.402,125316.797800001],[477745.3031,123178.1],[476740.7001,122217.504899999],[475135.9968,116781.800899999],[474419.3031,116472.6994],[475721.0004,114412.199200001],[474590.0006,113712.399499999],[473414.5023,110645.497400001],[474776.001,108784.300100001],[473027.0998,108040.0032],[473242.0981,108591.495300001],[469089.9018,112633.6983],[468011.8023,112077.1976],[467004.0992,111894.899700001],[467832.398,117341.500700001],[467092.0987,117672.196],[467137.1992,119235.998400001],[465851.3984,120227.104699999],[465397.4006,122001.196799999],[465863.0982,124969.3972],[464992.8979,126325.698999999],[466427.9013,127963.600099999],[464470.3012,127854.4014],[462533.8002,132254.102],[465058.9986,134608.3981],[463528.204,134665.2018],[463405.4021,138286.995100001],[462223.0026,137854.3989],[460829.2987,138620.399599999],[462683.4975,140814.3016],[464826.2982,140985.7026],[465013.5023,143580],[470965.1997,143956.702099999]]]},"properties":{"OBJECTID":112,"lad19cd":"E07000085","lad19nm":"East Hampshire","lad19nmw":" ","bng_e":474404,"bng_n":129237,"long":-0.93971,"lat":51.057652,"GlobalID":"24b926dc-2585-424c-815b-737ca1eec9c0"}},{"type":"Feature","id":113,"geometry":{"type":"Polygon","coordinates":[[[445961.4995,120418.899800001],[447293.4973,120294.895300001],[447658.7041,121136.0045],[449895.2016,120625.000800001],[449704.1966,119652.899],[452175.9999,120143.898499999],[449797.9017,116823.9988],[451775.999,114349.3971],[451597.0026,113166.349199999],[451947.8,111411.9],[451749.8792,111178.850400001],[450201.083,110870.1],[449191.0427,109583.513499999],[449296.976,109138.471000001],[449158.8639,109089.922499999],[448154.32,108736.810000001],[448644.301,105720.75],[444760.2506,109141.077299999],[447774.5967,111495.1042],[446955.4004,113592.8037],[445217.3992,114783.902799999],[445435.2997,115930.204600001],[443658.5962,116637.4022],[444063.9976,117358.9957],[442475.1991,118961.297],[442687.5011,122950.904999999],[445465.5013,122284.695699999],[446223.7007,121482.895199999],[445961.4995,120418.899800001]]]},"properties":{"OBJECTID":113,"lad19cd":"E07000086","lad19nm":"Eastleigh","lad19nmw":" ","bng_e":447202,"bng_n":116802,"long":-1.32943,"lat":50.948719,"GlobalID":"25f5a4b0-f2e4-49a9-9340-b83f849caa98"}},{"type":"Feature","id":114,"geometry":{"type":"Polygon","coordinates":[[[452498.4972,108443.297700001],[454265.9003,107089.7952],[455260.4031,108688.0977],[456525.5005,108795.8968],[456665.6006,109809.796599999],[458671.5003,110325.099099999],[459895.1993,109221.1951],[460401.6027,106904.8981],[462326.0989,106902.0989],[462271.1268,105186.5886],[462140.85,104367.550000001],[459634.689,105382.904999999],[458454.157,104822.511],[458383.9,106671.050000001],[457968.4606,104613.115900001],[457901.7851,104558.9047],[457871.418,104519.756100001],[457205.5037,102795.4044],[457895.1041,101836.299000001],[455464.2747,101375.323799999],[448867.396,104870.283],[449141.9641,108845.261299999],[449296.976,109138.471000001],[449191.0427,109583.513499999],[450201.083,110870.1],[451749.8792,111178.850400001],[452498.4972,108443.297700001]]]},"properties":{"OBJECTID":114,"lad19cd":"E07000087","lad19nm":"Fareham","lad19nmw":" ","bng_e":453774,"bng_n":106319,"long":-1.23742,"lat":50.853882,"GlobalID":"c21ec918-8b9b-4c17-bfeb-1af5c30e5a7a"}},{"type":"Feature","id":115,"geometry":{"type":"Polygon","coordinates":[[[457871.418,104519.756100001],[459460.064,104647.916999999],[459460.65,102987.699999999],[460261.899,103284.516000001],[461834.9,101100.75],[460902.6963,100659.3959],[461845.553,100867.623],[462274.28,99552.1799999997],[460674.5171,98561.6791999992],[462692.455,99260.9829999991],[460603.795,97437.8090000004],[457200.756,99230.2699999996],[455464.2747,101375.323799999],[457895.1041,101836.299000001],[457205.5037,102795.4044],[457871.418,104519.756100001]]]},"properties":{"OBJECTID":115,"lad19cd":"E07000088","lad19nm":"Gosport","lad19nmw":" ","bng_e":458769,"bng_n":101088,"long":-1.16731,"lat":50.806358,"GlobalID":"1eba54a4-6fcf-4f07-ba21-665bc7853544"}},{"type":"Feature","id":116,"geometry":{"type":"Polygon","coordinates":[[[470645.1017,162796.499299999],[475024.5978,163543.4955],[478238.5968,162098.999],[481058.9024,162174.0975],[485406.9024,159918.6031],[486306.9003,158462.199999999],[485211.7995,158305.404899999],[483938.4983,156775.8027],[483602.2977,155528.399800001],[484465.201,154367.6021],[483275.9004,153580.0975],[483524.1015,150221.898800001],[480501.5033,146352.896199999],[476633.4978,146203.9989],[473374.7034,145104.003699999],[471819.2973,143477.599300001],[470965.1997,143956.702099999],[471637.502,147912.299900001],[471089.898,148949.403000001],[471665.2961,149314.5985],[470336.1015,149952.196],[471382.004,153382.604],[471107.3033,154658.198899999],[469662.9995,155456.700300001],[470927.5033,157084.4044],[471079.6989,160285.798],[470124.4013,160837.9],[470645.1017,162796.499299999]]]},"properties":{"OBJECTID":116,"lad19cd":"E07000089","lad19nm":"Hart","lad19nmw":" ","bng_e":477985,"bng_n":154240,"long":-0.88321,"lat":51.281971,"GlobalID":"283e8008-6479-4161-9011-80528dfd4a6f"}},{"type":"Feature","id":117,"geometry":{"type":"MultiPolygon","coordinates":[[[[468011.8023,112077.1976],[469089.9018,112633.6983],[473242.0981,108591.495300001],[473027.0998,108040.0032],[474776.001,108784.300100001],[475647.001,107725.903100001],[475251.7987,105713.4991],[472298.498,105241.969000001],[471835.784,104429.379000001],[470591.832,105153.311000001],[470435.8,106239.35],[470317.84,105320.09],[469055.4136,104844.0395],[468861.7032,106372.9004],[466680.497,106764.6982],[466622.6002,107976.001499999],[467134.198,107793.603700001],[467982.3015,109459.596799999],[466974.2026,110651.5956],[468011.8023,112077.1976]]],[[[472798.776,104429.993000001],[473985,103219.699999999],[473570.571,101410.116],[472432.779,101556.742000001],[473895.572,100696.92],[472886.87,99133.1789999995],[474024.924,99130.5390000008],[473495.584,98470.841],[474985.596,99178.1730000004],[474905.244,98019.727],[468901.313,99186.6030000001],[468805.75,100060.85],[470955.756,100350.005999999],[471714.77,102847.911],[471225.836,103536.297],[472798.776,104429.993000001]]]]},"properties":{"OBJECTID":117,"lad19cd":"E07000090","lad19nm":"Havant","lad19nmw":" ","bng_e":470178,"bng_n":108564,"long":-1.00398,"lat":50.872311,"GlobalID":"2cc3c4be-f8c1-4f2c-9126-fb97d3c61634"}},{"type":"Feature","id":118,"geometry":{"type":"Polygon","coordinates":[[[426802.0965,117751.803200001],[428890.2983,116950.8025],[429305.5031,118160.1963],[432077.6988,118973.203600001],[433034.703,116972.496300001],[434518.7976,116856.5995],[435013.4023,115312.501499999],[436231.3306,114955.9672],[436236.6894,114871.418199999],[436502.2591,114445.98],[437072.25,112602.699999999],[436721.15,113138.550000001],[436037.9115,112450.8072],[435894.957,113056.273],[436023.4,112436.199999999],[436111.85,112137.65],[436776.5,112627.050000001],[438131.5,111385.300000001],[440418.151,110966.353],[443861.35,106310.199999999],[445328.4,105751.300000001],[445117.2,105012.25],[446546.2,105004.550000001],[446622.15,103220.550000001],[447701.15,103180.300000001],[447579.197,102101.902899999],[448603.9,101769.1],[448853.5,102540.199999999],[448805.13,101923.25],[446445.48,98669.25],[442511.1,98460.8000000007],[441815.25,98630.4700000007],[441477.74,98431.6400000006],[442918.66,97714.5399999991],[442392.8304,97336.5041000005],[442867.06,97487.3399999999],[441667.36,96814.9399999995],[435194.92,95047.0999999996],[433984.5,95058.4000000004],[432870.6,96134.25],[433544.57,93992.7599999998],[432422.11,93452.9800000004],[433192.187,93145.9800000004],[431262.862,91334.7280000001],[429712.168,91045.466],[431170.2156,89984.4464999996],[431413.1436,89874.5519999992],[431502.811,90619.466],[431790.284,89703.943],[431405.741,89813.0549999997],[425471.449,92562.4269999992],[421792.6646,93133.4229000006],[422541.9971,94743.6992000006],[418145.2028,94238.1039000005],[418506.5014,95998.1000999995],[417803.0987,97799.8044000007],[415223.9034,96152.2960000001],[413916.4016,99619.6034999993],[413349.801,101027.8004],[413941.7964,103442.099300001],[414840.4009,104108.998400001],[414003.4035,104845.997500001],[413671.0039,107108.399900001],[412061.502,106210.197000001],[410403.4037,107116.997400001],[410748.0968,110056.495999999],[412995.9972,111625.196900001],[413403.0971,114212.296399999],[411210.4963,114704.9954],[408978.2037,113093.296700001],[405655.1967,118001.8017],[403222.4007,119874.5956],[403126.5024,121160.497500001],[403610.2979,120324.596799999],[405157.2033,122036.9966],[408043.5023,122244.1973],[408902.4975,123002.100299999],[408941.6039,120567.8971],[410383.3023,122821.202099999],[411614.8011,123351.2004],[413051.8987,120741.297499999],[414110.6965,121352.602499999],[417338.0031,119860.7995],[419780.5035,119745.9024],[423865.5025,116259.700300001],[425733.1985,117821.5033],[426802.0965,117751.803200001]]]},"properties":{"OBJECTID":118,"lad19cd":"E07000091","lad19nm":"New Forest","lad19nmw":" ","bng_e":428748,"bng_n":106521,"long":-1.59293,"lat":50.857479,"GlobalID":"278f5372-c1a4-40b0-8475-435b42fcfd20"}},{"type":"Feature","id":119,"geometry":{"type":"Polygon","coordinates":[[[483524.1015,150221.898800001],[483275.9004,153580.0975],[484465.201,154367.6021],[483602.2977,155528.399800001],[483938.4983,156775.8027],[485211.7995,158305.404899999],[486306.9003,158462.199999999],[487630.4965,157435.104],[488597.3041,154233.3005],[488767.2018,151538.8018],[487684.5016,148666.304],[485530.298,149909.098300001],[483745.1021,149555.1996],[483524.1015,150221.898800001]]]},"properties":{"OBJECTID":119,"lad19cd":"E07000092","lad19nm":"Rushmoor","lad19nmw":" ","bng_e":486022,"bng_n":153944,"long":-0.76807,"lat":51.278149,"GlobalID":"ff1db2f0-1775-48d0-92d2-3f03fed57b97"}},{"type":"Feature","id":120,"geometry":{"type":"Polygon","coordinates":[[[435050.8019,159039.504699999],[439824.5026,159869.997],[440619.4007,158758.1953],[439928.3986,155851.397299999],[440772.2971,153931.596899999],[437783.8005,150849.599099999],[439981.1011,148514.1976],[440032.5008,147471.596000001],[443144.4012,146369.501499999],[444190.3037,144988.8967],[444927.4039,146064.4988],[446116.6963,145343.395199999],[446158.9027,143023.3993],[448392.902,144173.800000001],[446468.3976,140193.1994],[445711.402,140232.998],[443630.596,137635.501599999],[444165.0985,136840.4991],[441579.9998,135856.2009],[441570.3036,134815.798699999],[439893.7034,135431.602399999],[439567.3969,134939.0034],[439568.5017,133327.504699999],[441094.0029,133095.101199999],[441319.596,130207.297900001],[441057.6999,129422.602499999],[439271.3992,128816.8959],[438202.3033,126987.399599999],[439237.8006,125237.4005],[442687.5011,122950.904999999],[442475.1991,118961.297],[444063.9976,117358.9957],[443658.5962,116637.4022],[441807.0028,117579.602499999],[440583.9964,116580.7984],[438763.5034,116864.6971],[436846.2504,114491.5734],[436829.1372,114474.722999999],[436660.98,115144.369999999],[436769.7347,114506.3291],[436519.2121,114667.3992],[436280.2064,114942.199100001],[436231.3306,114955.9672],[435013.4023,115312.501499999],[434518.7976,116856.5995],[433034.703,116972.496300001],[432077.6988,118973.203600001],[429305.5031,118160.1963],[428890.2983,116950.8025],[426802.0965,117751.803200001],[427971.9964,119977.0962],[426795.6983,120468.4956],[426137.8991,122248.3961],[428345.003,123452.2015],[428192.1973,125005.696799999],[425874.1973,126000.1022],[425690.1016,126864.504699999],[426174.6968,131031.801899999],[425495.6995,132602.5022],[426256.1003,135405.799799999],[423680.4998,136489.1997],[424290.2963,139727.2028],[422997.8005,142196.9959],[423238.5975,143557.996300001],[421467.0967,145026.196],[421769.5997,146226.802300001],[425690.2994,146543.8016],[427493.2964,150473.796700001],[429570.4994,150803.5023],[431844.0997,149645.7037],[432478.5984,150031.303300001],[432903.7962,151366.801000001],[432157.5027,151397.6022],[431998.8018,153667.3025],[433373.8966,154321.895099999],[433597.2965,155311.002],[432603.2967,157560.598099999],[433009.3,160036.8992],[435050.8019,159039.504699999]]]},"properties":{"OBJECTID":120,"lad19cd":"E07000093","lad19nm":"Test Valley","lad19nmw":" ","bng_e":434930,"bng_n":137329,"long":-1.50214,"lat":51.134171,"GlobalID":"6f1dc439-b372-4f57-90ef-4772602b50c9"}},{"type":"Feature","id":121,"geometry":{"type":"Polygon","coordinates":[[[448392.902,144173.800000001],[454030.5038,143765.8968],[455555.4031,142684.7962],[456591.799,143142.895099999],[457043.0018,140842.2037],[455036.4012,140232.7981],[455111.7034,139482.402899999],[457146.098,138654.799799999],[457869.9979,137465.000399999],[460829.2987,138620.399599999],[462223.0026,137854.3989],[463405.4021,138286.995100001],[463528.204,134665.2018],[465058.9986,134608.3981],[462533.8002,132254.102],[464470.3012,127854.4014],[466427.9013,127963.600099999],[464992.8979,126325.698999999],[465863.0982,124969.3972],[465397.4006,122001.196799999],[465851.3984,120227.104699999],[467137.1992,119235.998400001],[467092.0987,117672.196],[467832.398,117341.500700001],[467004.0992,111894.899700001],[468011.8023,112077.1976],[466974.2026,110651.5956],[467982.3015,109459.596799999],[467134.198,107793.603700001],[466622.6002,107976.001499999],[466680.497,106764.6982],[462326.0989,106902.0989],[460401.6027,106904.8981],[459895.1993,109221.1951],[458671.5003,110325.099099999],[456665.6006,109809.796599999],[456525.5005,108795.8968],[455260.4031,108688.0977],[454265.9003,107089.7952],[452498.4972,108443.297700001],[451749.8792,111178.850400001],[451947.8,111411.9],[451597.0026,113166.349199999],[451775.999,114349.3971],[449797.9017,116823.9988],[452175.9999,120143.898499999],[449704.1966,119652.899],[449895.2016,120625.000800001],[447658.7041,121136.0045],[447293.4973,120294.895300001],[445961.4995,120418.899800001],[446223.7007,121482.895199999],[445465.5013,122284.695699999],[442687.5011,122950.904999999],[439237.8006,125237.4005],[438202.3033,126987.399599999],[439271.3992,128816.8959],[441057.6999,129422.602499999],[441319.596,130207.297900001],[441094.0029,133095.101199999],[439568.5017,133327.504699999],[439567.3969,134939.0034],[439893.7034,135431.602399999],[441570.3036,134815.798699999],[441579.9998,135856.2009],[444165.0985,136840.4991],[443630.596,137635.501599999],[445711.402,140232.998],[446468.3976,140193.1994],[448392.902,144173.800000001]]]},"properties":{"OBJECTID":121,"lad19cd":"E07000094","lad19nm":"Winchester","lad19nmw":" ","bng_e":453115,"bng_n":125901,"long":-1.24393,"lat":51.030022,"GlobalID":"d3d268e7-bd5b-488b-ba45-6ee999cb591b"}},{"type":"Feature","id":122,"geometry":{"type":"Polygon","coordinates":[[[531388.2972,205847.2962],[534177.6014,205782.2048],[534794.9998,209594.603499999],[536589.8012,210168.499199999],[536813.1022,210951.6951],[538449.7963,210946.396600001],[539081.2031,209217.8014],[538252.7971,207044.5035],[537248.1034,206701.1018],[536935.5001,202352.396600001],[537543.796,199883.103399999],[531023.5028,200933.602700001],[530366.5033,204136.096000001],[531388.2972,205847.2962]]]},"properties":{"OBJECTID":122,"lad19cd":"E07000095","lad19nm":"Broxbourne","lad19nmw":" ","bng_e":534742,"bng_n":204251,"long":-0.05073,"lat":51.720798,"GlobalID":"ca18f995-f809-4424-a101-f95876ed4677"}},{"type":"Feature","id":123,"geometry":{"type":"Polygon","coordinates":[[[499772.6022,215220.5031],[502157.6015,212863.297900001],[503336.703,214040.400900001],[502698.7991,215188.302300001],[503319.8996,216413.9015],[505409.5031,217422.3029],[504902.3989,218264.901699999],[505439.0039,218562.4965],[507035.0004,217694.095100001],[508821.2022,218022.201099999],[509990.7971,216979.7995],[509216.0005,216423.5987],[509405.4967,214572.398600001],[508420.6984,213180.1971],[509598.8022,212484.0964],[509524.2998,211470.6965],[507657.6015,210951.1952],[508932.2962,208654.502599999],[509044.7011,205858.403000001],[507147.3971,204114.902100001],[507884.1016,201402.6984],[506249.6996,200738.1986],[502672.5963,201913.102299999],[502121.1007,199180.104599999],[500431.3991,199208.396500001],[500723.4968,200788.0044],[499364.1006,202436.8024],[500242.8015,203792.804300001],[499582.1001,205272.7006],[498620.6023,205111.296800001],[497676.6005,206880.2005],[495853.4031,206323.5998],[491631.8988,208586.302100001],[490430.4038,211219.7983],[490745.497,212098.3968],[489057.4032,214332.5973],[488073.1985,214007.500299999],[486553.6008,216238.1018],[488231.6026,218279.397500001],[490155.1012,218413.3992],[489970.6015,216637.397500001],[491969.196,213858.1031],[494321.1987,214362.4987],[497872.3959,212979.5046],[499280.8997,215585.6986],[499772.6022,215220.5031]]]},"properties":{"OBJECTID":123,"lad19cd":"E07000096","lad19nm":"Dacorum","lad19nmw":" ","bng_e":500084,"bng_n":208745,"long":-0.55098,"lat":51.768452,"GlobalID":"9723ad2c-8b33-4c5d-a161-f9a001cbe8c9"}},{"type":"Feature","id":124,"geometry":{"type":"Polygon","coordinates":[[[512390.0027,200555.101],[512634.4028,200012.996200001],[513779.5016,200373.2031],[513842.7,201302.897],[515714.2959,201850.9001],[516052.5001,200745.5965],[517586.6009,201119.8994],[517421.6007,202400.3029],[519115.6969,203910.8005],[518463.1003,203875.400599999],[518577.5006,205201.501],[519911.6999,205791.702099999],[520600.7973,204864.397500001],[521779.7999,202289.5046],[523075.9977,203164.6041],[525623.4,202425.9955],[527038.3019,201719.897600001],[527045.2031,200413.4016],[525814.1,198211.5019],[525206.002,197672.596100001],[524339.2977,198344.4038],[523755.9019,197353.897399999],[521110.9028,196700.5044],[520681.7968,195107.4004],[517435.1968,194421.096899999],[516579.3018,194866.8993],[513442.4023,192900.702099999],[512386.1028,194460.195699999],[512769.1024,195103.001700001],[511670.5964,197280.7983],[512880.8972,198987.6997],[512390.0027,200555.101]]]},"properties":{"OBJECTID":124,"lad19cd":"E07000098","lad19nm":"Hertsmere","lad19nmw":" ","bng_e":519774,"bng_n":199352,"long":-0.26899,"lat":51.680168,"GlobalID":"6fc64f69-d53e-4025-8d98-99d618c9f07a"}},{"type":"Feature","id":125,"geometry":{"type":"Polygon","coordinates":[[[526369.9985,244065.896199999],[527071.3976,242843.596100001],[526595.5999,241012.9001],[528081.6979,240290.9968],[528645.3963,237488.798900001],[535877.1971,242422.9965],[537520.8005,240938.601399999],[539993.5026,241400.7991],[542051.4039,236168.096899999],[542184.2978,233751.5987],[539829.7969,234306.899700001],[537614.7035,233513.596799999],[537204.8993,234658.8989],[535772.6992,235034.2015],[535339.6026,233536.100299999],[534145.9981,233018.0986],[534731.3974,231726.498299999],[533022.1963,230472.5973],[532353.596,232048.396199999],[530181.0966,230076.7006],[530000.101,228730.096000001],[529311.2014,228744.202],[529411.7994,227201.003699999],[527584.496,227787.4959],[526484.8027,226240.798599999],[524909.1963,227544.6954],[522030.5981,227217.8989],[521561.2975,224440.304],[523705.4009,221697.799000001],[524544.3029,222028.5043],[525826.2038,221215.497099999],[526489.7003,219730.202199999],[525933.4967,219132.5033],[524269.899,219401.7962],[523605.0997,218816.003900001],[524168.6002,217704.1022],[523102.2994,217172.304400001],[523676.6998,217942.7039],[523183.4968,218486.598200001],[522318.3013,217703.002499999],[522407.2985,216446.6022],[521250.2031,216648.304400001],[520796.0981,217853.6994],[519051.4019,216602.997400001],[515888.2997,216672.5975],[514471.5014,218081.1043],[513353.1001,220771.7041],[513680.9979,221301.4025],[511733.0033,223452.3968],[511131.3034,225358.101299999],[509715.4038,227193.196],[510589.2979,232171.200999999],[511388.6978,232293.1961],[511222.601,229380.899800001],[511843.1985,228944.3047],[513459.6015,230072.1019],[513491.3038,231585.198799999],[512230.7988,232957.7959],[516053.2009,232861.4035],[517062.9983,235119.597100001],[518003.1991,235071.8007],[518870.4971,232650.8038],[520410.8971,233294.999399999],[520641.6021,234852.103599999],[523551.4986,236125.199200001],[522226.5997,239087.801200001],[523836.8024,241984.502],[525375.8997,241777.601199999],[526369.9985,244065.896199999]]]},"properties":{"OBJECTID":125,"lad19cd":"E07000099","lad19nm":"North Hertfordshire","lad19nmw":" ","bng_e":522192,"bng_n":230256,"long":-0.22314,"lat":51.957378,"GlobalID":"c6374fc3-8578-4559-8110-ebe854947446"}},{"type":"Feature","id":126,"geometry":{"type":"Polygon","coordinates":[[[509044.7011,205858.403000001],[510447.2025,203699.6009],[510293.3002,202737.6963],[511979.9016,202156.8026],[512375.2028,200599.2984],[510497.2005,201562.602600001],[508537.704,199340.398700001],[508784.1984,198033.003],[508000.9011,198260.5978],[509087.3033,196306.997],[508656.4989,194864.100099999],[512386.1028,194460.195699999],[513442.4023,192900.702099999],[510599.8021,191689.4988],[508054.6012,192401.095100001],[506926.8005,191511.6997],[504132.4998,193616.1973],[503946.1037,190047.398800001],[502416.9005,190613.8967],[501183.0023,194258.003599999],[501293.2965,196749.500399999],[502277.798,196544.8989],[502379.4019,197620.301100001],[503466.6039,198202.204500001],[502121.1007,199180.104599999],[502672.5963,201913.102299999],[506249.6996,200738.1986],[507884.1016,201402.6984],[507147.3971,204114.902100001],[509044.7011,205858.403000001]]]},"properties":{"OBJECTID":126,"lad19cd":"E07000102","lad19nm":"Three Rivers","lad19nmw":" ","bng_e":507313,"bng_n":196418,"long":-0.45005,"lat":51.656319,"GlobalID":"78438c8e-8583-4f2a-aabf-aa6251fe1afb"}},{"type":"Feature","id":127,"geometry":{"type":"Polygon","coordinates":[[[512386.1028,194460.195699999],[508656.4989,194864.100099999],[509087.3033,196306.997],[508000.9011,198260.5978],[508784.1984,198033.003],[508537.704,199340.398700001],[510497.2005,201562.602600001],[512375.2028,200599.2984],[512390.0027,200555.101],[512880.8972,198987.6997],[511670.5964,197280.7983],[512769.1024,195103.001700001],[512386.1028,194460.195699999]]]},"properties":{"OBJECTID":127,"lad19cd":"E07000103","lad19nm":"Watford","lad19nmw":" ","bng_e":510441,"bng_n":198197,"long":-0.40429,"lat":51.6717,"GlobalID":"203bcebc-9c0d-49d4-bbbd-5674751beea7"}},{"type":"Feature","id":128,"geometry":{"type":"Polygon","coordinates":[[[595038.6024,152470.904999999],[595250.6983,151416.8967],[597156.9977,151023.599300001],[598470.403,152494.2983],[599761.2003,151846.9036],[599979.1007,152749.995100001],[603835.9012,154263.7018],[604086.6995,155196.9047],[605878.5986,154894.5012],[606227.2987,156491.1042],[607507.3032,156358.902100001],[609323.7974,154514.100099999],[608554.6981,152756.903100001],[610020.9998,149767.3989],[608986.3023,147692.502800001],[610050.5006,146602.2049],[609733.2966,144884.0967],[611041.6971,144543.404200001],[610535.104,142718.796499999],[612034.0974,141392.1962],[610906.0988,139637.7984],[609726.0987,140165.397399999],[608664.9016,138988.304300001],[609108.9971,137381.904200001],[607953.897,135029.7974],[608127.2989,133480.900800001],[606469.3985,132517.196699999],[605707.3982,133185.795299999],[603585.9027,131911.9999],[603025.0984,130389.3957],[601273.0971,132027.096999999],[601255.9968,131113.6984],[600121.6991,130962.3018],[600266.6967,129700.203],[599166.6984,129612.098200001],[598513.302,131593.101199999],[595126.2969,124797.1965],[592389.3983,125939.999399999],[590044.2968,125065.6996],[587913.2041,126067.402899999],[586760.6023,127638.6031],[582858.3962,126862.5953],[581907.7984,130144.3959],[583099.1026,132601.602499999],[585469.302,134883.2994],[584225.6995,135744.9027],[581936.9035,135533.203299999],[581416.401,137862.5966],[582696.2983,138634.695599999],[582268.9981,140161.1986],[584733.7024,141315.098300001],[586366.4966,144719.9037],[587762.303,145588.705],[587627.9003,146967.700300001],[589412.0985,147978.6009],[589861.8996,149282.6976],[591865.2021,149150.4954],[594321.1007,152587.501599999],[595038.6024,152470.904999999]]]},"properties":{"OBJECTID":128,"lad19cd":"E07000105","lad19nm":"Ashford","lad19nmw":" ","bng_e":597640,"bng_n":140644,"long":0.823374,"lat":51.130959,"GlobalID":"8e3bcb8a-7e04-4199-a69d-d4e931d15797"}},{"type":"Feature","id":129,"geometry":{"type":"Polygon","coordinates":[[[605567.3622,164856.359200001],[609369.599,165411.241],[611239.237,167312.153000001],[624465.0299,169408.859300001],[624888.7001,167847.203600001],[623742.9993,167896.8993],[623854.8024,166869.003599999],[626495.7767,163934.1972],[625231.65,164214.32],[624473.9702,163123.213500001],[625136.7033,162391.0954],[623510.9009,160602.7973],[623208.3978,159578.4005],[624112.1967,158628.3024],[622861.7013,155733.4011],[624203.6014,155261.496200001],[622556.7989,151335.100099999],[623357.6005,151572.102299999],[625166.2041,150287.699899999],[623349.9985,147618.6039],[622359.6018,148281.304199999],[621174.399,147532.398600001],[620456.6994,148247.403899999],[620103.4975,146702.6961],[617844.7959,147789.494999999],[617952.1961,148743.801899999],[617355.4021,147675.397700001],[616103.9997,147851.397299999],[613728.5976,149532.596100001],[613214.7984,147282.100299999],[610050.5006,146602.2049],[608986.3023,147692.502800001],[610020.9998,149767.3989],[608554.6981,152756.903100001],[609323.7974,154514.100099999],[607507.3032,156358.902100001],[609718.002,158140.302100001],[609648.3972,161016.698799999],[610352.8964,161412.895400001],[605567.3622,164856.359200001]]]},"properties":{"OBJECTID":129,"lad19cd":"E07000106","lad19nm":"Canterbury","lad19nmw":" ","bng_e":616032,"bng_n":158096,"long":1.096342,"lat":51.281021,"GlobalID":"ddae9f8c-76c8-40ca-a709-a9b7ce52c024"}},{"type":"Feature","id":130,"geometry":{"type":"Polygon","coordinates":[[[560930.7816,176539.2797],[560646.4985,175201.7983],[561768.2967,174101.103399999],[563215.4039,168649.6039],[562687.1016,167868.397500001],[558316.304,170058.6006],[556288.2993,170024.4004],[555807.4968,168739.498199999],[553667.3016,168735.1994],[554057.598,169637.901000001],[553056.1034,171068.601500001],[549830.7015,169941.5041],[549962.8039,172412.4968],[550557.8994,172175.004799999],[551102.1971,173822.7031],[553156.5693,175519.8071],[554087.2996,178055.750399999],[558129.4,175197.050000001],[560930.7816,176539.2797]]]},"properties":{"OBJECTID":130,"lad19cd":"E07000107","lad19nm":"Dartford","lad19nmw":" ","bng_e":556167,"bng_n":172917,"long":0.245276,"lat":51.433731,"GlobalID":"eacd7c36-6356-42fc-b804-0253f7afed91"}},{"type":"Feature","id":131,"geometry":{"type":"Polygon","coordinates":[[[626495.7767,163934.1972],[628347.0099,162922.8632],[629375.4671,162997.7667],[632199.7067,162464.4526],[632842.77,162343.02],[632968.6995,162023.2333],[633261.7079,161855.116],[634113.0718,162284.504799999],[635039.2204,162595.818299999],[637805.4,153393.699999999],[638126.4,147233.699999999],[637521.902,145170.481000001],[636300.838,143369.52],[633979.8,142171.85],[634058.95,141146.449999999],[633690.309,141760.225],[632175.55,141203.449999999],[632679.95,140228.15],[631759.6,140487.949999999],[633030.55,139940.75],[631230.15,140083.550000001],[628863.45,138682.35],[625625.1405,138132.660800001],[624455.6035,137981.602499999],[623767.0997,138601.904899999],[623864.0039,140290.1017],[622028.7027,140888.8003],[624660.6004,144036.999199999],[624397.7974,144622.3016],[623221.5982,144257.1961],[621784.8963,145210.903100001],[621127.4021,144644.7952],[619884.6983,145423.4023],[620103.4975,146702.6961],[620456.6994,148247.403899999],[621174.399,147532.398600001],[622359.6018,148281.304199999],[623349.9985,147618.6039],[625166.2041,150287.699899999],[623357.6005,151572.102299999],[622556.7989,151335.100099999],[624203.6014,155261.496200001],[622861.7013,155733.4011],[624112.1967,158628.3024],[623208.3978,159578.4005],[623510.9009,160602.7973],[625136.7033,162391.0954],[624473.9702,163123.213500001],[625231.65,164214.32],[626495.7767,163934.1972]]]},"properties":{"OBJECTID":131,"lad19cd":"E07000108","lad19nm":"Dover","lad19nmw":" ","bng_e":628964,"bng_n":150942,"long":1.276887,"lat":51.211761,"GlobalID":"f837ad5b-d0ab-4270-854b-298bf58a09e8"}},{"type":"Feature","id":132,"geometry":{"type":"Polygon","coordinates":[[[560930.7816,176539.2797],[561668.75,174925.9],[565633.76,174303.460000001],[569667.74,174872.640000001],[570960.4525,175818.0725],[572998.004,174523.8024],[573192.2989,171418.101399999],[572221.2038,171120.396600001],[571757.7984,169474.3978],[570656.3984,169439.5978],[570784.403,168671.0977],[569251.4977,168247.598999999],[567304.2039,164278.795],[565814.2966,162568.104699999],[565921.2021,161660.4045],[563233.4029,161504.899],[562687.1016,167868.397500001],[563215.4039,168649.6039],[561768.2967,174101.103399999],[560646.4985,175201.7983],[560930.7816,176539.2797]]]},"properties":{"OBJECTID":132,"lad19cd":"E07000109","lad19nm":"Gravesham","lad19nmw":" ","bng_e":566969,"bng_n":169114,"long":0.398744,"lat":51.396488,"GlobalID":"70f4154e-5230-4906-b937-83f80516f103"}},{"type":"Feature","id":133,"geometry":{"type":"Polygon","coordinates":[[[581314.7971,162568.804500001],[581555.1984,161730.804400001],[582144.7038,162780.6039],[583950.9988,163047.5974],[585714.6008,162239.998600001],[586522.5014,158299.4966],[589283.7971,159084.002],[591448.1998,156845.2029],[592591.3034,156970.1971],[591950.5962,154644.7027],[592819.1968,154424.9956],[593810.8963,155596.600299999],[594791.1022,155101.1021],[595038.6024,152470.904999999],[594321.1007,152587.501599999],[591865.2021,149150.4954],[589861.8996,149282.6976],[589412.0985,147978.6009],[587627.9003,146967.700300001],[587762.303,145588.705],[586366.4966,144719.9037],[584733.7024,141315.098300001],[584233.1035,141742.695900001],[584749.5989,142560.401799999],[583148.103,142035.801999999],[582032.8018,143191.801100001],[581472.0964,142536.198799999],[580213.4961,142804.6019],[580512.2971,141537.4047],[579138.101,140299.199100001],[579303.802,141341.900599999],[577321.3018,140259.500499999],[574748.1996,141354.097100001],[572830.4973,141099.100099999],[572663.4029,142556.0031],[570704.5001,144751.004799999],[568987.697,145143.4025],[566677.2989,147039.6996],[567800.202,147110.7993],[568306.8033,149698.1987],[566159.7977,151121.601199999],[568246.6968,153185.100500001],[569777.5986,152800.1008],[569784.7965,155140.1009],[572924.4993,155485.0022],[574305.8128,158228.2541],[574323.0871,158258.180400001],[573839.1981,159110.6044],[575163.0993,159363.602],[576032.3019,162541.802200001],[577337.6023,161827.5967],[578650.6035,163080.797900001],[581314.7971,162568.804500001]]]},"properties":{"OBJECTID":133,"lad19cd":"E07000110","lad19nm":"Maidstone","lad19nmw":" ","bng_e":580489,"bng_n":151670,"long":0.584061,"lat":51.235661,"GlobalID":"6f51d68b-5179-4284-955a-1f27db01acca"}},{"type":"Feature","id":134,"geometry":{"type":"Polygon","coordinates":[[[549830.7015,169941.5041],[553056.1034,171068.601500001],[554057.598,169637.901000001],[553667.3016,168735.1994],[555807.4968,168739.498199999],[556288.2993,170024.4004],[558316.304,170058.6006],[562687.1016,167868.397500001],[563233.4029,161504.899],[560766.4971,162974.998199999],[560585.4026,163824.0952],[559288.9986,163136.7019],[559274.3966,160912.0987],[557960.6038,159605.402799999],[557550.2966,157773.497099999],[558068.2019,153169.904899999],[556917.9994,153079.900699999],[556955.5969,151121.3013],[555853.7022,150480.504699999],[555260.9977,151873.296],[553725.0005,150586.4044],[554579.1971,149592.4989],[553866.997,149121.003900001],[554317.202,148025.5974],[557347.0971,147003.200099999],[555736.3997,145126.397299999],[553263.6976,143630.195599999],[554810.1,141477.002],[552653.2992,139206.301899999],[551262.2997,139780.5975],[549297.3038,140831.5967],[543499.5994,140151.701300001],[543562.501,144379.201199999],[542130.8038,148091.0987],[543747.7015,151857.400599999],[542502.9034,156818.600500001],[545520.2001,156949.2031],[545401.397,159498.5034],[547648.4977,161080.8004],[547640.5,162692.4991],[548928.8979,162732.897500001],[549897.1979,165601.296499999],[549521.5035,168162.0035],[550541.2032,168157.4048],[549551.2022,169908.203600001],[549830.7015,169941.5041]]]},"properties":{"OBJECTID":134,"lad19cd":"E07000111","lad19nm":"Sevenoaks","lad19nmw":" ","bng_e":552776,"bng_n":155218,"long":0.188936,"lat":51.275631,"GlobalID":"ea0b960c-250e-4aa2-b270-e97da1896ae6"}},{"type":"Feature","id":135,"geometry":{"type":"Polygon","coordinates":[[[610050.5006,146602.2049],[613214.7984,147282.100299999],[613728.5976,149532.596100001],[616103.9997,147851.397299999],[617355.4021,147675.397700001],[617952.1961,148743.801899999],[617844.7959,147789.494999999],[620103.4975,146702.6961],[619884.6983,145423.4023],[621127.4021,144644.7952],[621784.8963,145210.903100001],[623221.5982,144257.1961],[624397.7974,144622.3016],[624660.6004,144036.999199999],[622028.7027,140888.8003],[623864.0039,140290.1017],[623767.0997,138601.904899999],[624455.6035,137981.602499999],[625625.1405,138132.660800001],[623220.45,135948.85],[623889.95,135589.85],[614556.405,133320.17],[610249.67,129297.48],[608233.23,123003.566],[609444.834,116750.855],[600750.0241,117710.077099999],[601609.8996,118784.6976],[600686.7001,120960.9046],[599644.5986,121419.5033],[597712.5004,119607.502],[595554.702,123448.102700001],[595057.4011,123228.795399999],[595126.2969,124797.1965],[598513.302,131593.101199999],[599166.6984,129612.098200001],[600266.6967,129700.203],[600121.6991,130962.3018],[601255.9968,131113.6984],[601273.0971,132027.096999999],[603025.0984,130389.3957],[603585.9027,131911.9999],[605707.3982,133185.795299999],[606469.3985,132517.196699999],[608127.2989,133480.900800001],[607953.897,135029.7974],[609108.9971,137381.904200001],[608664.9016,138988.304300001],[609726.0987,140165.397399999],[610906.0988,139637.7984],[612034.0974,141392.1962],[610535.104,142718.796499999],[611041.6971,144543.404200001],[609733.2966,144884.0967],[610050.5006,146602.2049]]]},"properties":{"OBJECTID":135,"lad19cd":"E07000112","lad19nm":"Folkestone and Hythe","lad19nmw":" ","bng_e":610318,"bng_n":134595,"long":1.000795,"lat":51.072128,"GlobalID":"95d76b91-35d6-454b-a91d-8851f45f113c"}},{"type":"Feature","id":136,"geometry":{"type":"MultiPolygon","coordinates":[[[[603197.7701,162954.656099999],[601851.47,164244.310000001],[605567.3622,164856.359200001],[610352.8964,161412.895400001],[609648.3972,161016.698799999],[609718.002,158140.302100001],[607507.3032,156358.902100001],[606227.2987,156491.1042],[605878.5986,154894.5012],[604086.6995,155196.9047],[603835.9012,154263.7018],[599979.1007,152749.995100001],[599761.2003,151846.9036],[598470.403,152494.2983],[597156.9977,151023.599300001],[595250.6983,151416.8967],[595038.6024,152470.904999999],[594791.1022,155101.1021],[593810.8963,155596.600299999],[592819.1968,154424.9956],[591950.5962,154644.7027],[592591.3034,156970.1971],[591448.1998,156845.2029],[589283.7971,159084.002],[586522.5014,158299.4966],[585714.6008,162239.998600001],[583950.9988,163047.5974],[582144.7038,162780.6039],[581555.1984,161730.804400001],[581314.7971,162568.804500001],[583516.3027,166328.8982],[582696.4962,166617.095699999],[582929.0139,167240.3375],[584303.01,169829.09],[585937.45,167187.140000001],[587036.68,169272.369999999],[588143.09,169399.560000001],[587661.05,167973.74],[588972.66,168510.390000001],[587586.87,172447.220000001],[589757,172577.9],[588982.4,171731.199999999],[589740.21,170205.17],[592415.73,168391.77],[592540.26,166271.189999999],[590534.1,164285.9],[592716.69,166216.710000001],[595984.1,165914.300000001],[596222.6,164553.26],[596246.03,165686.779999999],[599657.1,165763.1],[601866.81,164551.470000001],[600746.59,162778.82],[601722.75,163671.380000001],[603197.7701,162954.656099999]]],[[[601839.548,172638.686000001],[605432.62,167805.1],[601796.39,165693.09],[599004.89,167357.369999999],[598958.79,166746.27],[597804.58,167449.779999999],[598583.61,166721.4],[597763.83,166557.25],[595419.19,167429.48],[592638.13,167065.539999999],[592428.22,169094.187999999],[590180.52,170347.85],[589355.77,171892.42],[590128.93,171311.140000001],[591105.45,172059.35],[590272.37,173034.130000001],[591150.85,175481.5],[593997.75,174906.556],[596417.851,173408.504000001],[601839.548,172638.686000001]]],[[[586672.9985,171595.3007],[587540.3887,169858.965299999],[586012.5031,169985.8014],[585513.8996,170844.5956],[586672.9985,171595.3007]]],[[[586338.85,172793.65],[587000,171806.449999999],[585059.9018,172090.9988],[586338.85,172793.65]]]]},"properties":{"OBJECTID":136,"lad19cd":"E07000113","lad19nm":"Swale","lad19nmw":" ","bng_e":593583,"bng_n":161818,"long":0.776893,"lat":51.32251,"GlobalID":"b4e7619a-ffd4-46fe-bf56-b3e954203de6"}},{"type":"Feature","id":137,"geometry":{"type":"Polygon","coordinates":[[[639573.88,170968.83],[640000.55,167784.25],[638692,164113.4],[638558.75,164705.35],[637979.34,164245.550000001],[638621.45,163924.199999999],[635406.051,164323.412],[634113.0718,162284.504799999],[633261.7079,161855.116],[632968.6995,162023.2333],[632842.77,162343.02],[632199.7067,162464.4526],[629375.4671,162997.7667],[628347.0099,162922.8632],[626495.7767,163934.1972],[623854.8024,166869.003599999],[623742.9993,167896.8993],[624888.7001,167847.203600001],[624465.0299,169408.859300001],[630783.7,169799.949999999],[635962.7,171471.5],[638358.65,171648.449999999],[639573.88,170968.83]]]},"properties":{"OBJECTID":137,"lad19cd":"E07000114","lad19nm":"Thanet","lad19nmw":" ","bng_e":631839,"bng_n":166752,"long":1.328226,"lat":51.35252,"GlobalID":"c185ab6d-311f-4de6-b94a-8813f59618b9"}},{"type":"Feature","id":138,"geometry":{"type":"Polygon","coordinates":[[[576032.3019,162541.802200001],[575163.0993,159363.602],[573839.1981,159110.6044],[574323.0871,158258.180400001],[574305.8128,158228.2541],[572924.4993,155485.0022],[569784.7965,155140.1009],[569777.5986,152800.1008],[568246.6968,153185.100500001],[566159.7977,151121.601199999],[568306.8033,149698.1987],[567800.202,147110.7993],[566677.2989,147039.6996],[565611.3032,147378.7026],[565519.8985,146624.998400001],[563722.9039,146335.601199999],[561401.3008,147060.2038],[559287.1023,144182.1976],[555736.3997,145126.397299999],[557347.0971,147003.200099999],[554317.202,148025.5974],[553866.997,149121.003900001],[554579.1971,149592.4989],[553725.0005,150586.4044],[555260.9977,151873.296],[555853.7022,150480.504699999],[556955.5969,151121.3013],[556917.9994,153079.900699999],[558068.2019,153169.904899999],[557550.2966,157773.497099999],[557960.6038,159605.402799999],[559274.3966,160912.0987],[559288.9986,163136.7019],[560585.4026,163824.0952],[560766.4971,162974.998199999],[563233.4029,161504.899],[565921.2021,161660.4045],[565814.2966,162568.104699999],[567304.2039,164278.795],[567240.1975,163330.796399999],[568528.0018,163757.7042],[570862.8771,163062.7993],[570801.7031,164419.6799],[571126.5384,166084.970100001],[574381.3026,164711.801100001],[574622.2975,163408.5041],[576032.3019,162541.802200001]]]},"properties":{"OBJECTID":138,"lad19cd":"E07000115","lad19nm":"Tonbridge and Malling","lad19nmw":" ","bng_e":564014,"bng_n":153898,"long":0.349306,"lat":51.260639,"GlobalID":"952a5b16-8e09-4c22-985d-705e08a2280d"}},{"type":"Feature","id":139,"geometry":{"type":"Polygon","coordinates":[[[555736.3997,145126.397299999],[559287.1023,144182.1976],[561401.3008,147060.2038],[563722.9039,146335.601199999],[565519.8985,146624.998400001],[565611.3032,147378.7026],[566677.2989,147039.6996],[568987.697,145143.4025],[570704.5001,144751.004799999],[572663.4029,142556.0031],[572830.4973,141099.100099999],[574748.1996,141354.097100001],[577321.3018,140259.500499999],[579303.802,141341.900599999],[579138.101,140299.199100001],[580512.2971,141537.4047],[580213.4961,142804.6019],[581472.0964,142536.198799999],[582032.8018,143191.801100001],[583148.103,142035.801999999],[584749.5989,142560.401799999],[584233.1035,141742.695900001],[584733.7024,141315.098300001],[582268.9981,140161.1986],[582696.2983,138634.695599999],[581416.401,137862.5966],[581936.9035,135533.203299999],[584225.6995,135744.9027],[585469.302,134883.2994],[583099.1026,132601.602499999],[581907.7984,130144.3959],[582858.3962,126862.5953],[580294.6027,125853.6041],[578409.7983,126588.8037],[578066.9027,127764.3971],[573456.0996,128583.602600001],[572731.2021,131269.2039],[569549.2021,132036.404300001],[567948.2009,134262.3971],[566348.2963,134808.1009],[564747.5012,134267.3957],[565244.802,136555.0009],[563542.9967,136621.6018],[562815.1969,138529.8956],[559239.2974,138102.198000001],[559387.2962,137247.2027],[557199.5022,137461.001499999],[555889.9969,138488.297499999],[552095.2982,137366.898499999],[550638.297,138261.102499999],[551262.2997,139780.5975],[552653.2992,139206.301899999],[554810.1,141477.002],[553263.6976,143630.195599999],[555736.3997,145126.397299999]]]},"properties":{"OBJECTID":139,"lad19cd":"E07000116","lad19nm":"Tunbridge Wells","lad19nmw":" ","bng_e":573139,"bng_n":136599,"long":0.471632,"lat":51.102539,"GlobalID":"47290082-bed1-4025-8fd2-b95ff6348c18"}},{"type":"Feature","id":140,"geometry":{"type":"Polygon","coordinates":[[[379474.3986,435175.0019],[380218.5978,436130.1984],[380691.4026,434721.8016],[382333.2004,435445.704399999],[382905.3994,434638.395500001],[385352.0965,435751.8967],[386431.6966,435031.403000001],[387189.5991,436572.7018],[391629.9025,435952.6993],[392703.4013,434383.498400001],[391643.1029,433642.400599999],[391874.3026,432420.8002],[391111.7994,431537.6031],[391447.8021,428359.402799999],[388662.604,425190.799799999],[384750.9986,426829.0009],[383502.4985,428770.0952],[382382.0029,427354.2005],[380627.1983,428441.499299999],[379382.5981,427895.895500001],[377548.7976,433221.501],[379474.3986,435175.0019]]]},"properties":{"OBJECTID":140,"lad19cd":"E07000117","lad19nm":"Burnley","lad19nmw":" ","bng_e":384886,"bng_n":430882,"long":-2.2308,"lat":53.774059,"GlobalID":"e5fda2c9-88e2-4bea-b5e7-46c5a3f59deb"}},{"type":"Feature","id":141,"geometry":{"type":"Polygon","coordinates":[[[346435.9852,417353.886],[345699.5034,419379.903200001],[346157.5414,419896.3532],[346006.7034,421542.1535],[350797.1032,422064.104800001],[351883.3982,421330.3049],[351637.8026,420005.304099999],[353022.5029,419663.1021],[353320.1001,420794.598200001],[356580.8981,420669.2041],[356643.7007,421782.395500001],[355354.7998,422128.6963],[355775.8009,424028.102600001],[356643.7997,424786.695499999],[357068.1977,424144.999199999],[358536.9976,424724.6033],[359738.6988,427081.6985],[362033.4972,428461.703500001],[363060.7988,427981.201099999],[364461.1977,422995.698100001],[366064.6972,421812.9967],[364921.8987,418843.296800001],[366280.6023,414615.696900001],[362419.803,411151.6985],[360670.3,412859.1997],[358669.9987,410970.3004],[358109.5984,412599.604],[354484.7974,412190.4011],[353825.0029,413309.1009],[354169.4981,414677.1993],[353151.3979,413706.2972],[351406.7018,414377.805],[349903.3963,413388.598200001],[348441.2006,414385.7027],[347631.0986,414337.796399999],[347606.5036,413453.1997],[347116.5464,414572.7652],[346661.5774,415177.293400001],[346683.4186,415220.294600001],[346776.5009,416417.1478],[346435.9852,417353.886]]]},"properties":{"OBJECTID":141,"lad19cd":"E07000118","lad19nm":"Chorley","lad19nmw":" ","bng_e":359189,"bng_n":419724,"long":-2.61921,"lat":53.672401,"GlobalID":"847ad4d4-5616-4c7a-b8ee-c6da9ffa8997"}},{"type":"Feature","id":142,"geometry":{"type":"Polygon","coordinates":[[[342335.3556,440853.440300001],[341532.499,439232.4004],[342331.8661,439079.706],[343669.9981,438824.0973],[342829.8017,437584.102299999],[344754.9987,437550.5019],[345719.3988,436282.8048],[348673.2002,432684.504799999],[347489.0033,430871.603700001],[347689.7983,429881.105599999],[347667.57,429819.07],[348020.0397,429171.008099999],[347752.8411,428675.6174],[343664.67,427227.210000001],[343472,428592.9],[343577.6,427207.699999999],[340783.95,426671.07],[338492.9,426546.300000001],[337230.1,426702.1],[337761.1333,427053.5864],[335686.1,426847.4],[331595.45,428367.9],[330433.0259,431649.225400001],[332040.2982,432108.299699999],[332292.8032,431242.7974],[334425.1986,431366.801899999],[333963.401,433247.003699999],[335319.5981,433501.900800001],[334590.8007,436258.9016],[333572.7995,437130.702099999],[336793.0977,437325.496300001],[336572.1961,439438.8014],[336220.3876,439845.0252],[335514.1003,440660.556299999],[336732.6824,440913.183800001],[336955.13,440959.300000001],[337500.9238,440315.850400001],[338000.32,439727.1],[340223.45,441228.99],[341986.7138,440915.4375],[342294.7179,440860.6667],[342335.3556,440853.440300001]]]},"properties":{"OBJECTID":142,"lad19cd":"E07000119","lad19nm":"Fylde","lad19nmw":" ","bng_e":339554,"bng_n":433811,"long":-2.91914,"lat":53.797089,"GlobalID":"a22a603b-0244-47f4-819e-84ce0f545019"}},{"type":"Feature","id":143,"geometry":{"type":"Polygon","coordinates":[[[369402.9987,431708.6041],[373976.798,435664.7017],[373851.5967,434187.3046],[375731.5036,433977.3047],[376015.0018,433037.503699999],[377548.7976,433221.501],[379382.5981,427895.895500001],[378588.7966,427932.494999999],[378607.0017,426487.998500001],[377385.8999,425169.296],[372966.4977,423266.500600001],[371465.6987,424838.1008],[371077.4964,428204.6971],[370310.1039,428992.4016],[370677.3966,430117.7995],[369402.9987,431708.6041]]]},"properties":{"OBJECTID":143,"lad19cd":"E07000120","lad19nm":"Hyndburn","lad19nmw":" ","bng_e":374407,"bng_n":428971,"long":-2.38964,"lat":53.756481,"GlobalID":"ce0a18d1-ae2f-4902-becf-7a93fc5c36db"}},{"type":"Feature","id":144,"geometry":{"type":"Polygon","coordinates":[[[370052.1984,481319.203199999],[365227.304,473672.801999999],[363491.0014,473169.8959],[363191.2027,470277.6039],[365826.2995,466650.402100001],[366774.2012,466732.7985],[369714.2003,464470.896],[369352.2999,461239.0011],[367860.7023,460566.2037],[367245.4971,458420.697899999],[365553.7013,459044.099400001],[364246.3974,457700.1041],[362603.404,457773.802999999],[362035.3028,456164.503699999],[363529.2007,453347.800000001],[359612.6978,450854.503699999],[357902.5979,451467.8981],[357554.2028,450506.703199999],[354949.4973,450618.101299999],[354015.2,449943.4045],[353163.3038,454034.3035],[351872.4982,453411.3018],[351442.6997,451449.6033],[350525.2965,450955.704700001],[350374.5026,452156.6009],[347715.998,453522.0001],[347402.999,450865.500499999],[346693.0003,450276.799000001],[347333.7982,449146.2027],[343326.2038,447226.6021],[341981.0963,449330.6998],[342352.2261,450064.4057],[342316.851,450066.703400001],[342175.7552,450381.9323],[343392.1,451148.6],[341910,451725.9],[343594.99,451335.83],[343054.1,451866.699999999],[343847,451618.699999999],[343552.8,452403.300000001],[345215.46,451271.130000001],[344072.72,452462.51],[345257.73,452285.1],[342899.85,453044],[342433.86,454032.220000001],[343982.29,456287.1],[346144.33,455736.949999999],[345507,456150.1],[345364.58,457551.460000001],[344169.6,456953.199999999],[344730.57,457978.970000001],[343696.65,456768.4],[343023.48,457951.890000001],[343420.3,456901.800000001],[342557.98,457051.279999999],[342331.6,455183.4],[341935.23,456559.189999999],[342002.8,455363.1],[341081.7,455478.1],[340869.35,458842.35],[339545.81,459868.550000001],[340746.85,460758.550000001],[342514.187,464772.092499999],[344703.45,464965.300000001],[346493.3,466190.869999999],[346842.77,466862.33],[346362.71,466206.82],[346043.8,467486.1],[349114.8993,471364.993899999],[347921.08,470464.48],[347702.93,472241.789999999],[347182.04,471022.039999999],[346229.25,471923.880000001],[346025.11,472729.9],[347160.14,473545.32],[345999.26,473368.91],[345401.5929,475705.060000001],[347972.304,478292.0997],[349964.0964,476959.5012],[352170.5984,476729.7969],[352015.8963,475052.8969],[355703.401,474137.698899999],[358350.7994,478665.3029],[359323.4033,477935.901699999],[362512.5022,477911.6986],[370144.7986,482748.704],[370052.1984,481319.203199999]]]},"properties":{"OBJECTID":144,"lad19cd":"E07000121","lad19nm":"Lancaster","lad19nmw":" ","bng_e":356896,"bng_n":464988,"long":-2.6603,"lat":54.07901,"GlobalID":"2a74b4aa-3ac9-4a3b-93eb-e2b2a43f91a3"}},{"type":"Feature","id":145,"geometry":{"type":"Polygon","coordinates":[[[387988.2982,450699.498],[388130.5007,448821.695499999],[391415.1022,447826.2005],[392652.8013,446613.297700001],[393327.0989,443865.7042],[394742.8996,442165.900699999],[394185.0965,441332.2994],[397063.002,439322.3047],[397009.203,437026.901799999],[396065.9021,436596.505000001],[392703.4013,434383.498400001],[391629.9025,435952.6993],[387189.5991,436572.7018],[386431.6966,435031.403000001],[385352.0965,435751.8967],[382905.3994,434638.395500001],[382333.2004,435445.704399999],[380691.4026,434721.8016],[380218.5978,436130.1984],[379474.3986,435175.0019],[379223.1963,436888.4014],[380185.799,437834.400599999],[378143.2994,438314.903100001],[379180.6023,439010.1041],[379109.6041,440633.6993],[385354.8999,443847.999199999],[383956.8013,448597.5997],[387988.2982,450699.498]]]},"properties":{"OBJECTID":145,"lad19cd":"E07000122","lad19nm":"Pendle","lad19nmw":" ","bng_e":387637,"bng_n":443368,"long":-2.18957,"lat":53.88636,"GlobalID":"115cd8dd-b9a5-4c6f-bcef-6414a6341e55"}},{"type":"Feature","id":146,"geometry":{"type":"Polygon","coordinates":[[[360095.2977,438227.898],[358965.9964,435655.4044],[360860.596,433533.6017],[360594.8,431847.804300001],[358330.9041,431968.0998],[359115.298,430719.597200001],[356811.9989,429554.300799999],[356446.9141,428403.2665],[355229.4724,428721.5449],[355233.4412,428014.444499999],[354288.8768,428355.7577],[352808.5301,428835.977399999],[350158.7227,429255.342900001],[349933.8264,429215.655300001],[347752.8411,428675.6174],[348020.0397,429171.008099999],[347667.57,429819.07],[347689.7983,429881.105599999],[347489.0033,430871.603700001],[348673.2002,432684.504799999],[345719.3988,436282.8048],[347577.0028,436773.5043],[347438.2961,437726.4015],[349384.9963,438515.195699999],[350120.0023,436943.9955],[351637.5964,436602.5032],[350996.6007,439678.502800001],[353405.1974,439944.4966],[355031.2966,444079.0031],[357694.3029,444367.3006],[358985.6031,442858.002599999],[358704.0013,440600.4988],[360095.2977,438227.898]]]},"properties":{"OBJECTID":146,"lad19cd":"E07000123","lad19nm":"Preston","lad19nmw":" ","bng_e":352825,"bng_n":436432,"long":-2.71809,"lat":53.822021,"GlobalID":"b62a459a-1f4d-41db-ba20-8cbfb1a1c1e2"}},{"type":"Feature","id":147,"geometry":{"type":"Polygon","coordinates":[[[369352.2999,461239.0011],[372209.7989,460317.7048],[375605.7005,461521.8002],[376685.4984,458181.296399999],[377844.2016,457098.0964],[377009.1995,457225.200099999],[376997.3019,455459.9954],[377809.696,454872.3036],[379173.8991,455357.104800001],[380792.8993,453190.505000001],[384991.6967,453964.603399999],[385599.201,453561.798699999],[384878.4013,452818.9014],[385286.6967,451690.4044],[387239.2014,452627.6961],[387988.2982,450699.498],[383956.8013,448597.5997],[385354.8999,443847.999199999],[379109.6041,440633.6993],[379180.6023,439010.1041],[378143.2994,438314.903100001],[380185.799,437834.400599999],[379223.1963,436888.4014],[379474.3986,435175.0019],[377548.7976,433221.501],[376015.0018,433037.503699999],[375731.5036,433977.3047],[373851.5967,434187.3046],[373976.798,435664.7017],[369402.9987,431708.6041],[363748.5029,429031.4004],[362898.0001,429663.7994],[364138.8983,430454.403100001],[364015.2965,431197.100500001],[360594.8,431847.804300001],[360860.596,433533.6017],[358965.9964,435655.4044],[360095.2977,438227.898],[358704.0013,440600.4988],[358985.6031,442858.002599999],[357694.3029,444367.3006],[359015.2029,444453.695900001],[359800.0008,445961.804199999],[358973.4994,449341.3968],[357554.2028,450506.703199999],[357902.5979,451467.8981],[359612.6978,450854.503699999],[363529.2007,453347.800000001],[362035.3028,456164.503699999],[362603.404,457773.802999999],[364246.3974,457700.1041],[365553.7013,459044.099400001],[367245.4971,458420.697899999],[367860.7023,460566.2037],[369352.2999,461239.0011]]]},"properties":{"OBJECTID":147,"lad19cd":"E07000124","lad19nm":"Ribble Valley","lad19nmw":" ","bng_e":372687,"bng_n":447676,"long":-2.4174,"lat":53.9245,"GlobalID":"7b40d98b-126a-4de8-97ee-f51797845793"}},{"type":"Feature","id":148,"geometry":{"type":"Polygon","coordinates":[[[379382.5981,427895.895500001],[380627.1983,428441.499299999],[382382.0029,427354.2005],[383502.4985,428770.0952],[384750.9986,426829.0009],[388662.604,425190.799799999],[390432.596,420649.5997],[389429.7987,416106.000299999],[387839.3017,415759.399499999],[388039.7968,416875.200099999],[386533.2015,417557.005000001],[385712.0017,419187.3983],[383850.102,418586.100400001],[382257.6014,416657.602399999],[383113.0018,413790.802999999],[382117.0973,413139.8993],[380575.4028,416025.5033],[380342.2985,418953.6952],[379162.1994,417655.096899999],[375568.5977,419017.9968],[375369.8011,421263.604],[373792.4961,421751.204399999],[372966.4977,423266.500600001],[377385.8999,425169.296],[378607.0017,426487.998500001],[378588.7966,427932.494999999],[379382.5981,427895.895500001]]]},"properties":{"OBJECTID":148,"lad19cd":"E07000125","lad19nm":"Rossendale","lad19nmw":" ","bng_e":382827,"bng_n":420955,"long":-2.26149,"lat":53.68478,"GlobalID":"91a7fb56-de80-496c-9eb9-7fa5447ac11f"}},{"type":"Feature","id":149,"geometry":{"type":"Polygon","coordinates":[[[346660.619,428191.088199999],[347752.8411,428675.6174],[349933.8264,429215.655300001],[350158.7227,429255.342900001],[352808.5301,428835.977399999],[354288.8768,428355.7577],[355233.4412,428014.444499999],[355229.4724,428721.5449],[356446.9141,428403.2665],[356811.9989,429554.300799999],[359115.298,430719.597200001],[358330.9041,431968.0998],[360594.8,431847.804300001],[364015.2965,431197.100500001],[364138.8983,430454.403100001],[362898.0001,429663.7994],[363748.5029,429031.4004],[363060.7988,427981.201099999],[362033.4972,428461.703500001],[359738.6988,427081.6985],[358536.9976,424724.6033],[357068.1977,424144.999199999],[356643.7997,424786.695499999],[355775.8009,424028.102600001],[355354.7998,422128.6963],[356643.7007,421782.395500001],[356580.8981,420669.2041],[353320.1001,420794.598200001],[353022.5029,419663.1021],[351637.8026,420005.304099999],[351883.3982,421330.3049],[350797.1032,422064.104800001],[346006.7034,421542.1535],[345105.11,422427.720000001],[345822.2097,423825.210000001],[345516.79,424529.539999999],[345431.4592,424662.6424],[344971.14,425649.17],[345920.12,426304.65],[344929.54,425699.01],[344494.6224,426457.6494],[344954.66,427052.130000001],[344355.56,426700.220000001],[344371.14,426298.08],[343670.73,426864.720000001],[346660.619,428191.088199999]]]},"properties":{"OBJECTID":149,"lad19cd":"E07000126","lad19nm":"South Ribble","lad19nmw":" ","bng_e":352017,"bng_n":425840,"long":-2.72871,"lat":53.726749,"GlobalID":"7a6008e1-d4bc-4199-9bf8-b0fa4f6cc430"}},{"type":"Feature","id":150,"geometry":{"type":"Polygon","coordinates":[[[345516.79,424529.539999999],[345822.2097,423825.210000001],[345105.11,422427.720000001],[346006.7034,421542.1535],[346157.5414,419896.3532],[345699.5034,419379.903200001],[346435.9852,417353.886],[346776.5009,416417.1478],[346683.4186,415220.294600001],[346661.5774,415177.293400001],[347116.5464,414572.7652],[347606.5036,413453.1997],[347631.0986,414337.796399999],[348441.2006,414385.7027],[349903.3963,413388.598200001],[351406.7018,414377.805],[353151.3979,413706.2972],[354169.4981,414677.1993],[353825.0029,413309.1009],[354484.7974,412190.4011],[354201.3982,410538.2041],[352474.0002,409073.903200001],[353409.0973,407181.8048],[352505.1005,403632.500800001],[351662.6037,402905.4989],[349111.4004,402150.2951],[348231.1,404146.9036],[345935.4029,402030.1995],[345355.2969,399036.5964],[344062.8011,398931.6964],[343715.4037,399938.1983],[342697.6993,399833.3983],[341198.6977,401158.299000001],[341638.1018,403012.6982],[338907.0984,403567.599400001],[337285.7979,405717.903899999],[335318.7984,405919.0963],[336256.0969,403434.1976],[335390.5964,402509.302300001],[330736.3995,405654.302100001],[331190.8013,408130.6032],[332374.5035,408594.8004],[332523.5,410159.102600001],[331517.8994,410567.8956],[332016.404,412241.0966],[334101.2997,414920.5996],[335156.9973,414409.396],[336134.103,415411.199200001],[337967.3016,418422.3972],[337594.0284,420723.787699999],[337379.6427,422033.9188],[337344.4014,422095.760600001],[337334.0796,422114.8598],[337167.7808,422407.1163],[337153.7035,422431.707599999],[337136.2547,422462.1886],[337097.4158,422530.0353],[337028.659,422650.1447],[337013.0236,422676.484300001],[336962.5344,422763.2434],[338222.01,422478.98],[337303,423011],[338259.6,423236.9],[337055.5,423488.5],[337799,423936.5],[338576.4,423021],[338956.89,423533.699999999],[337516.5,424318.5],[338187.5,425798],[339752,424218.5],[338777.5,425710.5],[339717.5,425911],[343359.41,426695.039999999],[345228.2599,424819.156099999],[345473.1052,424573.3892],[345516.79,424529.539999999]]]},"properties":{"OBJECTID":150,"lad19cd":"E07000127","lad19nm":"West Lancashire","lad19nmw":" ","bng_e":342611,"bng_n":413270,"long":-2.86893,"lat":53.612831,"GlobalID":"a7f418e7-f1a3-44e9-9a69-7bea9ae39def"}},{"type":"Feature","id":151,"geometry":{"type":"Polygon","coordinates":[[[357554.2028,450506.703199999],[358973.4994,449341.3968],[359800.0008,445961.804199999],[359015.2029,444453.695900001],[357694.3029,444367.3006],[355031.2966,444079.0031],[353405.1974,439944.4966],[350996.6007,439678.502800001],[351637.5964,436602.5032],[350120.0023,436943.9955],[349384.9963,438515.195699999],[347438.2961,437726.4015],[347577.0028,436773.5043],[345719.3988,436282.8048],[344754.9987,437550.5019],[342829.8017,437584.102299999],[343669.9981,438824.0973],[342331.8661,439079.706],[341532.499,439232.4004],[342335.3556,440853.440300001],[342294.7179,440860.6667],[341986.7138,440915.4375],[340223.45,441228.99],[338000.32,439727.1],[337500.9238,440315.850400001],[336955.13,440959.300000001],[336732.6824,440913.183800001],[335514.1003,440660.556299999],[336220.3876,439845.0252],[336572.1961,439438.8014],[336793.0977,437325.496300001],[333572.7995,437130.702099999],[333041.8011,441857.199100001],[331213.323,442676.177100001],[331151.6,447604.4],[333878.5,448560.5],[333769.55,445423.800000001],[334462.7,448513.65],[339390.4,450825.5],[340324.64,450389.09],[339048.21,450245.970000001],[340610.59,449531.48],[342316.851,450066.703400001],[342352.2261,450064.4057],[341981.0963,449330.6998],[343326.2038,447226.6021],[347333.7982,449146.2027],[346693.0003,450276.799000001],[347402.999,450865.500499999],[347715.998,453522.0001],[350374.5026,452156.6009],[350525.2965,450955.704700001],[351442.6997,451449.6033],[351872.4982,453411.3018],[353163.3038,454034.3035],[354015.2,449943.4045],[354949.4973,450618.101299999],[357554.2028,450506.703199999]]]},"properties":{"OBJECTID":151,"lad19cd":"E07000128","lad19nm":"Wyre","lad19nmw":" ","bng_e":347295,"bng_n":445159,"long":-2.80359,"lat":53.89991,"GlobalID":"94e14ba3-b242-478e-90b0-7a08af07dbb6"}},{"type":"Feature","id":152,"geometry":{"type":"Polygon","coordinates":[[[454223.0012,307707.798900001],[455201.0963,307300.695499999],[454863.4034,305044.101399999],[453737.6969,305275.6951],[453156.7994,304373.303400001],[456596.6966,302025.395500001],[456035.6037,299776.699200001],[457144.8035,299555.4025],[456948.8019,298630.6972],[457726.303,298472.2026],[458115.2967,299255.6983],[459060.2961,296399.196],[459497.4987,297146.0022],[461386.7968,296795.502499999],[462273.6026,295808.395099999],[463863.4977,296090.4044],[462773.6985,293844.1973],[459688.1988,294508.7971],[455436.8968,292491.204600001],[454225.4995,292471.100400001],[452176.9976,295556.997099999],[447218.896,288611.495200001],[445911.4025,289449.7952],[446380.1012,291019.8958],[445216.2037,293001.1986],[445185.6969,296023.203600001],[445935.5028,296875.6996],[447412.3004,296177.1995],[449380.2976,296706.498],[449570.1978,297690.0965],[447746.2996,298230.501800001],[447633.301,298903.199200001],[449228.102,300599.9035],[449218.1997,302289.199999999],[450373.5966,302310.204],[450057.8025,303637.304099999],[451480.999,304253.397700001],[450052.7977,304622.302100001],[452051.9035,305052.698899999],[454223.0012,307707.798900001]]]},"properties":{"OBJECTID":152,"lad19cd":"E07000129","lad19nm":"Blaby","lad19nmw":" ","bng_e":454385,"bng_n":297994,"long":-1.19887,"lat":52.577061,"GlobalID":"914c54fe-26ae-4ee0-95b8-bceb888110c2"}},{"type":"Feature","id":153,"geometry":{"type":"Polygon","coordinates":[[[449846.9021,323909.201300001],[452298.7029,321846.1019],[454200.2036,321614.7981],[456501.4991,323544.595699999],[458685.3025,323493.100400001],[459607.0014,325034.099300001],[462464.0965,325642.895099999],[462661.2029,324453.295600001],[465047.6039,324692.2972],[464472.7995,319139.096799999],[465535.2003,318057.896299999],[466286.1028,314818.703500001],[467564.9035,314467.1041],[466602.3009,313025.5967],[467138.8977,311427.404200001],[471155.5039,309702.9978],[470407.0998,308882.8026],[469033.2005,309836.299699999],[466816.3014,306826.9011],[464453.3988,306785.7029],[462642.297,308389.7037],[459680.2011,308748.700999999],[458986.6018,307872.901699999],[458008.4984,310282.8018],[457057.1998,310757.296],[455667.6019,309240.700099999],[455201.0963,307300.695499999],[454223.0012,307707.798900001],[453368.2028,308815.8018],[452372.1994,308310.896299999],[451179.8976,309906.8994],[450190.3006,309630.498600001],[448699.7008,310699.4026],[448551.8009,313237.2961],[450929.6023,315678.5973],[450655.8992,316176.8047],[449585.3028,316897.5984],[448208.0972,315384.3016],[447026.5965,316985.0034],[445157.202,317473.9034],[444983.998,318593.902799999],[446028.8039,321083.200300001],[448748.7012,320863.6031],[448879.3029,322772.9966],[449846.9021,323909.201300001]]]},"properties":{"OBJECTID":153,"lad19cd":"E07000130","lad19nm":"Charnwood","lad19nmw":" ","bng_e":458365,"bng_n":316155,"long":-1.13694,"lat":52.739899,"GlobalID":"a8e3e72a-1021-4db2-84d8-e390ea25c2c6"}},{"type":"Feature","id":154,"geometry":{"type":"Polygon","coordinates":[[[471155.5039,309702.9978],[473393.4032,308708.102600001],[473662.1015,309383.1994],[474923.1011,309012.895400001],[477460.0982,310310.0041],[477263.6019,309059.602],[478939.7981,308968.698000001],[479264.7029,307421.7008],[480620.9001,307316.900800001],[479777.8013,306150.704600001],[480698.5026,306040.2962],[480939.3985,303213.995300001],[479959.4977,300501.7017],[481888.7019,300662.5956],[483757.7995,299009.298800001],[484155.2032,297061.896299999],[485611.7015,295304.3994],[485403.2993,294255.1997],[487368.1963,292674.102299999],[484511.8021,291069.8015],[483228.3017,291857.9959],[481786.999,291621.103700001],[476838.8988,292719.1994],[475868.4963,291259.597200001],[475993.6976,288946.8992],[474923.299,288235.402799999],[476012.9992,286512.596000001],[474749.6992,285210.798599999],[471956.9981,286060.995300001],[471281.3978,287124.900699999],[467978.0965,286356.8006],[465038.6992,283514.404200001],[465748.5001,282471.1029],[464700.998,280891.1951],[462342.1025,282428.1951],[459317.5998,280144.198899999],[457976.5983,278007.600500001],[455625.7994,277438.803300001],[454421.0971,277932.702],[447218.896,288611.495200001],[452176.9976,295556.997099999],[454225.4995,292471.100400001],[455436.8968,292491.204600001],[459688.1988,294508.7971],[462773.6985,293844.1973],[463863.4977,296090.4044],[462273.6026,295808.395099999],[462758.8986,297834.395199999],[465028.4012,300453.395500001],[463588.797,301128.4023],[463026.5003,302658.6042],[464594.9995,304520.701199999],[464453.3988,306785.7029],[466816.3014,306826.9011],[469033.2005,309836.299699999],[470407.0998,308882.8026],[471155.5039,309702.9978]]]},"properties":{"OBJECTID":154,"lad19cd":"E07000131","lad19nm":"Harborough","lad19nmw":" ","bng_e":474549,"bng_n":293875,"long":-0.90229,"lat":52.537659,"GlobalID":"19322562-7ca8-4dde-ae17-c3cc6d762e0b"}},{"type":"Feature","id":155,"geometry":{"type":"Polygon","coordinates":[[[448551.8009,313237.2961],[448699.7008,310699.4026],[450190.3006,309630.498600001],[451179.8976,309906.8994],[452372.1994,308310.896299999],[453368.2028,308815.8018],[454223.0012,307707.798900001],[452051.9035,305052.698899999],[450052.7977,304622.302100001],[451480.999,304253.397700001],[450057.8025,303637.304099999],[450373.5966,302310.204],[449218.1997,302289.199999999],[449228.102,300599.9035],[447633.301,298903.199200001],[447746.2996,298230.501800001],[449570.1978,297690.0965],[449380.2976,296706.498],[447412.3004,296177.1995],[445935.5028,296875.6996],[445185.6969,296023.203600001],[445216.2037,293001.1986],[446380.1012,291019.8958],[445911.4025,289449.7952],[439618.9038,293111.9969],[436711.7035,294995.4978],[432434.6028,297080.1011],[432135.1999,298428.2952],[429849.3968,299906.502],[430263.5647,301978.7247],[429105.7995,304253.297800001],[430915.4997,305302.997300001],[430408.8984,307841.400699999],[431420.8972,307656.503599999],[433742.5003,308995.500299999],[434313.5038,308044.4026],[435455.7993,309016.704299999],[437582.1016,307502.197799999],[439020.9967,309743.2963],[440538.5991,308429.3024],[443328.802,308942.295600001],[444530.9979,310480.0954],[443952.7965,310914.800899999],[448551.8009,313237.2961]]]},"properties":{"OBJECTID":155,"lad19cd":"E07000132","lad19nm":"Hinckley and Bosworth","lad19nmw":" ","bng_e":439538,"bng_n":301379,"long":-1.41755,"lat":52.608768,"GlobalID":"2b8e123d-bd61-4c91-806f-3d8efa46877f"}},{"type":"Feature","id":156,"geometry":{"type":"Polygon","coordinates":[[[479358.8038,340992.801200001],[479845.9962,340667.0045],[480931.9038,342828.8956],[482131.5024,342870.503699999],[482154.2011,340911.5045],[483750.7005,339853.1974],[482363.502,334850.399499999],[483608.7041,334391.2009],[483088.3995,332858.7995],[484701.4962,332481.5975],[488915.2996,324657.7971],[490252.7969,318512.0962],[484379.9966,316181.5034],[482692.9004,316956.101600001],[480225.6978,315267.605],[479688.4991,313761.796],[482139.698,311473.301100001],[482457.7018,308668.204],[480698.5026,306040.2962],[479777.8013,306150.704600001],[480620.9001,307316.900800001],[479264.7029,307421.7008],[478939.7981,308968.698000001],[477263.6019,309059.602],[477460.0982,310310.0041],[474923.1011,309012.895400001],[473662.1015,309383.1994],[473393.4032,308708.102600001],[471155.5039,309702.9978],[467138.8977,311427.404200001],[466602.3009,313025.5967],[467564.9035,314467.1041],[466286.1028,314818.703500001],[465535.2003,318057.896299999],[464472.7995,319139.096799999],[465047.6039,324692.2972],[466005.8037,325392.196799999],[468651.0996,325275.700200001],[468999.0989,327512.799799999],[470177.6974,327868.398],[472254.3974,330380.198999999],[471398.5024,331566.0996],[472986.6001,331820.696699999],[476929.5037,334853.6985],[476562.5985,335679.202199999],[479101.4013,338910.6972],[478452.3995,339355.299900001],[479358.8038,340992.801200001]]]},"properties":{"OBJECTID":156,"lad19cd":"E07000133","lad19nm":"Melton","lad19nmw":" ","bng_e":477328,"bng_n":323472,"long":-0.8544,"lat":52.803291,"GlobalID":"1d271e49-176c-41f8-ac8a-f6e43408e89f"}},{"type":"Feature","id":157,"geometry":{"type":"Polygon","coordinates":[[[445913.4967,330814.3048],[449373.8005,330903.7992],[448979.802,326756.896199999],[449846.9021,323909.201300001],[448879.3029,322772.9966],[448748.7012,320863.6031],[446028.8039,321083.200300001],[444983.998,318593.902799999],[445157.202,317473.9034],[447026.5965,316985.0034],[448208.0972,315384.3016],[449585.3028,316897.5984],[450655.8992,316176.8047],[450929.6023,315678.5973],[448551.8009,313237.2961],[443952.7965,310914.800899999],[444530.9979,310480.0954],[443328.802,308942.295600001],[440538.5991,308429.3024],[439020.9967,309743.2963],[437582.1016,307502.197799999],[435455.7993,309016.704299999],[434313.5038,308044.4026],[433742.5003,308995.500299999],[431420.8972,307656.503599999],[430408.8984,307841.400699999],[427835.1037,310029.304400001],[427293.197,311490.2962],[430489.1971,313722.397299999],[430846.0021,314990.304300001],[429627.7036,317084.404899999],[430274.001,318506.297900001],[433496.5996,319002.9957],[434245.2017,318055.7969],[435962.2027,318939.204],[436801.3026,320082.096799999],[436328.0031,321165.296800001],[437697.6974,321856.4989],[437610.3986,322941.6983],[439354.6001,322829.9003],[441331.7987,326348.6031],[440898.1003,326753.7971],[443110.4975,328821.295299999],[443788.2993,328616.403899999],[444198.7961,330204.6993],[445515.1036,330044.2952],[445913.4967,330814.3048]]]},"properties":{"OBJECTID":157,"lad19cd":"E07000134","lad19nm":"North West Leicestershire","lad19nmw":" ","bng_e":439111,"bng_n":316252,"long":-1.42209,"lat":52.7425,"GlobalID":"3f3a4d62-a224-4095-b49a-664796204bae"}},{"type":"Feature","id":158,"geometry":{"type":"Polygon","coordinates":[[[463026.5003,302658.6042],[463588.797,301128.4023],[465028.4012,300453.395500001],[462758.8986,297834.395199999],[462273.6026,295808.395099999],[461386.7968,296795.502499999],[459497.4987,297146.0022],[459060.2961,296399.196],[458115.2967,299255.6983],[459690.9031,300333.5998],[460812.0995,300165.797800001],[461260.1032,302460.900800001],[463026.5003,302658.6042]]]},"properties":{"OBJECTID":158,"lad19cd":"E07000135","lad19nm":"Oadby and Wigston","lad19nmw":" ","bng_e":461543,"bng_n":299379,"long":-1.093,"lat":52.588749,"GlobalID":"2a7591be-533d-4ada-97db-3d89603ca283"}},{"type":"Feature","id":159,"geometry":{"type":"Polygon","coordinates":[[[538149.0989,337388.203],[537186.4963,336212.8994],[537130.1125,335928.0583],[532220.1992,332350.595000001],[530093.6,331375.304199999],[530029.8987,331398.1976],[525072.902,333551.3013],[524477.5014,335877.995300001],[522981.196,337165.896600001],[521663.998,336773.5989],[517952.797,338261.1031],[521582.0998,345872.4044],[519137.2001,349549.8018],[519965.5978,354015.9034],[520959.4987,353997.998500001],[526644.6003,347522.6021],[533836.8001,346721.4014],[537253.6028,350039.7016],[536523.7995,354408.0012],[539952.4999,354745.804500001],[543224.9977,356517.2974],[544168.2986,353282.903200001],[547595.0051,350632.8366],[544447.6001,347805.6011],[539384.1019,339186.9981],[539792.1005,339200.0044],[538149.0989,337388.203]]]},"properties":{"OBJECTID":159,"lad19cd":"E07000136","lad19nm":"Boston","lad19nmw":" ","bng_e":526851,"bng_n":343953,"long":-0.11218,"lat":52.97794,"GlobalID":"b2bead43-4776-4e98-bfdd-327e864bb08d"}},{"type":"Feature","id":160,"geometry":{"type":"Polygon","coordinates":[[[533848.0923,405093.9344],[534911.492,404751.195],[534064.701,404310.609999999],[535040.622,404424.988],[535174.23,403463.470000001],[535081.0166,404705.0844],[535432.77,403188.619999999],[535659.928,403892.157],[536770.747,403716.889],[534444.121,405579.880000001],[537793.728,403835.676000001],[538459.042,404132.271],[538364.639,402322.435000001],[538802.992,401498.148],[539494.414,401814.502],[539494.58,400708.859999999],[540444.778,400696.653000001],[539673.935,401528.831],[540857.18,400651.07],[539604.136,401674.982000001],[540263.095,401842.819],[539964.189,403003.056],[541337.453,402387.043],[541734.494,400806.567],[542305.671,400879.354],[541971.373,401924.687999999],[542512.135,401722.413000001],[544372.826,399339.143999999],[543812.192,399632.955],[544848.122,396282.982000001],[545602.881,395733.299000001],[544607.231,395557.635],[545654.406,395638.083000001],[547040.904,393450.720000001],[545608.036,393398.686000001],[547178.825,393367.422],[547143.1445,393306.021],[547118.166,393307.423],[546755.583,392639.082],[547125.0364,393274.8594],[547292.131,392482.886],[547252.231,393301.460999999],[548445.199,391824.892000001],[554771.56,377464.68],[557473.1,368696.5],[557338.722,359795.602],[556623.8644,358615.6745],[556599.495,358575.450999999],[556417.203,356933.718],[556447.111,357788.162],[555401.812,357458.333000001],[555382.207,357382.989],[554069.485,357302.613],[555176.827,357116.694],[553399.277,355611.868000001],[552938.537,356083.493000001],[553337.98,355515.203],[551348.516,354215.15],[552135.207,354172.169],[551444.223,353402.811000001],[550828.18,352909.501],[550411.61,353451.148],[550813.389,352874.382999999],[549968.735,352978.272],[550554.326,352502.997],[547595.0051,350632.8366],[544168.2986,353282.903200001],[543224.9977,356517.2974],[539952.4999,354745.804500001],[536523.7995,354408.0012],[537253.6028,350039.7016],[533836.8001,346721.4014],[526644.6003,347522.6021],[520959.4987,353997.998500001],[520888.6984,355541.196799999],[519331.5032,356928.299699999],[518789.3986,360103.500800001],[514401.6987,366058.7962],[513476.8996,369493.6029],[515166.7002,372178.304500001],[514842.1993,373904.600299999],[513462.6027,375243.1971],[514165.6014,375471.501800001],[513431.5023,375452.2973],[513330.0963,376714.9958],[512349.2968,377151.6009],[512232.2994,379239.0034],[513678.4007,379799.8028],[512654.9,381669.897500001],[513745.3011,383306.799000001],[514964.1025,381928.103599999],[516291.5986,382874.502699999],[516210.2034,384442.104],[519529.5001,387612.4965],[517825.8973,390483.004799999],[519350.6977,391676.1033],[518733.2003,393909.304],[520954.0982,395308.3036],[524198.8018,394862.0013],[524971.9989,394618.0012],[527452.5998,396641.6019],[525696.7975,398677.599099999],[526869.3029,399579.301000001],[526467.3974,400493.1994],[527799.2963,400901.502499999],[528388.2988,404190.601],[529606.1025,404375.098200001],[530092.3963,403611.196900001],[533848.0923,405093.9344]]]},"properties":{"OBJECTID":160,"lad19cd":"E07000137","lad19nm":"East Lindsey","lad19nmw":" ","bng_e":534861,"bng_n":376064,"long":0.020516,"lat":53.264462,"GlobalID":"fd5cf048-5669-4e7b-8e9d-3943e85a52a5"}},{"type":"Feature","id":161,"geometry":{"type":"Polygon","coordinates":[[[493845.1041,372934.797900001],[499217.3963,374023.6962],[500452.9022,373293.895099999],[500563.7983,370855.6031],[498237.0008,369943.7041],[497644.2963,368423.9991],[497021.2995,368623.901900001],[496797.8006,366445.195499999],[496022.196,366504.898499999],[492281.7003,368774.298800001],[492523.6022,370320.6962],[495506.7972,371236.304099999],[493845.1041,372934.797900001]]]},"properties":{"OBJECTID":161,"lad19cd":"E07000138","lad19nm":"Lincoln","lad19nmw":" ","bng_e":496347,"bng_n":370096,"long":-0.55848,"lat":53.219212,"GlobalID":"3eda9432-fb82-40af-b9cd-78b629a4ca7a"}},{"type":"Feature","id":162,"geometry":{"type":"Polygon","coordinates":[[[489087.8028,372235.2981],[490288.8031,372670.8035],[490274.1022,373756.002900001],[491991.1032,374340.9954],[493845.1041,372934.797900001],[495506.7972,371236.304099999],[492523.6022,370320.6962],[492281.7003,368774.298800001],[496022.196,366504.898499999],[496797.8006,366445.195499999],[497021.2995,368623.901900001],[497644.2963,368423.9991],[498237.0008,369943.7041],[500563.7983,370855.6031],[508106.9985,371765.7026],[510081.8968,371361.498299999],[512398.8002,366632.7019],[514401.6987,366058.7962],[518789.3986,360103.500800001],[519331.5032,356928.299699999],[520888.6984,355541.196799999],[520959.4987,353997.998500001],[519965.5978,354015.9034],[519137.2001,349549.8018],[521582.0998,345872.4044],[517952.797,338261.1031],[517356.7038,335692.498400001],[512865.5036,336881.698000001],[510512.8991,336618.203400001],[510024.5029,334635.1011],[505240.5041,333311.799900001],[504670.2015,334810.200999999],[503025.9961,334843.501399999],[501689.0017,336181.8983],[501351.4984,336983.5988],[502300.2988,338192.8027],[501262.3033,340666.204700001],[500211.8001,339946.1008],[499655.9016,341349.4991],[497233.9973,340648.299799999],[497929.9959,342588.804400001],[499075.8038,342350.102700001],[499117.598,351281.796],[494962.1037,350756.7963],[487898.0982,352190.096000001],[486838.6985,351307.398700001],[486135.9967,352079.897600001],[486305.4987,352860.5041],[487533.5016,352909.800000001],[485160.4988,356384.795299999],[485985.3017,358433.898800001],[484914.9031,359707.5042],[486036.3964,360737.999199999],[485769.7016,365229.3036],[482694.6978,365763.6006],[484874.4034,368937.6021],[485936.9032,368606.197000001],[487055.7992,370031.798900001],[488512.8994,369770.003799999],[489087.8028,372235.2981]]]},"properties":{"OBJECTID":162,"lad19cd":"E07000139","lad19nm":"North Kesteven","lad19nmw":" ","bng_e":502135,"bng_n":354788,"long":-0.4767,"lat":53.080582,"GlobalID":"2f6de347-c97f-4403-b0e4-80bdc9a85fce"}},{"type":"Feature","id":163,"geometry":{"type":"Polygon","coordinates":[[[517952.797,338261.1031],[521663.998,336773.5989],[522981.196,337165.896600001],[524477.5014,335877.995300001],[525072.902,333551.3013],[530029.8987,331398.1976],[530093.6,331375.304199999],[532220.1992,332350.595000001],[537130.1125,335928.0583],[537349.0867,336297.4254],[539174.1991,337701.903200001],[539248.7015,336533.0978],[538404.5969,335971.998400001],[539539.2987,336304.303300001],[539807.997,335420.396299999],[544426.2041,334111.0011],[543855.8025,332917.2028],[544789.902,333821.403999999],[546570.1014,332953.602399999],[549277.697,328008.4979],[548125.796,328062.002599999],[549334.0025,327957.8024],[549342.396,327331.2018],[548772.5963,322718.302200001],[549476.7987,327116.5033],[551388.2018,327320.2049],[552915.1226,326370.414100001],[551507.7964,323131.9038],[553377.9989,321886.100400001],[547711.5971,317540.704299999],[546739.9991,317793.402000001],[546682.8031,317829.501599999],[544097.1025,317872.599300001],[541179.9999,316042.203199999],[539453.7974,316411.0976],[538179.6964,314926.702500001],[538582.3027,311267.100099999],[536804.2965,309378.7006],[533246.0991,308906.795700001],[531011.2011,310371.0966],[529410.9997,309388.197899999],[528418.5004,309965.2028],[525850.1969,307594.501399999],[523189.5981,308534.202400001],[522343.3992,307608.8972],[520976.096,309159.703299999],[517192.0994,312673.7974],[514407.1981,317543.203600001],[517438.8989,320685.0043],[516142.0002,330690.700200001],[516479.2974,331912.3005],[517425.2038,331387.500700001],[516558.4005,332453.895400001],[517356.7038,335692.498400001],[517952.797,338261.1031]]]},"properties":{"OBJECTID":163,"lad19cd":"E07000140","lad19nm":"South Holland","lad19nmw":" ","bng_e":532909,"bng_n":322928,"long":-0.03058,"lat":52.787579,"GlobalID":"19803ee1-9029-44f2-b649-d926ae3e6463"}},{"type":"Feature","id":164,"geometry":{"type":"Polygon","coordinates":[[[486135.9967,352079.897600001],[486838.6985,351307.398700001],[487898.0982,352190.096000001],[494962.1037,350756.7963],[499117.598,351281.796],[499075.8038,342350.102700001],[497929.9959,342588.804400001],[497233.9973,340648.299799999],[499655.9016,341349.4991],[500211.8001,339946.1008],[501262.3033,340666.204700001],[502300.2988,338192.8027],[501351.4984,336983.5988],[501689.0017,336181.8983],[503025.9961,334843.501399999],[504670.2015,334810.200999999],[505240.5041,333311.799900001],[510024.5029,334635.1011],[510512.8991,336618.203400001],[512865.5036,336881.698000001],[517356.7038,335692.498400001],[516558.4005,332453.895400001],[517425.2038,331387.500700001],[516479.2974,331912.3005],[516142.0002,330690.700200001],[517438.8989,320685.0043],[514407.1981,317543.203600001],[517192.0994,312673.7974],[520976.096,309159.703299999],[517754.2972,307382.402100001],[515777.6015,309433.8049],[512669.2959,309871.7995],[511676.4009,308374.2981],[507959.1976,306780.704299999],[504763.8983,307404.4958],[501950.0981,305791.0976],[501933.204,305782.100199999],[499943.8026,308522.4957],[501100.6012,307911.2007],[504488.9998,309191.904100001],[505953.6029,310704.801100001],[506145.1027,313125.598099999],[501805.3973,313503.799799999],[498538.5969,314953.105],[498670.6003,316638.3026],[496433.0968,318229.997],[494224.5995,317895.602700001],[493877.5979,318926.897500001],[490252.7969,318512.0962],[488915.2996,324657.7971],[484701.4962,332481.5975],[483088.3995,332858.7995],[483608.7041,334391.2009],[482363.502,334850.399499999],[483750.7005,339853.1974],[482154.2011,340911.5045],[482131.5024,342870.503699999],[480332.7022,346799.3991],[480890.4971,346596.497199999],[481359.0969,348301.899],[483202.5029,348729.196699999],[483908.7996,351601.804400001],[486135.9967,352079.897600001]]]},"properties":{"OBJECTID":164,"lad19cd":"E07000141","lad19nm":"South Kesteven","lad19nmw":" ","bng_e":501406,"bng_n":328986,"long":-0.49565,"lat":52.84885,"GlobalID":"9da14a90-e6b5-4eb4-b613-6ffbe37c1412"}},{"type":"Feature","id":165,"geometry":{"type":"Polygon","coordinates":[[[516022.7024,412210.895300001],[515854.0992,411203.8035],[516956.9008,411408.8049],[517809.1021,409400.399800001],[519611.5961,409846.702],[520014.6972,409222.8006],[518084.8005,405465.6961],[518703.1965,405381.000299999],[519190.1004,403173.802100001],[518828.9997,400328.6965],[520296.2,400170.901699999],[520789.7989,398414.904300001],[522665.0968,398132.2952],[523015.3965,396028.897299999],[524198.8018,394862.0013],[520954.0982,395308.3036],[518733.2003,393909.304],[519350.6977,391676.1033],[517825.8973,390483.004799999],[519529.5001,387612.4965],[516210.2034,384442.104],[516291.5986,382874.502699999],[514964.1025,381928.103599999],[513745.3011,383306.799000001],[512654.9,381669.897500001],[513678.4007,379799.8028],[512232.2994,379239.0034],[512349.2968,377151.6009],[513330.0963,376714.9958],[513431.5023,375452.2973],[514165.6014,375471.501800001],[513462.6027,375243.1971],[514842.1993,373904.600299999],[515166.7002,372178.304500001],[513476.8996,369493.6029],[514401.6987,366058.7962],[512398.8002,366632.7019],[510081.8968,371361.498299999],[508106.9985,371765.7026],[500563.7983,370855.6031],[500452.9022,373293.895099999],[499217.3963,374023.6962],[493845.1041,372934.797900001],[491991.1032,374340.9954],[490274.1022,373756.002900001],[490288.8031,372670.8035],[489087.8028,372235.2981],[487618.2031,374287.8006],[484550.1004,373744.2962],[484507.8033,372616.2991],[481737.8997,372890.7005],[482545.1984,375833.098300001],[481619.7975,377015.999700001],[482555.9061,378714.606000001],[482568.301,378737.096999999],[483343.2301,378291.248199999],[483735.6038,378065.499299999],[483458.2977,381366.704299999],[483338.7188,381448.971999999],[482713.138,381879.357799999],[482283.698,382174.802999999],[482740.697,384863.703299999],[481682.5011,386026.500499999],[480780.5829,385887.3616],[480590.8963,385858.0987],[480601.8467,385875.2017],[481606.8032,387444.804500001],[480593.3038,388351.7049],[481453.9975,389548.102399999],[480650.9038,391619.999299999],[478687.6971,392827.2038],[478477.5964,394377.300100001],[479916.7966,396067.8961],[481868.5331,398776.4739],[481814.6572,400736.093],[481872.6982,400949.6987],[482942.6021,401150.001399999],[483534.533,402389.4936],[483732.2975,403312.702299999],[491311.1989,402672.9955],[491079.1005,396589.9967],[495842.8989,396757.198799999],[501101.0959,398494.001700001],[500355.0993,401968.1972],[505162.3986,403166.804099999],[505769.6969,404206.5965],[504081.3969,406665.002800001],[499426.9033,405576.904200001],[500089.7979,406527.302200001],[501666.501,406904.404200001],[504122.4985,409803.104499999],[504947.4994,408562.5996],[510325.4971,408174.500700001],[512559.3975,412307.297700001],[511992.0961,414413.604699999],[513082.3982,414321.5011],[516022.7024,412210.895300001]]]},"properties":{"OBJECTID":165,"lad19cd":"E07000142","lad19nm":"West Lindsey","lad19nmw":" ","bng_e":499314,"bng_n":390326,"long":-0.50774,"lat":53.40044,"GlobalID":"addf6f6d-4572-42ca-a6c5-f12ede0f8f67"}},{"type":"Feature","id":166,"geometry":{"type":"Polygon","coordinates":[[[582700.998,324645.3006],[588710.3036,322717.502499999],[591467.3037,327506.601600001],[593233.9976,327164.7994],[595018.3031,325374.901799999],[596772.0028,326848.699899999],[598243.2021,325200.001800001],[598100.9005,326041.6009],[600122.3999,327478.7995],[601913.3014,326508.497300001],[602512.2968,322904.898800001],[605500.4966,323393.399],[606014.5019,321339.796800001],[608026.6019,320372.2038],[608672.1985,318421.102299999],[609837.1019,317524.198999999],[608479.8989,316112.303200001],[610202.2015,313956.100400001],[609640.8035,310281.802100001],[608380.2986,310114.4001],[608137.3001,308926.4001],[606650.897,311665.9959],[605963.5969,309763.500499999],[604673.4015,308956.2016],[604468.1984,306273.499500001],[605688.5994,306330.6032],[605993.0978,303266.200300001],[600836.1996,303772.295499999],[600198.7986,302665.5023],[600790.1014,302270.395400001],[599787.502,301633.997500001],[601677.8966,299368.1961],[605844.497,297612.298699999],[607717.8986,297659.295299999],[610105.6023,295660.0975],[609051.1992,294354.801200001],[610338.7974,289204.195499999],[608904.7009,288527.7991],[607980.0008,284627.295700001],[606979.2978,285204.600400001],[605558.7974,284111.903200001],[606434.2003,284081.5019],[605617.2961,282955.1043],[606325.0027,279951.0042],[602112.2959,278815.7992],[599493.4007,280794.602700001],[595176.196,280789.404200001],[593365.597,281881.8015],[591186.1965,280541.295299999],[588311.2014,280523.2004],[587078.6967,279677.602499999],[586360.5024,280981.2993],[583165.599,281127.7974],[581603.7041,282344.199200001],[584844.1038,287000.996200001],[582473.5992,287297.3014],[581236.098,288291.8967],[579619.5961,286947.101600001],[575584.9002,286901.004799999],[577360.9028,295847.503900001],[574975.6973,298872.498],[572022.201,299461.6994],[571569.2009,300591.396],[573768.6039,302937.5044],[574512.2012,309316.2985],[573400.701,309474.903100001],[573509.2967,311293.102700001],[572544.303,312253.297800001],[576589.297,314564.0963],[577529.5968,314803.4978],[579043.1014,313618.8969],[579394.2998,315122.4965],[581717.8982,314526.097200001],[583242.3028,315816.197899999],[583674.7975,317256.5956],[582460.1021,318814.1998],[580214.9967,319216.604599999],[581557.3998,320537.6964],[581573.7992,322549.500499999],[582700.998,324645.3006]]]},"properties":{"OBJECTID":166,"lad19cd":"E07000143","lad19nm":"Breckland","lad19nmw":" ","bng_e":591015,"bng_n":303330,"long":0.818716,"lat":52.594212,"GlobalID":"d26f7b5a-eb83-41f8-a156-630579155342"}},{"type":"Feature","id":167,"geometry":{"type":"Polygon","coordinates":[[[634783.3781,315972.398800001],[634861.11,315827.84],[635567.64,316430],[636030.092,315946.0604],[637511.9402,315949.852299999],[637424.638,315770.4563],[637732.207,315468.1105],[637928.15,315698.359999999],[638064.1563,315665.635500001],[638277.7183,315614.250299999],[639746.5373,315260.8378],[640121.5367,315128.4504],[640540.1708,314378.889900001],[640882.11,314400.91],[640984.2367,313564.111400001],[640971.0075,313155.329299999],[640710.33,311976.75],[641580.26,311589.699999999],[641587.0911,311506.178099999],[641477.6187,310695.6207],[642669.3723,310587.9045],[642984.93,310599.300000001],[644018.6322,309201.888699999],[644932.2088,309586.8829],[645206.0972,309019.3035],[645714.7314,309715.5087],[645963.3425,310055.801000001],[646697.99,309840.624],[649096.9992,307988.298599999],[646702.8973,306942.398],[646026.2994,305601.301899999],[647067.04,305149.560000001],[646476.6646,304638.764900001],[645231.6812,303561.600500001],[644001.5441,302497.281199999],[642927.4068,301567.9334],[642721.07,301389.41],[642274.2,301635.75],[641019.87,301653.189999999],[640225.79,301184.140000001],[639977.788,301786.8698],[639496.0811,301570.181399999],[638948.8371,301859.692500001],[638851.06,301911.42],[638495.3096,303370.798900001],[638386.3478,303410.822000001],[637017.9535,302998.5337],[636346.6179,304337.5429],[636231.2346,304405.661800001],[636104.88,304631.66],[634070,305245.199999999],[632458.6,308203.560000001],[631151.0066,308066.526799999],[629574.8131,306209.9803],[628297.1,308322.859999999],[625167.8689,308013.9462],[626065.798,311010.5035],[624900.004,310434.6984],[622795.3038,311441.5002],[623196.3023,313903.0955],[622624.4002,314777.0954],[622028.8017,313903.0955],[620670.9968,313849.200999999],[622217.696,311717.6011],[619850.0031,310507.1976],[618780.0002,312724.402899999],[617680.8017,313202.3961],[616853.4016,311740.9045],[615791.5036,313757.1973],[614709.7022,312219.1976],[612890.1986,312830.002699999],[612213.6006,309624.700200001],[609640.8035,310281.802100001],[610202.2015,313956.100400001],[608479.8989,316112.303200001],[609837.1019,317524.198999999],[608672.1985,318421.102299999],[608026.6019,320372.2038],[606014.5019,321339.796800001],[605500.4966,323393.399],[602512.2968,322904.898800001],[601913.3014,326508.497300001],[603838.8035,326775.200999999],[604658.4038,328123.8049],[608185.8965,328721.8037],[609056.6986,330262.9026],[612360.7997,328486.101199999],[612011.5966,329785.699200001],[612775.6994,329573.300000001],[613819.3015,330612.3026],[615295.1015,328973.501700001],[616638.2962,330637.295399999],[619155.8019,329726.496200001],[619427.6003,328950.498299999],[620716.6002,329607.700200001],[621782.7031,328079.4976],[623073.4014,328377.4023],[623656.6983,325383.099400001],[626676.4025,321798.695499999],[628777.4996,321199.297],[629487.3994,320017.995200001],[630047.8986,320424.298900001],[629902.9999,318543.7972],[631426.9039,317090.194800001],[630904.15,316201.15],[631552.62,315776.99],[633914.93,317587.460000001],[634783.3781,315972.398800001]]]},"properties":{"OBJECTID":167,"lad19cd":"E07000144","lad19nm":"Broadland","lad19nmw":" ","bng_e":619864,"bng_n":315909,"long":1.252317,"lat":52.69622,"GlobalID":"9695f418-de42-4bff-8076-375f0ca3cfc8"}},{"type":"Feature","id":168,"geometry":{"type":"Polygon","coordinates":[[[653770.03,299262.709100001],[652813.5017,299052.396500001],[651106.502,300527.1044],[648750.5005,301029.1007],[646723.0977,299498.698799999],[646567.9966,299072.794],[646255.8876,298215.748600001],[645650.14,298908.34],[644792.5473,300115.1251],[644672.8879,300283.507200001],[644601.31,300384.23],[646426.1032,302767.422599999],[647202.1098,303780.8926],[647305.17,303915.49],[647067.04,305149.560000001],[646026.2994,305601.301899999],[646702.8973,306942.398],[649096.9992,307988.298599999],[646697.99,309840.624],[645963.3425,310055.801000001],[645714.7314,309715.5087],[645206.0972,309019.3035],[644932.2088,309586.8829],[644018.6322,309201.888699999],[642984.93,310599.300000001],[642669.3723,310587.9045],[641477.6187,310695.6207],[641587.0911,311506.178099999],[641580.26,311589.699999999],[640710.33,311976.75],[640971.0075,313155.329299999],[640984.2367,313564.111400001],[640882.11,314400.91],[640540.1708,314378.889900001],[640121.5367,315128.4504],[639665.92,316761.029999999],[640380.9982,317279.249500001],[642314.48,318680.449999999],[643290.3212,318903.7366],[644809.34,319251.310000001],[644957.4809,320075.613399999],[644989.5372,320253.9848],[648143.9764,322436.4915],[649784.17,320398.359999999],[652883.03,312078.279999999],[653751.81,303965.41],[653512.4495,303947.3278],[653770.03,299262.709100001]]]},"properties":{"OBJECTID":168,"lad19cd":"E07000145","lad19nm":"Great Yarmouth","lad19nmw":" ","bng_e":646761,"bng_n":315881,"long":1.64951,"lat":52.684391,"GlobalID":"9297353f-a8af-43b6-892e-48ebb09c8108"}},{"type":"Feature","id":169,"geometry":{"type":"MultiPolygon","coordinates":[[[[558109.833,326653.891000001],[557434.732,326179.227],[558199.587,326582.244000001],[557752.314,325905.234999999],[558633.062,326124.544],[558199.212,325435.316],[558761.151,325789.408],[559377.276,324735.134],[561570.005,319321.503],[560245.042,323390.713],[560688.35,323898.619999999],[560208.248,323496.908],[559381.103,325293.093],[559886.0295,325386.7426],[559054.253,325960.431],[560580.742,326634.054],[558990.93,326450.676999999],[561935.902,329291.858999999],[562560.253,328837.139],[562098.835,329393.676000001],[563921.318,331170.367000001],[564698.071,331234.353],[565078.206,330020.297],[564646.043,333394.955],[567409.487,341856.114],[570754.269,344999.288000001],[572614.238,345079.968],[572110.075,344683.992000001],[573123.48,343842.32],[573767.273,344854.028999999],[573835.93,344082.57],[574166.95,344652.619999999],[574048.54,343948.640000001],[574944.01,344105.119999999],[573854.324,345321.623],[575873.682,344911.544],[575644.35,344154.779999999],[576465.48,344338.68],[576207.05,345041.421],[579468.143,345577.017000001],[579315.227,344740.885],[577282.552,344755.827],[577627.21,344250.752],[580391.456,344495.704],[581397.039,345205.137],[580069.263,344704.489],[580953.27,345796.035],[582440.8,345057.4],[584612.268,345469.226],[584789.04,345228.470000001],[584531.98,344506.42],[584591.7511,345223.1894],[583526.99,345194.689999999],[583566.404,343907.676000001],[585292.569,344891.524],[584986.27,345515.390000001],[585707.64,345710.810000001],[584774.653,345691.653000001],[586844.1918,345955.662900001],[587743.999,337242.504699999],[589566.6027,337337.7974],[589906.0024,336548.103499999],[588977.5013,335017.1017],[588150.901,335438.4011],[587990.5015,332800.6962],[583756.102,332131.897600001],[583627.6027,330738.796399999],[585844.6997,327879.404899999],[582700.998,324645.3006],[581573.7992,322549.500499999],[581557.3998,320537.6964],[580214.9967,319216.604599999],[582460.1021,318814.1998],[583674.7975,317256.5956],[583242.3028,315816.197899999],[581717.8982,314526.097200001],[579394.2998,315122.4965],[579043.1014,313618.8969],[577529.5968,314803.4978],[576589.297,314564.0963],[572544.303,312253.297800001],[573509.2967,311293.102700001],[573400.701,309474.903100001],[574512.2012,309316.2985],[573768.6039,302937.5044],[571569.2009,300591.396],[572022.201,299461.6994],[574975.6973,298872.498],[577360.9028,295847.503900001],[575584.9002,286901.004799999],[573680.0025,287296.9015],[571601.604,286350.3024],[566296.3029,286077.9004],[565236.7961,284823.5995],[565113.3015,286848.5998],[561773.1036,289508.0985],[560767.7998,291883.5986],[556807.4001,293141.1986],[553239.6962,292370.699100001],[552532.6048,291534.1503],[552523.9738,291554.916200001],[551873.3,292281.004799999],[549782.303,293590.799900001],[551413.8027,294562.1018],[549715.3036,295171.1975],[550195.496,295666.8956],[549542.0996,296452.1008],[550258.6037,296886.0966],[549619.6032,296732.3006],[549567.4037,297482.695800001],[550396.5023,298169.099400001],[549592.8975,298698.297900001],[550434.9985,299506.6965],[548528.996,302383.0031],[550326.7986,304981.7992],[546889.1028,308063.3971],[547812.797,308673.102600001],[547796.9995,311147.5043],[545970.0848,311508.6954],[545882.0776,312598.342900001],[546739.9991,317793.402000001],[547711.5971,317540.704299999],[553377.9989,321886.100400001],[551507.7964,323131.9038],[552915.1226,326370.414100001],[554106.798,326253.143999999],[553642.761,326715.845000001],[554248.965,327082.385],[554460.643,326409.181],[556132.434,327098.378],[558109.833,326653.891000001]]],[[[580624.032,346771.819],[584796.517,345851.684],[582813,346256.9],[582490.1,345672.9],[582624.1,346280.800000001],[582112,345807.800000001],[581584.1394,346352.2862],[581430.846,345834.921],[581569.8,346513.9],[581202.16,345993.380000001],[580688.79,346678.25],[581127.49,346014.15],[580373.04,346246.939999999],[580175.044,345591.855],[580389.827,346638.41],[578523.894,346517.242000001],[580624.032,346771.819]]]]},"properties":{"OBJECTID":169,"lad19cd":"E07000146","lad19nm":"King's Lynn and West Norfolk","lad19nmw":" ","bng_e":571219,"bng_n":315805,"long":0.533243,"lat":52.71283,"GlobalID":"f320e096-5d07-496d-be51-2fba803c6e90"}},{"type":"Feature","id":170,"geometry":{"type":"MultiPolygon","coordinates":[[[[601987.863,346110.82],[602217.408,346032.864700001],[609977.53,343892],[621947.207,342369.367000001],[631026,337105.83],[641850.6,328708.960000001],[648143.9764,322436.4915],[644989.5372,320253.9848],[644957.4809,320075.613399999],[644809.34,319251.310000001],[643290.3212,318903.7366],[642314.48,318680.449999999],[640380.9982,317279.249500001],[639665.92,316761.029999999],[640121.5367,315128.4504],[639746.5373,315260.8378],[638277.7183,315614.250299999],[638064.1563,315665.635500001],[637928.15,315698.359999999],[637732.207,315468.1105],[637424.638,315770.4563],[637511.9402,315949.852299999],[636030.092,315946.0604],[635567.64,316430],[634861.11,315827.84],[634783.3781,315972.398800001],[633914.93,317587.460000001],[631552.62,315776.99],[630904.15,316201.15],[631426.9039,317090.194800001],[629902.9999,318543.7972],[630047.8986,320424.298900001],[629487.3994,320017.995200001],[628777.4996,321199.297],[626676.4025,321798.695499999],[623656.6983,325383.099400001],[623073.4014,328377.4023],[621782.7031,328079.4976],[620716.6002,329607.700200001],[619427.6003,328950.498299999],[619155.8019,329726.496200001],[616638.2962,330637.295399999],[615295.1015,328973.501700001],[613819.3015,330612.3026],[612775.6994,329573.300000001],[612011.5966,329785.699200001],[612360.7997,328486.101199999],[609056.6986,330262.9026],[608185.8965,328721.8037],[604658.4038,328123.8049],[603838.8035,326775.200999999],[601913.3014,326508.497300001],[600122.3999,327478.7995],[598100.9005,326041.6009],[598243.2021,325200.001800001],[596772.0028,326848.699899999],[595018.3031,325374.901799999],[593233.9976,327164.7994],[591467.3037,327506.601600001],[588710.3036,322717.502499999],[582700.998,324645.3006],[585844.6997,327879.404899999],[583627.6027,330738.796399999],[583756.102,332131.897600001],[587990.5015,332800.6962],[588150.901,335438.4011],[588977.5013,335017.1017],[589906.0024,336548.103499999],[589566.6027,337337.7974],[587743.999,337242.504699999],[586844.1918,345955.662900001],[588946.26,345467.082],[591132.661,346041.187999999],[591599.9,343845.720000001],[592862.27,343563.130000001],[595233.78,344510.51],[595519.24,343902.83],[595578.57,344623.039999999],[596003.2065,344543.9175],[595844.62,344672.09],[596260.308,344970.325999999],[597341.37,344065.33],[600501.3008,344878.399800001],[602554.326,344875.292199999],[602329.31,343976.859999999],[603613.014,345321.899],[601727.452,346053.8916],[599517.989,345679.841],[598731.691,345418.550000001],[599819.809,346694.314999999],[601987.863,346110.82]]],[[[593338.87,345929.529999999],[593763.86,344740.800000001],[592572.88,345927.07],[592961.97,345165.199999999],[592661.99,345631.130000001],[591815.28,344853.609999999],[592553.32,346211.98],[593338.87,345929.529999999]]],[[[595195.716,345135.074999999],[593521.009,344070.135],[593968.62,344474.960000001],[593211.67,344971.26],[593931.03,344639.07],[594440.62,345407.470000001],[595195.716,345135.074999999]]],[[[595697.674,344703.082],[594312.07,344414.050000001],[595019.77,344898],[595697.674,344703.082]]]]},"properties":{"OBJECTID":170,"lad19cd":"E07000147","lad19nm":"North Norfolk","lad19nmw":" ","bng_e":611076,"bng_n":330857,"long":1.132099,"lat":52.833889,"GlobalID":"0256f5de-94a2-40d6-9b5c-230dc1591772"}},{"type":"Feature","id":171,"geometry":{"type":"Polygon","coordinates":[[[625167.8689,308013.9462],[624800.2392,307678.8267],[624417.5713,306913.2992],[622486.9962,304777.897600001],[621480.299,305458.402799999],[620726.7993,305020.998],[619667.6965,307088.7961],[618844.5014,307159.7958],[618720.5039,308582.7985],[617547.7017,308111.203500001],[616847.597,310034.103],[619001.1987,309710.295700001],[619850.0031,310507.1976],[622217.696,311717.6011],[620670.9968,313849.200999999],[622028.8017,313903.0955],[622624.4002,314777.0954],[623196.3023,313903.0955],[622795.3038,311441.5002],[624900.004,310434.6984],[626065.798,311010.5035],[625167.8689,308013.9462]]]},"properties":{"OBJECTID":171,"lad19cd":"E07000148","lad19nm":"Norwich","lad19nmw":" ","bng_e":622355,"bng_n":309773,"long":1.284979,"lat":52.640129,"GlobalID":"11c8757d-d21d-4956-9ddf-34bcd19a19de"}},{"type":"Feature","id":172,"geometry":{"type":"Polygon","coordinates":[[[619850.0031,310507.1976],[619001.1987,309710.295700001],[616847.597,310034.103],[617547.7017,308111.203500001],[618720.5039,308582.7985],[618844.5014,307159.7958],[619667.6965,307088.7961],[620726.7993,305020.998],[621480.299,305458.402799999],[622486.9962,304777.897600001],[624417.5713,306913.2992],[624800.2392,307678.8267],[625167.8689,308013.9462],[628297.1,308322.859999999],[629574.8131,306209.9803],[631151.0066,308066.526799999],[632458.6,308203.560000001],[634070,305245.199999999],[636104.88,304631.66],[636231.2346,304405.661800001],[636346.6179,304337.5429],[637017.9535,302998.5337],[638386.3478,303410.822000001],[638495.3096,303370.798900001],[638851.06,301911.42],[638948.8371,301859.692500001],[639496.0811,301570.181399999],[639977.788,301786.8698],[640225.79,301184.140000001],[641019.87,301653.189999999],[642274.2,301635.75],[642721.07,301389.41],[642927.4068,301567.9334],[644001.5441,302497.281199999],[645231.6812,303561.600500001],[646476.6646,304638.764900001],[647067.04,305149.560000001],[647305.17,303915.49],[647202.1098,303780.8926],[646426.1032,302767.422599999],[644601.31,300384.23],[644672.8879,300283.507200001],[644792.5473,300115.1251],[645650.14,298908.34],[646255.8876,298215.748600001],[647475.46,297077.23],[648104,295536.15],[649290.25,295868.949999999],[650000,295017.800000001],[649540.8399,293461.896600001],[649362.56,292857.779999999],[648862.8911,292290.2763],[648546.9797,291931.4768],[648497.06,291874.779999999],[647819.6765,292190.68],[647535.9,292323.02],[646925.4,291203.82],[643770.7008,292675.6643],[643606.4584,292752.2926],[643197.51,292943.09],[642943.8029,292475.904899999],[642070.5136,290867.7996],[641814.5414,290396.443499999],[641805.59,290379.960000001],[639725.7147,291375.261],[638903.61,291768.67],[639305.9342,291144.6395],[639428.25,290954.92],[638452.0046,290675.502599999],[638403.85,290661.720000001],[636531.7201,291690.4998],[636474.7479,291683.269300001],[636445.0955,291682.9769],[635464.84,290852.306],[634235.9032,289810.901900001],[632254.6975,291303.704600001],[631819.0037,290318.896400001],[633359.8985,289763.795299999],[633370.0976,288581.1039],[631698.4032,288397.996300001],[628779.297,286374.5955],[627772.7977,283757.604599999],[625765.2985,281768.7039],[623703.1015,282041.9957],[622016.5,279783.0023],[618954.8038,277895.8025],[608927.3996,280036.899599999],[606325.0027,279951.0042],[605617.2961,282955.1043],[606434.2003,284081.5019],[605558.7974,284111.903200001],[606979.2978,285204.600400001],[607980.0008,284627.295700001],[608904.7009,288527.7991],[610338.7974,289204.195499999],[609051.1992,294354.801200001],[610105.6023,295660.0975],[607717.8986,297659.295299999],[605844.497,297612.298699999],[601677.8966,299368.1961],[599787.502,301633.997500001],[600790.1014,302270.395400001],[600198.7986,302665.5023],[600836.1996,303772.295499999],[605993.0978,303266.200300001],[605688.5994,306330.6032],[604468.1984,306273.499500001],[604673.4015,308956.2016],[605963.5969,309763.500499999],[606650.897,311665.9959],[608137.3001,308926.4001],[608380.2986,310114.4001],[609640.8035,310281.802100001],[612213.6006,309624.700200001],[612890.1986,312830.002699999],[614709.7022,312219.1976],[615791.5036,313757.1973],[616853.4016,311740.9045],[617680.8017,313202.3961],[618780.0002,312724.402899999],[619850.0031,310507.1976]]]},"properties":{"OBJECTID":172,"lad19cd":"E07000149","lad19nm":"South Norfolk","lad19nmw":" ","bng_e":628990,"bng_n":295823,"long":1.373233,"lat":52.51218,"GlobalID":"c4a5437f-d0a3-4841-a6e0-213d6e293f32"}},{"type":"Feature","id":173,"geometry":{"type":"Polygon","coordinates":[[[489931.2973,296467.1965],[490325.6998,294947.4016],[492128.8039,294028.9045],[492649.496,292651.798699999],[490660.6966,291955.498],[490233.7014,290707.895099999],[492679.6977,291769.101299999],[495266.9979,291376.4037],[494483.0987,290988.8047],[495384.4982,289705.801899999],[495067.4014,288573.0962],[493288.0018,287723.599300001],[493042.2,286061.895],[490872.2978,284895.098999999],[490463.5984,285919.9956],[489523.9005,285727.8006],[490355.7035,286492.501700001],[489419.9963,287515.798800001],[487057.2009,285082.1954],[485854.6999,285213.197899999],[485580.9969,286541.897600001],[483535.1004,286719.8967],[482508.4996,289276.8047],[481006.2,290517.6995],[481786.999,291621.103700001],[483228.3017,291857.9959],[484511.8021,291069.8015],[487368.1963,292674.102299999],[489931.2973,296467.1965]]]},"properties":{"OBJECTID":173,"lad19cd":"E07000150","lad19nm":"Corby","lad19nmw":" ","bng_e":487862,"bng_n":290681,"long":-0.7069,"lat":52.506969,"GlobalID":"e824ffb4-f8f3-4d3a-9d9f-af78700c2f39"}},{"type":"Feature","id":174,"geometry":{"type":"Polygon","coordinates":[[[454421.0971,277932.702],[455625.7994,277438.803300001],[457976.5983,278007.600500001],[459317.5998,280144.198899999],[462342.1025,282428.1951],[464700.998,280891.1951],[465748.5001,282471.1029],[465038.6992,283514.404200001],[467978.0965,286356.8006],[471281.3978,287124.900699999],[471956.9981,286060.995300001],[474749.6992,285210.798599999],[474568.4975,283251.6994],[477305.0003,282409.9004],[475786.5981,281176.9033],[475584.0005,278419.2027],[476722.8001,278890.697699999],[478993.9021,277833.3004],[479667.5978,275989.1983],[482062.7963,274414.099099999],[482611.2001,272826.003699999],[482838.2031,270972.904200001],[480684.1974,268598.503799999],[481347.3971,264796.802100001],[480079.4964,265405.3979],[476913.9041,265546.7974],[476163.7025,264721.103700001],[475272.9968,265294.7995],[470960.3021,262873.2027],[469097.0008,262632.2017],[468545.299,261526.698100001],[463945.5031,259302.9047],[465821.6997,255704.8046],[462767.4982,255426.304300001],[461937.8967,253790.702500001],[459787.997,254519.7039],[459696.0975,252537.201300001],[459097.5968,253128.302100001],[458630.5965,252317.304300001],[457715.1969,252693.296700001],[459078.6002,250122.702500001],[455673.3982,249886.9],[455269.8024,251634.5997],[454965.3041,251070.101299999],[453235.5975,251631.6006],[452514.7977,250220.5045],[451151.9963,251097.5034],[451035.0978,252079.9022],[449676.6993,252403.5996],[449232.1008,255098.7981],[451029.7963,255888.502],[448945.1975,260282.304300001],[450161.2038,259923.497],[452454.5016,261951.296599999],[453617.5004,263423.0953],[452357.3995,266073.796499999],[454001.5966,268858.6994],[450161.2038,270281.801999999],[452318.1035,272323.797499999],[456285.0003,273454.7038],[454421.0971,277932.702]]]},"properties":{"OBJECTID":174,"lad19cd":"E07000151","lad19nm":"Daventry","lad19nmw":" ","bng_e":467286,"bng_n":268437,"long":-1.01447,"lat":52.30994,"GlobalID":"b74b3181-1e5d-4df7-9f7f-71022bf719da"}},{"type":"Feature","id":175,"geometry":{"type":"Polygon","coordinates":[[[489931.2973,296467.1965],[494737.2032,299890.5966],[495826.7963,299782.497500001],[496175.9004,300728.3968],[496851.2039,299621.8035],[497765.9027,300605.901799999],[498714.0023,300447.3972],[498101.4025,301376.5012],[498904.6034,304131.9025],[500414.6039,305989.1009],[501933.204,305782.100199999],[501950.0981,305791.0976],[503603.4967,303961.5013],[502228.5008,299296.896500001],[503186.1977,298398.4037],[507472.302,299057.904899999],[508056.4975,297436.2991],[507235.0009,296851.4965],[508526.1032,294623.5043],[507722.3994,293158.603599999],[511790.9001,291114.798599999],[511489.8976,289256.7005],[512757.5016,286735.5022],[510880.703,283686.9048],[511427.598,282987.1951],[507764.9027,280465.097100001],[506166.5976,277470.204299999],[502474.5994,276782.201300001],[502992.9004,276181.903100001],[502332.0011,274618.400699999],[503789.2991,273405.297900001],[503427.8027,272505.6954],[504563.799,272309.8015],[504689.396,270534.999500001],[500989.5979,269872.599099999],[501390.2997,269547.5022],[499542.6969,266755.601399999],[500321.8964,264597.199200001],[499618.3041,262988.5997],[498005.0013,262666.6018],[496554.0024,264792.5033],[494883.0996,265501.9002],[492967.3019,267662.3018],[492714.599,269654.9014],[493920.0022,272438.504699999],[493227.3017,274602.495200001],[493977.5033,275484.502699999],[493453.1998,276948.8036],[494369.0035,281084.799699999],[493396.4986,282761.299799999],[491283.0008,282655.800000001],[491541.6979,284205.1965],[490872.2978,284895.098999999],[493042.2,286061.895],[493288.0018,287723.599300001],[495067.4014,288573.0962],[495384.4982,289705.801899999],[494483.0987,290988.8047],[495266.9979,291376.4037],[492679.6977,291769.101299999],[490233.7014,290707.895099999],[490660.6966,291955.498],[492649.496,292651.798699999],[492128.8039,294028.9045],[490325.6998,294947.4016],[489931.2973,296467.1965]]]},"properties":{"OBJECTID":175,"lad19cd":"E07000152","lad19nm":"East Northamptonshire","lad19nmw":" ","bng_e":501344,"bng_n":287839,"long":-0.5092,"lat":52.479092,"GlobalID":"844b5d7e-d619-48ff-b63e-3c87bf6a1edc"}},{"type":"Feature","id":176,"geometry":{"type":"Polygon","coordinates":[[[474749.6992,285210.798599999],[476012.9992,286512.596000001],[474923.299,288235.402799999],[475993.6976,288946.8992],[475868.4963,291259.597200001],[476838.8988,292719.1994],[481786.999,291621.103700001],[481006.2,290517.6995],[482508.4996,289276.8047],[483535.1004,286719.8967],[485580.9969,286541.897600001],[485854.6999,285213.197899999],[487057.2009,285082.1954],[489419.9963,287515.798800001],[490355.7035,286492.501700001],[489523.9005,285727.8006],[490463.5984,285919.9956],[490872.2978,284895.098999999],[491541.6979,284205.1965],[491283.0008,282655.800000001],[493396.4986,282761.299799999],[494369.0035,281084.799699999],[493453.1998,276948.8036],[493977.5033,275484.502699999],[493227.3017,274602.495200001],[491810.1983,273078.9013],[489635.2996,273243.904100001],[488584.7963,274828.3006],[486781.0985,274444.7004],[485391.2038,272863.1031],[483269.0983,273554.395199999],[482611.2001,272826.003699999],[482062.7963,274414.099099999],[479667.5978,275989.1983],[478993.9021,277833.3004],[476722.8001,278890.697699999],[475584.0005,278419.2027],[475786.5981,281176.9033],[477305.0003,282409.9004],[474568.4975,283251.6994],[474749.6992,285210.798599999]]]},"properties":{"OBJECTID":176,"lad19cd":"E07000153","lad19nm":"Kettering","lad19nmw":" ","bng_e":483866,"bng_n":282852,"long":-0.76773,"lat":52.437229,"GlobalID":"ae86fa7f-472e-4360-8eff-3ee0063926f4"}},{"type":"Feature","id":177,"geometry":{"type":"Polygon","coordinates":[[[470960.3021,262873.2027],[475272.9968,265294.7995],[476163.7025,264721.103700001],[476913.9041,265546.7974],[480079.4964,265405.3979],[481347.3971,264796.802100001],[482618.1012,261136.899700001],[479243.4966,260495.303400001],[480008.2013,259004.5001],[479559.703,257687.697000001],[476774.8017,255794.198999999],[475807.5983,255989.5031],[475686.9978,254780.7991],[470621.9001,258330.303099999],[470960.3021,262873.2027]]]},"properties":{"OBJECTID":177,"lad19cd":"E07000154","lad19nm":"Northampton","lad19nmw":" ","bng_e":476495,"bng_n":260539,"long":-0.88121,"lat":52.237751,"GlobalID":"ed022977-9889-4342-9507-216c58d0b5c6"}},{"type":"Feature","id":178,"geometry":{"type":"Polygon","coordinates":[[[470960.3021,262873.2027],[470621.9001,258330.303099999],[475686.9978,254780.7991],[475807.5983,255989.5031],[476774.8017,255794.198999999],[479559.703,257687.697000001],[480008.2013,259004.5001],[479243.4966,260495.303400001],[482618.1012,261136.899700001],[484600.7993,261896.6022],[486984.9989,260761.597100001],[488587.7975,255602.6039],[485608.4035,252803.0952],[483673.502,252976.4956],[482740.3013,251024.704299999],[481669.8037,251635.499399999],[481254.6979,250014.803400001],[480025.9035,250129.600500001],[480303.2014,248902.2018],[476719.502,248147.097999999],[476309.2031,246792.195800001],[477379.2966,246535.499299999],[477530.9974,245234.501700001],[479109.0032,244310.496200001],[480191.7034,242151.6042],[479652.1961,241239.6952],[478068.4023,240892.704500001],[478787.8004,239766.096999999],[477511.3,238583.195599999],[477107.5971,237433.3048],[476237.1,237596.698000001],[475162.8015,236430.2019],[471920.4972,243091.895],[470845.4979,241894.797700001],[466827.9022,242370.101600001],[465733.6012,242136.1986],[466753.103,241040.0024],[464396.5986,240897.903000001],[460312.3004,238890.397700001],[459335.9038,236330.9003],[460619.8989,235588.003],[459529.201,233558.204],[457509.2023,233102.5045],[455301.7026,231300.000399999],[452176.4039,232252.197899999],[449314.403,231472.801000001],[449635.4987,235338.6044],[447211.2034,239450.7973],[448239.4037,242419.897399999],[446822.2014,242613.801899999],[446608.9017,243401.296499999],[451604.5017,244578.5995],[445790.299,252455.4047],[447050.4,254912.4014],[449232.1008,255098.7981],[449676.6993,252403.5996],[451035.0978,252079.9022],[451151.9963,251097.5034],[452514.7977,250220.5045],[453235.5975,251631.6006],[454965.3041,251070.101299999],[455269.8024,251634.5997],[455673.3982,249886.9],[459078.6002,250122.702500001],[457715.1969,252693.296700001],[458630.5965,252317.304300001],[459097.5968,253128.302100001],[459696.0975,252537.201300001],[459787.997,254519.7039],[461937.8967,253790.702500001],[462767.4982,255426.304300001],[465821.6997,255704.8046],[463945.5031,259302.9047],[468545.299,261526.698100001],[469097.0008,262632.2017],[470960.3021,262873.2027]]]},"properties":{"OBJECTID":178,"lad19cd":"E07000155","lad19nm":"South Northamptonshire","lad19nmw":" ","bng_e":463000,"bng_n":247077,"long":-1.08129,"lat":52.118439,"GlobalID":"9bbfe982-b504-4e25-8a90-b29706bbde57"}},{"type":"Feature","id":179,"geometry":{"type":"Polygon","coordinates":[[[482611.2001,272826.003699999],[483269.0983,273554.395199999],[485391.2038,272863.1031],[486781.0985,274444.7004],[488584.7963,274828.3006],[489635.2996,273243.904100001],[491810.1983,273078.9013],[493227.3017,274602.495200001],[493920.0022,272438.504699999],[492714.599,269654.9014],[492967.3019,267662.3018],[494883.0996,265501.9002],[491970.2019,264199.802999999],[493169.7017,259663.701400001],[491131.704,256034.000399999],[488587.7975,255602.6039],[486984.9989,260761.597100001],[484600.7993,261896.6022],[482618.1012,261136.899700001],[481347.3971,264796.802100001],[480684.1974,268598.503799999],[482838.2031,270972.904200001],[482611.2001,272826.003699999]]]},"properties":{"OBJECTID":179,"lad19cd":"E07000156","lad19nm":"Wellingborough","lad19nmw":" ","bng_e":487787,"bng_n":266827,"long":-0.71425,"lat":52.29258,"GlobalID":"64cf37b1-2ae6-420d-b332-35ab3c0ba822"}},{"type":"Feature","id":180,"geometry":{"type":"Polygon","coordinates":[[[379309.9014,484654.998400001],[380217.5012,483781.6984],[381023.4972,484143.104900001],[381632.296,482576.0035],[385163.4001,484078.4034],[387208.9997,483538.098099999],[388888.5022,481430.601399999],[390216.4022,482218.9957],[390939.6013,481071.903999999],[393577.3035,481809.7028],[396127.8967,479398.8029],[397109.801,476233.099099999],[399803.7016,475231.195900001],[400584.8964,473272.396600001],[401894.3028,473584.7972],[402476.198,472922.4968],[403434.3978,469996.804199999],[406266.7989,469626.100299999],[410529.9984,463859.201099999],[409674.3012,461915.397500001],[408379.3979,461125.2037],[408452.5975,459971.6039],[409696.6041,459206.302999999],[410055.5034,457526.603800001],[410916.0981,457512.797700001],[412117.6014,453578.104],[408046.0006,450914.0966],[407732.6965,451902.8036],[407069.0021,451022.295600001],[402317.0023,450605.305],[402522.0982,448585.903000001],[401616.8977,447808.195699999],[403214.3041,445262.804300001],[401450.1001,444994.801000001],[401257.8006,441404.298699999],[398667.5981,441702.103499999],[397063.002,439322.3047],[394185.0965,441332.2994],[394742.8996,442165.900699999],[393327.0989,443865.7042],[392652.8013,446613.297700001],[391415.1022,447826.2005],[388130.5007,448821.695499999],[387988.2982,450699.498],[387239.2014,452627.6961],[385286.6967,451690.4044],[384878.4013,452818.9014],[385599.201,453561.798699999],[384991.6967,453964.603399999],[380792.8993,453190.505000001],[379173.8991,455357.104800001],[377809.696,454872.3036],[376997.3019,455459.9954],[377009.1995,457225.200099999],[377844.2016,457098.0964],[376685.4984,458181.296399999],[375605.7005,461521.8002],[372209.7989,460317.7048],[369352.2999,461239.0011],[369714.2003,464470.896],[366774.2012,466732.7985],[365826.2995,466650.402100001],[363191.2027,470277.6039],[363491.0014,473169.8959],[365227.304,473672.801999999],[370052.1984,481319.203199999],[373651.8024,481096.696900001],[374238.0015,482702.997099999],[375786.9022,482774.3967],[376489.9998,483844.9003],[378090.3002,482484.5996],[379309.9014,484654.998400001]]]},"properties":{"OBJECTID":180,"lad19cd":"E07000163","lad19nm":"Craven","lad19nmw":" ","bng_e":389513,"bng_n":461989,"long":-2.16168,"lat":54.053761,"GlobalID":"5887689c-1ccf-44f2-9400-f52262451513"}},{"type":"Feature","id":181,"geometry":{"type":"Polygon","coordinates":[[[449638.4999,513046.4014],[455389.496,512278.5012],[457197.2998,511786.302100001],[458730.0979,512758.503799999],[462483.8022,511393.204700001],[463832.0016,509475.3036],[465962.6985,509754.2038],[466732.2018,507758.695],[462725.8029,507495.4004],[461799.3961,506721.202],[461145.4968,502309.005000001],[459700.6983,501449.401000001],[460453.2003,500429.2031],[459919.0028,499581.2958],[460775.6976,496749.6963],[460002.5994,496470.1963],[458690.4969,492997.2004],[457179.103,493199.8025],[457187.7026,494764.4046],[454858.8026,495183.804500001],[453864.102,498800.3993],[451500.3996,497873.204700001],[449565.9021,498093.1018],[447813.8019,494638.000800001],[449091.7039,493145.797900001],[449025.1993,490644.004000001],[450892.6974,488161.8046],[451867.1976,484249.4045],[451253.3034,483151.898600001],[451695.2964,482584.101199999],[452429.8983,483118.098300001],[452277.7027,479980.396500001],[452983.9005,478573.1993],[454325.0998,478842.4022],[457147.3018,476429.502900001],[458886.8036,476987.7031],[460116.3978,475533.8993],[459600.7022,474505.503599999],[464583.2008,471423.096000001],[464416.2961,468449.897],[462617.603,468376.698000001],[462913.4028,467367.696799999],[461579.4014,465898.6973],[462971.8026,464845.0989],[461651.1005,462701.702400001],[461728.1011,461727.701199999],[459719.497,461720.303400001],[457724.2005,459584.2048],[456379.2991,459658.203600001],[455871.997,456657.4026],[456680.6973,455346.897700001],[455705.3973,455123.2018],[454141.3009,456553.4024],[452074.1981,458088.7029],[451312.7008,457883.2017],[450897.496,460127.7992],[447434.0014,460140.4956],[446745.5965,463076.395199999],[445212.1966,465197.8979],[443405.4976,465309.7959],[442785.403,467223.798],[444056.9975,467521.8027],[443201.6961,468181.503900001],[443696.3009,472712.9967],[439645.6013,476355.404100001],[437153.4986,476847.803200001],[436445.3962,480175.6006],[434356.8975,479066.1982],[433702.8993,480630.600299999],[433033.6971,478733.103499999],[429262.2001,477349.399599999],[427268.5031,478851.299699999],[426303.8969,478394.000600001],[426920.1987,477966.502900001],[426516.7019,477251.297700001],[424695.9038,476744.502699999],[423545.5034,477492.998500001],[424581.2975,479419.3971],[424518.7999,481688.0976],[423119.0029,482406.502],[423797.5962,482700.3979],[422992.804,483892.296700001],[421269.5038,483535.698799999],[420651.8003,485148.497099999],[419286.3028,487806.5962],[421202.9991,487772.396],[422810.0028,488804.500600001],[423667.2995,491821.097100001],[423294.9031,494271.9955],[425537.6998,495102.697799999],[425103.9024,495793.200099999],[425685.3029,496543.295399999],[427107.9965,496621.8029],[428603.8979,500682.3006],[427702.5973,502644.5989],[429681.9974,503293.0033],[429530.5026,505552.396600001],[431554.896,506413.4001],[433639.4041,505951.102399999],[433402.5977,506564.2969],[434327.0999,506817.104499999],[435360.7997,506474.4026],[434922.5994,507466.1987],[435526.5007,507985.3002],[434847.0005,508818.601600001],[435127.8025,511126.1011],[434127.1984,511835.498],[435163.8994,512200.3036],[436707.0038,510384.603399999],[436894.8015,509491.598999999],[438149.502,509250.498],[438503.3965,511071.096899999],[439290.7009,510204.305],[440192.1004,511141.196799999],[440760.9025,508729.097200001],[441295.1,508026.6983],[442552.4965,508756.599400001],[442644.396,507839.102],[445437.6,509167.3018],[446675.497,510803.703400001],[448206.2998,510472.1983],[448237.3012,512006.698999999],[449638.4999,513046.4014]]]},"properties":{"OBJECTID":181,"lad19cd":"E07000164","lad19nm":"Hambleton","lad19nmw":" ","bng_e":443009,"bng_n":490546,"long":-1.34049,"lat":54.30872,"GlobalID":"3b59fc1d-c745-4379-83b7-881d897bfce7"}},{"type":"Feature","id":182,"geometry":{"type":"Polygon","coordinates":[[[420651.8003,485148.497099999],[421269.5038,483535.698799999],[422992.804,483892.296700001],[423797.5962,482700.3979],[423119.0029,482406.502],[424518.7999,481688.0976],[424581.2975,479419.3971],[423545.5034,477492.998500001],[424695.9038,476744.502699999],[426516.7019,477251.297700001],[426920.1987,477966.502900001],[426303.8969,478394.000600001],[427268.5031,478851.299699999],[429262.2001,477349.399599999],[433033.6971,478733.103499999],[433702.8993,480630.600299999],[434356.8975,479066.1982],[436445.3962,480175.6006],[437153.4986,476847.803200001],[439645.6013,476355.404100001],[443696.3009,472712.9967],[443201.6961,468181.503900001],[444056.9975,467521.8027],[442785.403,467223.798],[443405.4976,465309.7959],[445212.1966,465197.8979],[446745.5965,463076.395199999],[447434.0014,460140.4956],[450897.496,460127.7992],[451312.7008,457883.2017],[452074.1981,458088.7029],[454141.3009,456553.4024],[453066.7963,456354.3993],[453730.8041,454673.500499999],[451473.7021,454675.300000001],[451015.5983,453472.804199999],[452922.6974,447657.798699999],[451202.1015,447934.999399999],[450304.2968,449034.104699999],[448046.2962,449005.502900001],[448646.3964,447332.1019],[448027.5964,447003.495999999],[447839.6007,444400.0012],[446844.8011,445584.302200001],[445186.8018,445609.494999999],[446046.7039,445927.604],[446253.3994,447509.301200001],[445589.9028,447481.8991],[446446.004,448110.099199999],[445476.5992,447770.496400001],[445598.7003,448920.6972],[443115.0983,449462.1022],[443391.2006,450175.2981],[439667.797,449769.1043],[439056.0959,448129.9036],[437356.5002,448047.7971],[437345.0973,446219.4004],[435397.0037,445671.2973],[433020.2,446687.796399999],[429738.3029,446177.002599999],[429543.4968,445288.596899999],[427451.1971,445982.7982],[427202.6992,445086.104800001],[426375.5959,446030.3046],[425029.8041,445312.899900001],[422982.8028,445554.8007],[422755.0989,446312.603800001],[420815.2999,446092.5967],[419336.2019,447036.796499999],[418626.5989,445855.804500001],[418017.7012,446037.502499999],[416803.2037,447457.8959],[414810.3971,447282.596100001],[412893.1978,449227.8993],[410096.201,449415.795499999],[410852.8008,448376.902899999],[409281.5972,448511.204399999],[408046.0006,450914.0966],[412117.6014,453578.104],[410916.0981,457512.797700001],[410055.5034,457526.603800001],[409696.6041,459206.302999999],[408452.5975,459971.6039],[408379.3979,461125.2037],[409674.3012,461915.397500001],[410529.9984,463859.201099999],[406266.7989,469626.100299999],[403434.3978,469996.804199999],[402476.198,472922.4968],[401894.3028,473584.7972],[400584.8964,473272.396600001],[399803.7016,475231.195900001],[402060.4985,477284.2982],[407504.0033,479368.2017],[407958.8008,480511.204500001],[411305.9988,481782.400599999],[412070.1016,482792.3016],[411610.1014,483546.4957],[416003.2019,482655.7007],[417224.9963,484314.8957],[420651.8003,485148.497099999]]]},"properties":{"OBJECTID":182,"lad19cd":"E07000165","lad19nm":"Harrogate","lad19nmw":" ","bng_e":427473,"bng_n":464652,"long":-1.58161,"lat":54.07708,"GlobalID":"205e1c0e-8f83-4d14-94c6-d2debe8bd3a5"}},{"type":"Feature","id":183,"geometry":{"type":"Polygon","coordinates":[[[389063.3964,506991.704600001],[392540.0996,507436.8971],[397299.5034,509805.599099999],[397199.6969,508869.497099999],[400308.0025,507946.9011],[402039.5973,506235.700999999],[403823.5976,506445.301000001],[409225.5968,509620.0022],[409306.9013,512032.8016],[410495.0971,512580.3048],[413511.0002,509923.6953],[414594.5002,512401.2961],[414354.9977,515198.4954],[417372.6983,514748.6042],[418128.6962,516372.2994],[419709.2991,515678.2981],[422232.898,515532.0999],[422449.3968,514427.1962],[423801.8012,514513.501499999],[423837.0983,513261.4999],[425247.6963,513924.4001],[425826.3017,512879.499199999],[427221.3001,513139.504799999],[426526.8021,512184.598099999],[427346.4024,512288.0985],[427107.8975,511386.796499999],[428915.9982,510048.899499999],[429542.796,508523.995999999],[431217.5988,508513.798900001],[430623.7977,510041.7015],[431577.2978,509932.602700001],[431764.8977,508958.8015],[433023.8031,510212.7026],[432560.7027,509038.4987],[434096.6999,508845.7039],[434327.0999,506817.104499999],[433402.5977,506564.2969],[433639.4041,505951.102399999],[431554.896,506413.4001],[429530.5026,505552.396600001],[429681.9974,503293.0033],[427702.5973,502644.5989],[428603.8979,500682.3006],[427107.9965,496621.8029],[425685.3029,496543.295399999],[425103.9024,495793.200099999],[425537.6998,495102.697799999],[423294.9031,494271.9955],[423667.2995,491821.097100001],[422810.0028,488804.500600001],[421202.9991,487772.396],[419286.3028,487806.5962],[420651.8003,485148.497099999],[417224.9963,484314.8957],[416003.2019,482655.7007],[411610.1014,483546.4957],[412070.1016,482792.3016],[411305.9988,481782.400599999],[407958.8008,480511.204500001],[407504.0033,479368.2017],[402060.4985,477284.2982],[399803.7016,475231.195900001],[397109.801,476233.099099999],[396127.8967,479398.8029],[393577.3035,481809.7028],[390939.6013,481071.903999999],[390216.4022,482218.9957],[388888.5022,481430.601399999],[387208.9997,483538.098099999],[385163.4001,484078.4034],[381632.296,482576.0035],[381023.4972,484143.104900001],[380217.5012,483781.6984],[379309.9014,484654.998400001],[378980,489778.1019],[379945.7028,492125.100099999],[376200.2024,495676.703500001],[377701.1003,496065.0023],[379503.3965,497912.803400001],[380777.0028,497972.6962],[381150.8999,499529.6006],[380262.7996,500225.001499999],[380102.4991,502748.699100001],[381103.1032,504915.798800001],[383918.198,506310.999399999],[387822.2014,505968.897299999],[388591.3996,507374.1951],[389063.3964,506991.704600001]]]},"properties":{"OBJECTID":183,"lad19cd":"E07000166","lad19nm":"Richmondshire","lad19nmw":" ","bng_e":401039,"bng_n":495786,"long":-1.98552,"lat":54.357609,"GlobalID":"f752ca95-f512-425f-990e-bfab2ddcb0f3"}},{"type":"Feature","id":184,"geometry":{"type":"Polygon","coordinates":[[[461145.4968,502309.005000001],[463250.9968,502645.398700001],[465814.9965,500523.596000001],[468221.6968,501994.8049],[476500.9007,499193.9966],[478464.8001,496092.904300001],[481107.6967,497723.297599999],[482485.4959,496266.204700001],[483854.9016,496502.2971],[485378.9022,498303.601500001],[486526.4993,498465.2952],[487076.0986,497601.002599999],[488920.6012,498687.3017],[489676.5001,495192.202099999],[493309.4967,491588.603700001],[490868.3979,489954.3015],[490419.8006,486885.5999],[491484.304,483031.0032],[490227.7979,479682.3018],[492326.6029,479018.301899999],[493612.6016,479462.004899999],[494679.1003,478391.701199999],[495488.0974,479282.5962],[496649.9007,479010.2042],[501732.7995,481122.499500001],[503347.603,476516.9979],[502398.4975,475383.802200001],[502860.996,472429.8978],[500834.5001,471108.696],[501130.5967,470089.897600001],[500394.9971,469057.7031],[496610.8027,466510.902100001],[494071.5959,467407.4954],[490696.8017,464724.003599999],[487781.2986,463844.995200001],[488823.4002,462975.903899999],[487890.3973,460961.1007],[486099.1,460215.0042],[486376.2001,457775.502499999],[483289.1997,458153.104499999],[483007.4,460102.0966],[478775.3998,458781.5046],[478666.6969,459343.2038],[473586.1974,458488.2985],[472603.9963,456508.6952],[470559.7983,455585.0995],[466013.9003,454577.597899999],[467493.996,456115.797599999],[467252.3003,457008.6021],[466642.0008,456769.4005],[467784.7004,459044.599300001],[465425.4998,462603.8005],[464629.9998,461931.502900001],[461651.1005,462701.702400001],[462971.8026,464845.0989],[461579.4014,465898.6973],[462913.4028,467367.696799999],[462617.603,468376.698000001],[464416.2961,468449.897],[464583.2008,471423.096000001],[459600.7022,474505.503599999],[460116.3978,475533.8993],[458886.8036,476987.7031],[457147.3018,476429.502900001],[454325.0998,478842.4022],[452983.9005,478573.1993],[452277.7027,479980.396500001],[452429.8983,483118.098300001],[451695.2964,482584.101199999],[451253.3034,483151.898600001],[451867.1976,484249.4045],[450892.6974,488161.8046],[449025.1993,490644.004000001],[449091.7039,493145.797900001],[447813.8019,494638.000800001],[449565.9021,498093.1018],[451500.3996,497873.204700001],[453864.102,498800.3993],[454858.8026,495183.804500001],[457187.7026,494764.4046],[457179.103,493199.8025],[458690.4969,492997.2004],[460002.5994,496470.1963],[460775.6976,496749.6963],[459919.0028,499581.2958],[460453.2003,500429.2031],[459700.6983,501449.401000001],[461145.4968,502309.005000001]]]},"properties":{"OBJECTID":184,"lad19cd":"E07000167","lad19nm":"Ryedale","lad19nmw":" ","bng_e":475590,"bng_n":478890,"long":-0.84277,"lat":54.200211,"GlobalID":"ef738474-9795-4c1e-8661-55321f5e2591"}},{"type":"Feature","id":185,"geometry":{"type":"Polygon","coordinates":[[[478074.077,518800.567],[479354.1,518705.779999999],[481416.354,515492.801000001],[483191.628,516211.423],[485410.07,514609.82],[486203.268,512527.986],[489922.3266,511873.6855],[489982.1795,511864.0417],[492820.5,510320.220000001],[496016.7,506656.640000001],[495276.09,505214.52],[495866.26,503424.689999999],[498045.09,502403.560000001],[499866.61,500368.699999999],[501994.84,494976.119999999],[503031.4,494028.300000001],[503753.972,489816.524],[505244.18,489266.859999999],[504501.11,487725.810000001],[506389.37,484867.01],[513202.099,481476.946],[512025.275,480690.263],[512541.428,478074.423],[514663.853,475939.323999999],[516822.1356,475015.658],[515766.9983,472178.0998],[513414.196,473023.4979],[510890.1024,472484.0023],[509572.3025,474014.904100001],[508108.2023,473599.302999999],[506226.3001,474361.604800001],[505136.5009,476830.898],[503347.603,476516.9979],[501732.7995,481122.499500001],[496649.9007,479010.2042],[495488.0974,479282.5962],[494679.1003,478391.701199999],[493612.6016,479462.004899999],[492326.6029,479018.301899999],[490227.7979,479682.3018],[491484.304,483031.0032],[490419.8006,486885.5999],[490868.3979,489954.3015],[493309.4967,491588.603700001],[489676.5001,495192.202099999],[488920.6012,498687.3017],[487076.0986,497601.002599999],[486526.4993,498465.2952],[485378.9022,498303.601500001],[483854.9016,496502.2971],[482485.4959,496266.204700001],[481107.6967,497723.297599999],[478464.8001,496092.904300001],[476500.9007,499193.9966],[468221.6968,501994.8049],[465814.9965,500523.596000001],[463250.9968,502645.398700001],[461145.4968,502309.005000001],[461799.3961,506721.202],[462725.8029,507495.4004],[466732.2018,507758.695],[465962.6985,509754.2038],[463832.0016,509475.3036],[462483.8022,511393.204700001],[464636.299,512421.2004],[467927.9995,510802.2038],[472584.2988,511876.6963],[474692.2971,510900.795600001],[474608.2964,515577.297],[475975.5996,517666.798900001],[477689.3026,517966.802999999],[478074.077,518800.567]]]},"properties":{"OBJECTID":185,"lad19cd":"E07000168","lad19nm":"Scarborough","lad19nmw":" ","bng_e":495798,"bng_n":495548,"long":-0.52778,"lat":54.3465,"GlobalID":"53893e8b-fa01-4140-b6eb-9307e5904dad"}},{"type":"Feature","id":186,"geometry":{"type":"Polygon","coordinates":[[[452922.6974,447657.798699999],[458783.5727,442665.688100001],[458918.1018,442551.100500001],[459564.597,443518.003699999],[461574.6028,442445.500700001],[465282.0028,444210.4955],[466315.6036,442579.802300001],[469500.0029,444062.797800001],[470863.299,443264.7962],[469270.6005,441109.1032],[469834.7029,436878.7042],[471197.0013,436072.9048],[470273.2989,434465.9048],[470745.3039,430447.0952],[467800.5968,428688.7985],[468594.1015,427088.896500001],[471880.5994,426771.997199999],[472258.294,425369.9092],[468878.0037,424789.8046],[468574.1979,423223.302999999],[467369.7017,423672.904300001],[467405.1008,423093.8727],[467424.3994,422778.2004],[467405.9817,422776.3278],[463561.1018,422385.402799999],[461561.6993,423461.3049],[459323.7011,419602.0996],[460952.1137,418952.643200001],[462971.3986,418147.296],[461831.2963,417334.798599999],[458154.403,417046.301100001],[457270.1037,415478.799799999],[456139.9037,416583.3037],[453635.4005,415790.9005],[452336.2014,416582.6039],[451854.2034,414469.998600001],[450841.0008,414112.7009],[449315.7965,416800.8014],[449991.2978,422038.802100001],[452986.2008,422345.1044],[452991.8982,422995.498199999],[451589.1989,424502.796700001],[451150.6029,423993.3026],[450944.4022,424549.9033],[448361.9006,424530.9987],[446132.2959,427484.403200001],[445252.103,427693.5031],[445444.6001,429053.7041],[446585.5021,429017.5041],[446877.3031,429880.6971],[445313.3961,431908.397],[445213.4002,435023.0952],[445946.5017,435806.700999999],[443790.7975,437683.603800001],[444411.4033,438449.804500001],[442656.9037,440250.199100001],[445302.8015,441228.199200001],[444629.6995,445131.8018],[445186.8018,445609.494999999],[446844.8011,445584.302200001],[447839.6007,444400.0012],[448027.5964,447003.495999999],[448646.3964,447332.1019],[448046.2962,449005.502900001],[450304.2968,449034.104699999],[451202.1015,447934.999399999],[452922.6974,447657.798699999]]]},"properties":{"OBJECTID":186,"lad19cd":"E07000169","lad19nm":"Selby","lad19nmw":" ","bng_e":457551,"bng_n":426670,"long":-1.12908,"lat":53.733269,"GlobalID":"0b552b95-dc59-4231-96c3-890d24f9f06e"}},{"type":"Feature","id":187,"geometry":{"type":"Polygon","coordinates":[[[444868.4023,353958.0999],[446786.5992,354779.005000001],[446350.8972,355728.0033],[446923.2034,356320.9036],[445476.3024,359488.9967],[445331.5026,363013.5978],[446849.5008,363236.504000001],[447159.3997,364019.4999],[449576.0023,363293.397700001],[449895.0038,362199.300899999],[450855.8007,362040.296399999],[450943.0005,360538.1964],[455123.7989,357827.802200001],[456051.6981,356554.4967],[451952.501,354086.303200001],[451612.6973,351920.5032],[452557.5978,350480.395400001],[454929.2979,350437.397700001],[454920.7972,347117.797900001],[453100.9968,347049.997400001],[452089.097,345921.2005],[451808.7979,347547.9048],[450154.5006,349427.196900001],[448040.302,350344.0045],[446793.5993,349626],[444613.7041,350838.203],[444027.1999,352232.004000001],[444868.4023,353958.0999]]]},"properties":{"OBJECTID":187,"lad19cd":"E07000170","lad19nm":"Ashfield","lad19nmw":" ","bng_e":450035,"bng_n":355843,"long":-1.25422,"lat":53.097469,"GlobalID":"eb992692-5bc6-4395-9b15-9ff6f00225f6"}},{"type":"Feature","id":188,"geometry":{"type":"Polygon","coordinates":[[[481616.5384,369963.320900001],[481506.601,367311.4976],[481098.0005,368183.198000001],[478814.3989,367787.3014],[477563.7963,369721.897600001],[476372.5993,368955.696900001],[473921.4993,370192.902799999],[470287.1011,369075.3027],[470378.5966,370379.6993],[469009.4959,371417.202299999],[466373.6983,371489.401699999],[464960.0001,374220.199999999],[459948.3964,371325.5985],[458594.3018,370089.102499999],[452886.8973,369249.6028],[453360.6998,371241.7026],[452609.6984,372581.499],[453298.598,374096.295399999],[455145.302,374556.2038],[454682.1027,375092.4003],[455676.2015,375952.1042],[454755.3024,376996.0954],[454964.9001,379000.9015],[453416.7002,379685.195599999],[457442.4997,383063.6986],[457282.9001,383658.6982],[456231.0034,383448.2985],[455831.3983,384764.8016],[457434.8978,384679.696],[456918.6992,386134.7995],[457940.8972,386873.698000001],[457650.5968,388479.0984],[458906.1959,389290.496200001],[458861.4995,390420.8026],[461200.2028,392622.102499999],[464482.3967,393122.9991],[464520.0024,392479.903200001],[465592.7014,392617.004000001],[466817.1012,393817.000499999],[467405.9965,397691.601399999],[469557.001,399141.396400001],[470701.1021,401171.5952],[473075.6962,398163.0964],[471779.3995,397069.6994],[472053.5972,396493.904200001],[474986.2006,397208.6996],[478597.6289,396373.115],[479916.7966,396067.8961],[478477.5964,394377.300100001],[478687.6971,392827.2038],[480650.9038,391619.999299999],[481453.9975,389548.102399999],[480593.3038,388351.7049],[481606.8032,387444.804500001],[480601.8467,385875.2017],[480590.8963,385858.0987],[480780.5829,385887.3616],[481682.5011,386026.500499999],[482740.697,384863.703299999],[482283.698,382174.802999999],[482713.138,381879.357799999],[483338.7188,381448.971999999],[483458.2977,381366.704299999],[483735.6038,378065.499299999],[483343.2301,378291.248199999],[482568.301,378737.096999999],[482555.9061,378714.606000001],[481619.7975,377015.999700001],[482545.1984,375833.098300001],[481737.8997,372890.7005],[481616.5384,369963.320900001]]]},"properties":{"OBJECTID":188,"lad19cd":"E07000171","lad19nm":"Bassetlaw","lad19nmw":" ","bng_e":468073,"bng_n":384835,"long":-0.9787,"lat":53.356041,"GlobalID":"30bcdeab-e2a9-460d-9928-8be5b24a3f27"}},{"type":"Feature","id":189,"geometry":{"type":"Polygon","coordinates":[[[444613.7041,350838.203],[446793.5993,349626],[448040.302,350344.0045],[450154.5006,349427.196900001],[451808.7979,347547.9048],[452089.097,345921.2005],[452514.5009,344079.297700001],[453576.9018,343649.300799999],[452052.2993,342921.999],[450661.2008,343285.604900001],[451678.8969,341416.1],[450694.1975,339798.403100001],[455078.8963,335856.8014],[453965.2029,334970.0952],[453162.2989,335258.7026],[452968.5976,334395.6996],[452537.1995,333406.3028],[451248.4965,333028.201099999],[450798.1018,334213.501800001],[448396.3979,335001.8961],[448404.9975,339325.7984],[447627.2986,340031.7963],[447930.9972,341602.196799999],[446571.8978,345370.698100001],[444896.5014,348413.1971],[444613.7041,350838.203]]]},"properties":{"OBJECTID":189,"lad19cd":"E07000172","lad19nm":"Broxtowe","lad19nmw":" ","bng_e":449829,"bng_n":341893,"long":-1.25944,"lat":52.972099,"GlobalID":"8bc79a79-64c4-4ed2-8e55-c461a3928366"}},{"type":"Feature","id":190,"geometry":{"type":"Polygon","coordinates":[[[456051.6981,356554.4967],[457727.9025,356171.0965],[457679.9987,355359.0989],[458993.7997,354751.7028],[458358.6991,353281.9035],[461152.9998,353757.8972],[460843.6039,352616.7039],[461720.3013,350972.004699999],[465176.804,347878.3003],[463673.2017,346329.2037],[464913.5969,345718.7984],[464656.9034,344686.304],[466755.2962,343582.9998],[466127.6987,342994.2983],[464712.0959,343346.7974],[464498.3014,339752.2963],[462350.1002,340234.498299999],[461502.104,339409.104499999],[459192.0027,341522.5996],[458990.7985,343260.402100001],[457664.3001,343558.296800001],[457937.0962,344513.4034],[456900.2962,344761.602399999],[457568.6986,345806.0034],[454920.7972,347117.797900001],[454929.2979,350437.397700001],[452557.5978,350480.395400001],[451612.6973,351920.5032],[451952.501,354086.303200001],[456051.6981,356554.4967]]]},"properties":{"OBJECTID":190,"lad19cd":"E07000173","lad19nm":"Gedling","lad19nmw":" ","bng_e":459184,"bng_n":347811,"long":-1.11907,"lat":53.024342,"GlobalID":"c1b3c2b2-cf48-4af5-a2c7-c8e500a5d7a8"}},{"type":"Feature","id":191,"geometry":{"type":"Polygon","coordinates":[[[459948.3964,371325.5985],[460527.7026,370554.7992],[459469.6964,367238.398499999],[456709.1015,364558.195699999],[459543.9019,362177.0973],[458283.6031,360847.697799999],[458978.2001,358348.7031],[457173.7025,358646.697799999],[455123.7989,357827.802200001],[450943.0005,360538.1964],[450855.8007,362040.296399999],[449895.0038,362199.300899999],[449576.0023,363293.397700001],[450861.597,364883.502599999],[453761.7972,365601.2971],[452886.8973,369249.6028],[458594.3018,370089.102499999],[459948.3964,371325.5985]]]},"properties":{"OBJECTID":191,"lad19cd":"E07000174","lad19nm":"Mansfield","lad19nmw":" ","bng_e":455047,"bng_n":363637,"long":-1.17804,"lat":53.16703,"GlobalID":"c4d83a77-addd-41ee-a17a-295888accabe"}},{"type":"Feature","id":192,"geometry":{"type":"Polygon","coordinates":[[[489087.8028,372235.2981],[488512.8994,369770.003799999],[487055.7992,370031.798900001],[485936.9032,368606.197000001],[484874.4034,368937.6021],[482694.6978,365763.6006],[485769.7016,365229.3036],[486036.3964,360737.999199999],[484914.9031,359707.5042],[485985.3017,358433.898800001],[485160.4988,356384.795299999],[487533.5016,352909.800000001],[486305.4987,352860.5041],[486135.9967,352079.897600001],[483908.7996,351601.804400001],[483202.5029,348729.196699999],[481359.0969,348301.899],[480890.4971,346596.497199999],[480332.7022,346799.3991],[482131.5024,342870.503699999],[480931.9038,342828.8956],[479845.9962,340667.0045],[479358.8038,340992.801200001],[478267.2979,341804.698799999],[479639.2019,343800.997400001],[479090.4023,345497.1019],[476278.1027,346604.404899999],[475265.1969,346033.0984],[473179.4026,349291.795600001],[468843.3002,343709.003699999],[466755.2962,343582.9998],[464656.9034,344686.304],[464913.5969,345718.7984],[463673.2017,346329.2037],[465176.804,347878.3003],[461720.3013,350972.004699999],[460843.6039,352616.7039],[461152.9998,353757.8972],[458358.6991,353281.9035],[458993.7997,354751.7028],[457679.9987,355359.0989],[457727.9025,356171.0965],[456051.6981,356554.4967],[455123.7989,357827.802200001],[457173.7025,358646.697799999],[458978.2001,358348.7031],[458283.6031,360847.697799999],[459543.9019,362177.0973],[456709.1015,364558.195699999],[459469.6964,367238.398499999],[460527.7026,370554.7992],[459948.3964,371325.5985],[464960.0001,374220.199999999],[466373.6983,371489.401699999],[469009.4959,371417.202299999],[470378.5966,370379.6993],[470287.1011,369075.3027],[473921.4993,370192.902799999],[476372.5993,368955.696900001],[477563.7963,369721.897600001],[478814.3989,367787.3014],[481098.0005,368183.198000001],[481506.601,367311.4976],[481616.5384,369963.320900001],[481737.8997,372890.7005],[484507.8033,372616.2991],[484550.1004,373744.2962],[487618.2031,374287.8006],[489087.8028,372235.2981]]]},"properties":{"OBJECTID":192,"lad19cd":"E07000175","lad19nm":"Newark and Sherwood","lad19nmw":" ","bng_e":470624,"bng_n":357451,"long":-0.94643,"lat":53.1096,"GlobalID":"36fb8753-62c1-4a7a-9364-8cdb96f25485"}},{"type":"Feature","id":193,"geometry":{"type":"Polygon","coordinates":[[[466755.2962,343582.9998],[468843.3002,343709.003699999],[473179.4026,349291.795600001],[475265.1969,346033.0984],[476278.1027,346604.404899999],[479090.4023,345497.1019],[479639.2019,343800.997400001],[478267.2979,341804.698799999],[479358.8038,340992.801200001],[478452.3995,339355.299900001],[479101.4013,338910.6972],[476562.5985,335679.202199999],[476929.5037,334853.6985],[472986.6001,331820.696699999],[471398.5024,331566.0996],[472254.3974,330380.198999999],[470177.6974,327868.398],[468999.0989,327512.799799999],[468651.0996,325275.700200001],[466005.8037,325392.196799999],[465047.6039,324692.2972],[462661.2029,324453.295600001],[462464.0965,325642.895099999],[459607.0014,325034.099300001],[458685.3025,323493.100400001],[456501.4991,323544.595699999],[454200.2036,321614.7981],[452298.7029,321846.1019],[449846.9021,323909.201300001],[448979.802,326756.896199999],[449373.8005,330903.7992],[451239.3033,331672.999],[451248.4965,333028.201099999],[452537.1995,333406.3028],[452968.5976,334395.6996],[455509.9976,332716.700200001],[456694.7963,333953.5962],[457071.1009,338070.4977],[457777.1008,337518.4957],[458442.9967,338730.998600001],[460600.1025,338663.9978],[461502.104,339409.104499999],[462350.1002,340234.498299999],[464498.3014,339752.2963],[464712.0959,343346.7974],[466127.6987,342994.2983],[466755.2962,343582.9998]]]},"properties":{"OBJECTID":193,"lad19cd":"E07000176","lad19nm":"Rushcliffe","lad19nmw":" ","bng_e":466606,"bng_n":335453,"long":-1.01097,"lat":52.912399,"GlobalID":"a93ffa10-a9aa-4609-8c50-9aa9b7c869db"}},{"type":"Feature","id":194,"geometry":{"type":"Polygon","coordinates":[[[445790.299,252455.4047],[451604.5017,244578.5995],[446608.9017,243401.296499999],[446822.2014,242613.801899999],[448239.4037,242419.897399999],[447211.2034,239450.7973],[449635.4987,235338.6044],[449314.403,231472.801000001],[452176.4039,232252.197899999],[455301.7026,231300.000399999],[457509.2023,233102.5045],[459529.201,233558.204],[460619.8989,235588.003],[465097.0001,234201.199999999],[462272.9017,229157.3038],[463406.9027,227606.897600001],[465072.9987,228139.0952],[462905.0011,225295.699100001],[463415.7991,224698.800000001],[462473.9988,222096.8048],[464172.3989,221375.801200001],[463593.2988,220196.898600001],[464497.0977,219314.801100001],[464715.699,216584.502699999],[465745.301,216118.0962],[463601.8984,214916.000299999],[460606.8964,216668.498600001],[459306.6998,215468.1022],[461437.2978,213559.898499999],[460430.6995,212458.3038],[460541.4966,210976.8978],[460308.4005,211565.999199999],[458432.5007,211224.7969],[457491.2033,213120.904100001],[456120.9978,212922.800799999],[455643.0976,211233.304400001],[452356.3029,212644.2006],[451642.6022,210023.300799999],[451262.9006,210799.298699999],[449497.4022,211088.7958],[448191.6978,209373.596799999],[448032.8979,210354.8959],[446837.8011,210125.501499999],[445701.9037,213686.902100001],[446497.7995,214435.3979],[445439.3975,214822.2971],[445607.9018,217714.7991],[445958.3004,218419.397399999],[448524.7983,218290.104499999],[448146.5973,219178.100299999],[449232.3977,219825.095100001],[448409.6972,221324.7958],[448859.0036,222251.000700001],[448002.3995,222902.5042],[448319.3973,224078.297599999],[445475.0986,226470.402899999],[445982.4007,227281.300799999],[443955.8966,227955.5977],[443968.0004,230198.2958],[442863.5992,231423.395099999],[441177.3028,231435.2017],[440649.0994,230634.200999999],[438730.8035,232452.600500001],[437591.5999,231384.7961],[434876.0973,230834.4037],[432857.3023,233261.5989],[435185.7983,244079.202400001],[435899.4001,244906.695499999],[437965.2001,244507.5998],[437522.8031,246215.400900001],[439408.3991,246812.899900001],[442201.0013,244154.7008],[444086.8034,244967.998],[443175.7984,246764.603700001],[441636.6021,246910.402000001],[443479.2991,248829.602600001],[444673.8023,248735.2996],[445790.299,252455.4047]]]},"properties":{"OBJECTID":194,"lad19cd":"E07000177","lad19nm":"Cherwell","lad19nmw":" ","bng_e":449301,"bng_n":221201,"long":-1.28506,"lat":51.887199,"GlobalID":"537daa9f-bdea-41b7-a105-4ad6f6793161"}},{"type":"Feature","id":195,"geometry":{"type":"Polygon","coordinates":[[[448191.6978,209373.596799999],[449497.4022,211088.7958],[451262.9006,210799.298699999],[451642.6022,210023.300799999],[453859.0972,208462.4976],[456668.8986,207782.202299999],[455701.9014,206747.898399999],[455754.0019,204508.999299999],[457014.2018,204184.0023],[456019.5011,203457.000399999],[456085.0988,202069.0977],[453830.0993,201646.5986],[452499.5031,203209.4013],[449057.8992,206017.297499999],[448191.6978,209373.596799999]]]},"properties":{"OBJECTID":195,"lad19cd":"E07000178","lad19nm":"Oxford","lad19nmw":" ","bng_e":452277,"bng_n":206368,"long":-1.24405,"lat":51.753571,"GlobalID":"87e1efea-60d6-4f31-afd2-882a1f038bd1"}},{"type":"Feature","id":196,"geometry":{"type":"Polygon","coordinates":[[[451642.6022,210023.300799999],[452356.3029,212644.2006],[455643.0976,211233.304400001],[456120.9978,212922.800799999],[457491.2033,213120.904100001],[458432.5007,211224.7969],[460308.4005,211565.999199999],[460541.4966,210976.8978],[461743.4039,209595.4033],[463340.0023,209491.403100001],[463538.296,206828.295399999],[465997.6988,205530.096999999],[467035.2985,205580.4026],[467058.0961,207021.5001],[470082.9039,206421.8017],[470519.4964,207384.2962],[473545.9038,206618.395400001],[475170.9971,204816.3013],[476939.6039,202751.4024],[476489.4978,199885.3028],[477537.7007,198604.499399999],[476300.7024,198089.096899999],[477710.4017,197218.896],[475456.1031,197793.9014],[474042.7017,196909.004699999],[474311.804,195283.300100001],[472688.9039,195181.599199999],[473828.998,193629.3035],[472848.0996,193028.5955],[472777.2003,191936.9979],[473583.1962,191546.0998],[473298.1974,190078.5999],[475111.5008,189537.704700001],[473430.2998,187930.704700001],[473656.3959,186330.002900001],[476238.7985,184704.498199999],[476591.7036,183461.404100001],[476379.8962,182545.8961],[477902.0005,181103.399],[478509.1008,178903.998600001],[476883.0016,178101.998199999],[474996.9027,174880.2004],[473102.2041,173916.2963],[472675.0027,174557.602700001],[473635.2968,175644.1017],[472471.1024,177641.0001],[469644.2007,176625.400800001],[468618.2018,174607.8983],[467007.9002,175580.300000001],[465956.5972,177416.704299999],[463428.8016,176705.4979],[462430.704,177129.0967],[461639.6975,179334.995200001],[459627.8037,180045.501800001],[459709.3968,183018.001],[455269.5963,181353.1975],[455258.9025,182377.404300001],[453725.7004,182088.9969],[455246.5019,188442.6982],[453446.1021,187109.899700001],[450723.5005,187554.202500001],[449279.9964,186797.599099999],[450994.697,189690.301100001],[450417.6005,190561.3017],[450955.5,191373.499199999],[452496.4045,191792.7305],[454135.6037,193962.3982],[451080.0003,194845.395300001],[449881.1027,194047.3039],[449257.8997,194473.7018],[450019.7021,196899.7974],[451963.6978,196689.5975],[453559.1007,197762.8003],[453867.9029,199122.901000001],[452499.5031,203209.4013],[453830.0993,201646.5986],[456085.0988,202069.0977],[456019.5011,203457.000399999],[457014.2018,204184.0023],[455754.0019,204508.999299999],[455701.9014,206747.898399999],[456668.8986,207782.202299999],[453859.0972,208462.4976],[451642.6022,210023.300799999]]]},"properties":{"OBJECTID":196,"lad19cd":"E07000179","lad19nm":"South Oxfordshire","lad19nmw":" ","bng_e":463890,"bng_n":191964,"long":-1.07847,"lat":51.622879,"GlobalID":"d9c70901-08bc-4a03-a6ed-e63ecf276c26"}},{"type":"Feature","id":197,"geometry":{"type":"Polygon","coordinates":[[[446837.8011,210125.501499999],[448032.8979,210354.8959],[448191.6978,209373.596799999],[449057.8992,206017.297499999],[452499.5031,203209.4013],[453867.9029,199122.901000001],[453559.1007,197762.8003],[451963.6978,196689.5975],[450019.7021,196899.7974],[449257.8997,194473.7018],[449881.1027,194047.3039],[451080.0003,194845.395300001],[454135.6037,193962.3982],[452496.4045,191792.7305],[450955.5,191373.499199999],[450417.6005,190561.3017],[450994.697,189690.301100001],[449279.9964,186797.599099999],[450723.5005,187554.202500001],[453446.1021,187109.899700001],[455246.5019,188442.6982],[453725.7004,182088.9969],[451374.0028,182357.4001],[446626.9006,185194.8978],[445698.4985,182959.0978],[443962.0969,183920.4027],[442832.3009,182571.5988],[441364.3008,183316.795399999],[440132.3979,182031.203400001],[439858.7031,183122.801000001],[438393.4981,182091.396199999],[437241.1024,182315.302100001],[436810.603,181209.998500001],[433867.1986,183653.3991],[432621.0978,183123.6008],[430948.4965,183925.201300001],[429143.8999,182093.195699999],[428907.2997,180748.000800001],[427655.3036,180005.103399999],[424512.5996,185956.6998],[424000.5978,186460.795499999],[422514.4998,185668.0024],[421497.9992,187230.0953],[421521.9016,189668.7972],[423151.2988,190878.7009],[422682.3033,191609.001800001],[423630.0978,192963.6041],[421408.499,194863.8002],[420829.201,196927.499399999],[422004.5015,199086.601399999],[423018.6028,198015.2981],[424413.6012,198427.699999999],[427326.8039,199351.095699999],[427846.5973,198870.5033],[429423.0035,200234.003],[431525.7002,200597.098999999],[435355.8032,199596.5954],[436096.3993,200695.5009],[437100.5983,200233.403100001],[437472.6979,201757.096999999],[442114.2963,201014.0997],[443701.0005,202967.500499999],[443994.5989,208349.9998],[446837.8011,210125.501499999]]]},"properties":{"OBJECTID":197,"lad19cd":"E07000180","lad19nm":"Vale of White Horse","lad19nmw":" ","bng_e":435693,"bng_n":195197,"long":-1.48543,"lat":51.65443,"GlobalID":"0508f9da-72cf-4996-a11e-c429953c2278"}},{"type":"Feature","id":198,"geometry":{"type":"Polygon","coordinates":[[[432857.3023,233261.5989],[434876.0973,230834.4037],[437591.5999,231384.7961],[438730.8035,232452.600500001],[440649.0994,230634.200999999],[441177.3028,231435.2017],[442863.5992,231423.395099999],[443968.0004,230198.2958],[443955.8966,227955.5977],[445982.4007,227281.300799999],[445475.0986,226470.402899999],[448319.3973,224078.297599999],[448002.3995,222902.5042],[448859.0036,222251.000700001],[448409.6972,221324.7958],[449232.3977,219825.095100001],[448146.5973,219178.100299999],[448524.7983,218290.104499999],[445958.3004,218419.397399999],[445607.9018,217714.7991],[445439.3975,214822.2971],[446497.7995,214435.3979],[445701.9037,213686.902100001],[446837.8011,210125.501499999],[443994.5989,208349.9998],[443701.0005,202967.500499999],[442114.2963,201014.0997],[437472.6979,201757.096999999],[437100.5983,200233.403100001],[436096.3993,200695.5009],[435355.8032,199596.5954],[431525.7002,200597.098999999],[429423.0035,200234.003],[427846.5973,198870.5033],[427326.8039,199351.095699999],[424413.6012,198427.699999999],[421652.5034,201524.603499999],[421103.3988,202800.498299999],[421706.896,204621.097200001],[420748.1026,208031.6009],[419446.6032,209430.9004],[422027.2991,211752.795700001],[421700.3989,215139.496300001],[422386.8992,216905.8007],[421657.5988,218592.097999999],[423012.0975,219877.200200001],[423584.2965,222054.3969],[425344.4026,222360.3993],[424473.3037,224921.8961],[426550.8035,226643.903200001],[425351.3037,228636.402899999],[423282.7993,229555.4998],[423049.2002,232166.4024],[426736.004,228615.9987],[428149.7022,230297.2974],[427550.3028,231016.001700001],[430075.3033,231041.5044],[431025.2003,231472.101199999],[430499.1983,232669.8983],[432857.3023,233261.5989]]]},"properties":{"OBJECTID":198,"lad19cd":"E07000181","lad19nm":"West Oxfordshire","lad19nmw":" ","bng_e":434343,"bng_n":215816,"long":-1.50292,"lat":51.839901,"GlobalID":"4e1b5d40-9f91-477f-b4e4-16c22ff0f75b"}},{"type":"Feature","id":199,"geometry":{"type":"Polygon","coordinates":[[[346813.7987,158441.8958],[351670.4035,157895.0024],[355563.0041,155271.4034],[356332.9031,153935.4958],[361208.6035,156097.197000001],[365424.5012,154752.301899999],[364778.4017,153438.797900001],[366751.7993,152769.999399999],[367048.9019,153311.904300001],[368585.6988,152886.7959],[372148.2001,156263.599300001],[373099.8038,155128.904100001],[379952.6039,158503.598099999],[381066.1983,158233.195499999],[381142.1024,157273.700200001],[380226.1008,156743.7019],[380525.0997,154963.8014],[381601.8964,155266.4048],[382419.0974,154553.3989],[382974.4023,150552.5041],[379238.2023,141842.997199999],[375863.8039,136861.5031],[374110.9039,138309.5986],[370144.7986,138312.5978],[368334.1008,136044.297],[366355.4015,135666.994999999],[363567.8041,133672.9958],[359528.2024,132323.302200001],[358216.0998,133404.4027],[357993.2029,132357.802300001],[359047.5978,131846.898499999],[357979.2027,131876.300100001],[358196.7981,130276.597999999],[355764.703,129518.2951],[355089.9025,131677.3971],[355664.5997,132294.500399999],[354709.2033,133841.5976],[353605.2968,133539.704],[352850.0986,131784.6963],[351243.499,130999.4011],[350490.4034,131449.0024],[350642.904,130538.5031],[349975.3014,131177.3002],[350554.5005,132718.9989],[348678.0977,134418.4025],[347777.4979,133158.403100001],[342699.002,134613.396600001],[342403.6969,135999.4999],[345067.7998,135087.7009],[344339.7032,136850.2963],[345122.9016,139593.801000001],[341184.6976,141860.802100001],[341538.1964,143811.7037],[343684.798,142590.403200001],[344637.4983,145314.803400001],[347985.4961,145494.402000001],[347615.1032,147491.2004],[345652.3005,148146.9027],[345791.1968,150037.001700001],[348559.5008,152181.297900001],[349355.3965,151591.5967],[350572.4995,152568.497],[349832.2001,153185.2005],[350230.9973,153865.8957],[348974.7962,153930.8971],[349013.1028,156366.199999999],[346729.3033,156936.096799999],[346813.7987,158441.8958]]]},"properties":{"OBJECTID":199,"lad19cd":"E07000187","lad19nm":"Mendip","lad19nmw":" ","bng_e":362238,"bng_n":144090,"long":-2.54178,"lat":51.194759,"GlobalID":"f93a50dc-c35d-47ae-bab7-cc8a8aebb75d"}},{"type":"Feature","id":200,"geometry":{"type":"Polygon","coordinates":[[[334660.8013,131663.700999999],[333630.0037,130873.0973],[335139.5013,129549.896],[334720.3966,129092.9968],[331238.8041,127289.403100001],[330185.9015,128745.296399999],[327810.4994,128125.1039],[328286.8001,129445.296],[326770.0964,130102.3979],[320384.5027,130926.502],[318861.6976,133034.898499999],[320213.698,133976.4989],[320138.9978,135063.697699999],[318291.9969,134539.5978],[314984.6967,137454.203500001],[315768.8021,138862.600299999],[317649.6984,139265.904899999],[319158.0004,141128.9016],[322238.0996,141779.6953],[323471.099,144004.398499999],[324532.5022,144811.0976],[325505.1968,144457.798699999],[326411.598,145721.892999999],[328911.0007,147080.797900001],[327945.7019,144435.904999999],[328639.746,144615.994999999],[330109.454,147896.089],[330337.76,147583.491],[331356.725,147264.364],[330329.7435,147784.5155],[330255.892,149636.446],[328824.718,152309.457],[329570.952,158478.517999999],[327951.647,159335.982999999],[330810.372,158465.566],[331110.0276,157929.634199999],[331349.36,157501.59],[330857.8345,156234.3292],[332223.9982,155623.102700001],[333033.1025,156625.795700001],[334801.2971,156409.997400001],[337540.3971,154991.9034],[338411.496,156766.4954],[338944.597,156025.7974],[343610.8975,156123.599400001],[343053.6963,158903.8036],[346813.7987,158441.8958],[346729.3033,156936.096799999],[349013.1028,156366.199999999],[348974.7962,153930.8971],[350230.9973,153865.8957],[349832.2001,153185.2005],[350572.4995,152568.497],[349355.3965,151591.5967],[348559.5008,152181.297900001],[345791.1968,150037.001700001],[345652.3005,148146.9027],[347615.1032,147491.2004],[347985.4961,145494.402000001],[344637.4983,145314.803400001],[343684.798,142590.403200001],[341538.1964,143811.7037],[341184.6976,141860.802100001],[345122.9016,139593.801000001],[344339.7032,136850.2963],[345067.7998,135087.7009],[342403.6969,135999.4999],[342699.002,134613.396600001],[340587.6975,134108.201199999],[340040.3986,131308.7026],[338633.9973,131696.1017],[337863.9993,130350.3969],[336204.4993,132157.0997],[334633.6008,131970.803099999],[334660.8013,131663.700999999]]]},"properties":{"OBJECTID":200,"lad19cd":"E07000188","lad19nm":"Sedgemoor","lad19nmw":" ","bng_e":338429,"bng_n":143998,"long":-2.88246,"lat":51.19186,"GlobalID":"62f4186b-5994-4d1e-8934-839fe3d6df07"}},{"type":"Feature","id":201,"geometry":{"type":"Polygon","coordinates":[[[342699.002,134613.396600001],[347777.4979,133158.403100001],[348678.0977,134418.4025],[350554.5005,132718.9989],[349975.3014,131177.3002],[350642.904,130538.5031],[350490.4034,131449.0024],[351243.499,130999.4011],[352850.0986,131784.6963],[353605.2968,133539.704],[354709.2033,133841.5976],[355664.5997,132294.500399999],[355089.9025,131677.3971],[355764.703,129518.2951],[358196.7981,130276.597999999],[357979.2027,131876.300100001],[359047.5978,131846.898499999],[357993.2029,132357.802300001],[358216.0998,133404.4027],[359528.2024,132323.302200001],[363567.8041,133672.9958],[366355.4015,135666.994999999],[368334.1008,136044.297],[370144.7986,138312.5978],[374110.9039,138309.5986],[375863.8039,136861.5031],[375984.2972,136212.299000001],[374582.2988,135574.101600001],[374712.7027,133654.5011],[377269.8012,131201.703199999],[375574.0972,130000.097200001],[376959.1025,126940.302999999],[373339.1992,122907.297499999],[373641.8011,121331.298599999],[375187.6017,121336.497099999],[375907.0987,119992.901699999],[370955.5025,117989.2952],[370045.0004,119195.899800001],[368695.4983,118810.600099999],[368992.6998,117898.001399999],[368049.0031,116756.4981],[365668.0026,119377.197899999],[364841.4022,121725.2958],[363150.7029,121522.603800001],[361681.903,122382.297700001],[361811.1031,120773.0984],[361049.4986,120162.1033],[359762.4033,120968.102600001],[358953.9998,119881.9035],[358268.4972,120384.5996],[357734.4976,119833.397399999],[358073.5015,116742.302200001],[356809.0967,115863.8036],[357643.3979,114315.8967],[356218.2968,112230.603599999],[357222.2979,110408.0953],[356753.896,109308.699999999],[353628.1026,109944.198100001],[349828.1024,108204.496099999],[349808.6028,107398.4968],[346789.8963,107763.102399999],[344324.4993,106222.603399999],[342990.803,107415.0021],[341738.6008,105788.4977],[337708.3985,106050.002800001],[334603.597,105013.6995],[332873.9976,102838.6021],[331800.8039,104299.3039],[331567.9964,106697.0976],[327110.6009,106240.8982],[327420.9038,107412.6028],[325882.4001,108877.9033],[326101.9991,112616.903100001],[323863.5969,114137.5978],[323622.9978,115960.8959],[326510.5006,115351.100400001],[328794.3001,116658.8961],[329319.997,118000.302100001],[331245.3012,118855.397299999],[331445.4006,122523.5973],[333838.2987,123079.1983],[333417.0998,123973.9022],[338124.7988,127920.702400001],[337550.2994,129478.4965],[337863.9993,130350.3969],[338633.9973,131696.1017],[340040.3986,131308.7026],[340587.6975,134108.201199999],[342699.002,134613.396600001]]]},"properties":{"OBJECTID":201,"lad19cd":"E07000189","lad19nm":"South Somerset","lad19nmw":" ","bng_e":345633,"bng_n":120798,"long":-2.77588,"lat":50.98399,"GlobalID":"1101b0fe-faa1-4f82-8251-6221bb7de6b9"}},{"type":"Feature","id":202,"geometry":{"type":"Polygon","coordinates":[[[398287.0968,315407.9048],[398910.2008,317960.304199999],[401910.0014,318215.6011],[403878.5015,319574.0023],[406059.9962,317964.503],[406117.1015,317065.700300001],[404305.1009,313179.502699999],[405804.8033,312554.3016],[402851.3977,309605.095799999],[403169.3025,307212.8006],[402738.1023,305007.102],[401006.7962,304738.898800001],[399820.8018,307883.898499999],[396588.9028,308999.999],[396403.9991,310263.1975],[398002.601,311958.302200001],[398287.0968,315407.9048]]]},"properties":{"OBJECTID":202,"lad19cd":"E07000192","lad19nm":"Cannock Chase","lad19nmw":" ","bng_e":401261,"bng_n":311553,"long":-1.98277,"lat":52.70166,"GlobalID":"71793f09-f2cc-4c32-a42c-7a949e39063b"}},{"type":"Feature","id":203,"geometry":{"type":"Polygon","coordinates":[[[397304.7967,335560.7961],[402038.2038,338153.9038],[404095.899,337118.9001],[405010.1031,338212.1971],[406133.0969,338048.0041],[406578.1983,338738.6964],[405103.396,340647.899900001],[409503.7027,342276.2038],[408111.5983,344146.2985],[407866.5963,346977.3981],[408710.602,346976.2985],[409751.4008,348542.9],[411465.1038,348421.504799999],[412629.1992,348025.598099999],[413783.6974,346228.9024],[414526.9979,347496.499500001],[413865.2988,349135.700300001],[414914.6972,349751.604],[416261.701,348918.4025],[416042.5968,344750.5956],[411728.3026,342205.0042],[411533.9005,338713.703600001],[409739.6021,336227.395300001],[411656.9993,331897.2048],[415088.2969,331838.4016],[417194.9018,330163.201099999],[418590.8978,329163.7972],[420000.1024,329950.0022],[420254.3966,329272.796],[420948.4988,329708.001399999],[425230.3982,328612.2951],[428032.9027,326099.904300001],[426348.1976,324387.304500001],[427610.6978,323625.2026],[427816.0988,322555.698799999],[426105.397,321256.7006],[426326.3977,320493.598999999],[422587.4026,320844.0987],[420074.0029,314976.8982],[416935.001,315751.396500001],[415813.9035,317044.5963],[414666.6033,316484.4966],[414234.4961,317371.2028],[412412.1974,317522.499500001],[411673.2998,319061.499],[412945.3973,320633.2991],[412380.0005,321742.3016],[410726.5029,322050.603399999],[409962.3012,320534.997199999],[407521.4003,322538.8036],[406708.8001,321975.7048],[403377.9026,323319.000299999],[402261.8017,325202.0013],[404354.2992,327843.395199999],[404406.004,330348.1982],[402753.298,330304.400699999],[401465.403,332868.296800001],[400116.8985,332755.699100001],[399239.5003,334348.0033],[397304.7967,335560.7961]]]},"properties":{"OBJECTID":203,"lad19cd":"E07000193","lad19nm":"East Staffordshire","lad19nmw":" ","bng_e":412601,"bng_n":326569,"long":-1.81438,"lat":52.83651,"GlobalID":"1bc2d352-1cac-4608-bced-017676f4b229"}},{"type":"Feature","id":204,"geometry":{"type":"Polygon","coordinates":[[[403377.9026,323319.000299999],[406708.8001,321975.7048],[407521.4003,322538.8036],[409962.3012,320534.997199999],[410726.5029,322050.603399999],[412380.0005,321742.3016],[412945.3973,320633.2991],[411673.2998,319061.499],[412412.1974,317522.499500001],[414234.4961,317371.2028],[414666.6033,316484.4966],[415813.9035,317044.5963],[416935.001,315751.396500001],[420074.0029,314976.8982],[423290.4013,313842.003],[423408.3963,311289.603700001],[427293.197,311490.2962],[427835.1037,310029.304400001],[424113.3985,306700.7972],[421455.6031,305545.9977],[418874.0992,305995.698999999],[418063.1974,305237.1961],[418280.1002,303924.6019],[420259.2035,302048.298900001],[420982.5015,302235.795299999],[420393.499,299274.902799999],[418435.701,298935.799900001],[417545.8033,299643.5973],[414453.9961,298914.695900001],[413878.2023,300165.597899999],[411735.3027,301227.8038],[409988.0011,300467.9013],[408730.9013,298576.7027],[407393.7008,300154.900900001],[407809.3014,301964.203],[405782.5005,304172.200999999],[406519.0977,305054.2985],[405643.2991,305797.095899999],[406125.1982,306532.4954],[404589.8029,307099.2031],[403789.9001,306507.702500001],[403169.3025,307212.8006],[402851.3977,309605.095799999],[405804.8033,312554.3016],[404305.1009,313179.502699999],[406117.1015,317065.700300001],[406059.9962,317964.503],[403878.5015,319574.0023],[402919.7988,322324.504899999],[403377.9026,323319.000299999]]]},"properties":{"OBJECTID":204,"lad19cd":"E07000194","lad19nm":"Lichfield","lad19nmw":" ","bng_e":416283,"bng_n":310967,"long":-1.76049,"lat":52.696152,"GlobalID":"1b342e0c-369f-45bc-af00-f55dc9f31da6"}},{"type":"Feature","id":205,"geometry":{"type":"Polygon","coordinates":[[[385953.4006,357646.1043],[387961.3038,354745.104699999],[386796.3014,355073.3007],[384100.6034,352925.5955],[386512.1024,346979.797499999],[385640.5005,346464.505000001],[386377.5018,342690.395300001],[385828.4962,342600.900900001],[381951.7014,340711.6017],[381417.6028,339353.000600001],[382340.7034,336284.698899999],[378593.6035,337271.7963],[376738.1019,335242.1973],[376031.4012,335744.803400001],[374598.8961,335117.0031],[374602.2024,332762.2972],[370459.1004,331618.604499999],[370068.4988,330817.9037],[368429.2983,334372.7962],[370722.7032,338555.5989],[371523.4965,339262.6964],[372843.201,338954.2048],[372362.2006,340564.004000001],[374149.903,339605.8982],[374599.399,342145.201300001],[375339.0964,342507.797499999],[374540.3974,344631.399700001],[374394.8968,345675.2009],[375242.7034,346425.995999999],[374326.504,347720.395500001],[374541.898,350654.3956],[376800.3027,351045.503699999],[378792.3012,353838.404200001],[380443.8034,353494.002800001],[383138.0997,355224.7973],[383527.7036,354764.2992],[385953.4006,357646.1043]]]},"properties":{"OBJECTID":205,"lad19cd":"E07000195","lad19nm":"Newcastle-under-Lyme","lad19nmw":" ","bng_e":378199,"bng_n":345174,"long":-2.32631,"lat":53.003448,"GlobalID":"ab7ff5ad-170e-422f-b8af-b4be916ec22d"}},{"type":"Feature","id":206,"geometry":{"type":"Polygon","coordinates":[[[379018.8013,315959.596899999],[381534.6003,316163.0986],[383523.0039,313082.9003],[385457.1963,315051.796700001],[387420.4031,315053.996099999],[388087.0987,316278.3956],[389245.604,316134.696799999],[390179.0027,320564.4987],[392365.9969,319027.798599999],[393420.5979,319518.698100001],[393678.7013,320986.697899999],[395646.6984,319550.9989],[394957.7988,318819.7982],[397168.0029,318192.9976],[398287.0968,315407.9048],[398002.601,311958.302200001],[396403.9991,310263.1975],[396588.9028,308999.999],[399820.8018,307883.898499999],[401006.7962,304738.898800001],[398102.1024,303100.097899999],[398057.1998,302130.195499999],[396663.1001,302527.901699999],[394611.8031,301571.195499999],[393245.0028,304147.8979],[391188.0002,304437.0952],[388699.4017,302480.7951],[388641.9996,301296.1043],[386796.5983,300997.899599999],[387279.7011,299012.097999999],[386092.2969,298615.4016],[387875.2007,297423.2029],[388195.1997,295186.802999999],[391046.0038,295142.795600001],[390899.4973,292962.1998],[389769.8992,291989.498199999],[390310.701,291029.303099999],[387067.8031,289522.0046],[388723.9967,285967.901900001],[388103.8032,284109.603800001],[388887.9992,281369.3982],[388692.2038,280655.3026],[381775.9002,282326.5042],[380049.9039,283482.5033],[380567.9988,284188.9011],[378860.6033,287966],[380321.0015,290459.496200001],[382392.301,291833.402899999],[381833.797,292568.102600001],[382707.1964,293800.4999],[380944.0972,295097.398600001],[382343.0038,296834.501399999],[379754.4998,299510.6953],[378282.6987,299584.804099999],[378172.0994,301734.0989],[381027.3971,300934.5977],[382749.9965,301364.704600001],[384339.8009,305574.7995],[384220.0002,306482.899599999],[383342.4041,306575.503],[383951.9038,307356.6994],[383349.701,309513.801999999],[379610.4998,309514.6017],[378476.3999,310903.904100001],[378148.5021,312010.8972],[379252.4993,313720.297900001],[378787.5026,315079.5988],[379018.8013,315959.596899999]]]},"properties":{"OBJECTID":206,"lad19cd":"E07000196","lad19nm":"South Staffordshire","lad19nmw":" ","bng_e":389625,"bng_n":311037,"long":-2.15495,"lat":52.696918,"GlobalID":"cc0cf248-315f-4410-99b1-e9a4bbac7a61"}},{"type":"Feature","id":207,"geometry":{"type":"Polygon","coordinates":[[[385828.4962,342600.900900001],[387893.8015,338771.497099999],[388212.3989,339605.0984],[389173.3031,339564.800000001],[390312.8035,342092.5964],[391339.7011,341541.7041],[391924.2018,339862.004899999],[394642.2026,341061.601500001],[394179.1023,341834.9002],[397205.8972,339329.2974],[395858.4976,336113.8978],[397304.7967,335560.7961],[399239.5003,334348.0033],[400116.8985,332755.699100001],[401465.403,332868.296800001],[402753.298,330304.400699999],[404406.004,330348.1982],[404354.2992,327843.395199999],[402261.8017,325202.0013],[403377.9026,323319.000299999],[402919.7988,322324.504899999],[403878.5015,319574.0023],[401910.0014,318215.6011],[398910.2008,317960.304199999],[398287.0968,315407.9048],[397168.0029,318192.9976],[394957.7988,318819.7982],[395646.6984,319550.9989],[393678.7013,320986.697899999],[393420.5979,319518.698100001],[392365.9969,319027.798599999],[390179.0027,320564.4987],[389245.604,316134.696799999],[388087.0987,316278.3956],[387420.4031,315053.996099999],[385457.1963,315051.796700001],[383523.0039,313082.9003],[381534.6003,316163.0986],[379018.8013,315959.596899999],[374131.3022,321399.299799999],[375052.9021,322031.9987],[374641.6962,323853.8972],[372043.6032,325577.3038],[373571.6027,326638.200200001],[374602.2024,332762.2972],[374598.8961,335117.0031],[376031.4012,335744.803400001],[376738.1019,335242.1973],[378593.6035,337271.7963],[382340.7034,336284.698899999],[381417.6028,339353.000600001],[381951.7014,340711.6017],[385828.4962,342600.900900001]]]},"properties":{"OBJECTID":207,"lad19cd":"E07000197","lad19nm":"Stafford","lad19nmw":" ","bng_e":389001,"bng_n":327836,"long":-2.16475,"lat":52.847919,"GlobalID":"6633077b-7381-4c72-927a-4473d28546f6"}},{"type":"Feature","id":208,"geometry":{"type":"Polygon","coordinates":[[[400937.9994,368500.8971],[402609.702,369909.503900001],[402988.1998,368519.7017],[406868.5976,366989.399800001],[409402.9975,365710.7958],[412633.0991,361926.598999999],[412013.5982,359962.701099999],[414577.2021,356201.097899999],[413877.8972,354593.2981],[415132.8038,351366.501800001],[414914.6972,349751.604],[413865.2988,349135.700300001],[414526.9979,347496.499500001],[413783.6974,346228.9024],[412629.1992,348025.598099999],[411465.1038,348421.504799999],[409751.4008,348542.9],[408710.602,346976.2985],[407866.5963,346977.3981],[408111.5983,344146.2985],[409503.7027,342276.2038],[405103.396,340647.899900001],[406578.1983,338738.6964],[406133.0969,338048.0041],[405010.1031,338212.1971],[404095.899,337118.9001],[402038.2038,338153.9038],[397304.7967,335560.7961],[395858.4976,336113.8978],[397205.8972,339329.2974],[394179.1023,341834.9002],[394776.1024,341906.299699999],[393928.304,343143.095699999],[394152.5037,344425.498600001],[393053.503,344488.8005],[393154.9997,345953.101299999],[391796.997,347154.497400001],[391262.8984,350013.9989],[392281.6994,350089.997199999],[391693.9007,351931.699999999],[389299.7988,352552.9022],[388597.8968,354704.5963],[387961.3038,354745.104699999],[385953.4006,357646.1043],[389690.1035,362508.5024],[390641.196,362176.497400001],[390712.1036,365197.9026],[392604.7986,363508.7961],[395402.3973,363841.900699999],[396988.4997,366172.503599999],[400083.5967,366292.699200001],[400937.9994,368500.8971]]]},"properties":{"OBJECTID":208,"lad19cd":"E07000198","lad19nm":"Staffordshire Moorlands","lad19nmw":" ","bng_e":400543,"bng_n":352443,"long":-1.99334,"lat":53.069241,"GlobalID":"b08aa8d2-4a01-4b93-9860-2f4ccb75d828"}},{"type":"Feature","id":209,"geometry":{"type":"Polygon","coordinates":[[[424113.3985,306700.7972],[424934.5984,305143.6029],[424293.0007,304857.7048],[424221.9035,300676.3017],[422747.1012,299434.1972],[420393.499,299274.902799999],[420982.5015,302235.795299999],[420259.2035,302048.298900001],[418280.1002,303924.6019],[418063.1974,305237.1961],[418874.0992,305995.698999999],[421455.6031,305545.9977],[424113.3985,306700.7972]]]},"properties":{"OBJECTID":209,"lad19cd":"E07000199","lad19nm":"Tamworth","lad19nmw":" ","bng_e":421455,"bng_n":302550,"long":-1.68451,"lat":52.620312,"GlobalID":"98b1e3eb-e8cf-468a-8234-11338e2fd570"}},{"type":"Feature","id":210,"geometry":{"type":"Polygon","coordinates":[[[582134.4964,246338.4957],[579903.6961,251106.300899999],[581041.9021,254620.095100001],[584220.8019,254448.0044],[584563.4007,257102.704500001],[585789.903,256922.796],[586316.3007,255363.9022],[587358.3032,255945.095799999],[587652.9982,254771.401799999],[588832.6026,254613.696900001],[589412.1974,256583.1032],[590646.1038,256952.6974],[592539.7965,256228.3048],[593388.3039,255354.095000001],[596299.0991,255801.4969],[597219.5035,254626.703199999],[598047.7034,254991.298900001],[597976.2022,254185.8994],[601068.8999,255097.498500001],[602204.5004,249913.202400001],[603698.1015,249567.101500001],[603589.0028,248309.4015],[605837.497,248729.3013],[608181.5019,245457.797800001],[608842.5991,246570.7992],[610174.4981,245210.298599999],[613185.8994,245964.002900001],[614109.8987,244947.403899999],[613170.8027,243235.9038],[613616.2009,241924.8991],[616096.0023,241969.9475],[620584.98,237981.630000001],[624431.97,237191.029999999],[625177.7431,233742.865599999],[622894.565,234178.499],[621344.48,233159.529999999],[619133.72,233358.994999999],[617394.12,234960.73],[615199.7,232964.199999999],[612106.8,233443.199999999],[610790.8,232274.4],[609949.7436,232682.9234],[609462.3969,233390.602],[607934.4963,232810.3981],[606106.5993,233744.3007],[604209.1963,233492.7028],[603565.8012,235109.9998],[602243.6975,234335.2016],[601000.5978,234898.000499999],[598576.5993,234488.397700001],[595922.5966,232978.199999999],[594131.1015,233775.002],[593218.9009,232865.102399999],[591174.101,233434.1995],[590525.0004,233845.0019],[590636.3004,235204.1029],[589596.7961,235480.503799999],[589647.6022,236824.698999999],[588039.5019,238235.395199999],[588098.0996,240520.601],[586314.7011,240021.304],[585038.4976,241308.0956],[585198.7981,242331.3027],[586353.8981,242402.102499999],[585388.0964,244212.904100001],[585971.8962,245010.695800001],[583998.5975,246577.0974],[582134.4964,246338.4957]]]},"properties":{"OBJECTID":210,"lad19cd":"E07000200","lad19nm":"Babergh","lad19nmw":" ","bng_e":599987,"bng_n":244692,"long":0.916149,"lat":52.064499,"GlobalID":"11782827-476f-4e2f-9c01-e6b7b3950e89"}},{"type":"Feature","id":211,"geometry":{"type":"Polygon","coordinates":[[[613185.8994,245964.002900001],[613218.0964,247992.6022],[615112.3002,247983.9047],[615340.4988,248670.698100001],[616432.7963,248081.196900001],[616917.3008,247071.695800001],[618668.8981,247254.203600001],[619884.0964,245477.302200001],[619695.5978,242497.895099999],[621230.4984,241684.198000001],[620303.803,240677.7961],[618198.9249,240671.922700001],[617293.7485,241557.897],[616906.4444,241736.7543],[616096.0023,241969.9475],[613616.2009,241924.8991],[613170.8027,243235.9038],[614109.8987,244947.403899999],[613185.8994,245964.002900001]]]},"properties":{"OBJECTID":211,"lad19cd":"E07000202","lad19nm":"Ipswich","lad19nmw":" ","bng_e":617161,"bng_n":244456,"long":1.166145,"lat":52.05592,"GlobalID":"45ebea31-fa30-4883-8455-af2327cb3d77"}},{"type":"Feature","id":212,"geometry":{"type":"Polygon","coordinates":[[[627772.7977,283757.604599999],[629710.7993,282763.199200001],[632232.4028,279381.397299999],[628820.1018,276325.702],[628902.9977,274645.103],[630771.3038,273451.9046],[630865.5036,271611.001499999],[632102.7987,270732.2031],[629027.0034,269293.8048],[628220.1994,270149.199999999],[628357.2983,271416.2973],[626987.9998,271918.5035],[627992.3967,270401.4977],[627985.0998,268337.398600001],[625376.7994,267447.903200001],[624495.3035,265349.8038],[621872.4011,263933.8991],[621622.1965,260898.398],[622658.5017,260567.602700001],[622534.9,259422.000600001],[621643.6007,257409.896500001],[619893.7019,256898.6029],[618481.0014,253877.997500001],[617022.9035,252841.0044],[617642.0994,251692.903000001],[616432.7963,248081.196900001],[615340.4988,248670.698100001],[615112.3002,247983.9047],[613218.0964,247992.6022],[613185.8994,245964.002900001],[610174.4981,245210.298599999],[608842.5991,246570.7992],[608181.5019,245457.797800001],[605837.497,248729.3013],[603589.0028,248309.4015],[603698.1015,249567.101500001],[602204.5004,249913.202400001],[601068.8999,255097.498500001],[597976.2022,254185.8994],[598047.7034,254991.298900001],[597219.5035,254626.703199999],[596299.0991,255801.4969],[593388.3039,255354.095000001],[592539.7965,256228.3048],[594001.2995,257558.903899999],[594070.7971,259028.5032],[592463.9007,259920.097999999],[593129.9037,263850.203],[591060.0966,265135.395099999],[591129.0995,266639.604599999],[592921.4026,266909.8972],[594181.3964,266211.3971],[594058.7016,267122.7963],[594993.7987,267205.8025],[594018.3998,269002.1983],[596036.7,270706.8003],[597002.8975,269989.195800001],[596668.6015,270802.0031],[597847.703,270713.0985],[599896.3038,272349.700099999],[599462.0035,273946.2031],[599900.5006,274896.0012],[601557.898,275480.6039],[601202.7997,277213.4978],[602112.2959,278815.7992],[606325.0027,279951.0042],[608927.3996,280036.899599999],[618954.8038,277895.8025],[622016.5,279783.0023],[623703.1015,282041.9957],[625765.2985,281768.7039],[627772.7977,283757.604599999]]]},"properties":{"OBJECTID":212,"lad19cd":"E07000203","lad19nm":"Mid Suffolk","lad19nmw":" ","bng_e":611646,"bng_n":262338,"long":1.096953,"lat":52.21859,"GlobalID":"32df23c1-db6b-4ae8-bf59-9a3aa29f5331"}},{"type":"Feature","id":213,"geometry":{"type":"Polygon","coordinates":[[[512535.7012,168963.404100001],[514211.0976,169374.996200001],[516440.1004,167192.900900001],[517139.496,167412.498],[517897.4974,165729.4998],[516362.5968,162360.5041],[516401.596,160201.801999999],[514378.0024,158241.803099999],[511824.004,158298.196900001],[512012.4036,156648.099300001],[511281.8995,156292.201199999],[510968.3975,157203.4003],[508844.0988,157326.1952],[508398.2965,159484.397399999],[508985.1965,159864.5986],[507224.9996,160107.099099999],[507108.9998,161290.100500001],[505869.8991,162236.899499999],[506840.9034,163060.003900001],[506231.2966,163883.1983],[507410.1012,165741.0964],[508459.3017,166792.895400001],[509195.8001,166159.796599999],[510720.8973,168491.899],[512535.7012,168963.404100001]]]},"properties":{"OBJECTID":213,"lad19cd":"E07000207","lad19nm":"Elmbridge","lad19nmw":" ","bng_e":511882,"bng_n":163658,"long":-0.39441,"lat":51.360981,"GlobalID":"b8b887b0-c675-46a1-a3f4-6dde6e977cea"}},{"type":"Feature","id":214,"geometry":{"type":"Polygon","coordinates":[[[518090.2999,160916.397500001],[519460.2003,164193.1995],[521110.5977,165939.999500001],[522231.1015,166014.998],[522240.0969,164547.798],[523844.2972,163500.4978],[524262.2971,161986.4012],[523406.0969,161201.8958],[524042.5992,160476.3035],[522530.9991,159484.897299999],[522302.9984,156894.0989],[521094.8991,157032.499199999],[520567.6027,156217.3026],[518090.2999,160916.397500001]]]},"properties":{"OBJECTID":214,"lad19cd":"E07000208","lad19nm":"Epsom and Ewell","lad19nmw":" ","bng_e":521176,"bng_n":161475,"long":-0.26172,"lat":51.339451,"GlobalID":"56aa32de-1f78-423e-b5d5-d61497227bc5"}},{"type":"Feature","id":215,"geometry":{"type":"Polygon","coordinates":[[[494412.1994,157845.796399999],[494351.1035,157005.097100001],[496467.8993,154636.695],[497675.1988,155038.100099999],[501652.5998,152822.804300001],[502346.1001,153749.399],[501274.201,154946.396400001],[501863.5002,156772.703600001],[502597.4014,156407.598099999],[503922.2013,158165.604900001],[504595.6991,157449.899800001],[506342.2009,158575.6975],[505370.9987,160061.702099999],[507224.9996,160107.099099999],[508985.1965,159864.5986],[508398.2965,159484.397399999],[508844.0988,157326.1952],[510968.3975,157203.4003],[511281.8995,156292.201199999],[512012.4036,156648.099300001],[512622.4969,153004.902100001],[512003.3011,149966.002],[509367.8992,150133.604],[510016.9999,149081.395199999],[509174.7999,146766.797800001],[511210.3983,144921.396],[511358.999,143034.1962],[510650.0969,142737.901000001],[508853.3992,143857.7005],[507954.5968,142877.5011],[504560.5009,143769.8956],[504491.498,146151.004000001],[502600.0975,147050.5965],[501016.7984,145440.6974],[499746.5973,145310.9045],[499519.1985,144171.500700001],[498369.301,144499.296800001],[498970.704,145327.5997],[498428.2038,145793.7963],[496907.4022,146340.0999],[495497.2,145652.296800001],[495766.5991,143657.197899999],[494597.9029,142713.198100001],[493479.9963,145407.9967],[491766.3016,144094.3028],[490460.3004,145628.103700001],[488711.1024,144953.696799999],[487528.9008,146463.4046],[487684.5016,148666.304],[488767.2018,151538.8018],[488597.3041,154233.3005],[490504.7,154689.4999],[491571.5038,158006.600400001],[494412.1994,157845.796399999]]]},"properties":{"OBJECTID":215,"lad19cd":"E07000209","lad19nm":"Guildford","lad19nmw":" ","bng_e":500408,"bng_n":151481,"long":-0.56257,"lat":51.253658,"GlobalID":"e0cf4d76-6518-4dad-86a8-216380c7efb8"}},{"type":"Feature","id":216,"geometry":{"type":"Polygon","coordinates":[[[518090.2999,160916.397500001],[520567.6027,156217.3026],[521101.3962,152787.0045],[523896.1009,152008.0975],[522239.899,148996.5995],[523324.8996,148496.9025],[524070.8962,147398.7969],[523410.9038,146689.1],[524977.8035,145306.4958],[522886.1964,144832.001599999],[522892.0998,144089.7041],[525252.6031,142975.603],[526617.4988,144022.0035],[527574.099,142425.2005],[525127.5008,141097.3006],[524999.9992,140316.304199999],[522148.6014,139766.9015],[522200.8009,139201.803200001],[519038.3005,137535.100299999],[512678.0027,136477.1032],[510767.8034,135177.895099999],[510650.0969,142737.901000001],[511358.999,143034.1962],[511210.3983,144921.396],[509174.7999,146766.797800001],[510016.9999,149081.395199999],[509367.8992,150133.604],[512003.3011,149966.002],[512622.4969,153004.902100001],[512012.4036,156648.099300001],[511824.004,158298.196900001],[514378.0024,158241.803099999],[516401.596,160201.801999999],[518090.2999,160916.397500001]]]},"properties":{"OBJECTID":216,"lad19cd":"E07000210","lad19nm":"Mole Valley","lad19nmw":" ","bng_e":518377,"bng_n":148953,"long":-0.30603,"lat":51.227489,"GlobalID":"891e3340-1f67-43b5-ad36-2e54cc792149"}},{"type":"Feature","id":217,"geometry":{"type":"Polygon","coordinates":[[[524042.5992,160476.3035],[525650.7983,162043.504899999],[528552.3013,159658.0977],[528694.1988,157410.201099999],[529950.5977,157386.9978],[530898.1036,155850.797499999],[530794.1994,153063.895199999],[529507.4999,151875.0955],[528916.296,149561.897700001],[529632.6022,147359.3981],[530302.802,147522.501399999],[529839.8006,144672.0974],[531004.0032,142310.0035],[530127.0997,141732.198899999],[527574.099,142425.2005],[526617.4988,144022.0035],[525252.6031,142975.603],[522892.0998,144089.7041],[522886.1964,144832.001599999],[524977.8035,145306.4958],[523410.9038,146689.1],[524070.8962,147398.7969],[523324.8996,148496.9025],[522239.899,148996.5995],[523896.1009,152008.0975],[521101.3962,152787.0045],[520567.6027,156217.3026],[521094.8991,157032.499199999],[522302.9984,156894.0989],[522530.9991,159484.897299999],[524042.5992,160476.3035]]]},"properties":{"OBJECTID":217,"lad19cd":"E07000211","lad19nm":"Reigate and Banstead","lad19nmw":" ","bng_e":525786,"bng_n":152574,"long":-0.19871,"lat":51.258461,"GlobalID":"bff2957c-07f7-49f3-b992-0c1b3f00f905"}},{"type":"Feature","id":218,"geometry":{"type":"Polygon","coordinates":[[[496215.7983,166832.903899999],[497819.1988,172344.7961],[499346.2006,173414.199999999],[502779.7986,171734.900699999],[503652.4971,171138.8014],[503539.1028,169738.902100001],[504888.1019,169173.104],[505497.9974,166437.097200001],[506056.8971,166797.604],[507410.1012,165741.0964],[506231.2966,163883.1983],[506840.9034,163060.003900001],[505869.8991,162236.899499999],[503493.1036,161020.0978],[501179.6961,161993.099300001],[500683.6979,163531.299000001],[499685.3035,163333.895500001],[499361.1984,164494.0034],[496215.7983,166832.903899999]]]},"properties":{"OBJECTID":218,"lad19cd":"E07000212","lad19nm":"Runnymede","lad19nmw":" ","bng_e":501777,"bng_n":166979,"long":-0.53855,"lat":51.392731,"GlobalID":"f96d9415-03aa-4392-8320-3d0a9df74321"}},{"type":"Feature","id":219,"geometry":{"type":"Polygon","coordinates":[[[502587.903,175761.3982],[503611.1976,175520.3971],[507187.699,174163.695499999],[507381.3012,172142.0042],[511946.2041,170484.398700001],[512535.7012,168963.404100001],[510720.8973,168491.899],[509195.8001,166159.796599999],[508459.3017,166792.895400001],[507410.1012,165741.0964],[506056.8971,166797.604],[505497.9974,166437.097200001],[504888.1019,169173.104],[503539.1028,169738.902100001],[503652.4971,171138.8014],[502779.7986,171734.900699999],[501489.2981,174217.9],[502587.903,175761.3982]]]},"properties":{"OBJECTID":219,"lad19cd":"E07000213","lad19nm":"Spelthorne","lad19nmw":" ","bng_e":507012,"bng_n":169622,"long":-0.46254,"lat":51.41552,"GlobalID":"41638fa5-d653-4e69-8092-52997c9fe121"}},{"type":"Feature","id":220,"geometry":{"type":"Polygon","coordinates":[[[496215.7983,166832.903899999],[499361.1984,164494.0034],[499685.3035,163333.895500001],[500683.6979,163531.299000001],[501179.6961,161993.099300001],[499230.9017,160647.0046],[495819.1036,160423.1987],[496018.4033,158766.003],[494412.1994,157845.796399999],[491571.5038,158006.600400001],[490504.7,154689.4999],[488597.3041,154233.3005],[487630.4965,157435.104],[486306.9003,158462.199999999],[485406.9024,159918.6031],[488139.2992,163641.497400001],[492812.7977,165900.300899999],[496383.9975,165851.7048],[496215.7983,166832.903899999]]]},"properties":{"OBJECTID":220,"lad19cd":"E07000214","lad19nm":"Surrey Heath","lad19nmw":" ","bng_e":491362,"bng_n":160483,"long":-0.68986,"lat":51.336102,"GlobalID":"06a1a18f-56cd-4c7c-a099-77435b66180c"}},{"type":"Feature","id":221,"geometry":{"type":"Polygon","coordinates":[[[530898.1036,155850.797499999],[533165.2975,157546.5021],[533965.5962,159603.303400001],[535882.004,159951.9036],[536768.3975,161784.499],[539596.2968,160796.301899999],[540596.2001,156667.2038],[541795.6998,158451.2031],[542502.9034,156818.600500001],[543747.7015,151857.400599999],[542130.8038,148091.0987],[543562.501,144379.201199999],[543499.5994,140151.701300001],[541923.4983,139796.503],[530379.5965,139748.296800001],[530654.998,141616.1021],[530127.0997,141732.198899999],[531004.0032,142310.0035],[529839.8006,144672.0974],[530302.802,147522.501399999],[529632.6022,147359.3981],[528916.296,149561.897700001],[529507.4999,151875.0955],[530794.1994,153063.895199999],[530898.1036,155850.797499999]]]},"properties":{"OBJECTID":221,"lad19cd":"E07000215","lad19nm":"Tandridge","lad19nmw":" ","bng_e":536365,"bng_n":150325,"long":-0.04805,"lat":51.235809,"GlobalID":"54e2d754-2717-49dd-b559-61ee99d86cb7"}},{"type":"Feature","id":222,"geometry":{"type":"Polygon","coordinates":[[[483524.1015,150221.898800001],[483745.1021,149555.1996],[485530.298,149909.098300001],[487684.5016,148666.304],[487528.9008,146463.4046],[488711.1024,144953.696799999],[490460.3004,145628.103700001],[491766.3016,144094.3028],[493479.9963,145407.9967],[494597.9029,142713.198100001],[495766.5991,143657.197899999],[495497.2,145652.296800001],[496907.4022,146340.0999],[498428.2038,145793.7963],[498970.704,145327.5997],[498369.301,144499.296800001],[499519.1985,144171.500700001],[499746.5973,145310.9045],[501016.7984,145440.6974],[502600.0975,147050.5965],[504491.498,146151.004000001],[504560.5009,143769.8956],[507954.5968,142877.5011],[508853.3992,143857.7005],[510650.0969,142737.901000001],[510767.8034,135177.895099999],[505687.0978,133878.696900001],[504773.2977,133167.9004],[502688.4021,133717.5031],[502417.1973,132426.8025],[499719.2979,132888.9003],[498084.8959,132084.000700001],[496088.1977,133080.195499999],[491403.7992,131048.3971],[487401.3003,132643.7005],[486959.8497,134505.3005],[487664.3012,134515.8046],[487909.699,135514.6986],[486237.6995,136037.499],[484135.7036,139938.702299999],[481640.0968,139348.4013],[482192.9034,143114.0034],[480501.5033,146352.896199999],[483524.1015,150221.898800001]]]},"properties":{"OBJECTID":222,"lad19cd":"E07000216","lad19nm":"Waverley","lad19nmw":" ","bng_e":496363,"bng_n":140635,"long":-0.62343,"lat":51.15686,"GlobalID":"1596c778-4068-4e48-8141-f11b790f16f1"}},{"type":"Feature","id":223,"geometry":{"type":"Polygon","coordinates":[[[505869.8991,162236.899499999],[507108.9998,161290.100500001],[507224.9996,160107.099099999],[505370.9987,160061.702099999],[506342.2009,158575.6975],[504595.6991,157449.899800001],[503922.2013,158165.604900001],[502597.4014,156407.598099999],[501863.5002,156772.703600001],[501274.201,154946.396400001],[502346.1001,153749.399],[501652.5998,152822.804300001],[497675.1988,155038.100099999],[496467.8993,154636.695],[494351.1035,157005.097100001],[494412.1994,157845.796399999],[496018.4033,158766.003],[495819.1036,160423.1987],[499230.9017,160647.0046],[501179.6961,161993.099300001],[503493.1036,161020.0978],[505869.8991,162236.899499999]]]},"properties":{"OBJECTID":223,"lad19cd":"E07000217","lad19nm":"Woking","lad19nmw":" ","bng_e":499087,"bng_n":157542,"long":-0.57982,"lat":51.308369,"GlobalID":"89023ae7-57d9-40a8-b78d-9ed7865617b6"}},{"type":"Feature","id":224,"geometry":{"type":"Polygon","coordinates":[[[427835.1037,310029.304400001],[430408.8984,307841.400699999],[430915.4997,305302.997300001],[429105.7995,304253.297800001],[430263.5647,301978.7247],[429849.3968,299906.502],[432135.1999,298428.2952],[432434.6028,297080.1011],[436711.7035,294995.4978],[434913.0022,293736.3982],[430213.103,292764.496400001],[430405.3036,290704.896],[433081.1969,287324.2037],[433050.4016,286590.603700001],[430991.2966,286175.602499999],[431999.5026,285932.702],[431362.5964,285303.902000001],[429915.1017,284229.6995],[427962.597,284962.399700001],[427584.1982,284293.701099999],[425611.6003,285130.601600001],[424471.498,282878.396299999],[423051.0966,282977.8978],[422763.4017,281994.599300001],[422044.4983,282089.801999999],[416823.7009,290591.0985],[416801.1012,291508.296],[418491.3964,291886.897600001],[417117.7033,292645.000600001],[416639.803,295308.598200001],[415400.4962,296333.004899999],[416122.4007,297041.801999999],[414453.9961,298914.695900001],[417545.8033,299643.5973],[418435.701,298935.799900001],[420393.499,299274.902799999],[422747.1012,299434.1972],[424221.9035,300676.3017],[424293.0007,304857.7048],[424934.5984,305143.6029],[424113.3985,306700.7972],[427835.1037,310029.304400001]]]},"properties":{"OBJECTID":224,"lad19cd":"E07000218","lad19nm":"North Warwickshire","lad19nmw":" ","bng_e":425570,"bng_n":296399,"long":-1.6242,"lat":52.564838,"GlobalID":"632f4b7d-b5f2-4d98-a0b8-0331339f1bb0"}},{"type":"Feature","id":225,"geometry":{"type":"Polygon","coordinates":[[[436711.7035,294995.4978],[439618.9038,293111.9969],[438853.3004,291074.100299999],[440444.3993,290746.903899999],[440507.5977,286658.5042],[440150.8999,285564.1975],[438300.9967,285714.204500001],[436855.9013,284269.3981],[434615.6028,284634.4036],[433735.2034,283683.2959],[431362.5964,285303.902000001],[431999.5026,285932.702],[430991.2966,286175.602499999],[433050.4016,286590.603700001],[433081.1969,287324.2037],[430405.3036,290704.896],[430213.103,292764.496400001],[434913.0022,293736.3982],[436711.7035,294995.4978]]]},"properties":{"OBJECTID":225,"lad19cd":"E07000219","lad19nm":"Nuneaton and Bedworth","lad19nmw":" ","bng_e":435419,"bng_n":289352,"long":-1.47965,"lat":52.500938,"GlobalID":"b77d75b0-3d81-4631-99e0-9a8c7b87860a"}},{"type":"Feature","id":226,"geometry":{"type":"Polygon","coordinates":[[[439618.9038,293111.9969],[445911.4025,289449.7952],[447218.896,288611.495200001],[454421.0971,277932.702],[456285.0003,273454.7038],[452318.1035,272323.797499999],[450161.2038,270281.801999999],[454001.5966,268858.6994],[452357.3995,266073.796499999],[453617.5004,263423.0953],[452454.5016,261951.296599999],[450643.3008,262293.398700001],[448691.2001,264178.4991],[447261.0036,262367.897299999],[441750.4994,267144.300100001],[439684.7983,267449.502699999],[440518.7038,269165.7015],[438533.796,270183.800100001],[437996.6962,272083.896199999],[437140.2982,272215.498500001],[437689.5018,272987.1976],[436537.4029,273468],[436586.1972,275157.996200001],[438786.301,277800.199899999],[438322.203,279285.8046],[439262.0988,281820.698999999],[436855.9013,284269.3981],[438300.9967,285714.204500001],[440150.8999,285564.1975],[440507.5977,286658.5042],[440444.3993,290746.903899999],[438853.3004,291074.100299999],[439618.9038,293111.9969]]]},"properties":{"OBJECTID":226,"lad19cd":"E07000220","lad19nm":"Rugby","lad19nmw":" ","bng_e":446498,"bng_n":276244,"long":-1.31828,"lat":52.382278,"GlobalID":"62e2b9ca-66e5-4648-b599-afce9f8396d8"}},{"type":"Feature","id":227,"geometry":{"type":"Polygon","coordinates":[[[408809.5015,274400.403100001],[413183.3003,274299.801899999],[415371.9023,272232.2037],[416346.0975,267790.6951],[418249.8986,266185.604499999],[418934.1974,266738.0964],[421551.7982,265007.0019],[422768.3982,265312.4045],[422172.7997,263558.4965],[422675.0971,262253.300100001],[424263.9039,262290.8994],[425948.7986,260758.8979],[425707.9026,260092.5986],[426936.4003,260037.6044],[425649.6018,258739.9958],[425975.8012,257353.7026],[427280.9036,258634.2961],[429173.7965,257637.2015],[430143.0035,259361.597899999],[432323.6984,258652.7008],[433281.4035,260514.897700001],[434241.3018,260049.1011],[435746.7015,262746.198999999],[438633.8004,263996.701099999],[437711.2028,266357.1954],[439329.9968,266393.1951],[439684.7983,267449.502699999],[441750.4994,267144.300100001],[447261.0036,262367.897299999],[448691.2001,264178.4991],[450643.3008,262293.398700001],[452454.5016,261951.296599999],[450161.2038,259923.497],[448945.1975,260282.304300001],[451029.7963,255888.502],[449232.1008,255098.7981],[447050.4,254912.4014],[445790.299,252455.4047],[444673.8023,248735.2996],[443479.2991,248829.602600001],[441636.6021,246910.402000001],[443175.7984,246764.603700001],[444086.8034,244967.998],[442201.0013,244154.7008],[439408.3991,246812.899900001],[437522.8031,246215.400900001],[437965.2001,244507.5998],[435899.4001,244906.695499999],[435185.7983,244079.202400001],[432857.3023,233261.5989],[430499.1983,232669.8983],[431025.2003,231472.101199999],[430075.3033,231041.5044],[427550.3028,231016.001700001],[428149.7022,230297.2974],[426736.004,228615.9987],[423049.2002,232166.4024],[423015.6016,233215.0023],[426333.7028,237293.2049],[425858.2019,237907.3991],[423156.3036,237037.1982],[421086.4964,237945.7981],[421447.2014,239315.9959],[420311.8977,240186.9965],[420539.7005,241645.2991],[419773.2973,240949.8982],[418555.8975,241703.202500001],[418689.5005,244675.8016],[417496.2011,243875.1008],[416007.5965,246053.7972],[416690.403,246443.4956],[414078.4995,247355.5046],[414758.9974,248230.7041],[413206.6998,249080.300899999],[412195.8965,248689.2028],[412184.4029,249750.598999999],[411065.6965,250503.103599999],[410075.7038,248922.3961],[409200.9028,250532.0953],[407637.4001,250886.004000001],[407333.7015,249999.9976],[407957.3992,249845.401900001],[406703.3996,248352.8991],[405440.7015,250526.4969],[403906.8975,250783.903200001],[404508.9024,252366.5002],[402804.3019,252266.798699999],[404087.0026,253239.2004],[404495.1991,256210.999700001],[405735.0996,257776.4016],[404560.3021,261538.504699999],[404367.4996,264222.896299999],[405829.3984,264099.9016],[407839.9977,265392.7015],[408213.8041,268096.297599999],[409056.103,268504.400800001],[409307.0992,270563.101500001],[407657.1965,273674.900699999],[408809.5015,274400.403100001]]]},"properties":{"OBJECTID":227,"lad19cd":"E07000221","lad19nm":"Stratford-on-Avon","lad19nmw":" ","bng_e":425019,"bng_n":251536,"long":-1.63565,"lat":52.161541,"GlobalID":"6d5a75c8-a1b8-4a94-b546-3f78cf68781a"}},{"type":"Feature","id":228,"geometry":{"type":"Polygon","coordinates":[[[427245.7962,276881.2029],[429526.0008,276381.396],[430574.4015,274074.396400001],[432453.5004,275811.4991],[433192.2002,274666.297],[433826.501,275643.397299999],[436586.1972,275157.996200001],[436537.4029,273468],[437689.5018,272987.1976],[437140.2982,272215.498500001],[437996.6962,272083.896199999],[438533.796,270183.800100001],[440518.7038,269165.7015],[439684.7983,267449.502699999],[439329.9968,266393.1951],[437711.2028,266357.1954],[438633.8004,263996.701099999],[435746.7015,262746.198999999],[434241.3018,260049.1011],[433281.4035,260514.897700001],[432323.6984,258652.7008],[430143.0035,259361.597899999],[429173.7965,257637.2015],[427280.9036,258634.2961],[425975.8012,257353.7026],[425649.6018,258739.9958],[426936.4003,260037.6044],[425707.9026,260092.5986],[425948.7986,260758.8979],[424263.9039,262290.8994],[422675.0971,262253.300100001],[422172.7997,263558.4965],[422768.3982,265312.4045],[421551.7982,265007.0019],[418934.1974,266738.0964],[418249.8986,266185.604499999],[416346.0975,267790.6951],[415371.9023,272232.2037],[415129.8026,274075.2961],[417384.497,273014.299799999],[418140.7999,274719.8016],[419126.9999,274982.0966],[419265.3026,273110.5023],[420947.0972,272591.800799999],[421584.0034,273948.9023],[423186.9999,274232.101199999],[424040.8997,273243.204299999],[425800.0989,274300.001800001],[427245.7962,276881.2029]]]},"properties":{"OBJECTID":228,"lad19cd":"E07000222","lad19nm":"Warwick","lad19nmw":" ","bng_e":428484,"bng_n":267113,"long":-1.58369,"lat":52.301418,"GlobalID":"63d2a82f-1f35-436f-b4c4-494c83f465f7"}},{"type":"Feature","id":229,"geometry":{"type":"Polygon","coordinates":[[[519861.8057,108610.204500001],[522790.9989,108429.1018],[522856.5966,109455.9979],[523604.0031,108612.2994],[525737.5455,104633.1073],[523234.1858,104859.3993],[523487.5,104268.4],[521384.645,104437.343],[517551.1522,103311.773700001],[515707.9967,104740.5976],[514993.0015,108050.3002],[515159.5022,109610.8035],[516652.5014,108354.403200001],[519692.9955,108779.397700001],[519861.8057,108610.204500001]]]},"properties":{"OBJECTID":229,"lad19cd":"E07000223","lad19nm":"Adur","lad19nmw":" ","bng_e":518076,"bng_n":106472,"long":-0.32417,"lat":50.845718,"GlobalID":"a15a4dbc-7eaa-4678-805a-013d8ef87a9d"}},{"type":"Feature","id":230,"geometry":{"type":"Polygon","coordinates":[[[500786.5909,112414.767999999],[501826.7976,112329.8123],[502400.3099,111793.5847],[501294.49,110793.67],[502534.2761,110116.844900001],[502676.8562,110137.8946],[503870.3976,110314.1022],[505581.8991,112228.404300001],[506093.299,110612.4968],[506784.4,112165.5023],[507256.3968,110613.296599999],[508079.5013,110509.6962],[508996.5994,111807.704700001],[509848.7017,109829.900800001],[510478.3028,111561.495200001],[511814.1017,110876.5012],[511730.8018,110099.2037],[513135.7025,111663.096100001],[514044.399,110817.4981],[515174.5,111163.4991],[515159.5022,109610.8035],[514993.0015,108050.3002],[513992.1995,108321.602600001],[512069.2039,107066.7018],[511099.0982,107932.7039],[511180.3038,105758.6962],[509513.103,105631.9025],[510306.7668,101564.396],[502842.06,101090.300000001],[491599.31,98344.5399999991],[487959.1034,96224.5953000002],[488038.0828,96403.0465999991],[488119.6111,96494.1089999992],[488166.805,96546.8217999991],[488182.9827,96564.8912000004],[488197.0643,96580.6088999994],[488213.4763,96597.3563000001],[488224.5318,96635.7387000006],[487316.1739,97762.2914000005],[488248.101,98789.7010999992],[487843.3015,99752.5954],[489274.3968,100114.7018],[489242.0019,101862.601399999],[490351.5975,101415.0995],[492394.7978,102292.5984],[492171.9009,106386.896400001],[492912.5959,107915.698799999],[495072.3979,108366.899599999],[494669.099,112662.899900001],[495084.4027,112040.098200001],[497310.0993,112698.6996],[500786.5909,112414.767999999]]]},"properties":{"OBJECTID":230,"lad19cd":"E07000224","lad19nm":"Arun","lad19nmw":" ","bng_e":495144,"bng_n":105723,"long":-0.64999,"lat":50.843208,"GlobalID":"63228158-df95-46a4-907a-cb5747f21d7c"}},{"type":"Feature","id":231,"geometry":{"type":"Polygon","coordinates":[[[501903.658,112990.4122],[501646.29,112725.32],[501826.7976,112329.8123],[500786.5909,112414.767999999],[497310.0993,112698.6996],[495084.4027,112040.098200001],[494669.099,112662.899900001],[495072.3979,108366.899599999],[492912.5959,107915.698799999],[492171.9009,106386.896400001],[492394.7978,102292.5984],[490351.5975,101415.0995],[489242.0019,101862.601399999],[489274.3968,100114.7018],[487843.3015,99752.5954],[488248.101,98789.7010999992],[487316.1739,97762.2914000005],[485661.17,96288.3800000008],[486712.946,96712.3159999996],[487447.219,95352.1919999998],[488190.2891,96040.6591999996],[488268.9205,95978.2896999996],[485571.255,92124.5590000004],[483454.677,93913.3719999995],[483101.578,94455.9619999994],[477174.625,97763.9289999995],[476566.487,98462.0010000002],[476550.423,99386.3269999996],[477068.707,99176.3320000004],[476785.9506,98774.1543000005],[476878.1131,98534.6096000001],[477280.417,98628.3460000008],[479185.984,101512.017999999],[481521.04,100607.43],[482859.076,101196.075999999],[484060.99,104121.550000001],[483629.12,104493.869999999],[483238.809,102588.289000001],[481642.612,101203.196],[479792.255,102204.957],[481006.308,103752.841],[480298.72,103782.119999999],[480476.8,105082.800000001],[479665.301,105113.797],[480008.876,103684.591],[479229.897,101925.721000001],[478135.351,102684.1],[477971.251,104868.226],[476627.29,105055.363],[477058.852,100454.709000001],[474586.07,102292.92],[475251.7987,105713.4991],[475647.001,107725.903100001],[474776.001,108784.300100001],[473414.5023,110645.497400001],[474590.0006,113712.399499999],[475721.0004,114412.199200001],[474419.3031,116472.6994],[475135.9968,116781.800899999],[476740.7001,122217.504899999],[477745.3031,123178.1],[477457.402,125316.797800001],[480516.6,127903.1974],[481176.5017,130365.4026],[484341.5004,130045.6042],[485501.902,131824.295],[487401.3003,132643.7005],[491403.7992,131048.3971],[496088.1977,133080.195499999],[498084.8959,132084.000700001],[499719.2979,132888.9003],[502417.1973,132426.8025],[502688.4021,133717.5031],[504773.2977,133167.9004],[505687.0978,133878.696900001],[506712.0991,130783.502900001],[506333.4034,129701.002800001],[506929.2987,129665.1031],[506383.5994,127942.1962],[507152.5008,127163.599099999],[506995.5973,125726.1006],[506293.3984,124504.500299999],[504587.0995,124222.501],[504114.7977,123175.1008],[504859.3019,122291.2038],[503884.3977,122253.704600001],[503756.6982,121354.502],[503011.9445,118220.6007],[503179.0314,118104.1842],[502803.297,117547.3018],[502159.2011,118234.0952],[501278.4966,117881.1962],[500649.0027,116861.597999999],[502347.3923,114443.7436],[502524.6083,114313.692500001],[502929.8,114016.34],[502561.6988,113668.202299999],[501903.658,112990.4122]]]},"properties":{"OBJECTID":231,"lad19cd":"E07000225","lad19nm":"Chichester","lad19nmw":" ","bng_e":490285,"bng_n":116600,"long":-0.7163,"lat":50.941769,"GlobalID":"3fd81653-0fc4-45fb-8a9f-f02cafbf3eea"}},{"type":"Feature","id":232,"geometry":{"type":"Polygon","coordinates":[[[522200.8009,139201.803200001],[522148.6014,139766.9015],[524999.9992,140316.304199999],[525127.5008,141097.3006],[527574.099,142425.2005],[530127.0997,141732.198899999],[530654.998,141616.1021],[530379.5965,139748.296800001],[529957.8039,135340.498500001],[527988.1,133809.296800001],[525325.1019,133439.3027],[524772.3036,134870.303099999],[523859.699,134601.899900001],[523519.3016,135938.8972],[526001.8978,139298.095699999],[522200.8009,139201.803200001]]]},"properties":{"OBJECTID":232,"lad19cd":"E07000226","lad19nm":"Crawley","lad19nmw":" ","bng_e":526390,"bng_n":137581,"long":-0.19533,"lat":51.123569,"GlobalID":"b2d4e812-7e52-442b-a14e-3d9e33a119db"}},{"type":"Feature","id":233,"geometry":{"type":"Polygon","coordinates":[[[525325.1019,133439.3027],[525400.6019,130999.901000001],[524649.9963,130488.5973],[524410.502,128408.602700001],[524953.0023,128015.995100001],[523017.2021,127478.399],[522889.5026,126523.002499999],[523771.6005,126114.1995],[523188.3036,125126.5022],[524123.9037,124983.7031],[523657.0024,118504.897600001],[524835.9967,117446.2007],[524328.9996,116640.701300001],[524966.5984,113982.4022],[523546.2959,113456.602700001],[523320.002,109635.996300001],[523996.6,109075.196900001],[523604.0031,108612.2994],[522856.5966,109455.9979],[522790.9989,108429.1018],[519861.8057,108610.204500001],[519692.9955,108779.397700001],[516652.5014,108354.403200001],[515159.5022,109610.8035],[515174.5,111163.4991],[514044.399,110817.4981],[513135.7025,111663.096100001],[511730.8018,110099.2037],[511814.1017,110876.5012],[510478.3028,111561.495200001],[509848.7017,109829.900800001],[508996.5994,111807.704700001],[508079.5013,110509.6962],[507256.3968,110613.296599999],[506784.4,112165.5023],[506093.299,110612.4968],[505581.8991,112228.404300001],[503870.3976,110314.1022],[502676.8562,110137.8946],[502534.2761,110116.844900001],[501294.49,110793.67],[502400.3099,111793.5847],[501826.7976,112329.8123],[501646.29,112725.32],[501903.658,112990.4122],[502561.6988,113668.202299999],[502929.8,114016.34],[502524.6083,114313.692500001],[502347.3923,114443.7436],[500649.0027,116861.597999999],[501278.4966,117881.1962],[502159.2011,118234.0952],[502803.297,117547.3018],[503179.0314,118104.1842],[503011.9445,118220.6007],[503756.6982,121354.502],[503884.3977,122253.704600001],[504859.3019,122291.2038],[504114.7977,123175.1008],[504587.0995,124222.501],[506293.3984,124504.500299999],[506995.5973,125726.1006],[507152.5008,127163.599099999],[506383.5994,127942.1962],[506929.2987,129665.1031],[506333.4034,129701.002800001],[506712.0991,130783.502900001],[505687.0978,133878.696900001],[510767.8034,135177.895099999],[512678.0027,136477.1032],[519038.3005,137535.100299999],[522200.8009,139201.803200001],[526001.8978,139298.095699999],[523519.3016,135938.8972],[523859.699,134601.899900001],[524772.3036,134870.303099999],[525325.1019,133439.3027]]]},"properties":{"OBJECTID":233,"lad19cd":"E07000227","lad19nm":"Horsham","lad19nmw":" ","bng_e":513674,"bng_n":123840,"long":-0.38126,"lat":51.00272,"GlobalID":"9edad594-575a-4b95-9257-3799280c77fd"}},{"type":"Feature","id":234,"geometry":{"type":"Polygon","coordinates":[[[530379.5965,139748.296800001],[541923.4983,139796.503],[542046.696,137337.197000001],[543216.901,136582.2031],[541422.6026,135746.102399999],[540763.8964,136486.600400001],[540856.6039,135575.601199999],[537614.1017,134514.095100001],[538324.1993,132494.903000001],[539279.9998,132393.1022],[539662.4964,130455.096899999],[541221.7034,130559.1971],[540077.998,129476.697000001],[540214.2971,128166.302100001],[538815.2999,127100.0973],[539273.0986,124441.998199999],[538765.2029,121925.998400001],[536173.5988,121678.699200001],[535290.8001,123130.4036],[532416.1018,121320.6017],[533276.004,118049.098099999],[532195.0023,117561.297700001],[531277.7969,111339.898600001],[528964.8017,110627.102600001],[528898.6021,111918.302999999],[527938.3988,111444.6986],[527618.6965,109239],[524849.9968,110241.0032],[523996.6,109075.196900001],[523320.002,109635.996300001],[523546.2959,113456.602700001],[524966.5984,113982.4022],[524328.9996,116640.701300001],[524835.9967,117446.2007],[523657.0024,118504.897600001],[524123.9037,124983.7031],[523188.3036,125126.5022],[523771.6005,126114.1995],[522889.5026,126523.002499999],[523017.2021,127478.399],[524953.0023,128015.995100001],[524410.502,128408.602700001],[524649.9963,130488.5973],[525400.6019,130999.901000001],[525325.1019,133439.3027],[527988.1,133809.296800001],[529957.8039,135340.498500001],[530379.5965,139748.296800001]]]},"properties":{"OBJECTID":234,"lad19cd":"E07000228","lad19nm":"Mid Sussex","lad19nmw":" ","bng_e":533054,"bng_n":130623,"long":-0.10272,"lat":51.059528,"GlobalID":"c54b7444-e4bd-4733-928a-9c229b79f756"}},{"type":"Feature","id":235,"geometry":{"type":"Polygon","coordinates":[[[510306.7668,101564.396],[509513.103,105631.9025],[511180.3038,105758.6962],[511099.0982,107932.7039],[512069.2039,107066.7018],[513992.1995,108321.602600001],[514993.0015,108050.3002],[515707.9967,104740.5976],[517551.1522,103311.773700001],[510306.7668,101564.396]]]},"properties":{"OBJECTID":235,"lad19cd":"E07000229","lad19nm":"Worthing","lad19nmw":" ","bng_e":512679,"bng_n":104948,"long":-0.40127,"lat":50.833099,"GlobalID":"27424092-2917-4b5d-b6e8-164facaa620f"}},{"type":"Feature","id":236,"geometry":{"type":"Polygon","coordinates":[[[388887.9992,281369.3982],[390847.001,280927.504699999],[393397.1984,283038.500399999],[394329.6983,281581.6974],[395470.0975,281913.9024],[395848.9993,281049.899700001],[396304.7038,282592.898],[397521.6006,282620.100199999],[397581.501,281061.496300001],[398941.4001,281632.402899999],[401046.1993,279857.401000001],[397807.696,278256.3993],[400199.3986,275898.804199999],[403252.9982,277260.4044],[404566.8981,276579.099400001],[405969.0037,278830.604900001],[408077.7029,277982.4977],[409025.9014,278531.9004],[410608.6975,277983.7973],[408809.5015,274400.403100001],[407657.1965,273674.900699999],[409307.0992,270563.101500001],[409056.103,268504.400800001],[408213.8041,268096.297599999],[407466.6037,269262.2039],[403159.4992,269211.398399999],[401323.2993,267797.6031],[401177.403,265994.9991],[399958.7994,265554.2952],[399928.5978,264602.4977],[393842.2998,265605.2007],[394290.7981,268378.596799999],[391639.5987,268494.003799999],[392377.9027,271013.2026],[391140.6983,272118.496300001],[391396.7982,272691.802100001],[390753.197,272441.8037],[391977.704,273319.4025],[390726.3016,277327.1953],[391507.4964,278371.896199999],[390979.1034,279151.1032],[389330.8002,279041.4046],[388692.2038,280655.3026],[388887.9992,281369.3982]]]},"properties":{"OBJECTID":236,"lad19cd":"E07000234","lad19nm":"Bromsgrove","lad19nmw":" ","bng_e":399840,"bng_n":273736,"long":-2.00376,"lat":52.361691,"GlobalID":"f27c925e-2365-4b01-be28-ab288c888fa8"}},{"type":"Feature","id":237,"geometry":{"type":"Polygon","coordinates":[[[371845.5981,274546.9011],[371409.5993,270634.601],[370507.4989,269482.6008],[374889.8973,269920.295499999],[375331.7996,268587.7969],[377328.4978,269031.199999999],[378912.8027,271429.703400001],[379706.2002,269403.003599999],[381431.603,270127.1963],[381938.7979,269532.796399999],[381327.0968,263824.3004],[382906.496,263205.797499999],[384269.3963,261326.995300001],[383478.1013,258209.397700001],[384047.2002,257050.999299999],[383098.004,256975.5009],[382190.9978,253775.696799999],[382825.4965,253944.998400001],[383191.099,252393.8024],[384521.9012,251735.001],[386186.7028,252134.9965],[387124.1003,249763.5953],[388810.2978,249404.597999999],[386650.2979,247408.499399999],[389907.6,244999.9988],[389247.8961,242919.104499999],[389817.3001,241905.3047],[389255.3002,240327.1964],[388070.9961,240043.4976],[388343.0996,238810.7005],[387703.8023,238162.0962],[387957.4039,236029.396600001],[387216.8985,235644.2969],[388793.0986,233089.2982],[387687.4029,233478.096899999],[387387.2002,232471.805],[384949.2016,233027.595899999],[382827.096,229816.595000001],[381509.2962,230085.3981],[379455.7977,229852.8047],[378623.2032,230938.503900001],[377666.8009,230863.295399999],[377806.2001,233952.101299999],[375900.9974,235069.701300001],[375985.097,235939.5024],[376941.1036,243556.901900001],[375976.5963,245074.297599999],[376049.9032,249649.697899999],[374145.5002,250825.801200001],[371684.9019,249741.3017],[370333.0004,252304.8978],[371240.4024,252773.2038],[372224.302,256135.201400001],[373263.897,256781.6964],[372505.4998,258213.5965],[373839.4023,258627.2981],[371206.1029,259979.601],[368350.0962,259675.9979],[367682.8976,260457.304199999],[368144.2995,262087.0977],[370891.2982,263690.998600001],[369304.0992,265310.494999999],[365770.802,264484.701400001],[366264.3019,262200.0954],[364197.8999,261230.8028],[363802.4998,261809.8971],[360898.5975,261771.3981],[357148.2985,260427.9026],[357214.3002,262740.1008],[359305.5033,264997.5046],[356448.6968,265551.1961],[354875.1021,267517.103399999],[357958.1036,267827.5045],[360911.6989,268984.4034],[361738.2992,268261.600299999],[361786.302,270705.300799999],[363367.3996,271920.302999999],[365202.6018,271125.1006],[365123.103,270247.301899999],[367264.8977,270439.8967],[366838.1004,273148.001599999],[367769.9984,274448.599300001],[371845.5981,274546.9011]]]},"properties":{"OBJECTID":237,"lad19cd":"E07000235","lad19nm":"Malvern Hills","lad19nmw":" ","bng_e":377465,"bng_n":252197,"long":-2.33089,"lat":52.16758,"GlobalID":"60c18eb9-c785-42f8-84a1-2d1bd65a61b6"}},{"type":"Feature","id":238,"geometry":{"type":"Polygon","coordinates":[[[399928.5978,264602.4977],[399958.7994,265554.2952],[401177.403,265994.9991],[401323.2993,267797.6031],[403159.4992,269211.398399999],[407466.6037,269262.2039],[408213.8041,268096.297599999],[407839.9977,265392.7015],[405829.3984,264099.9016],[404367.4996,264222.896299999],[404560.3021,261538.504699999],[402310.0023,259869.4025],[398953.2977,259896.8047],[399036.6965,263537.002699999],[399928.5978,264602.4977]]]},"properties":{"OBJECTID":238,"lad19cd":"E07000236","lad19nm":"Redditch","lad19nmw":" ","bng_e":403705,"bng_n":265253,"long":-1.9471,"lat":52.285412,"GlobalID":"ac4e0948-63de-4b58-9a29-d1897aa74a1b"}},{"type":"Feature","id":239,"geometry":{"type":"Polygon","coordinates":[[[383478.1013,258209.397700001],[384963.3996,259267.005000001],[389341.5023,257224.299699999],[388394.9034,254047.199100001],[386186.7028,252134.9965],[384521.9012,251735.001],[383191.099,252393.8024],[382825.4965,253944.998400001],[382190.9978,253775.696799999],[383098.004,256975.5009],[384047.2002,257050.999299999],[383478.1013,258209.397700001]]]},"properties":{"OBJECTID":239,"lad19cd":"E07000237","lad19nm":"Worcester","lad19nmw":" ","bng_e":385725,"bng_n":255196,"long":-2.21025,"lat":52.19482,"GlobalID":"140efc40-3355-4567-a3e0-03479b0c386e"}},{"type":"Feature","id":240,"geometry":{"type":"Polygon","coordinates":[[[381938.7979,269532.796399999],[382352.7989,270054.1972],[381577.2025,270538.1986],[383099.1995,271983.205],[383365.9025,273691.296],[385761.4968,273032.604599999],[387116.8034,270109.3014],[388452.0993,270406.896199999],[388193.3034,268740.5032],[390753.197,272441.8037],[391396.7982,272691.802100001],[391140.6983,272118.496300001],[392377.9027,271013.2026],[391639.5987,268494.003799999],[394290.7981,268378.596799999],[393842.2998,265605.2007],[399928.5978,264602.4977],[399036.6965,263537.002699999],[398953.2977,259896.8047],[402310.0023,259869.4025],[404560.3021,261538.504699999],[405735.0996,257776.4016],[404495.1991,256210.999700001],[404087.0026,253239.2004],[402804.3019,252266.798699999],[404508.9024,252366.5002],[403906.8975,250783.903200001],[405440.7015,250526.4969],[406703.3996,248352.8991],[407957.3992,249845.401900001],[407333.7015,249999.9976],[407637.4001,250886.004000001],[409200.9028,250532.0953],[410075.7038,248922.3961],[411065.6965,250503.103599999],[412184.4029,249750.598999999],[412195.8965,248689.2028],[413206.6998,249080.300899999],[414758.9974,248230.7041],[414078.4995,247355.5046],[416690.403,246443.4956],[416007.5965,246053.7972],[413640.2003,244305.997500001],[412929.6987,242280.0974],[412502.4973,243019.795700001],[411628.0014,241612.398499999],[410607.502,242349.997400001],[408705.1025,241297.4987],[409459.5998,239455.4959],[411441.0034,238382.403100001],[412100.5011,236960.3002],[411144.0988,234271.999700001],[406032.499,238454.102600001],[404780,236839.8047],[403430.8029,237702.4977],[401184.502,237496.196799999],[397463.2998,234017.8025],[396697.3006,233928.797900001],[395924.6972,235140.0012],[394270.9028,234674.304500001],[392396.2975,235218.0989],[390437.6997,233455.203500001],[389824.6959,234767.9977],[390532.3035,236616.898499999],[392054.9025,237250.697000001],[391976.5991,238195.5966],[388343.0996,238810.7005],[388070.9961,240043.4976],[389255.3002,240327.1964],[389817.3001,241905.3047],[389247.8961,242919.104499999],[389907.6,244999.9988],[386650.2979,247408.499399999],[388810.2978,249404.597999999],[387124.1003,249763.5953],[386186.7028,252134.9965],[388394.9034,254047.199100001],[389341.5023,257224.299699999],[384963.3996,259267.005000001],[383478.1013,258209.397700001],[384269.3963,261326.995300001],[382906.496,263205.797499999],[381327.0968,263824.3004],[381938.7979,269532.796399999]]]},"properties":{"OBJECTID":240,"lad19cd":"E07000238","lad19nm":"Wychavon","lad19nmw":" ","bng_e":398991,"bng_n":247839,"long":-2.01614,"lat":52.12886,"GlobalID":"145bac73-10fd-4270-bb63-d0a758d98353"}},{"type":"Feature","id":241,"geometry":{"type":"Polygon","coordinates":[[[380567.9988,284188.9011],[380049.9039,283482.5033],[381775.9002,282326.5042],[388692.2038,280655.3026],[389330.8002,279041.4046],[390979.1034,279151.1032],[391507.4964,278371.896199999],[390726.3016,277327.1953],[391977.704,273319.4025],[390753.197,272441.8037],[388193.3034,268740.5032],[388452.0993,270406.896199999],[387116.8034,270109.3014],[385761.4968,273032.604599999],[383365.9025,273691.296],[383099.1995,271983.205],[381577.2025,270538.1986],[382352.7989,270054.1972],[381938.7979,269532.796399999],[381431.603,270127.1963],[379706.2002,269403.003599999],[378912.8027,271429.703400001],[377328.4978,269031.199999999],[375331.7996,268587.7969],[374889.8973,269920.295499999],[370507.4989,269482.6008],[371409.5993,270634.601],[371845.5981,274546.9011],[372160.5017,276647.299900001],[373504.7023,276014.1011],[375095.8012,276732.695499999],[377259.8989,276420.104900001],[374723.0997,278280.9023],[375384.7988,282444.600400001],[378903.6013,282217.395500001],[380567.9988,284188.9011]]]},"properties":{"OBJECTID":241,"lad19cd":"E07000239","lad19nm":"Wyre Forest","lad19nmw":" ","bng_e":384106,"bng_n":276388,"long":-2.23494,"lat":52.3853,"GlobalID":"9d0e68a8-1048-49ab-98fb-a5fe9d135f08"}},{"type":"Feature","id":242,"geometry":{"type":"Polygon","coordinates":[[[514471.5014,218081.1043],[515888.2997,216672.5975],[519051.4019,216602.997400001],[521198.6962,214097.204700001],[518874.1002,212417.395500001],[519058.7978,209580.297599999],[521440.2023,206605.099199999],[521333.9976,205143.997500001],[520600.7973,204864.397500001],[519911.6999,205791.702099999],[518577.5006,205201.501],[518463.1003,203875.400599999],[519115.6969,203910.8005],[517421.6007,202400.3029],[517586.6009,201119.8994],[516052.5001,200745.5965],[515714.2959,201850.9001],[513842.7,201302.897],[513779.5016,200373.2031],[512634.4028,200012.996200001],[512390.0027,200555.101],[512375.2028,200599.2984],[511979.9016,202156.8026],[510293.3002,202737.6963],[510447.2025,203699.6009],[509044.7011,205858.403000001],[508932.2962,208654.502599999],[507657.6015,210951.1952],[509524.2998,211470.6965],[509598.8022,212484.0964],[508420.6984,213180.1971],[509405.4967,214572.398600001],[509216.0005,216423.5987],[509990.7971,216979.7995],[512188.7985,215762.398],[512849.5,217209.8037],[514471.5014,218081.1043]]]},"properties":{"OBJECTID":242,"lad19cd":"E07000240","lad19nm":"St Albans","lad19nmw":" ","bng_e":514580,"bng_n":209623,"long":-0.3407,"lat":51.77356,"GlobalID":"d0623751-21a5-4e10-be35-a70ef93183b6"}},{"type":"Feature","id":243,"geometry":{"type":"Polygon","coordinates":[[[519051.4019,216602.997400001],[520796.0981,217853.6994],[521250.2031,216648.304400001],[522407.2985,216446.6022],[522318.3013,217703.002499999],[523183.4968,218486.598200001],[523676.6998,217942.7039],[523102.2994,217172.304400001],[524168.6002,217704.1022],[523605.0997,218816.003900001],[524269.899,219401.7962],[525933.4967,219132.5033],[526383.0999,217762.795399999],[525580.8967,217409.6965],[526303.4032,216229.404300001],[525304.0028,214496.3004],[527804.804,212773.703500001],[526531.2966,212021.898700001],[528326.7989,209973.395099999],[528639.6989,205924.304099999],[531186.3015,206864.2951],[531816.8013,206666.601600001],[531388.2972,205847.2962],[530366.5033,204136.096000001],[531023.5028,200933.602700001],[527045.2031,200413.4016],[527038.3019,201719.897600001],[525623.4,202425.9955],[523075.9977,203164.6041],[521779.7999,202289.5046],[520600.7973,204864.397500001],[521333.9976,205143.997500001],[521440.2023,206605.099199999],[519058.7978,209580.297599999],[518874.1002,212417.395500001],[521198.6962,214097.204700001],[519051.4019,216602.997400001]]]},"properties":{"OBJECTID":243,"lad19cd":"E07000241","lad19nm":"Welwyn Hatfield","lad19nmw":" ","bng_e":525345,"bng_n":208467,"long":-0.18518,"lat":51.760872,"GlobalID":"2b28f241-1fb0-4d8f-a761-a51e4df4451d"}},{"type":"Feature","id":244,"geometry":{"type":"Polygon","coordinates":[[[526484.8027,226240.798599999],[527584.496,227787.4959],[529411.7994,227201.003699999],[529311.2014,228744.202],[530000.101,228730.096000001],[530181.0966,230076.7006],[532353.596,232048.396199999],[533022.1963,230472.5973],[534731.3974,231726.498299999],[534145.9981,233018.0986],[535339.6026,233536.100299999],[535772.6992,235034.2015],[537204.8993,234658.8989],[537614.7035,233513.596799999],[539829.7969,234306.899700001],[542184.2978,233751.5987],[544064.8973,233837.0042],[544829.7009,232466.996400001],[546211.3011,227141.500800001],[546332.1984,222801.802999999],[550368.9968,223913.604699999],[549793.6977,222706.700200001],[551262.0029,221111.696799999],[549553.7004,220340.997400001],[549393.9029,215943.396199999],[549849.5992,215305.898700001],[548875,214966.695800001],[548092.8982,213021.102700001],[542044.0988,211002.600500001],[539932.1016,210332.0024],[539081.2031,209217.8014],[538449.7963,210946.396600001],[536813.1022,210951.6951],[536589.8012,210168.499199999],[534794.9998,209594.603499999],[534177.6014,205782.2048],[531388.2972,205847.2962],[531816.8013,206666.601600001],[531186.3015,206864.2951],[528639.6989,205924.304099999],[528326.7989,209973.395099999],[526531.2966,212021.898700001],[527804.804,212773.703500001],[525304.0028,214496.3004],[526303.4032,216229.404300001],[525580.8967,217409.6965],[526383.0999,217762.795399999],[525933.4967,219132.5033],[526489.7003,219730.202199999],[525826.2038,221215.497099999],[527682.101,220732.895199999],[527331.9993,222373.195699999],[526653.1009,222310.603599999],[527174.9968,223883.203400001],[526484.8027,226240.798599999]]]},"properties":{"OBJECTID":244,"lad19cd":"E07000242","lad19nm":"East Hertfordshire","lad19nmw":" ","bng_e":537995,"bng_n":220370,"long":0.002739,"lat":51.864849,"GlobalID":"18509fbc-c078-4159-98a0-17e485c182a9"}},{"type":"Feature","id":245,"geometry":{"type":"Polygon","coordinates":[[[525826.2038,221215.497099999],[524544.3029,222028.5043],[523705.4009,221697.799000001],[521561.2975,224440.304],[522030.5981,227217.8989],[524909.1963,227544.6954],[526484.8027,226240.798599999],[527174.9968,223883.203400001],[526653.1009,222310.603599999],[527331.9993,222373.195699999],[527682.101,220732.895199999],[525826.2038,221215.497099999]]]},"properties":{"OBJECTID":245,"lad19cd":"E07000243","lad19nm":"Stevenage","lad19nmw":" ","bng_e":524622,"bng_n":224531,"long":-0.18987,"lat":51.905392,"GlobalID":"df94fe74-7577-4058-a783-04aba182fb7c"}},{"type":"Feature","id":246,"geometry":{"type":"Polygon","coordinates":[[[653770.03,299262.709100001],[655653.85,293738.25],[655226.25,292637.699999999],[655271.15,293192.9],[652106.8,292793.25],[655205.4,292582.15],[653888.59,290024.300000001],[653690.209,284557.137],[650573.974,274749.213],[650404.25,274791.960000001],[647943.746,270514.486],[647743.659,260663.418],[645353.1177,249420.4252],[645349.6538,249404.134],[645302.686,249183.239],[637761.68,244389.889],[642346.5033,247978.2828],[642766.607,248230.463],[644134.7064,249241.804500001],[644453.483,249627.347999999],[644492.293,249683.197000001],[644061.7184,249320.726500001],[642754.0946,248297.2914],[641166.0996,247783.971799999],[640215.0661,247160.125299999],[640049.8,247155.9],[636754.944,244040.471999999],[637564.109,244536.106000001],[637299.204,242908.687000001],[635807.8,240024.65],[633116.805,237446.142999999],[633164.016,238880.653999999],[630754.375,239534.627],[632950.94,237755.41],[632775.52,236534.27],[629892.53,233997.550000001],[628275.43,231186.85],[627940.6237,233293.762],[625594.31,234823.779999999],[625299.2,237816.789999999],[618198.9249,240671.922700001],[620303.803,240677.7961],[621230.4984,241684.198000001],[619695.5978,242497.895099999],[619884.0964,245477.302200001],[618668.8981,247254.203600001],[616917.3008,247071.695800001],[616432.7963,248081.196900001],[617642.0994,251692.903000001],[617022.9035,252841.0044],[618481.0014,253877.997500001],[619893.7019,256898.6029],[621643.6007,257409.896500001],[622534.9,259422.000600001],[622658.5017,260567.602700001],[621622.1965,260898.398],[621872.4011,263933.8991],[624495.3035,265349.8038],[625376.7994,267447.903200001],[627985.0998,268337.398600001],[627992.3967,270401.4977],[626987.9998,271918.5035],[628357.2983,271416.2973],[628220.1994,270149.199999999],[629027.0034,269293.8048],[632102.7987,270732.2031],[630865.5036,271611.001499999],[630771.3038,273451.9046],[628902.9977,274645.103],[628820.1018,276325.702],[632232.4028,279381.397299999],[629710.7993,282763.199200001],[627772.7977,283757.604599999],[628779.297,286374.5955],[631698.4032,288397.996300001],[633370.0976,288581.1039],[633359.8985,289763.795299999],[631819.0037,290318.896400001],[632254.6975,291303.704600001],[634235.9032,289810.901900001],[635464.84,290852.306],[636445.0955,291682.9769],[636474.7479,291683.269300001],[636531.7201,291690.4998],[638403.85,290661.720000001],[638452.0046,290675.502599999],[639428.25,290954.92],[639305.9342,291144.6395],[638903.61,291768.67],[639725.7147,291375.261],[641805.59,290379.960000001],[641814.5414,290396.443499999],[642070.5136,290867.7996],[642943.8029,292475.904899999],[643197.51,292943.09],[643606.4584,292752.2926],[643770.7008,292675.6643],[646925.4,291203.82],[647535.9,292323.02],[647819.6765,292190.68],[648497.06,291874.779999999],[648546.9797,291931.4768],[648862.8911,292290.2763],[649362.56,292857.779999999],[649540.8399,293461.896600001],[650000,295017.800000001],[649290.25,295868.949999999],[648104,295536.15],[647475.46,297077.23],[646255.8876,298215.748600001],[646567.9966,299072.794],[646723.0977,299498.698799999],[648750.5005,301029.1007],[651106.502,300527.1044],[652813.5017,299052.396500001],[653770.03,299262.709100001]]]},"properties":{"OBJECTID":246,"lad19cd":"E07000244","lad19nm":"East Suffolk","lad19nmw":" ","bng_e":636043,"bng_n":266272,"long":1.456186,"lat":52.243992,"GlobalID":"1d034656-bdcb-4972-a44f-0c9c498166cc"}},{"type":"Feature","id":247,"geometry":{"type":"Polygon","coordinates":[[[575584.9002,286901.004799999],[579619.5961,286947.101600001],[581236.098,288291.8967],[582473.5992,287297.3014],[584844.1038,287000.996200001],[581603.7041,282344.199200001],[583165.599,281127.7974],[586360.5024,280981.2993],[587078.6967,279677.602499999],[588311.2014,280523.2004],[591186.1965,280541.295299999],[593365.597,281881.8015],[595176.196,280789.404200001],[599493.4007,280794.602700001],[602112.2959,278815.7992],[601202.7997,277213.4978],[601557.898,275480.6039],[599900.5006,274896.0012],[599462.0035,273946.2031],[599896.3038,272349.700099999],[597847.703,270713.0985],[596668.6015,270802.0031],[597002.8975,269989.195800001],[596036.7,270706.8003],[594018.3998,269002.1983],[594993.7987,267205.8025],[594058.7016,267122.7963],[594181.3964,266211.3971],[592921.4026,266909.8972],[591129.0995,266639.604599999],[591060.0966,265135.395099999],[593129.9037,263850.203],[592463.9007,259920.097999999],[594070.7971,259028.5032],[594001.2995,257558.903899999],[592539.7965,256228.3048],[590646.1038,256952.6974],[589412.1974,256583.1032],[588832.6026,254613.696900001],[587652.9982,254771.401799999],[587358.3032,255945.095799999],[586316.3007,255363.9022],[585789.903,256922.796],[584563.4007,257102.704500001],[584220.8019,254448.0044],[581041.9021,254620.095100001],[579903.6961,251106.300899999],[582134.4964,246338.4957],[577050.501,245087.4038],[574978.2038,244230.099199999],[574389.1025,242979.0973],[572241.8,243135.102700001],[571622.1012,242448.099300001],[569128.9019,245101.899700001],[568273.8973,243925.296499999],[567206.6978,244355.303400001],[564926.6004,243518.902799999],[564153.9969,246884.8993],[563225.8009,247603.9035],[563704.8967,249263.7983],[565606.6035,251206.5022],[565445.2972,253978.798699999],[566719.3982,254042.4005],[567780.9993,255604.4034],[569086.2007,254541.4976],[570488.1002,254794.6951],[571833.3974,261707.896299999],[570450.4038,263049.4023],[569479.1026,262283.9014],[565756.9028,264487.000700001],[564928.7029,263820.101600001],[565424.3959,262927.0973],[562052.8008,261353.297800001],[560045.3016,263045.5034],[561262.7013,263873.0965],[559771.2028,265858.098300001],[560959.1017,269220.195900001],[562592.3988,268797.596899999],[565560.2003,264733.000299999],[570585.2023,266813.104900001],[570947.2017,268127.5986],[567612.5032,271524.2963],[565825.6995,271416.597200001],[565288.204,272889.3956],[566460.0003,275112.599199999],[564037.1974,276449.996400001],[561625.5995,281731.3046],[565236.7961,284823.5995],[566296.3029,286077.9004],[571601.604,286350.3024],[573680.0025,287296.9015],[575584.9002,286901.004799999]]]},"properties":{"OBJECTID":247,"lad19cd":"E07000245","lad19nm":"West Suffolk","lad19nmw":" ","bng_e":580944,"bng_n":271124,"long":0.652769,"lat":52.308418,"GlobalID":"e960e71b-8b6a-44bc-87da-ed98216d8a95"}},{"type":"Feature","id":248,"geometry":{"type":"Polygon","coordinates":[[[334660.8013,131663.700999999],[334633.6008,131970.803099999],[336204.4993,132157.0997],[337863.9993,130350.3969],[337550.2994,129478.4965],[338124.7988,127920.702400001],[333417.0998,123973.9022],[333838.2987,123079.1983],[331445.4006,122523.5973],[331245.3012,118855.397299999],[329319.997,118000.302100001],[328794.3001,116658.8961],[326510.5006,115351.100400001],[323622.9978,115960.8959],[323863.5969,114137.5978],[326101.9991,112616.903100001],[320893.998,111965.5995],[319621.9994,110837.002599999],[316583.1008,113001.2031],[318152.5976,117124.1029],[311935.096,116573.500499999],[309219.8984,118099.003799999],[306478.597,121223.399499999],[303309.4016,120694.400900001],[303266.7005,125253.3959],[300906.6012,125433.5044],[300430.3005,126674.699100001],[297691.1016,126109.6008],[296085.4007,127099.997300001],[294611.3981,126716.1972],[293468.5007,126267.795499999],[293551.6027,125033.9987],[292391.0032,123784.496400001],[287618.399,124318.4035],[286835.4975,125254.095699999],[288346.7017,129638.2008],[284692.9029,130037.296499999],[281548.0964,132615.498500001],[279619.1974,132684.998600001],[273807.3033,136703.7983],[271756.402,139279.7009],[271535.8961,143573.6018],[275217.9013,142926.9969],[279524.4039,143677.0022],[279063.1999,148486.795399999],[279956.2166,149618.222899999],[286133.73,148423.220000001],[286866.26,147632.060000001],[289873.63,149290.890000001],[292425.2,149249.5],[295647.47,148224.880000001],[297381.32,146466.039999999],[298976,146517.970000001],[302188.35,143505.66],[310810.47,143035.640000001],[319488.228,146140.728],[321479.582,146397.513],[324897.972,145222.161],[326411.598,145721.892999999],[325505.1968,144457.798699999],[324532.5022,144811.0976],[323471.099,144004.398499999],[322238.0996,141779.6953],[319158.0004,141128.9016],[317649.6984,139265.904899999],[315768.8021,138862.600299999],[314984.6967,137454.203500001],[318291.9969,134539.5978],[320138.9978,135063.697699999],[320213.698,133976.4989],[318861.6976,133034.898499999],[320384.5027,130926.502],[326770.0964,130102.3979],[328286.8001,129445.296],[327810.4994,128125.1039],[330185.9015,128745.296399999],[331238.8041,127289.403100001],[334720.3966,129092.9968],[335139.5013,129549.896],[333630.0037,130873.0973],[334660.8013,131663.700999999]]]},"properties":{"OBJECTID":248,"lad19cd":"E07000246","lad19nm":"Somerset West and Taunton","lad19nmw":" ","bng_e":304960,"bng_n":130228,"long":-3.35766,"lat":51.06348,"GlobalID":"fb9e3081-0d34-4e7b-a8fb-38d2233a31b3"}},{"type":"Feature","id":249,"geometry":{"type":"Polygon","coordinates":[[[366280.6023,414615.696900001],[368397.9011,413492.8983],[369689.696,413818.904999999],[371095.0007,416703.099400001],[372205.998,414225.298599999],[375025.3966,414992.099199999],[374998.9959,413815.9958],[376080.8963,412698.695599999],[375140.2008,410768.898],[375330.3979,408311.4015],[376513.9022,407173.6971],[376314.3965,406314.703],[375347.0035,406428.4005],[377469.9006,405524.099300001],[377681.1967,404158.100400001],[376654.497,404323.603],[376603.6992,403343.003699999],[371128.3025,405155.005000001],[370194.302,403642.298],[366573.302,404822.3002],[364710.8994,403058.2952],[362355.7966,405840.298800001],[363028.7008,407323.204299999],[361851.8008,409538.800100001],[358669.9987,410970.3004],[360670.3,412859.1997],[362419.803,411151.6985],[366280.6023,414615.696900001]]]},"properties":{"OBJECTID":249,"lad19cd":"E08000001","lad19nm":"Bolton","lad19nmw":" ","bng_e":368352,"bng_n":409873,"long":-2.47952,"lat":53.584492,"GlobalID":"f1d3b428-9d99-4d31-b33f-be872fa9c077"}},{"type":"Feature","id":250,"geometry":{"type":"Polygon","coordinates":[[[375568.5977,419017.9968],[379162.1994,417655.096899999],[380342.2985,418953.6952],[380575.4028,416025.5033],[382117.0973,413139.8993],[383878.498,411534.198999999],[381403.1987,409735.3039],[381999.6959,409224.3002],[382935.296,409883.2016],[383985.0984,408370.204600001],[384375.197,404714.801000001],[383415.9995,405357.596999999],[382317.4029,404562.5046],[382587.6017,403144.600500001],[383747.5005,403646.196900001],[383058.7987,402392.4957],[380813.0008,401741.902000001],[379515.5002,403434.6974],[377681.1967,404158.100400001],[377469.9006,405524.099300001],[375347.0035,406428.4005],[376314.3965,406314.703],[376513.9022,407173.6971],[375330.3979,408311.4015],[375140.2008,410768.898],[376080.8963,412698.695599999],[374998.9959,413815.9958],[375025.3966,414992.099199999],[375608.0009,415062.8989],[376122.8967,417715.6995],[375568.5977,419017.9968]]]},"properties":{"OBJECTID":250,"lad19cd":"E08000002","lad19nm":"Bury","lad19nmw":" ","bng_e":379658,"bng_n":410768,"long":-2.3088,"lat":53.593102,"GlobalID":"f9090afb-b248-4cb8-bca0-5b811f74079a"}},{"type":"Feature","id":251,"geometry":{"type":"Polygon","coordinates":[[[383058.7987,402392.4957],[383747.5005,403646.196900001],[382587.6017,403144.600500001],[382317.4029,404562.5046],[383415.9995,405357.596999999],[384375.197,404714.801000001],[385603.2988,405272.3014],[387766.5967,403614.296],[389835.703,402382.5986],[388244.2991,401030.895500001],[389281.0001,399582.0002],[388943.7029,398162.996400001],[390350.2031,396777.1031],[389575.3982,395363.3978],[388615.401,394593.998],[388372.7983,392936.702400001],[387571.9968,393334.0987],[385912.703,391365.4022],[385964.1027,390036.102700001],[383684.2031,388829.898],[384071.9024,384769.4003],[383030.3038,384895.7041],[380031.6988,382620.4954],[380330.4998,383560.7963],[379198.6013,384549.203299999],[380225.4,384923.0963],[381092.7969,386635.0963],[378831.6961,390580.696799999],[380306.1026,390211.4025],[381634.4974,391001.0965],[381913.8978,391778.0041],[380155.0037,393333.198899999],[383253.2997,395938.903100001],[382486.204,397363.895199999],[383830.8992,398845.301100001],[383153.6005,400297.5954],[383834.8981,401745.7009],[383058.7987,402392.4957]]]},"properties":{"OBJECTID":251,"lad19cd":"E08000003","lad19nm":"Manchester","lad19nmw":" ","bng_e":384591,"bng_n":397063,"long":-2.23359,"lat":53.470089,"GlobalID":"1f6bb512-c45d-4472-8716-8c3fde484b5a"}},{"type":"Feature","id":252,"geometry":{"type":"Polygon","coordinates":[[[398323.8038,414179.9016],[398573.4972,413253.2969],[399470.8979,413357.697000001],[403891.0999,407224.602600001],[405869.0983,406114.3004],[406087.1967,404640.102399999],[404951.9012,402698.1982],[405271.9993,401475.3983],[403325.2991,400833.302100001],[402525.5034,401459.003],[396457.0972,403859.095899999],[396507.3014,402843.9965],[393914.0978,402662.8983],[391065.8991,399475.7007],[389281.0001,399582.0002],[388244.2991,401030.895500001],[389835.703,402382.5986],[387766.5967,403614.296],[388869.8024,405514.0022],[388703.9035,406857.5976],[390101.3012,407843.6954],[389730.3971,409531.5022],[391766.4985,409995.8993],[392775.4961,411463.9991],[396133.8002,410656.5002],[397726.5975,411817.5978],[398323.8038,414179.9016]]]},"properties":{"OBJECTID":252,"lad19cd":"E08000004","lad19nm":"Oldham","lad19nmw":" ","bng_e":396603,"bng_n":406784,"long":-2.05274,"lat":53.557678,"GlobalID":"bcfea75f-a601-4c81-83f8-76b7c9ec4a0c"}},{"type":"Feature","id":253,"geometry":{"type":"Polygon","coordinates":[[[390432.596,420649.5997],[390700.5028,420178.9044],[391239.2021,421037.6986],[392295.9963,419423.8006],[393959.2972,419300.695800001],[396713.0981,420803.295700001],[398323.8038,414179.9016],[397726.5975,411817.5978],[396133.8002,410656.5002],[392775.4961,411463.9991],[391766.4985,409995.8993],[389730.3971,409531.5022],[390101.3012,407843.6954],[388703.9035,406857.5976],[388869.8024,405514.0022],[387766.5967,403614.296],[385603.2988,405272.3014],[384375.197,404714.801000001],[383985.0984,408370.204600001],[382935.296,409883.2016],[381999.6959,409224.3002],[381403.1987,409735.3039],[383878.498,411534.198999999],[382117.0973,413139.8993],[383113.0018,413790.802999999],[382257.6014,416657.602399999],[383850.102,418586.100400001],[385712.0017,419187.3983],[386533.2015,417557.005000001],[388039.7968,416875.200099999],[387839.3017,415759.399499999],[389429.7987,416106.000299999],[390432.596,420649.5997]]]},"properties":{"OBJECTID":253,"lad19cd":"E08000005","lad19nm":"Rochdale","lad19nmw":" ","bng_e":390315,"bng_n":412326,"long":-2.14784,"lat":53.60741,"GlobalID":"f029f0b3-ae89-4d30-8709-bec5a8eeb0c5"}},{"type":"Feature","id":254,"geometry":{"type":"Polygon","coordinates":[[[370194.302,403642.298],[371128.3025,405155.005000001],[376603.6992,403343.003699999],[376654.497,404323.603],[377681.1967,404158.100400001],[379515.5002,403434.6974],[380813.0008,401741.902000001],[383058.7987,402392.4957],[383834.8981,401745.7009],[383153.6005,400297.5954],[383830.8992,398845.301100001],[382486.204,397363.895199999],[381403.0998,396493.204399999],[378723.8012,398207.3037],[376535.8011,397533.196699999],[373782.0991,395813.099099999],[372218.2996,392583.703500001],[370229.2033,391101.897600001],[367582.2007,396058.198899999],[371253.3966,396564.2041],[371004.0989,399609.4024],[372608.8022,402102.0989],[370194.302,403642.298]]]},"properties":{"OBJECTID":254,"lad19cd":"E08000006","lad19nm":"Salford","lad19nmw":" ","bng_e":374556,"bng_n":398128,"long":-2.38485,"lat":53.479271,"GlobalID":"eab059c7-7252-47e1-8e44-0d910e770831"}},{"type":"Feature","id":255,"geometry":{"type":"Polygon","coordinates":[[[389575.3982,395363.3978],[390684.697,393504.699899999],[392391.202,393777.501800001],[393291.2988,392872.6008],[394182.2024,393394.3015],[394794.3982,392154.996200001],[398352.8017,392562.6995],[399186.8968,391007.704600001],[400607.1003,390930.096799999],[399788.4977,387718.6961],[397850.2982,386519.2994],[398030.7991,385931.897500001],[397398.6008,386357.795600001],[395566.3008,384501.8969],[393763.7986,385470.399599999],[391898.6998,385013.3005],[390846.3991,385612.698899999],[390032.3972,383480.099400001],[390503.2974,382893.6972],[389397.6017,381165.401900001],[387168.7968,382432.099300001],[388048.2975,383029.7983],[387753.6025,383989.103700001],[384071.9024,384769.4003],[383684.2031,388829.898],[385964.1027,390036.102700001],[385912.703,391365.4022],[387571.9968,393334.0987],[388372.7983,392936.702400001],[388615.401,394593.998],[389575.3982,395363.3978]]]},"properties":{"OBJECTID":255,"lad19cd":"E08000007","lad19nm":"Stockport","lad19nmw":" ","bng_e":391806,"bng_n":388264,"long":-2.12467,"lat":53.391159,"GlobalID":"2583fe21-4add-4fcd-9284-c325a3d1d3ba"}},{"type":"Feature","id":256,"geometry":{"type":"Polygon","coordinates":[[[389281.0001,399582.0002],[391065.8991,399475.7007],[393914.0978,402662.8983],[396507.3014,402843.9965],[396457.0972,403859.095899999],[402525.5034,401459.003],[400905.5963,398263.5976],[401040.6999,395384.0019],[399550.2979,393862.297499999],[399817.1988,393236.196699999],[399152.2016,393663.6044],[398352.8017,392562.6995],[394794.3982,392154.996200001],[394182.2024,393394.3015],[393291.2988,392872.6008],[392391.202,393777.501800001],[390684.697,393504.699899999],[389575.3982,395363.3978],[390350.2031,396777.1031],[388943.7029,398162.996400001],[389281.0001,399582.0002]]]},"properties":{"OBJECTID":256,"lad19cd":"E08000008","lad19nm":"Tameside","lad19nmw":" ","bng_e":394987,"bng_n":397995,"long":-2.077,"lat":53.478668,"GlobalID":"da7e8293-8b44-40a4-8f82-3dbe30caa0fe"}},{"type":"Feature","id":257,"geometry":{"type":"Polygon","coordinates":[[[370229.2033,391101.897600001],[372218.2996,392583.703500001],[373782.0991,395813.099099999],[376535.8011,397533.196699999],[378723.8012,398207.3037],[381403.0998,396493.204399999],[382486.204,397363.895199999],[383253.2997,395938.903100001],[380155.0037,393333.198899999],[381913.8978,391778.0041],[381634.4974,391001.0965],[380306.1026,390211.4025],[378831.6961,390580.696799999],[381092.7969,386635.0963],[380225.4,384923.0963],[379198.6013,384549.203299999],[377481.6003,385664.404100001],[375091.0026,385450.895199999],[371724.8986,387929.695699999],[368282.0002,388925.8005],[370229.2033,391101.897600001]]]},"properties":{"OBJECTID":257,"lad19cd":"E08000009","lad19nm":"Trafford","lad19nmw":" ","bng_e":375790,"bng_n":391162,"long":-2.36572,"lat":53.41671,"GlobalID":"22dc3efc-d877-4273-91dd-14344cd4070b"}},{"type":"Feature","id":258,"geometry":{"type":"Polygon","coordinates":[[[354484.7974,412190.4011],[358109.5984,412599.604],[358669.9987,410970.3004],[361851.8008,409538.800100001],[363028.7008,407323.204299999],[362355.7966,405840.298800001],[364710.8994,403058.2952],[366573.302,404822.3002],[370194.302,403642.298],[372608.8022,402102.0989],[371004.0989,399609.4024],[371253.3966,396564.2041],[367582.2007,396058.198899999],[367158.6024,398358.3005],[363410.8016,396926.600299999],[363641.9025,396220.8024],[362224.0982,395896.995100001],[361791.1006,394518.7996],[359243.0964,396492.104699999],[359473.7025,398441.296800001],[357256.2016,398362.2994],[355899.0975,400545.0046],[353739.3037,400818.6962],[351662.6037,402905.4989],[352505.1005,403632.500800001],[353409.0973,407181.8048],[352474.0002,409073.903200001],[354201.3982,410538.2041],[354484.7974,412190.4011]]]},"properties":{"OBJECTID":258,"lad19cd":"E08000010","lad19nm":"Wigan","lad19nmw":" ","bng_e":362136,"bng_n":402126,"long":-2.57247,"lat":53.51445,"GlobalID":"07f0e563-17b7-4dd3-b3b7-5a1cc4dc7cb1"}},{"type":"Feature","id":259,"geometry":{"type":"Polygon","coordinates":[[[341198.6977,401158.299000001],[342697.6993,399833.3983],[343715.4037,399938.1983],[344062.8011,398931.6964],[345355.2969,399036.5964],[345746.7971,396993.9011],[346696.8013,397021.5032],[347286.9003,394343.799699999],[346619.6028,393842.803099999],[348520.0976,392489.600400001],[347786.1965,389660.5002],[350553.1978,389731.799799999],[349698.3004,387364.497500001],[348433.6976,387413.803400001],[347696.2016,384666.0999],[345588.6981,383767.497099999],[344150.0009,383709.703600001],[343300.1,385520.395300001],[343142.8996,387224.6975],[345421.0018,387403.996200001],[344432.1963,389537.795399999],[343160.7997,389020.9033],[340776.1961,390808.3017],[342546.7982,391625.3978],[342460.5961,395074.9004],[340332.8014,397311.5002],[339393.4004,396861.299000001],[338860.9013,397978.3993],[341198.6977,401158.299000001]]]},"properties":{"OBJECTID":259,"lad19cd":"E08000011","lad19nm":"Knowsley","lad19nmw":" ","bng_e":344762,"bng_n":393778,"long":-2.83297,"lat":53.437881,"GlobalID":"a7af9869-c7cd-48c5-b9aa-2af055d3654e"}},{"type":"Feature","id":260,"geometry":{"type":"Polygon","coordinates":[[[338860.9013,397978.3993],[339393.4004,396861.299000001],[340332.8014,397311.5002],[342460.5961,395074.9004],[342546.7982,391625.3978],[340776.1961,390808.3017],[343160.7997,389020.9033],[344432.1963,389537.795399999],[345421.0018,387403.996200001],[343142.8996,387224.6975],[343300.1,385520.395300001],[344150.0009,383709.703600001],[345588.6981,383767.497099999],[345579.9995,382851.999199999],[344666.1005,382586.395199999],[345044.7961,381955.2958],[343190.0037,381503.395199999],[341618.8001,382279.0032],[335261.0005,387321.4998],[333501.2983,390856.198000001],[333086.3007,393983.838099999],[335341.596,394502.5042],[335443.6039,396663.3957],[336621.7983,397786.5042],[338860.9013,397978.3993]]]},"properties":{"OBJECTID":260,"lad19cd":"E08000012","lad19nm":"Liverpool","lad19nmw":" ","bng_e":339361,"bng_n":390553,"long":-2.91364,"lat":53.408298,"GlobalID":"0c25d8c8-9c91-4a0e-b601-c96d57191387"}},{"type":"Feature","id":261,"geometry":{"type":"Polygon","coordinates":[[[345355.2969,399036.5964],[345935.4029,402030.1995],[348231.1,404146.9036],[349111.4004,402150.2951],[351662.6037,402905.4989],[353739.3037,400818.6962],[355899.0975,400545.0046],[357256.2016,398362.2994],[359473.7025,398441.296800001],[359243.0964,396492.104699999],[361791.1006,394518.7996],[361217.3021,393828.0973],[360337.8014,395015.497400001],[360493.6001,394152.204500001],[358410.9966,393251.802200001],[357645.4014,394368.8025],[355128.0029,395326.0985],[354787.4984,393784.4998],[355690.4975,393999.098300001],[355233.4985,393119.800000001],[356007.2974,392639.497500001],[355115.9981,388075.7039],[354161.5003,387836.602299999],[352692.7004,388433.8014],[352540.9006,389370.903100001],[350553.1978,389731.799799999],[347786.1965,389660.5002],[348520.0976,392489.600400001],[346619.6028,393842.803099999],[347286.9003,394343.799699999],[346696.8013,397021.5032],[345746.7971,396993.9011],[345355.2969,399036.5964]]]},"properties":{"OBJECTID":261,"lad19cd":"E08000013","lad19nm":"St. Helens","lad19nmw":" ","bng_e":353412,"bng_n":395992,"long":-2.7031,"lat":53.458618,"GlobalID":"d40a6aa6-da50-46af-9fb4-950e17118f54"}},{"type":"Feature","id":262,"geometry":{"type":"MultiPolygon","coordinates":[[[[336706,422131],[336647.46,421467.34],[337119.5,422106],[336857.6,421182.9],[337594.0284,420723.787699999],[337967.3016,418422.3972],[336134.103,415411.199200001],[335156.9973,414409.396],[334101.2997,414920.5996],[332016.404,412241.0966],[331517.8994,410567.8956],[332523.5,410159.102600001],[332374.5035,408594.8004],[331190.8013,408130.6032],[330736.3995,405654.302100001],[335390.5964,402509.302300001],[336256.0969,403434.1976],[335318.7984,405919.0963],[337285.7979,405717.903899999],[338907.0984,403567.599400001],[341638.1018,403012.6982],[341198.6977,401158.299000001],[338860.9013,397978.3993],[336621.7983,397786.5042],[335443.6039,396663.3957],[335341.596,394502.5042],[333086.3007,393983.838099999],[330963.452,397023.220000001],[329545.092,401500.291999999],[329650.6,404222.9],[329265.422,403110.332],[328119.119,403740.092],[327068.597,405062.233999999],[326943.444,406991.431],[330069.413,414370.789999999],[333647,419158.199999999],[333114.5,420774.5],[335180.9,421127.9],[334904,421874],[335530.6,421474.199999999],[336235.5,422878.5],[335942,422195.5],[336706,422131]]],[[[337167.7808,422407.1163],[337334.0796,422114.8598],[336556,422357.5],[337097.4158,422530.0353],[337136.2547,422462.1886],[337153.7035,422431.707599999],[337167.7808,422407.1163]]]]},"properties":{"OBJECTID":262,"lad19cd":"E08000014","lad19nm":"Sefton","lad19nmw":" ","bng_e":334282,"bng_n":398832,"long":-2.99177,"lat":53.482101,"GlobalID":"169a2d17-d8d0-4839-b460-ce4945166f99"}},{"type":"Feature","id":263,"geometry":{"type":"Polygon","coordinates":[[[338219.8616,379429.442199999],[335584.2976,378691.5001],[333947.0016,379365.2972],[331706.398,378355.496300001],[328536.7986,380475.2995],[326163.6207,378366.749],[325938.4762,378159.749399999],[325187.042,378267.017000001],[325712.39,378787.027000001],[324949.389,378079.524],[324252.462,378456.251],[324508.421,379606.418],[324585.882,378681.143999999],[325193.02,378730.540999999],[325007.046,378788.989],[324751.314,379519.926999999],[324920.652,379217.298],[324884.238,379397.824999999],[326315.282,378879.211999999],[325011.419,379411.973999999],[325961.5,379704],[325048.606,380219.071],[325545.278,380502.965],[324859.499,380308.283],[325306.102,380640.738],[324440.036,380471.994999999],[324411.379,381877.591],[326408.24,380195.48],[320008.081,388051.866],[321797.5,389853.449999999],[330939.5,394520.199999999],[333399.1,386893.85],[338219.8616,379429.442199999]]]},"properties":{"OBJECTID":263,"lad19cd":"E08000015","lad19nm":"Wirral","lad19nmw":" ","bng_e":329110,"bng_n":386965,"long":-3.06701,"lat":53.374779,"GlobalID":"1e6cd97b-5d09-4123-8333-f4dd962671eb"}},{"type":"Feature","id":264,"geometry":{"type":"Polygon","coordinates":[[[427460.8026,412368.200200001],[429180.9038,412420.495300001],[431154.6972,410828.401000001],[431951.302,411566.899599999],[433416.202,411316.001399999],[433507.1038,411963.796],[434268.898,411043.399499999],[436641.3978,413049.5952],[439781.9004,411509.796],[441339.7964,412391.8035],[443213.9978,409834.895400001],[444692.0981,407048.902899999],[446630.3965,406323.3006],[446902.599,404580.6994],[448107.7961,403928.1962],[447418.7975,403578.8961],[447754.3963,402439.802200001],[445691.2016,402119.3039],[441204.2971,402126.401900001],[438055.599,398943.2031],[437182.7026,399520.5978],[436447.8038,398827.6962],[436259.0991,397360.0963],[433623.6972,398955.999399999],[432309.4015,396432.2019],[432427.8006,395070.8016],[431125.4025,393603.8015],[429901.9014,394473.702500001],[430702.0021,396204.497],[429985.6959,398066.704],[426198.4013,399647.9014],[419924.0995,400753.8048],[417880.0004,399385.6964],[417439.4008,397854.9046],[414454.1033,398695.7039],[413272.6025,398268.6962],[413609.504,400735.200099999],[411883.9034,402726.3002],[413068.9001,404500.9022],[415217.8021,404155.6011],[417224.6994,404965.499199999],[418434.4973,407067.897399999],[421995.9019,406337.6964],[423397.6035,407342.0989],[425556.5975,407445.8992],[426835.0025,409006.002699999],[426460.6025,410202.4002],[427368.6971,410844.7963],[427460.8026,412368.200200001]]]},"properties":{"OBJECTID":264,"lad19cd":"E08000016","lad19nm":"Barnsley","lad19nmw":" ","bng_e":429979,"bng_n":403327,"long":-1.54925,"lat":53.525768,"GlobalID":"0b7b7860-39b7-451a-ad0e-8fda631100ff"}},{"type":"Feature","id":265,"geometry":{"type":"Polygon","coordinates":[[[466773.996,418770.397600001],[466844.7964,418526.1975],[469695.3036,418585.2006],[475119.4985,416283.499500001],[473058.596,410194.102600001],[472872.2988,408571.7969],[473546.3985,408341.3029],[472898.1966,406255.899900001],[473510.5985,405103.499700001],[470114.1033,404292.6018],[469724.7962,402396.804500001],[470917.6999,402082.304500001],[470701.1021,401171.5952],[469557.001,399141.396400001],[467405.9965,397691.601399999],[466817.1012,393817.000499999],[465592.7014,392617.004000001],[464520.0024,392479.903200001],[464482.3967,393122.9991],[461200.2028,392622.102499999],[458861.4995,390420.8026],[456866.9038,390950.1011],[457510.2988,392310.6017],[455884.1997,392276.701400001],[455218.9964,393487.2049],[450717.3002,393153.600400001],[449359.0995,395612.4965],[449879.9977,398047.999299999],[448549.5994,399038.095899999],[446658.1989,397877.698100001],[447266.7009,399603.1042],[445866.4009,400356.1986],[445691.2016,402119.3039],[447754.3963,402439.802200001],[447418.7975,403578.8961],[448107.7961,403928.1962],[446902.599,404580.6994],[446630.3965,406323.3006],[444692.0981,407048.902899999],[443213.9978,409834.895400001],[445931.2978,408972.5022],[447221.1964,409582.197699999],[449208.9982,410855.903100001],[449827.6004,413572.395500001],[451088.8969,413644.095000001],[450841.0008,414112.7009],[451854.2034,414469.998600001],[452336.2014,416582.6039],[453635.4005,415790.9005],[456139.9037,416583.3037],[457270.1037,415478.799799999],[458154.403,417046.301100001],[461831.2963,417334.798599999],[462971.3986,418147.296],[466773.996,418770.397600001]]]},"properties":{"OBJECTID":265,"lad19cd":"E08000017","lad19nm":"Doncaster","lad19nmw":" ","bng_e":459167,"bng_n":403735,"long":-1.10894,"lat":53.52697,"GlobalID":"e841c60f-a9ee-4ef6-b03e-edccc377deb6"}},{"type":"Feature","id":266,"geometry":{"type":"Polygon","coordinates":[[[436259.0991,397360.0963],[436447.8038,398827.6962],[437182.7026,399520.5978],[438055.599,398943.2031],[441204.2971,402126.401900001],[445691.2016,402119.3039],[445866.4009,400356.1986],[447266.7009,399603.1042],[446658.1989,397877.698100001],[448549.5994,399038.095899999],[449879.9977,398047.999299999],[449359.0995,395612.4965],[450717.3002,393153.600400001],[455218.9964,393487.2049],[455884.1997,392276.701400001],[457510.2988,392310.6017],[456866.9038,390950.1011],[458861.4995,390420.8026],[458906.1959,389290.496200001],[457650.5968,388479.0984],[457940.8972,386873.698000001],[456918.6992,386134.7995],[457434.8978,384679.696],[455831.3983,384764.8016],[456231.0034,383448.2985],[457282.9001,383658.6982],[457442.4997,383063.6986],[453416.7002,379685.195599999],[453192.6984,378879.6962],[451358.4032,379342.103800001],[450488.4008,378555.099099999],[447937.7005,379406.995300001],[447020.9981,380018.100299999],[447480.8993,381267.8026],[446779.0962,381960.0045],[445075.0977,381531.897],[444563.9039,384146.7985],[440579.1978,387556.4025],[441606.7963,388717.200300001],[440402.803,391636.104699999],[441268.7982,392106.9999],[439407.3025,391666.2961],[437190.2963,394439.302300001],[436259.0991,397360.0963]]]},"properties":{"OBJECTID":266,"lad19cd":"E08000018","lad19nm":"Rotherham","lad19nmw":" ","bng_e":447542,"bng_n":388980,"long":-1.28651,"lat":53.395531,"GlobalID":"681c6fbc-c73a-4c6a-aa7e-b232168cc7a9"}},{"type":"Feature","id":267,"geometry":{"type":"Polygon","coordinates":[[[413272.6025,398268.6962],[414454.1033,398695.7039],[417439.4008,397854.9046],[417880.0004,399385.6964],[419924.0995,400753.8048],[426198.4013,399647.9014],[429985.6959,398066.704],[430702.0021,396204.497],[429901.9014,394473.702500001],[431125.4025,393603.8015],[432427.8006,395070.8016],[432309.4015,396432.2019],[433623.6972,398955.999399999],[436259.0991,397360.0963],[437190.2963,394439.302300001],[439407.3025,391666.2961],[441268.7982,392106.9999],[440402.803,391636.104699999],[441606.7963,388717.200300001],[440579.1978,387556.4025],[444563.9039,384146.7985],[445075.0977,381531.897],[444217.1991,380081.702099999],[440951.8004,380251.103599999],[440946.4988,382172.503699999],[439311.0002,382947.6018],[438662.9961,382116.299699999],[437255.0035,382430.4998],[436068.3001,381664.4991],[436385.8999,380685.599300001],[435544.5986,380150.9023],[433264.6001,380185.9023],[430966.3965,378742.6954],[429301.9,378917.195499999],[429295.304,379980.701099999],[428045.4022,379502.298],[427748.0028,380596.4048],[426809.0965,379448.5034],[426128.6976,380707.0031],[425047.1022,380007.0035],[424562.6966,380495.703600001],[425909.7005,382992.5989],[427356.4037,383301.3005],[422485.6008,385575.999399999],[423119.4976,388395.5023],[419712.0035,389842.698100001],[419469.3019,391208.2972],[417392.1979,391606.203299999],[417006.296,396187.102],[415470.7029,396470.200999999],[413272.6025,398268.6962]]]},"properties":{"OBJECTID":267,"lad19cd":"E08000019","lad19nm":"Sheffield","lad19nmw":" ","bng_e":430511,"bng_n":389736,"long":-1.54254,"lat":53.40358,"GlobalID":"6cfa799f-5d80-4491-ac87-ff849464c044"}},{"type":"Feature","id":268,"geometry":{"type":"Polygon","coordinates":[[[419940.8862,563709.9142],[419138.7986,564111.404200001],[418064.3023,563749.4978],[416343.4013,565296.605],[414866.4392,565223.2751],[414828.6022,565221.396500001],[414827.0005,565236.7664],[414564.8015,567752.801899999],[415670.3982,567658.9988],[416066.3013,569970.3971],[419596.4984,572088.400900001],[418379.9974,574593.003900001],[422592.3991,576160.0953],[423225.7023,574536.300100001],[423199.7963,571952.399800001],[426132.8036,571677.898399999],[426477.2988,570215.097100001],[425663.7998,568436.5962],[428337.6979,567974.6984],[428060.4989,566501.100199999],[429754.5439,565753.103800001],[430122.8031,565590.5009],[429923.8003,563484.003799999],[428759.6966,562690.6009],[426205.8645,563779.5348],[424674.8461,563323.294199999],[423337.089,562604.09],[420765.2029,563297.2973],[419940.8862,563709.9142]]]},"properties":{"OBJECTID":268,"lad19cd":"E08000021","lad19nm":"Newcastle upon Tyne","lad19nmw":" ","bng_e":422287,"bng_n":569662,"long":-1.65297,"lat":55.021011,"GlobalID":"89625beb-393c-4cfd-9738-381cb0101146"}},{"type":"Feature","id":269,"geometry":{"type":"Polygon","coordinates":[[[430122.8031,565590.5009],[429754.5439,565753.103800001],[428060.4989,566501.100199999],[428337.6979,567974.6984],[425663.7998,568436.5962],[426477.2988,570215.097100001],[426132.8036,571677.898399999],[423199.7963,571952.399800001],[423225.7023,574536.300100001],[427017.5976,574369.697799999],[427243.603,573540.6951],[428396.9963,573387.399],[429488.6012,574219.400900001],[429975.0021,573394.497],[431383.2998,573499.796800001],[431494.303,572722.7993],[432819.9027,573352.399],[432521.3985,574737.602499999],[434464.4188,575670.9153],[437137.86,569600.76],[438288.8383,569049.716399999],[436559.35,568895.26],[434907.0987,566142.3029],[431979.0961,566105.4035],[430946.4022,566972.895099999],[431931.8024,566101.204700001],[430122.8031,565590.5009]]]},"properties":{"OBJECTID":269,"lad19cd":"E08000022","lad19nm":"North Tyneside","lad19nmw":" ","bng_e":431471,"bng_n":570602,"long":-1.50923,"lat":55.028961,"GlobalID":"191d0877-5ec1-4a44-bb05-c8e04886a2e4"}},{"type":"Feature","id":270,"geometry":{"type":"Polygon","coordinates":[[[429923.8003,563484.003799999],[430122.8031,565590.5009],[433726.3977,565889.7952],[433353.0036,564599.004699999],[434882.7016,564892.7006],[433894.597,565846.797499999],[435332.5026,565665.7993],[436952.5,568326.050000001],[437287.89,567782.67],[438405.1221,568694.1708],[437784.4,567304.85],[441291.59,563592.640000001],[440842.2101,561235.094000001],[437306.5022,559624.6985],[431419.5038,559773.595899999],[431136.2035,562629.8983],[430151.5041,562693.100199999],[429923.8003,563484.003799999]]]},"properties":{"OBJECTID":270,"lad19cd":"E08000023","lad19nm":"South Tyneside","lad19nmw":" ","bng_e":435514,"bng_n":564057,"long":-1.44679,"lat":54.969879,"GlobalID":"437fc98c-eac8-4e15-aa17-1d7212eb8cca"}},{"type":"Feature","id":271,"geometry":{"type":"Polygon","coordinates":[[[430949.8981,553570.7015],[430901.5985,553578.1993],[428216.5037,553526.1042],[428366.0032,554230.4026],[428496.3988,557255.296800001],[427728.6022,558965.7972],[431419.5038,559773.595899999],[437306.5022,559624.6985],[440842.2101,561235.094000001],[440722.05,559229.6],[441609.5893,558704.5616],[440895.4,558859.5],[440426.38,557624.02],[441576.2345,558461.320699999],[441040.2,556129.65],[441979.4334,551953.352],[437250.7985,549558.5],[437816.6983,547802.502599999],[437218.7995,545517.9965],[432839.5012,545053.7994],[433401.3032,546209.398600001],[431943.0982,548600.204299999],[431758.3016,553040.4033],[430949.8981,553570.7015]]]},"properties":{"OBJECTID":271,"lad19cd":"E08000024","lad19nm":"Sunderland","lad19nmw":" ","bng_e":436470,"bng_n":551524,"long":-1.43344,"lat":54.857189,"GlobalID":"73660f33-78bd-4ba8-953e-dd9bdcdb5c75"}},{"type":"Feature","id":272,"geometry":{"type":"Polygon","coordinates":[[[408730.9013,298576.7027],[409988.0011,300467.9013],[411735.3027,301227.8038],[413878.2023,300165.597899999],[414453.9961,298914.695900001],[416122.4007,297041.801999999],[415400.4962,296333.004899999],[416639.803,295308.598200001],[417117.7033,292645.000600001],[418491.3964,291886.897600001],[416801.1012,291508.296],[416823.7009,290591.0985],[413709.7969,289616.6975],[416675.397,289090.3981],[416433.8991,283798.203],[415106.1969,283598.600099999],[413664.9025,284500.202],[411342.7965,279948.8049],[410674.4024,279148.6039],[409167.601,279233.7995],[409025.9014,278531.9004],[408077.7029,277982.4977],[405969.0037,278830.604900001],[404566.8981,276579.099400001],[403252.9982,277260.4044],[400199.3986,275898.804199999],[397807.696,278256.3993],[401046.1993,279857.401000001],[398941.4001,281632.402899999],[399196.7991,284914.603399999],[401598.1979,285468.105],[402540.9959,287117.003],[403439.4025,287257.8027],[404296.6992,288946.7992],[402606.404,289665.603499999],[402675.9016,292281.704600001],[404883.2034,292604.102299999],[404630.0965,294218.3003],[405646.5971,294385.5024],[408316.9993,296850.696699999],[408730.9013,298576.7027]]]},"properties":{"OBJECTID":272,"lad19cd":"E08000025","lad19nm":"Birmingham","lad19nmw":" ","bng_e":408150,"bng_n":287352,"long":-1.88141,"lat":52.484039,"GlobalID":"4baa6e88-9cbd-41a8-82c9-5eb67591624c"}},{"type":"Feature","id":273,"geometry":{"type":"Polygon","coordinates":[[[431362.5964,285303.902000001],[433735.2034,283683.2959],[434615.6028,284634.4036],[436855.9013,284269.3981],[439262.0988,281820.698999999],[438322.203,279285.8046],[438786.301,277800.199899999],[436586.1972,275157.996200001],[433826.501,275643.397299999],[433192.2002,274666.297],[432453.5004,275811.4991],[430574.4015,274074.396400001],[429526.0008,276381.396],[427245.7962,276881.2029],[427154.1028,279857.1011],[426312.1997,281177.5031],[426725.7967,282389.1963],[427611.7037,282514.8003],[427584.1982,284293.701099999],[427962.597,284962.399700001],[429915.1017,284229.6995],[431362.5964,285303.902000001]]]},"properties":{"OBJECTID":273,"lad19cd":"E08000026","lad19nm":"Coventry","lad19nmw":" ","bng_e":432807,"bng_n":279689,"long":-1.51908,"lat":52.41423,"GlobalID":"14a6f764-e843-4016-8c6f-296f18860da4"}},{"type":"Feature","id":274,"geometry":{"type":"Polygon","coordinates":[[[391046.0038,295142.795600001],[391862.3968,295460.4047],[392755.7986,294013.9987],[394687.8968,295466.7029],[395082.8022,294671.2006],[394696.6036,291802.3018],[396210.8008,290486.7984],[395728.8028,287694.897600001],[393500.8965,285609.104599999],[396086.8033,284892.1998],[398551.5984,286957.0988],[399196.7991,284914.603399999],[398941.4001,281632.402899999],[397581.501,281061.496300001],[397521.6006,282620.100199999],[396304.7038,282592.898],[395848.9993,281049.899700001],[395470.0975,281913.9024],[394329.6983,281581.6974],[393397.1984,283038.500399999],[390847.001,280927.504699999],[388887.9992,281369.3982],[388103.8032,284109.603800001],[388723.9967,285967.901900001],[387067.8031,289522.0046],[390310.701,291029.303099999],[389769.8992,291989.498199999],[390899.4973,292962.1998],[391046.0038,295142.795600001]]]},"properties":{"OBJECTID":274,"lad19cd":"E08000027","lad19nm":"Dudley","lad19nmw":" ","bng_e":393191,"bng_n":288584,"long":-2.10171,"lat":52.495129,"GlobalID":"8e10f98e-cc59-4809-a17f-6523788da95e"}},{"type":"Feature","id":275,"geometry":{"type":"Polygon","coordinates":[[[396639.8985,294986.8003],[399352.5978,296802.8005],[401758.0037,295300.8004],[402527.3009,296153.896199999],[403414.0984,295443.1996],[404575.9017,295800.1974],[405646.5971,294385.5024],[404630.0965,294218.3003],[404883.2034,292604.102299999],[402675.9016,292281.704600001],[402606.404,289665.603499999],[404296.6992,288946.7992],[403439.4025,287257.8027],[402540.9959,287117.003],[401598.1979,285468.105],[399196.7991,284914.603399999],[398551.5984,286957.0988],[396086.8033,284892.1998],[393500.8965,285609.104599999],[395728.8028,287694.897600001],[396210.8008,290486.7984],[394696.6036,291802.3018],[395082.8022,294671.2006],[396639.8985,294986.8003]]]},"properties":{"OBJECTID":275,"lad19cd":"E08000028","lad19nm":"Sandwell","lad19nmw":" ","bng_e":399573,"bng_n":290764,"long":-2.00771,"lat":52.514771,"GlobalID":"3468957c-5e31-4166-afeb-a3c0e472f6ee"}},{"type":"Feature","id":276,"geometry":{"type":"Polygon","coordinates":[[[416823.7009,290591.0985],[422044.4983,282089.801999999],[422763.4017,281994.599300001],[423051.0966,282977.8978],[424471.498,282878.396299999],[425611.6003,285130.601600001],[427584.1982,284293.701099999],[427611.7037,282514.8003],[426725.7967,282389.1963],[426312.1997,281177.5031],[427154.1028,279857.1011],[427245.7962,276881.2029],[425800.0989,274300.001800001],[424040.8997,273243.204299999],[423186.9999,274232.101199999],[421584.0034,273948.9023],[420947.0972,272591.800799999],[419265.3026,273110.5023],[419126.9999,274982.0966],[418140.7999,274719.8016],[417384.497,273014.299799999],[415129.8026,274075.2961],[415371.9023,272232.2037],[413183.3003,274299.801899999],[408809.5015,274400.403100001],[410608.6975,277983.7973],[409025.9014,278531.9004],[409167.601,279233.7995],[410674.4024,279148.6039],[411342.7965,279948.8049],[413664.9025,284500.202],[415106.1969,283598.600099999],[416433.8991,283798.203],[416675.397,289090.3981],[413709.7969,289616.6975],[416823.7009,290591.0985]]]},"properties":{"OBJECTID":276,"lad19cd":"E08000029","lad19nm":"Solihull","lad19nmw":" ","bng_e":419434,"bng_n":281483,"long":-1.71558,"lat":52.431,"GlobalID":"506a64b2-628d-4a09-a17b-091276fe9f13"}},{"type":"Feature","id":277,"geometry":{"type":"Polygon","coordinates":[[[403169.3025,307212.8006],[403789.9001,306507.702500001],[404589.8029,307099.2031],[406125.1982,306532.4954],[405643.2991,305797.095899999],[406519.0977,305054.2985],[405782.5005,304172.200999999],[407809.3014,301964.203],[407393.7008,300154.900900001],[408730.9013,298576.7027],[408316.9993,296850.696699999],[405646.5971,294385.5024],[404575.9017,295800.1974],[403414.0984,295443.1996],[402527.3009,296153.896199999],[401758.0037,295300.8004],[399352.5978,296802.8005],[396639.8985,294986.8003],[395896.598,295601.404300001],[396706.5021,297146.0022],[394823.8991,298696.0985],[396398.6975,300339.4981],[396663.1001,302527.901699999],[398057.1998,302130.195499999],[398102.1024,303100.097899999],[401006.7962,304738.898800001],[402738.1023,305007.102],[403169.3025,307212.8006]]]},"properties":{"OBJECTID":277,"lad19cd":"E08000030","lad19nm":"Walsall","lad19nmw":" ","bng_e":402098,"bng_n":300804,"long":-1.97044,"lat":52.60503,"GlobalID":"e89ca47a-07b6-4f72-b3d7-59ef743a493f"}},{"type":"Feature","id":278,"geometry":{"type":"Polygon","coordinates":[[[391046.0038,295142.795600001],[388195.1997,295186.802999999],[387875.2007,297423.2029],[386092.2969,298615.4016],[387279.7011,299012.097999999],[386796.5983,300997.899599999],[388641.9996,301296.1043],[388699.4017,302480.7951],[391188.0002,304437.0952],[393245.0028,304147.8979],[394611.8031,301571.195499999],[396663.1001,302527.901699999],[396398.6975,300339.4981],[394823.8991,298696.0985],[396706.5021,297146.0022],[395896.598,295601.404300001],[396639.8985,294986.8003],[395082.8022,294671.2006],[394687.8968,295466.7029],[392755.7986,294013.9987],[391862.3968,295460.4047],[391046.0038,295142.795600001]]]},"properties":{"OBJECTID":278,"lad19cd":"E08000031","lad19nm":"Wolverhampton","lad19nmw":" ","bng_e":391463,"bng_n":300016,"long":-2.12746,"lat":52.597881,"GlobalID":"c91d7113-af69-4a32-963e-881c03b2f180"}},{"type":"Feature","id":279,"geometry":{"type":"Polygon","coordinates":[[[397063.002,439322.3047],[398667.5981,441702.103499999],[401257.8006,441404.298699999],[401450.1001,444994.801000001],[403214.3041,445262.804300001],[401616.8977,447808.195699999],[402522.0982,448585.903000001],[402317.0023,450605.305],[407069.0021,451022.295600001],[407732.6965,451902.8036],[408046.0006,450914.0966],[409281.5972,448511.204399999],[410852.8008,448376.902899999],[410096.201,449415.795499999],[412893.1978,449227.8993],[414810.3971,447282.596100001],[416803.2037,447457.8959],[418017.7012,446037.502499999],[417706.2028,444450.3968],[418692.9964,444044.603],[418145.4996,443311.2029],[416113.1992,443194.396299999],[414064.2026,444544.5998],[413216.0002,443325.398800001],[415847.8979,440846.1985],[418821.001,441150.4014],[420153.1967,440187.1971],[419074.8994,431897.200099999],[421031.8976,432277.701199999],[421564.7017,431566.9047],[423794.0013,431541.901799999],[423196.8033,430260.998500001],[421089.5966,428946.104900001],[418923.6025,429603.296700001],[417655.5039,427869.403100001],[416767.8983,427854.5973],[416860.1028,426483.6997],[415870.0029,426497.595699999],[415267.6023,425561.8036],[412664.3974,429796.3015],[411447.0965,429721.103],[409629.8026,428000.895400001],[408494.4,428736.7048],[408440.2959,431378.998500001],[404830.097,432362.696900001],[401359.5034,432224.296499999],[400969.5038,433314.304500001],[396065.9021,436596.505000001],[397009.203,437026.901799999],[397063.002,439322.3047]]]},"properties":{"OBJECTID":279,"lad19cd":"E08000032","lad19nm":"Bradford","lad19nmw":" ","bng_e":408395,"bng_n":438626,"long":-1.87389,"lat":53.843819,"GlobalID":"6ac82df4-ef1d-4985-ad08-dd8fcac8cd7a"}},{"type":"Feature","id":280,"geometry":{"type":"Polygon","coordinates":[[[396065.9021,436596.505000001],[400969.5038,433314.304500001],[401359.5034,432224.296499999],[404830.097,432362.696900001],[408440.2959,431378.998500001],[408494.4,428736.7048],[409629.8026,428000.895400001],[411447.0965,429721.103],[412664.3974,429796.3015],[415267.6023,425561.8036],[416353.0975,425521.7951],[417530.5005,424122.195699999],[417847.1026,420466.202199999],[416783.399,422044.7004],[411611.7009,419321.399900001],[409763.9992,419571.0984],[410433.9022,418858.702400001],[407065.3,416549.5034],[404450.1975,416871.0013],[401900.0991,414358.7005],[399470.8979,413357.697000001],[398573.4972,413253.2969],[398323.8038,414179.9016],[396713.0981,420803.295700001],[393959.2972,419300.695800001],[392295.9963,419423.8006],[391239.2021,421037.6986],[390700.5028,420178.9044],[390432.596,420649.5997],[388662.604,425190.799799999],[391447.8021,428359.402799999],[391111.7994,431537.6031],[391874.3026,432420.8002],[391643.1029,433642.400599999],[392703.4013,434383.498400001],[396065.9021,436596.505000001]]]},"properties":{"OBJECTID":280,"lad19cd":"E08000033","lad19nm":"Calderdale","lad19nmw":" ","bng_e":402617,"bng_n":424896,"long":-1.96182,"lat":53.720482,"GlobalID":"6aae915c-235e-4c4d-aa8d-c9dd98745465"}},{"type":"Feature","id":281,"geometry":{"type":"Polygon","coordinates":[[[415267.6023,425561.8036],[415870.0029,426497.595699999],[416860.1028,426483.6997],[416767.8983,427854.5973],[417655.5039,427869.403100001],[418923.6025,429603.296700001],[421089.5966,428946.104900001],[422623.5984,427728.103499999],[423978.4021,427987.499299999],[424952.4984,424745.7972],[427009.3031,424755.904300001],[428408.6961,423414.2983],[426613.804,422666.9023],[426346.3012,421818.795],[427046.7027,421507.1043],[425515.298,420190.901000001],[427150.4998,418317.6972],[424889.5968,417524.1044],[425649.0989,414293.899],[427460.8026,412368.200200001],[427368.6971,410844.7963],[426460.6025,410202.4002],[426835.0025,409006.002699999],[425556.5975,407445.8992],[423397.6035,407342.0989],[421995.9019,406337.6964],[418434.4973,407067.897399999],[417224.6994,404965.499199999],[415217.8021,404155.6011],[413068.9001,404500.9022],[411883.9034,402726.3002],[410585.1991,402591.6987],[408481.1997,404870.5964],[407115.9989,404109.804199999],[406087.1967,404640.102399999],[405869.0983,406114.3004],[403891.0999,407224.602600001],[399470.8979,413357.697000001],[401900.0991,414358.7005],[404450.1975,416871.0013],[407065.3,416549.5034],[410433.9022,418858.702400001],[409763.9992,419571.0984],[411611.7009,419321.399900001],[416783.399,422044.7004],[417847.1026,420466.202199999],[417530.5005,424122.195699999],[416353.0975,425521.7951],[415267.6023,425561.8036]]]},"properties":{"OBJECTID":281,"lad19cd":"E08000034","lad19nm":"Kirklees","lad19nmw":" ","bng_e":414586,"bng_n":416223,"long":-1.78085,"lat":53.64233,"GlobalID":"d638d4fd-5779-40af-b69f-984cdd1fb649"}},{"type":"Feature","id":282,"geometry":{"type":"Polygon","coordinates":[[[418017.7012,446037.502499999],[418626.5989,445855.804500001],[419336.2019,447036.796499999],[420815.2999,446092.5967],[422755.0989,446312.603800001],[422982.8028,445554.8007],[425029.8041,445312.899900001],[426375.5959,446030.3046],[427202.6992,445086.104800001],[427451.1971,445982.7982],[429543.4968,445288.596899999],[429738.3029,446177.002599999],[433020.2,446687.796399999],[435397.0037,445671.2973],[437345.0973,446219.4004],[437356.5002,448047.7971],[439056.0959,448129.9036],[439667.797,449769.1043],[443391.2006,450175.2981],[443115.0983,449462.1022],[445598.7003,448920.6972],[445476.5992,447770.496400001],[446446.004,448110.099199999],[445589.9028,447481.8991],[446253.3994,447509.301200001],[446046.7039,445927.604],[445186.8018,445609.494999999],[444629.6995,445131.8018],[445302.8015,441228.199200001],[442656.9037,440250.199100001],[444411.4033,438449.804500001],[443790.7975,437683.603800001],[445946.5017,435806.700999999],[445213.4002,435023.0952],[445313.3961,431908.397],[446877.3031,429880.6971],[446585.5021,429017.5041],[445444.6001,429053.7041],[445252.103,427693.5031],[446132.2959,427484.403200001],[439710.9021,424931.704],[436837.3005,425900.5966],[433858.9041,425825.998],[433372.9979,425216.3025],[432399.5035,426030.7994],[429192.7025,422593.4033],[428408.6961,423414.2983],[427009.3031,424755.904300001],[424952.4984,424745.7972],[423978.4021,427987.499299999],[422623.5984,427728.103499999],[421089.5966,428946.104900001],[423196.8033,430260.998500001],[423794.0013,431541.901799999],[421564.7017,431566.9047],[421031.8976,432277.701199999],[419074.8994,431897.200099999],[420153.1967,440187.1971],[418821.001,441150.4014],[415847.8979,440846.1985],[413216.0002,443325.398800001],[414064.2026,444544.5998],[416113.1992,443194.396299999],[418145.4996,443311.2029],[418692.9964,444044.603],[417706.2028,444450.3968],[418017.7012,446037.502499999]]]},"properties":{"OBJECTID":282,"lad19cd":"E08000035","lad19nm":"Leeds","lad19nmw":" ","bng_e":432528,"bng_n":436384,"long":-1.50736,"lat":53.822731,"GlobalID":"40657485-927b-4654-8349-7b6c911e7d8d"}},{"type":"Feature","id":283,"geometry":{"type":"Polygon","coordinates":[[[446132.2959,427484.403200001],[448361.9006,424530.9987],[450944.4022,424549.9033],[451150.6029,423993.3026],[451589.1989,424502.796700001],[452991.8982,422995.498199999],[452986.2008,422345.1044],[449991.2978,422038.802100001],[449315.7965,416800.8014],[450841.0008,414112.7009],[451088.8969,413644.095000001],[449827.6004,413572.395500001],[449208.9982,410855.903100001],[447221.1964,409582.197699999],[445931.2978,408972.5022],[443213.9978,409834.895400001],[441339.7964,412391.8035],[439781.9004,411509.796],[436641.3978,413049.5952],[434268.898,411043.399499999],[433507.1038,411963.796],[433416.202,411316.001399999],[431951.302,411566.899599999],[431154.6972,410828.401000001],[429180.9038,412420.495300001],[427460.8026,412368.200200001],[425649.0989,414293.899],[424889.5968,417524.1044],[427150.4998,418317.6972],[425515.298,420190.901000001],[427046.7027,421507.1043],[426346.3012,421818.795],[426613.804,422666.9023],[428408.6961,423414.2983],[429192.7025,422593.4033],[432399.5035,426030.7994],[433372.9979,425216.3025],[433858.9041,425825.998],[436837.3005,425900.5966],[439710.9021,424931.704],[446132.2959,427484.403200001]]]},"properties":{"OBJECTID":283,"lad19cd":"E08000036","lad19nm":"Wakefield","lad19nmw":" ","bng_e":438366,"bng_n":418235,"long":-1.42092,"lat":53.659222,"GlobalID":"e102f0bd-4fb8-4588-a764-2e28cee9ece7"}},{"type":"Feature","id":284,"geometry":{"type":"Polygon","coordinates":[[[414828.6022,565221.396500001],[414866.4392,565223.2751],[416343.4013,565296.605],[418064.3023,563749.4978],[419138.7986,564111.404200001],[419940.8862,563709.9142],[420765.2029,563297.2973],[423337.089,562604.09],[424674.8461,563323.294199999],[426205.8645,563779.5348],[428759.6966,562690.6009],[429923.8003,563484.003799999],[430151.5041,562693.100199999],[431136.2035,562629.8983],[431419.5038,559773.595899999],[427728.6022,558965.7972],[428496.3988,557255.296800001],[428366.0032,554230.4026],[427053.7027,553747.5009],[426123.396,556440.5],[422519.6035,553895.498500001],[422591.5993,555416.403200001],[420904.8,555976.9027],[420950.0984,557252.797499999],[419869.2038,556473.1007],[419420.9034,557189.5956],[417736.3962,557154.4956],[417008.0027,558240.104900001],[414926.5041,556913.5046],[414090.4961,557446.901900001],[413248.7991,556554.497400001],[411575.3979,556785.3013],[409539.0987,558103.903899999],[410278.2025,559459.9957],[411187.8966,559517.7991],[410749.2016,562083.704700001],[412080.3007,564649.800100001],[413859.6014,565567.6974],[414828.6022,565221.396500001]]]},"properties":{"OBJECTID":284,"lad19cd":"E08000037","lad19nm":"Gateshead","lad19nmw":" ","bng_e":420168,"bng_n":559658,"long":-1.6868,"lat":54.931198,"GlobalID":"f5a99357-6407-4151-85ec-94df4b89cc55"}},{"type":"Feature","id":285,"geometry":{"type":"Polygon","coordinates":[[[531554.6001,181659.1],[532946.1026,181894.9025],[533410.7035,182037.9015],[533386.5924,180512.8676],[531144.4554,180790.621099999],[531129.6991,181291.6951],[531554.6001,181659.1]]]},"properties":{"OBJECTID":285,"lad19cd":"E09000001","lad19nm":"City of London","lad19nmw":" ","bng_e":532381,"bng_n":181359,"long":-0.09353,"lat":51.515652,"GlobalID":"3d648ad7-30dd-4bb6-a10e-9955c0f5a690"}},{"type":"Feature","id":286,"geometry":{"type":"Polygon","coordinates":[[[548881.2992,187727.502900001],[549951.9039,186961.802100001],[551552.699,187444.004000001],[551944.6033,186024.4004],[549894.9943,181468.579500001],[547660.05,182215.800000001],[545681.992,181645.736300001],[545227.9,182819.699999999],[543897.7774,183195.5188],[543522.496,184862.503],[543619.0086,184826.3661],[546989.9976,186401.202500001],[547817.9007,188036.904300001],[547410.504,189682.903200001],[548881.0024,191087.6011],[548881.2992,187727.502900001]]]},"properties":{"OBJECTID":286,"lad19cd":"E09000002","lad19nm":"Barking and Dagenham","lad19nmw":" ","bng_e":547757,"bng_n":185111,"long":0.129479,"lat":51.545551,"GlobalID":"52a8a1ad-9deb-4130-98c3-5f41246c9be3"}},{"type":"Feature","id":287,"geometry":{"type":"Polygon","coordinates":[[[517435.1968,194421.096899999],[520681.7968,195107.4004],[521110.9028,196700.5044],[523755.9019,197353.897399999],[524339.2977,198344.4038],[525206.002,197672.596100001],[525814.1,198211.5019],[525568.6033,197563.5973],[527740.204,196805.4044],[529579.9987,194263.402000001],[528562.4015,192370.004000001],[528975.5038,191791.5996],[528139.7019,190352.001599999],[527744.7965,191173.896400001],[527769.004,189091.002599999],[526830.3038,187535.3979],[523951.6974,185545.497500001],[522524.1969,187379.502499999],[521301.7017,187159.295499999],[521462.703,188731.895400001],[520113.102,190480.8048],[517435.1968,194421.096899999]]]},"properties":{"OBJECTID":287,"lad19cd":"E09000003","lad19nm":"Barnet","lad19nmw":" ","bng_e":523472,"bng_n":191753,"long":-0.21821,"lat":51.61108,"GlobalID":"0abfe0c9-fe5d-46b9-8d17-29507585de1d"}},{"type":"Feature","id":288,"geometry":{"type":"Polygon","coordinates":[[[550333.8,180612],[551724.66,178049.33],[554087.2996,178055.750399999],[553156.5693,175519.8071],[551102.1971,173822.7031],[550557.8994,172175.004799999],[549962.8039,172412.4968],[549830.7015,169941.5041],[549551.2022,169908.203600001],[546620.8992,170465.704],[544363.4015,172374.797599999],[545164.4009,173650.202500001],[544737.1006,176241.6007],[545815.299,177254.1009],[547611.9968,177457.4027],[547225.8334,181299.9267],[550333.8,180612]]]},"properties":{"OBJECTID":288,"lad19cd":"E09000004","lad19nm":"Bexley","lad19nmw":" ","bng_e":549203,"bng_n":175435,"long":0.146227,"lat":51.458229,"GlobalID":"e62156d5-2e9d-4d0a-88fd-6090a9073953"}},{"type":"Feature","id":289,"geometry":{"type":"Polygon","coordinates":[[[520113.102,190480.8048],[521462.703,188731.895400001],[521301.7017,187159.295499999],[522524.1969,187379.502499999],[523951.6974,185545.497500001],[525529.9999,183481.598300001],[525200.9973,182512.5956],[524580.2019,183087.4011],[523850.3985,182509.996400001],[522978.5988,182758.5952],[521736.9997,182995.6974],[519115.4001,182506.997300001],[519212.6011,183593.6962],[517494.8004,182928.9965],[517445.701,184353.4987],[515484.9018,185501.200200001],[516382.5993,186976.097999999],[516046.2998,187982.899800001],[517537.1965,188938.6962],[519101.4,188755.998500001],[518519.4966,189686.4022],[520113.102,190480.8048]]]},"properties":{"OBJECTID":289,"lad19cd":"E09000005","lad19nm":"Brent","lad19nmw":" ","bng_e":519615,"bng_n":186468,"long":-0.27568,"lat":51.564411,"GlobalID":"6cb13ee0-7d6f-40cf-a9a6-93e7fc325a67"}},{"type":"Feature","id":290,"geometry":{"type":"Polygon","coordinates":[[[541137.1998,173365.504000001],[543441.4965,171429.998],[544363.4015,172374.797599999],[546620.8992,170465.704],[549551.2022,169908.203600001],[550541.2032,168157.4048],[549521.5035,168162.0035],[549897.1979,165601.296499999],[548928.8979,162732.897500001],[547640.5,162692.4991],[547648.4977,161080.8004],[545401.397,159498.5034],[545520.2001,156949.2031],[542502.9034,156818.600500001],[541795.6998,158451.2031],[540596.2001,156667.2038],[539596.2968,160796.301899999],[537419.6007,166327.6985],[536721.6975,166045.7992],[536717.3028,167320.0045],[534466.5001,168932.7028],[533702.0016,170732.6976],[533716.6036,170817.803200001],[534004.2985,171442.304500001],[537043.1971,171470.7963],[538449.1037,170158.7019],[540901.9022,171943.900900001],[541671.3973,171228.095799999],[541137.1998,173365.504000001]]]},"properties":{"OBJECTID":290,"lad19cd":"E09000006","lad19nm":"Bromley","lad19nmw":" ","bng_e":542036,"bng_n":165708,"long":0.039246,"lat":51.372669,"GlobalID":"51d29b4a-c531-439c-a663-57bd77f43466"}},{"type":"Feature","id":291,"geometry":{"type":"Polygon","coordinates":[[[526830.3038,187535.3979],[528840.2023,187217.798800001],[530326.1025,182983.300899999],[531554.6001,181659.1],[531129.6991,181291.6951],[529903.0979,181053.803200001],[528213.9982,183685.4999],[525529.9999,183481.598300001],[523951.6974,185545.497500001],[526830.3038,187535.3979]]]},"properties":{"OBJECTID":291,"lad19cd":"E09000007","lad19nm":"Camden","lad19nmw":" ","bng_e":527492,"bng_n":184284,"long":-0.16289,"lat":51.54306,"GlobalID":"82e6cd88-2236-4380-b991-fb3519523f2a"}},{"type":"Feature","id":292,"geometry":{"type":"Polygon","coordinates":[[[530302.398,169806.7027],[531318.7996,171048.6972],[533702.0016,170732.6976],[534466.5001,168932.7028],[536717.3028,167320.0045],[536721.6975,166045.7992],[537419.6007,166327.6985],[539596.2968,160796.301899999],[536768.3975,161784.499],[535882.004,159951.9036],[533965.5962,159603.303400001],[533165.2975,157546.5021],[530898.1036,155850.797499999],[529950.5977,157386.9978],[528694.1988,157410.201099999],[528552.3013,159658.0977],[529312.0012,159898.698799999],[529328.6975,161967.796499999],[531245.7978,162424.195900001],[529902.1992,167411.7982],[530594.6029,168178.4987],[530302.398,169806.7027]]]},"properties":{"OBJECTID":292,"lad19cd":"E09000008","lad19nm":"Croydon","lad19nmw":" ","bng_e":533922,"bng_n":164745,"long":-0.07761,"lat":51.365978,"GlobalID":"2dd65cdc-c0cf-4a82-9308-943a89cfb1c4"}},{"type":"Feature","id":293,"geometry":{"type":"Polygon","coordinates":[[[512561.7968,185257.899800001],[515484.9018,185501.200200001],[517445.701,184353.4987],[517494.8004,182928.9965],[519212.6011,183593.6962],[519115.4001,182506.997300001],[521736.9997,182995.6974],[521350.496,179497.898600001],[520357.4031,178643.803099999],[519424.2024,179613.6954],[518506.7992,179448.9026],[517290.8011,178353.396199999],[514581.103,179085.896500001],[513132.8992,178092.400900001],[510678.5012,179064.602600001],[512737.6969,182349.3024],[509706.4002,183554.7973],[511381.4009,183847.9034],[511129.2999,184436.9048],[512561.7968,185257.899800001]]]},"properties":{"OBJECTID":293,"lad19cd":"E09000009","lad19nm":"Ealing","lad19nmw":" ","bng_e":517057,"bng_n":181960,"long":-0.31407,"lat":51.524429,"GlobalID":"de4955ea-e7ed-4c96-883f-8f9965961d27"}},{"type":"Feature","id":294,"geometry":{"type":"Polygon","coordinates":[[[531023.5028,200933.602700001],[537543.796,199883.103399999],[537625.1006,196029.4965],[535728.5963,191460.904200001],[528975.5038,191791.5996],[528562.4015,192370.004000001],[529579.9987,194263.402000001],[527740.204,196805.4044],[525568.6033,197563.5973],[525814.1,198211.5019],[527045.2031,200413.4016],[531023.5028,200933.602700001]]]},"properties":{"OBJECTID":294,"lad19cd":"E09000010","lad19nm":"Enfield","lad19nmw":" ","bng_e":532829,"bng_n":196197,"long":-0.08147,"lat":51.64888,"GlobalID":"6008ac35-5c94-4d95-b051-f521748b1fb8"}},{"type":"Feature","id":295,"geometry":{"type":"Polygon","coordinates":[[[547225.8334,181299.9267],[547611.9968,177457.4027],[545815.299,177254.1009],[544737.1006,176241.6007],[545164.4009,173650.202500001],[544363.4015,172374.797599999],[543441.4965,171429.998],[541137.1998,173365.504000001],[539734.4016,175289.4033],[540257.897,176918.7969],[537968.9031,176208.9001],[537418.3142,177008.7772],[539089.75,178517.85],[539000,180315.5],[540433.85,179160.25],[542964.23,179241.57],[544252.69,179484.91],[545282.45,180973.949999999],[547225.8334,181299.9267]]]},"properties":{"OBJECTID":295,"lad19cd":"E09000011","lad19nm":"Greenwich","lad19nmw":" ","bng_e":542508,"bng_n":175878,"long":0.050107,"lat":51.463928,"GlobalID":"f3f15c1e-f0e3-4ab6-abae-f15d2097b54f"}},{"type":"Feature","id":296,"geometry":{"type":"Polygon","coordinates":[[[534444.0983,188327.4012],[535464.202,186662.297800001],[536755.1971,186529.3959],[537572.9011,185494.702],[537639.0017,184582.7031],[534479.5026,183624.6973],[533410.7035,182037.9015],[532946.1026,181894.9025],[532089.8035,183279.995999999],[533460.8005,184979.6994],[531487.8976,186801.797900001],[531919.1967,187797.3029],[534444.0983,188327.4012]]]},"properties":{"OBJECTID":296,"lad19cd":"E09000012","lad19nm":"Hackney","lad19nmw":" ","bng_e":534560,"bng_n":185787,"long":-0.06045,"lat":51.55492,"GlobalID":"8bf3ecb2-03e5-4647-a5cc-9cac478b506b"}},{"type":"Feature","id":297,"geometry":{"type":"Polygon","coordinates":[[[524055.6016,179493.1],[526218.4931,176949.371400001],[526227.0323,175762.009199999],[525595.75,174962.4],[523487.5246,176221.754699999],[523077.25,178140.300000001],[521976.3736,178099.387],[521350.496,179497.898600001],[521736.9997,182995.6974],[522978.5988,182758.5952],[524055.6016,179493.1]]]},"properties":{"OBJECTID":297,"lad19cd":"E09000013","lad19nm":"Hammersmith and Fulham","lad19nmw":" ","bng_e":523867,"bng_n":177993,"long":-0.21735,"lat":51.487331,"GlobalID":"fc2e3272-7fda-40cf-9bf6-8045c243df10"}},{"type":"Feature","id":298,"geometry":{"type":"Polygon","coordinates":[[[528975.5038,191791.5996],[535728.5963,191460.904200001],[534444.0983,188327.4012],[531919.1967,187797.3029],[531487.8976,186801.797900001],[530407.2999,187968.7039],[528840.2023,187217.798800001],[526830.3038,187535.3979],[527769.004,189091.002599999],[527744.7965,191173.896400001],[528139.7019,190352.001599999],[528975.5038,191791.5996]]]},"properties":{"OBJECTID":298,"lad19cd":"E09000014","lad19nm":"Haringey","lad19nmw":" ","bng_e":531262,"bng_n":189349,"long":-0.10667,"lat":51.587711,"GlobalID":"f3c0eaba-e28b-4ceb-ab0e-09817b6a147b"}},{"type":"Feature","id":299,"geometry":{"type":"Polygon","coordinates":[[[517435.1968,194421.096899999],[520113.102,190480.8048],[518519.4966,189686.4022],[519101.4,188755.998500001],[517537.1965,188938.6962],[516046.2998,187982.899800001],[516382.5993,186976.097999999],[515484.9018,185501.200200001],[512561.7968,185257.899800001],[510599.8021,191689.4988],[513442.4023,192900.702099999],[516579.3018,194866.8993],[517435.1968,194421.096899999]]]},"properties":{"OBJECTID":299,"lad19cd":"E09000015","lad19nm":"Harrow","lad19nmw":" ","bng_e":515356,"bng_n":189736,"long":-0.33603,"lat":51.594669,"GlobalID":"69c480f3-8b04-415b-be3e-4c932c121b9c"}},{"type":"Feature","id":300,"geometry":{"type":"Polygon","coordinates":[[[552402.402,194083.103599999],[554024.9971,194889.3029],[556018.0015,193395.7004],[556906.7036,192371.503599999],[556199.096,191601.403999999],[557304.9978,191410.398700001],[558841.3,187531.9989],[560412.2975,187750.496300001],[561956.6964,184981.898800001],[557223.3964,183903.297599999],[557157.0979,182311.803099999],[556473.7967,182292.4987],[556099.0999,183481.6982],[555313.1972,182418.102700001],[555681.0011,181163.401900001],[554624.8995,180978.2049],[554880.6035,180182.4027],[553565.4981,179127.662799999],[551982.5,178817.199999999],[551290.05,180734.5],[549894.9943,181468.579500001],[551944.6033,186024.4004],[551552.699,187444.004000001],[549951.9039,186961.802100001],[548881.2992,187727.502900001],[548881.0024,191087.6011],[548106.8983,193800.9044],[552402.402,194083.103599999]]]},"properties":{"OBJECTID":300,"lad19cd":"E09000016","lad19nm":"Havering","lad19nmw":" ","bng_e":555032,"bng_n":187514,"long":0.235368,"lat":51.565189,"GlobalID":"6339bcd8-0067-4abc-b489-8532c1f6563a"}},{"type":"Feature","id":301,"geometry":{"type":"Polygon","coordinates":[[[503946.1037,190047.398800001],[504132.4998,193616.1973],[506926.8005,191511.6997],[508054.6012,192401.095100001],[510599.8021,191689.4988],[512561.7968,185257.899800001],[511129.2999,184436.9048],[511381.4009,183847.9034],[509706.4002,183554.7973],[512737.6969,182349.3024],[510678.5012,179064.602600001],[510028.5018,177132.295700001],[510455.497,175742.9035],[508213.2032,173846.1964],[507187.699,174163.695499999],[503611.1976,175520.3971],[504919.2023,178392.095100001],[505366.9998,179778.6982],[504439.8015,183254.903200001],[505700.3971,185577.6983],[503946.1037,190047.398800001]]]},"properties":{"OBJECTID":301,"lad19cd":"E09000017","lad19nm":"Hillingdon","lad19nmw":" ","bng_e":508166,"bng_n":183120,"long":-0.44182,"lat":51.536629,"GlobalID":"a6200c40-a9b4-4d6f-9dbd-507caac93375"}},{"type":"Feature","id":302,"geometry":{"type":"Polygon","coordinates":[[[519424.2024,179613.6954],[520357.4031,178643.803099999],[521350.496,179497.898600001],[521976.3736,178099.387],[520972.8,176153.15],[519012.7,177944],[517709.6,177348.300000001],[516786.4155,175963.950200001],[516409.1859,175128.4932],[516344.9874,174780.240599999],[515645.4991,174161.2962],[513132.9981,174421.1018],[512127.8015,173504.404200001],[513602.6038,172670.302999999],[511946.2041,170484.398700001],[507381.3012,172142.0042],[507187.699,174163.695499999],[508213.2032,173846.1964],[510455.497,175742.9035],[510028.5018,177132.295700001],[510678.5012,179064.602600001],[513132.8992,178092.400900001],[514581.103,179085.896500001],[517290.8011,178353.396199999],[518506.7992,179448.9026],[519424.2024,179613.6954]]]},"properties":{"OBJECTID":302,"lad19cd":"E09000018","lad19nm":"Hounslow","lad19nmw":" ","bng_e":512742,"bng_n":174965,"long":-0.37847,"lat":51.462429,"GlobalID":"54cebe9d-b1da-4126-b152-1f6064b570c7"}},{"type":"Feature","id":303,"geometry":{"type":"Polygon","coordinates":[[[528840.2023,187217.798800001],[530407.2999,187968.7039],[531487.8976,186801.797900001],[533460.8005,184979.6994],[532089.8035,183279.995999999],[532946.1026,181894.9025],[531554.6001,181659.1],[530326.1025,182983.300899999],[528840.2023,187217.798800001]]]},"properties":{"OBJECTID":303,"lad19cd":"E09000019","lad19nm":"Islington","lad19nmw":" ","bng_e":531158,"bng_n":184647,"long":-0.10992,"lat":51.545479,"GlobalID":"6263cd3c-a830-4b45-9ec7-f4924ddb52c3"}},{"type":"Feature","id":304,"geometry":{"type":"Polygon","coordinates":[[[522978.5988,182758.5952],[523850.3985,182509.996400001],[526462.6977,179219.498299999],[527914.9003,179753.195499999],[528549.7489,177901.928099999],[526218.4931,176949.371400001],[524055.6016,179493.1],[522978.5988,182758.5952]]]},"properties":{"OBJECTID":304,"lad19cd":"E09000020","lad19nm":"Kensington and Chelsea","lad19nmw":" ","bng_e":525757,"bng_n":179053,"long":-0.18976,"lat":51.496441,"GlobalID":"5d4957c2-8813-4d59-9fa4-bd3ba6f143ac"}},{"type":"Feature","id":305,"geometry":{"type":"Polygon","coordinates":[[[521450.5993,172366.9998],[521672.1029,171846.5988],[522578.4989,167053.6007],[522231.1015,166014.998],[521110.5977,165939.999500001],[519460.2003,164193.1995],[518090.2999,160916.397500001],[516401.596,160201.801999999],[516362.5968,162360.5041],[517897.4974,165729.4998],[517139.496,167412.498],[517739.0026,168375.9022],[517530.6004,171709.8979],[518931.898,171384.1011],[519234.3021,170410],[521450.5993,172366.9998]]]},"properties":{"OBJECTID":305,"lad19cd":"E09000021","lad19nm":"Kingston upon Thames","lad19nmw":" ","bng_e":519508,"bng_n":167389,"long":-0.28367,"lat":51.39296,"GlobalID":"ff31910f-de92-4d5d-bd17-5eafc7b2a1f4"}},{"type":"Feature","id":306,"geometry":{"type":"Polygon","coordinates":[[[530045.6689,177895.060900001],[531144.4554,180790.621099999],[531463.5994,177400.798900001],[532765.9975,175861.499500001],[532018.896,174261.6974],[533716.6036,170817.803200001],[533702.0016,170732.6976],[531318.7996,171048.6972],[530302.398,169806.7027],[528886.4983,169832.295299999],[529402.903,170555.1984],[529651.4999,173093.7018],[529115.7028,173061.501],[528519.2963,175722.099400001],[530045.6689,177895.060900001]]]},"properties":{"OBJECTID":306,"lad19cd":"E09000022","lad19nm":"Lambeth","lad19nmw":" ","bng_e":531118,"bng_n":175629,"long":-0.11385,"lat":51.464451,"GlobalID":"551ac5bf-c78a-4753-8ca1-813fb8957c55"}},{"type":"Feature","id":307,"geometry":{"type":"Polygon","coordinates":[[[536691.559,178958.772600001],[537238.16,178136.3818],[537791.5004,177580.465500001],[537418.3142,177008.7772],[537968.9031,176208.9001],[540257.897,176918.7969],[539734.4016,175289.4033],[541137.1998,173365.504000001],[541671.3973,171228.095799999],[540901.9022,171943.900900001],[538449.1037,170158.7019],[537043.1971,171470.7963],[534004.2985,171442.304500001],[534782.4014,173871.199200001],[536163.1028,174708.499500001],[535209.1987,178349.1974],[536691.559,178958.772600001]]]},"properties":{"OBJECTID":307,"lad19cd":"E09000023","lad19nm":"Lewisham","lad19nmw":" ","bng_e":537889,"bng_n":173344,"long":-0.01733,"lat":51.44231,"GlobalID":"fc2b4c36-a79d-4110-9538-14980e33c2a2"}},{"type":"Feature","id":308,"geometry":{"type":"Polygon","coordinates":[[[521672.1029,171846.5988],[525890.8038,172940.295700001],[526499.8995,171092.804500001],[529402.903,170555.1984],[528886.4983,169832.295299999],[530302.398,169806.7027],[530594.6029,168178.4987],[529902.1992,167411.7982],[527759.7036,167034.2963],[527078.2987,167622.4979],[526158.0015,166711.398700001],[524662.603,166988.1995],[524104.0001,166073.001399999],[522578.4989,167053.6007],[521672.1029,171846.5988]]]},"properties":{"OBJECTID":308,"lad19cd":"E09000024","lad19nm":"Merton","lad19nmw":" ","bng_e":526069,"bng_n":169507,"long":-0.18867,"lat":51.410568,"GlobalID":"cee24a05-9e28-4a7f-81cf-1de444cb5f3b"}},{"type":"Feature","id":309,"geometry":{"type":"Polygon","coordinates":[[[543522.496,184862.503],[543897.7774,183195.5188],[545227.9,182819.699999999],[545681.992,181645.736300001],[543114.2,179725.5],[540325.25,179765.699999999],[539530.2,180735.4],[538382.8002,182234.871400001],[538302.9268,182339.2534],[537340.7037,183813.203400001],[537639.0017,184582.7031],[537572.9011,185494.702],[540158.8985,186087.602299999],[541962.9014,185976.0043],[542212.801,187004.1],[543522.496,184862.503]]]},"properties":{"OBJECTID":309,"lad19cd":"E09000025","lad19nm":"Newham","lad19nmw":" ","bng_e":540715,"bng_n":183344,"long":0.027289,"lat":51.531471,"GlobalID":"3506c405-e8e3-4948-8dd0-d494b89200c5"}},{"type":"Feature","id":310,"geometry":{"type":"Polygon","coordinates":[[[540036.3027,194159.7017],[543642.9975,191573.602],[548106.8983,193800.9044],[548881.0024,191087.6011],[547410.504,189682.903200001],[547817.9007,188036.904300001],[546989.9976,186401.202500001],[543619.0086,184826.3661],[543522.496,184862.503],[542212.801,187004.1],[541962.9014,185976.0043],[540158.8985,186087.602299999],[539475.1026,190121.997500001],[540058.3995,192291.296499999],[539158.5005,193049.6994],[540036.3027,194159.7017]]]},"properties":{"OBJECTID":310,"lad19cd":"E09000026","lad19nm":"Redbridge","lad19nmw":" ","bng_e":543511,"bng_n":189478,"long":0.070071,"lat":51.585892,"GlobalID":"371744e4-69cb-45e9-8f89-fe4150f67d32"}},{"type":"Feature","id":311,"geometry":{"type":"Polygon","coordinates":[[[521976.3736,178099.387],[523077.25,178140.300000001],[523487.5246,176221.754699999],[522843.0005,176324.097100001],[522822.998,175370.800000001],[521248.2985,175227.301000001],[521054.9023,174320.500600001],[522301.1021,173037.3979],[521450.5993,172366.9998],[519234.3021,170410],[518931.898,171384.1011],[517530.6004,171709.8979],[517739.0026,168375.9022],[517139.496,167412.498],[516440.1004,167192.900900001],[514211.0976,169374.996200001],[512535.7012,168963.404100001],[511946.2041,170484.398700001],[513602.6038,172670.302999999],[512127.8015,173504.404200001],[513132.9981,174421.1018],[515645.4991,174161.2962],[516344.9874,174780.240599999],[516409.1859,175128.4932],[516786.4155,175963.950200001],[517709.6,177348.300000001],[519012.7,177944],[520972.8,176153.15],[521976.3736,178099.387]]]},"properties":{"OBJECTID":311,"lad19cd":"E09000027","lad19nm":"Richmond upon Thames","lad19nmw":" ","bng_e":519005,"bng_n":172650,"long":-0.28914,"lat":51.44035,"GlobalID":"7e94afe8-0fc1-4812-8f91-cfac4368f965"}},{"type":"Feature","id":312,"geometry":{"type":"Polygon","coordinates":[[[534546.7513,179747.5624],[536406.25,180500],[536691.559,178958.772600001],[535209.1987,178349.1974],[536163.1028,174708.499500001],[534782.4014,173871.199200001],[534004.2985,171442.304500001],[533716.6036,170817.803200001],[532018.896,174261.6974],[532765.9975,175861.499500001],[531463.5994,177400.798900001],[531144.4554,180790.621099999],[533386.5924,180512.8676],[534546.7513,179747.5624]]]},"properties":{"OBJECTID":312,"lad19cd":"E09000028","lad19nm":"Southwark","lad19nmw":" ","bng_e":533947,"bng_n":175866,"long":-0.07306,"lat":51.465919,"GlobalID":"d4f0e359-3d19-4783-be89-92e6bdaada8c"}},{"type":"Feature","id":313,"geometry":{"type":"Polygon","coordinates":[[[522578.4989,167053.6007],[524104.0001,166073.001399999],[524662.603,166988.1995],[526158.0015,166711.398700001],[527078.2987,167622.4979],[527759.7036,167034.2963],[529902.1992,167411.7982],[531245.7978,162424.195900001],[529328.6975,161967.796499999],[529312.0012,159898.698799999],[528552.3013,159658.0977],[525650.7983,162043.504899999],[524042.5992,160476.3035],[523406.0969,161201.8958],[524262.2971,161986.4012],[523844.2972,163500.4978],[522240.0969,164547.798],[522231.1015,166014.998],[522578.4989,167053.6007]]]},"properties":{"OBJECTID":313,"lad19cd":"E09000029","lad19nm":"Sutton","lad19nmw":" ","bng_e":527356,"bng_n":163640,"long":-0.17227,"lat":51.357559,"GlobalID":"b270d975-f9f4-44a5-8947-6952a97d1821"}},{"type":"Feature","id":314,"geometry":{"type":"Polygon","coordinates":[[[539530.2,180735.4],[539457.3179,180708.2171],[538501.7,180351.800000001],[538364.45,178282.699999999],[537186.01,178665.26],[536819.15,180726.050000001],[535732.6219,180751.0777],[534766.5658,179996.1292],[533386.5924,180512.8676],[533410.7035,182037.9015],[534479.5026,183624.6973],[537639.0017,184582.7031],[537340.7037,183813.203400001],[538302.9268,182339.2534],[538382.8002,182234.871400001],[539530.2,180735.4]]]},"properties":{"OBJECTID":314,"lad19cd":"E09000030","lad19nm":"Tower Hamlets","lad19nmw":" ","bng_e":536343,"bng_n":181452,"long":-0.03643,"lat":51.515541,"GlobalID":"4ebfe172-b6e1-40dd-8590-b88671e5d9da"}},{"type":"Feature","id":315,"geometry":{"type":"Polygon","coordinates":[[[537625.1006,196029.4965],[540060.7988,195527.3002],[540036.3027,194159.7017],[539158.5005,193049.6994],[540058.3995,192291.296499999],[539475.1026,190121.997500001],[540158.8985,186087.602299999],[537572.9011,185494.702],[536755.1971,186529.3959],[535464.202,186662.297800001],[534444.0983,188327.4012],[535728.5963,191460.904200001],[537625.1006,196029.4965]]]},"properties":{"OBJECTID":315,"lad19cd":"E09000031","lad19nm":"Waltham Forest","lad19nmw":" ","bng_e":537327,"bng_n":190277,"long":-0.01881,"lat":51.594608,"GlobalID":"592ee74e-eded-4d8d-b4b7-90ba26b51566"}},{"type":"Feature","id":316,"geometry":{"type":"Polygon","coordinates":[[[528519.2963,175722.099400001],[529115.7028,173061.501],[529651.4999,173093.7018],[529402.903,170555.1984],[526499.8995,171092.804500001],[525890.8038,172940.295700001],[521672.1029,171846.5988],[521450.5993,172366.9998],[522301.1021,173037.3979],[521054.9023,174320.500600001],[521248.2985,175227.301000001],[522822.998,175370.800000001],[522843.0005,176324.097100001],[523487.5246,176221.754699999],[525595.75,174962.4],[526227.0323,175762.009199999],[526218.4931,176949.371400001],[528549.7489,177901.928099999],[530045.6689,177895.060900001],[528519.2963,175722.099400001]]]},"properties":{"OBJECTID":316,"lad19cd":"E09000032","lad19nm":"Wandsworth","lad19nmw":" ","bng_e":525151,"bng_n":174138,"long":-0.20023,"lat":51.4524,"GlobalID":"1bb8ef4f-a753-460b-9e71-9dab6e729ca5"}},{"type":"Feature","id":317,"geometry":{"type":"Polygon","coordinates":[[[525529.9999,183481.598300001],[528213.9982,183685.4999],[529903.0979,181053.803200001],[531129.6991,181291.6951],[531144.4554,180790.621099999],[530045.6689,177895.060900001],[528549.7489,177901.928099999],[527914.9003,179753.195499999],[526462.6977,179219.498299999],[523850.3985,182509.996400001],[524580.2019,183087.4011],[525200.9973,182512.5956],[525529.9999,183481.598300001]]]},"properties":{"OBJECTID":317,"lad19cd":"E09000033","lad19nm":"Westminster","lad19nmw":" ","bng_e":528268,"bng_n":180870,"long":-0.15295,"lat":51.512199,"GlobalID":"ffc80821-eb08-4a8b-95e3-72a449ac8ec4"}},{"type":"Feature","id":318,"geometry":{"type":"Polygon","coordinates":[[[112176.7921,552094.0253],[115028.6072,552859.625],[118097.9622,551522.4592],[120772.5795,553804.9407],[122242.2779,552553.849400001],[123514.4279,553105.6008],[124362.461,552307.598099999],[125986.4883,552336.142999999],[125751.018,553255.840399999],[128279.9502,551938.071699999],[130164.8213,552887.669299999],[130246.0975,553812.195900001],[131980.403,554325.5],[135845.7703,553563.378799999],[136308.2984,551916.6536],[138206.4882,551708.047700001],[137798.1796,552246.6368],[138633.1242,552295.9889],[139762.9005,551627.0988],[139463.2966,552370.107100001],[142317.9908,552407.915999999],[142097.6844,551105.635399999],[143631.1827,549421.188300001],[144518.7938,550400.6587],[145182.2821,549289.83],[146127.8025,549967.0381],[147784.2017,548995.744000001],[149200.1124,549810.003799999],[150009.3588,548884.6644],[148779.1323,548213.3816],[149321.3015,547421.170600001],[148733.0266,546516.898600001],[149527.4515,545887.4364],[148171.6618,542721.1534],[148692.5515,541860.2689],[149531.3627,542004.468900001],[149384.6324,540392.0151],[150729.3664,539530.092700001],[148869.9766,537981.5559],[147602.5948,535143.798900001],[145270.056,537173.053200001],[145313.7133,535760.948899999],[143845.6512,535056.657],[142933.5101,536683.332599999],[140344.6453,533409.2414],[140390.3293,531505.263],[139112.6831,531715.868799999],[138779.5632,530950.247199999],[136202.9113,533158.4594],[133866.5911,532546.136600001],[132260.363,532988.3687],[132360.5069,531909.6472],[129296.6139,530896.2929],[127657.8856,531175.811899999],[126322.4208,529687.2369],[124649.8126,530898.4704],[122649.6781,530879.830399999],[123397.8652,528976.2338],[121834.2249,528274.9759],[120726.015,530397.0536],[113964.1927,528245.257099999],[115747.7253,537127.7794],[112003.5571,541429.102499999],[110484.6407,544698.164000001],[113317.4167,549892.412799999],[112072.0297,551192.299000001],[112176.7921,552094.0253]]]},"properties":{"OBJECTID":318,"lad19cd":"N09000001","lad19nm":"Antrim and Newtownabbey","lad19nmw":" ","bng_e":130813,"bng_n":541285,"long":-6.1776,"lat":54.693859,"GlobalID":"7d4aceef-d5ee-4eda-87c7-0ddac438032b"}},{"type":"Feature","id":319,"geometry":{"type":"Polygon","coordinates":[[[121834.2249,528274.9759],[123467.7536,526451.9188],[123505.7395,522223.541200001],[125540.4076,519401.3386],[124213.5657,517716.259400001],[127171.9781,513685.372099999],[127000.3541,512327.3071],[130552.8761,513388.8095],[130330.9475,512294.967599999],[131968.2615,512363.5766],[134878.5298,509342.0671],[136851.4736,508484.832800001],[136166.0872,506714.9782],[137905.5991,506280.2787],[137593.7414,505682.537900001],[138924.5577,505471.3333],[139024.859,504678.7722],[135821.638,500004.715],[133555.9896,500095.966700001],[133115.0891,499220.3423],[135835.2759,496041.728700001],[135834.0265,494870.4628],[134947.5452,494773.5233],[135527.5624,493834.3621],[134627.7161,492997.5141],[137022.6485,492821.2599],[136149.3109,490728.968499999],[134931.7105,491967.204500001],[132447.016,490516.9923],[130532.4537,490965.916200001],[128829.7324,488364.7722],[127086.4226,490546.1733],[127619.2833,491255.4789],[125702.0247,492979.750800001],[123839.1679,493661.7618],[122985.0883,493050.6668],[121444.8394,494702.8979],[120789.5372,493993.3144],[118007.9243,493954.7973],[116755.3404,495239.9981],[115589.4396,494342.250299999],[113481.4078,495335.6109],[111007.8426,494871.308599999],[109678.0108,493239.6478],[109118.5526,493595.5447],[106481.5613,490494.290899999],[105202.8239,491864.167099999],[102049.7091,490614.218],[101111.9668,489485.2776],[100193.2237,490148.2819],[97031.1468000002,485981.054500001],[94066.0811000001,488462.8401],[92861.1780000003,488298.8818],[92029.3707999997,486563.057499999],[90740.0559,486640.800799999],[89881.3819000004,488610.195499999],[88600.8831000002,488681.5944],[87051.8180999998,490382.773499999],[87151.5367999999,491259.0352],[86139.5042000003,491540.590299999],[85678.5910999998,495863.869899999],[82543.3421,498046.806399999],[82802.2967999997,498952.291300001],[83635.7713000001,498200.3188],[84402.3872999996,499360.828500001],[83851.8629999999,503654.2071],[85640.4583999999,504145.093900001],[88076.8090000004,508893.7456],[88038.0987999998,511057.332599999],[89054.5987,512781.694499999],[91117.7948000003,511740.734300001],[92817.4171000002,511869.999700001],[93205.1808000002,511006.193399999],[94391.5888,511177.3586],[95520.9461000003,515382.1742],[98787.6279999996,518266.073899999],[98853.2529999996,520124.366900001],[100352.7563,521935.0244],[102786.7544,521732.6642],[106331.8594,525817.7873],[113964.1927,528245.257099999],[120726.015,530397.0536],[121834.2249,528274.9759]]]},"properties":{"OBJECTID":319,"lad19cd":"N09000002","lad19nm":"Armagh City, Banbridge and Craigavon","lad19nmw":" ","bng_e":112110,"bng_n":508158,"long":-6.43455,"lat":54.3867,"GlobalID":"e709a315-bcc5-4e42-9a9a-ed5175d6f574"}},{"type":"Feature","id":320,"geometry":{"type":"Polygon","coordinates":[[[138779.5632,530950.247199999],[139112.6831,531715.868799999],[140390.3293,531505.263],[140344.6453,533409.2414],[142933.5101,536683.332599999],[143845.6512,535056.657],[145313.7133,535760.948899999],[145270.056,537173.053200001],[147602.5948,535143.798900001],[151239.0342,533347.092800001],[150957.7627,532234.543099999],[152802.6044,531374.3037],[152670.8316,530693.5447],[154096.5505,531166.5239],[152981.8693,527431.655400001],[148598.3667,525475.484300001],[147144.4553,526101.2498],[145621.4903,523233.6811],[145112.0668,523649.7842],[142809.2665,522320.781500001],[140294.114,524720.543400001],[138681.7901,524360.7807],[137534.6799,525363.9901],[138804.5249,526286.1426],[138779.5632,530950.247199999]]]},"properties":{"OBJECTID":320,"lad19cd":"N09000003","lad19nm":"Belfast","lad19nmw":" ","bng_e":146465,"bng_n":529747,"long":-5.92535,"lat":54.59853,"GlobalID":"7c8fd9c6-d78b-4e40-9358-e3bb1edf456f"}},{"type":"Feature","id":321,"geometry":{"type":"MultiPolygon","coordinates":[[[[71318.1766999997,584590.298599999],[73636.8207999999,583949.7305],[77442.2004000004,584456.7565],[77591.1426999997,585268.546],[78088.8416999998,584800.7334],[77863.8014000002,585402.024900001],[80061.1871999996,587344.1712],[79847.4856000002,589967.0307],[81837.7933999998,590843.4223],[83490.3402000004,595007.4728],[84046.4681000002,600202.625299999],[87207.7074999996,597707.0886],[89636.4446999999,596827.073799999],[97407.4477000004,596343.1327],[99226.5445999997,596740.9342],[99524.0609999998,598583.4823],[103557.0401,599304.1044],[103444.769,600861.986500001],[104233.2454,599959.022399999],[106982.5457,599872.083000001],[110488.5135,601221.936699999],[110889.4247,600742.960999999],[112073.05,601665.662699999],[112004.948,602645.6899],[115611.5612,604470.513900001],[116847.5098,602929.1724],[119698.8089,601990.6076],[122408.6367,603332.785],[124624.979,602503.5462],[125821.2588,601332.1294],[127300.6627,601289.095000001],[130496.8693,598017.0594],[134266.8789,599033.763699999],[136401.5268,600489.5891],[138174.7727,598321.9563],[141532.651,596936.2574],[142089.0636,594324.4395],[143537.6786,592619.4308],[143493.8011,590304.166300001],[142432.7538,589313.4056],[142586.8706,586206.983200001],[140993.506,583843.750800001],[141270.7555,582100.072699999],[140632.221,581506.127599999],[141848.7865,580640.9869],[146052.7344,580771.0013],[143546.0988,578596.518100001],[142879.2758,578795.727600001],[137855.4877,573175.408],[135731.251,573774.3222],[133862.0719,578624.1467],[132896.5614,579100.6898],[132558.8641,578190.559800001],[131360.461,578656.535800001],[126410.536,576188.035599999],[123602.9236,576965.424699999],[123438.2818,573506.6954],[122054.1845,574586.989],[121235.3942,573224.715399999],[119133.8147,574044.7345],[118337.8102,572428.1164],[116961.1515,573222.6789],[116681.8051,572254.154300001],[115330.191,572399.3495],[117742.9184,569550.168099999],[116396.3072,569203.529200001],[116659.5249,566972.434699999],[113791.8715,568056.345799999],[111695.3742,567510.9],[109521.6303,571363.702099999],[109437.2202,569305.8168],[108290.4838,569775.5189],[106279.6353,568393.691400001],[104309.823,570164.0111],[102641.7188,570177.461100001],[101667.7495,568574.455499999],[99487.7814999996,568034.3616],[98502.6295999996,569831.51],[96519.8673999999,569635.763499999],[93993.7487000003,568127.311000001],[95081.5235000001,566857.625399999],[94170.3756999997,563583.506999999],[93075.2238999996,563303.4901],[93180.5115,562416.8136],[91767.7676999997,560776.8717],[88700.4100000001,561477.0624],[88344.0262000002,562244.7184],[86428.2547000004,561865.874299999],[86238.9906000001,559511.331599999],[84540.9352000002,558355.264799999],[82453.3924000002,559995.3649],[80767.9660999998,559495.524499999],[79808.0301000001,560098.4279],[78458.2101999996,558846.3495],[78036.3194000004,560480.127800001],[76607.3233000003,561725.335200001],[76760.0690000001,564163.122300001],[78191.5137999998,566243.503],[77222.0932,566476.3782],[76851.1264000004,569355.3434],[74141.4753,571058.2457],[74009.6332999999,574601.6921],[75036.4168999996,577513.286499999],[72116.3300000001,577666.263599999],[71863.7078999998,579877.6527],[70010.8669999996,583260.6043],[71318.1766999997,584590.298599999]]],[[[130997.5923,610193.731799999],[135378.7584,608757.169199999],[133811.8514,604041.1066],[133233.0193,605964.707800001],[133842.6088,607850.8576],[127945.0767,608301.956],[129057.9275,609741.4921],[130997.5923,610193.731799999]]]]},"properties":{"OBJECTID":321,"lad19cd":"N09000004","lad19nm":"Causeway Coast and Glens","lad19nmw":" ","bng_e":106168,"bng_n":581420,"long":-6.5996,"lat":55.039619,"GlobalID":"63b6b8f8-89d4-40f9-8521-a9eedc9280f3"}},{"type":"Feature","id":322,"geometry":{"type":"Polygon","coordinates":[[[31848.7455000002,538671.0502],[32589.5936000003,539801.864600001],[31761.4972000001,539921.8005],[31773.1105000004,541634.01],[29477.7291000001,539925.560799999],[28492.5450999998,540798.028000001],[27520.4506000001,540484.1346],[25097.4225000003,543187.65],[24026.0761000002,542064.015000001],[22327.9988000002,542080.757300001],[22367.5151000004,544152.378699999],[20060.8871999998,545022.4156],[19102.4937000005,546407.087099999],[18917.6766999997,547292.063100001],[20048.7735000001,548540.744200001],[18645.8639000002,549553.739700001],[18895.8485000003,550287.8573],[21380.8189000003,550072.9395],[24446.5712000001,553592.230599999],[25641.9737999998,553199.509],[26337.0822999999,551446.6538],[27377.0247,551468.318700001],[29726.8093999997,549556.515799999],[30784.0595000004,550885.3672],[32390.9095000001,551780.8035],[33307.1045000004,551445.957],[37439.4930999996,554211.738399999],[38589.1332,553209.1085],[40458.8548999997,553096.703400001],[41114.2259999998,553798.4223],[41093.9090999998,552828.8112],[43356.017,552752.022],[43981.1113999998,553195.989],[43196.6935000001,554181.454299999],[43383.5802999996,557968.120200001],[44895.9398999996,559898.424900001],[47874.6842,561465.566500001],[50911.4885999998,566540.6679],[51191.7907999996,573638.6505],[54815.4872000003,574518.611099999],[53989.3370000003,576619.2644],[54181.9987000003,578764.801999999],[55305.5048000002,580338.462099999],[54450.6116000004,581015.485300001],[55516.9320999999,583060.592700001],[58644.4308000002,585966.5502],[60375.5421000002,585228.662699999],[61675.4312000005,586363.269099999],[62254.5283000004,585345.5847],[63968.2633999996,587363.991900001],[64581.5078999996,586577.525],[64552.4877000004,587187.534],[65174.8821999999,586924.018100001],[64615.2788000004,584804.833900001],[65858.6677999999,585163.022],[66472.3903999999,586552.981699999],[70814.5015000002,586002.534600001],[71318.1766999997,584590.298599999],[70010.8669999996,583260.6043],[71863.7078999998,579877.6527],[72116.3300000001,577666.263599999],[75036.4168999996,577513.286499999],[74009.6332999999,574601.6921],[74141.4753,571058.2457],[76851.1264000004,569355.3434],[77222.0932,566476.3782],[78191.5137999998,566243.503],[76760.0690000001,564163.122300001],[76607.3233000003,561725.335200001],[78036.3194000004,560480.127800001],[78458.2101999996,558846.3495],[79808.0301000001,560098.4279],[80767.9660999998,559495.524499999],[82453.3924000002,559995.3649],[84540.9352000002,558355.264799999],[83736.6606999999,556420.0931],[84844.0903000003,554251.262700001],[83527.8254000004,553149.019200001],[82380.7512999997,553281.9015],[78230.1809,554276.519099999],[73277.7896999996,553062.5067],[70795.6793,551410.3169],[63816.2565000001,552217.998299999],[61404.5449000001,550048.9439],[60028.6564999996,551225.218599999],[58593.3704000004,551103.8037],[57585.2636000002,550459.5715],[57509.3783999998,548372.4738],[52676.8370000003,546481.5535],[48612.1566000003,540970.8378],[46385.7346999999,542619.2892],[45674.0992000001,542131.011],[44695.9062999999,542712.144300001],[41980.4445000002,541231.772],[42066.9132000003,542184.2005],[41335.1930999998,542257.8532],[40438.3552999999,541524.051100001],[40455.8425000003,540346.362199999],[38997.1321999999,541038.631899999],[37750.6972000003,540925.4683],[37568.2988,540065.804500001],[34973.1155000003,540454.7481],[31848.7455000002,538671.0502]]]},"properties":{"OBJECTID":322,"lad19cd":"N09000005","lad19nm":"Derry City and Strabane","lad19nmw":" ","bng_e":51779,"bng_n":559566,"long":-7.42064,"lat":54.80904,"GlobalID":"748f0047-831c-4bcc-9c07-649428ba6109"}},{"type":"Feature","id":323,"geometry":{"type":"Polygon","coordinates":[[[31848.7455000002,538671.0502],[34973.1155000003,540454.7481],[37568.2988,540065.804500001],[37750.6972000003,540925.4683],[38997.1321999999,541038.631899999],[40455.8425000003,540346.362199999],[40438.3552999999,541524.051100001],[41335.1930999998,542257.8532],[42066.9132000003,542184.2005],[41980.4445000002,541231.772],[44695.9062999999,542712.144300001],[45674.0992000001,542131.011],[46385.7346999999,542619.2892],[48612.1566000003,540970.8378],[52676.8370000003,546481.5535],[57509.3783999998,548372.4738],[57585.2636000002,550459.5715],[58593.3704000004,551103.8037],[60028.6564999996,551225.218599999],[61404.5449000001,550048.9439],[63816.2565000001,552217.998299999],[70795.6793,551410.3169],[73277.7896999996,553062.5067],[78230.1809,554276.519099999],[82380.7512999997,553281.9015],[82164.7604999999,550907.4617],[78817.6206999999,549870.384299999],[77367.5289000003,547420.786],[78361.0012999997,545999.6984],[77548.7122,542219.4672],[79626.7811000003,541203.5877],[78304.7220000001,539982.479900001],[79746.0813999996,535459.051899999],[80566.9976000004,534913.2766],[79258.2171,533788.5474],[78946.3453000002,531855.0098],[77739.6053999998,532153.8303],[78879.8953999998,530752.581499999],[77735.8180999998,529440.3518],[78349.9194999998,527890.268999999],[75983.6563999997,525926.665200001],[74681.6873000003,526156.9847],[73849.2823999999,523952.459100001],[71663.7588,523799.449200001],[71754.7450999999,524367.8048],[69933.5268999999,523652.2862],[69254.2556999996,522093.6927],[68223.3459999999,522037.318600001],[68322.6672,520990.784600001],[67462.3858000003,521715.295700001],[65775.6560000004,520848.613600001],[63055.8945000004,521650.5701],[63235.2279000003,520337.3267],[62091.0159,520539.756899999],[60731.9137000004,519210.181399999],[59592.3291999996,518904.4123],[58400.4052999998,520041.661800001],[58473.1229999997,519288.842],[56818.5669999998,518280.946599999],[54247.6897,518622.725299999],[52092.0793000003,517964.5801],[52249.7587000001,515955.143300001],[54119.2564000003,514144.9605],[53647.4808999998,510490.1873],[57143.2958000004,510214.055199999],[57470.6403999999,507119.820800001],[59000.5734000001,505091.6317],[60239.3475000001,504999.887800001],[62059.4844000004,506518.1677],[62813.3430000003,506001.6171],[63213.1882999996,502848.744100001],[62008.3424000004,503091.214500001],[60983.2341,501886.425799999],[63425.7170000002,500194.015900001],[62900.1464,498725.8507],[64121.4156999998,498752.204299999],[65172.0011999998,496665.146],[63985.1323999995,495416.578600001],[64796.0998999998,494919.7282],[64744.9203000003,493243.9944],[62983.767,492577.233999999],[61925.7219000002,493468.375800001],[61165.3227000004,492489.8313],[59730.4565000003,492618.2907],[58929.091,491533.5426],[57863.9452,491484.020400001],[57734.9801000003,490765.453600001],[58791.8361,490675.390799999],[57046.6748000002,490184.7432],[56976.2192000002,488529.1494],[58084.4501999998,487587.2566],[56876.1930999998,487096.529100001],[57170.0389999999,486091.003],[55133.0173000004,482522.3914],[53741.9988000002,482527.1347],[53293.7335000001,483747.926100001],[54862.1133000003,484104.635600001],[53892.0404000003,485067.5912],[55114.8243000004,486040.099099999],[55492.6491999999,487550.780200001],[53504.9709000001,487664.6395],[51422.5566999996,485518.0144],[53455.8925000001,482757.282099999],[52491.0625999998,481711.619100001],[52047.7786999997,483001.8662],[50732.6782999998,482197.2479],[49726.6349999998,483942.724400001],[47779.6168,482835.464500001],[49190.6708000004,484886.702400001],[46062.4495000001,484828.026900001],[46934.4327999996,486924.4892],[44776.7515000002,486832.4318],[42957.6799999997,485507.1997],[42091.4118999997,483502.7686],[39023.7989999996,485252.025],[37648.9924999997,483834.9087],[36491.4144000001,484426.377900001],[36045.5824999996,486128.4318],[33728.6745999996,486569.297499999],[32774.1572000002,489489.7937],[31120.6037999997,491458.279300001],[29757.5821000002,491155.7402],[29409.4391000001,494066.7236],[25870.2152000004,493879.924900001],[24048.3402000004,494688.664000001],[21139.4078000002,493973.237199999],[18117.5943,496087.7015],[18498.1926999995,500832.307800001],[17751.0436000004,501559.9267],[17848.2516999999,503040.593599999],[18713.4082000004,504530.4811],[17460.7697999999,504456.8544],[16213.6316,505627.861099999],[15553.1566000003,505076.134400001],[12410.0750000002,507179.9136],[10334.1446000002,512464.509299999],[8305.77180000022,512480.128599999],[6703.30530000012,513631.563100001],[5273.63580000028,517297.0002],[690.021900000051,522644.7575],[1976.16830000002,523573.215700001],[-116.19280000031,525307.5798],[3983.49949999992,525427.4461],[4155.73539999966,526231.694700001],[5582.69379999954,526103.827299999],[5173.58800000045,527019.5735],[5820.50549999997,527285.2631],[8828.72090000007,527095.9242],[9063.32079999987,529175.614600001],[11751.7209999999,533358.140699999],[14066.2078999998,533311.1821],[15267.1623,531682.6711],[21669.2325999998,531072.0539],[23492.7971999999,532195.3431],[22963.4844000004,533127.065099999],[25506.9038000004,535072.4619],[25762.9560000002,536165.620200001],[27850.3945000004,536472.106899999],[28666.2034999998,537851.062899999],[31848.7455000002,538671.0502]]]},"properties":{"OBJECTID":323,"lad19cd":"N09000006","lad19nm":"Fermanagh and Omagh","lad19nmw":" ","bng_e":41233,"bng_n":513013,"long":-7.5271,"lat":54.385208,"GlobalID":"c38f61bc-a3ad-484d-b953-420be006fed8"}},{"type":"Feature","id":324,"geometry":{"type":"Polygon","coordinates":[[[121834.2249,528274.9759],[123397.8652,528976.2338],[122649.6781,530879.830399999],[124649.8126,530898.4704],[126322.4208,529687.2369],[127657.8856,531175.811899999],[129296.6139,530896.2929],[132360.5069,531909.6472],[132260.363,532988.3687],[133866.5911,532546.136600001],[136202.9113,533158.4594],[138779.5632,530950.247199999],[138804.5249,526286.1426],[137534.6799,525363.9901],[138681.7901,524360.7807],[140294.114,524720.543400001],[142809.2665,522320.781500001],[145112.0668,523649.7842],[145621.4903,523233.6811],[147144.4553,526101.2498],[148598.3667,525475.484300001],[152981.8693,527431.655400001],[154096.5505,531166.5239],[155585.9602,531537.8146],[156542.8989,530786.208699999],[156267.5249,528644.220000001],[157225.2617,527198.780300001],[155130.578,526156.712400001],[154408.8577,525028.6993],[154721.7948,523349.005100001],[152409.3943,521215.024700001],[151856.5603,518555.8243],[152442.3311,517863.149900001],[149253.7897,516255.702500001],[148844.456,514916.0471],[147139.7143,514446.9944],[147255.6809,513613.8221],[146209.4345,513137.9607],[146145.9426,511287.8607],[145171.3252,511004.0759],[145475.4312,510275.1664],[143635.2443,508126.1384],[144307.6629,505873.6041],[143528.287,505427.1128],[142242.6166,506046.751],[139024.859,504678.7722],[138924.5577,505471.3333],[137593.7414,505682.537900001],[137905.5991,506280.2787],[136166.0872,506714.9782],[136851.4736,508484.832800001],[134878.5298,509342.0671],[131968.2615,512363.5766],[130330.9475,512294.967599999],[130552.8761,513388.8095],[127000.3541,512327.3071],[127171.9781,513685.372099999],[124213.5657,517716.259400001],[125540.4076,519401.3386],[123505.7395,522223.541200001],[123467.7536,526451.9188],[121834.2249,528274.9759]]]},"properties":{"OBJECTID":324,"lad19cd":"N09000007","lad19nm":"Lisburn and Castlereagh","lad19nmw":" ","bng_e":138712,"bng_n":518920,"long":-6.03545,"lat":54.49752,"GlobalID":"1a131f2c-6dfe-4817-922d-44081b944fa3"}},{"type":"Feature","id":325,"geometry":{"type":"Polygon","coordinates":[[[146052.7344,580771.0013],[146853.0043,579374.090500001],[144757.7626,572838.3258],[149160.6694,570050.420499999],[151445.4061,563887.884099999],[152657.404,562828.6942],[153565.9014,563002.8555],[153898.105,560745.529999999],[156264.1618,557435.9233],[157173.4103,557267.3013],[157445.0815,558099.9442],[158298.6575,557339.7872],[158551.4522,558114.199899999],[160887.6847,556726.165999999],[162905.647,551678.487500001],[162793.3532,547587.2128],[161251.223,545324.0353],[158224.9629,542744.023700001],[155946.7749,542819.9102],[150729.3664,539530.092700001],[149384.6324,540392.0151],[149531.3627,542004.468900001],[148692.5515,541860.2689],[148171.6618,542721.1534],[149527.4515,545887.4364],[148733.0266,546516.898600001],[149321.3015,547421.170600001],[148779.1323,548213.3816],[150009.3588,548884.6644],[149200.1124,549810.003799999],[147784.2017,548995.744000001],[146127.8025,549967.0381],[145182.2821,549289.83],[144518.7938,550400.6587],[143631.1827,549421.188300001],[142097.6844,551105.635399999],[142317.9908,552407.915999999],[139463.2966,552370.107100001],[139762.9005,551627.0988],[138633.1242,552295.9889],[137798.1796,552246.6368],[138206.4882,551708.047700001],[136308.2984,551916.6536],[135845.7703,553563.378799999],[131980.403,554325.5],[130246.0975,553812.195900001],[130164.8213,552887.669299999],[128279.9502,551938.071699999],[125751.018,553255.840399999],[125986.4883,552336.142999999],[124362.461,552307.598099999],[123514.4279,553105.6008],[122242.2779,552553.849400001],[120772.5795,553804.9407],[118097.9622,551522.4592],[115028.6072,552859.625],[112176.7921,552094.0253],[112792.7231,555577.2278],[113755.4175,556857.863299999],[111210.665,566369.921599999],[111695.3742,567510.9],[113791.8715,568056.345799999],[116659.5249,566972.434699999],[116396.3072,569203.529200001],[117742.9184,569550.168099999],[115330.191,572399.3495],[116681.8051,572254.154300001],[116961.1515,573222.6789],[118337.8102,572428.1164],[119133.8147,574044.7345],[121235.3942,573224.715399999],[122054.1845,574586.989],[123438.2818,573506.6954],[123602.9236,576965.424699999],[126410.536,576188.035599999],[131360.461,578656.535800001],[132558.8641,578190.559800001],[132896.5614,579100.6898],[133862.0719,578624.1467],[135731.251,573774.3222],[137855.4877,573175.408],[142879.2758,578795.727600001],[143546.0988,578596.518100001],[146052.7344,580771.0013]]]},"properties":{"OBJECTID":325,"lad19cd":"N09000008","lad19nm":"Mid and East Antrim","lad19nmw":" ","bng_e":133943,"bng_n":560151,"long":-6.14645,"lat":54.86462,"GlobalID":"00871748-2bc7-4636-a2bf-e3aa0977f420"}},{"type":"Feature","id":326,"geometry":{"type":"Polygon","coordinates":[[[84540.9352000002,558355.264799999],[86238.9906000001,559511.331599999],[86428.2547000004,561865.874299999],[88344.0262000002,562244.7184],[88700.4100000001,561477.0624],[91767.7676999997,560776.8717],[93180.5115,562416.8136],[93075.2238999996,563303.4901],[94170.3756999997,563583.506999999],[95081.5235000001,566857.625399999],[93993.7487000003,568127.311000001],[96519.8673999999,569635.763499999],[98502.6295999996,569831.51],[99487.7814999996,568034.3616],[101667.7495,568574.455499999],[102641.7188,570177.461100001],[104309.823,570164.0111],[106279.6353,568393.691400001],[108290.4838,569775.5189],[109437.2202,569305.8168],[109521.6303,571363.702099999],[111695.3742,567510.9],[111210.665,566369.921599999],[113755.4175,556857.863299999],[112792.7231,555577.2278],[112176.7921,552094.0253],[112072.0297,551192.299000001],[113317.4167,549892.412799999],[110484.6407,544698.164000001],[112003.5571,541429.102499999],[115747.7253,537127.7794],[113964.1927,528245.257099999],[106331.8594,525817.7873],[102786.7544,521732.6642],[100352.7563,521935.0244],[98853.2529999996,520124.366900001],[98787.6279999996,518266.073899999],[95520.9461000003,515382.1742],[94391.5888,511177.3586],[93205.1808000002,511006.193399999],[92817.4171000002,511869.999700001],[91117.7948000003,511740.734300001],[89054.5987,512781.694499999],[88038.0987999998,511057.332599999],[88076.8090000004,508893.7456],[85640.4583999999,504145.093900001],[83851.8629999999,503654.2071],[83191.7306000004,505540.169],[81252.6447000001,506105.753],[81128.2724000001,508824.6916],[79755.9478000002,509271.000600001],[80376.8054999998,509790.122400001],[78121.9413000001,510995.2684],[77009.0124000004,512899.002499999],[75879.7947000004,512619.4868],[73851.3086999999,514546.2634],[71938.7872000001,513532.9573],[70779.3947999999,511083.9738],[68198.3517000005,509033.0447],[68500.7374999998,507624.452500001],[65138.1621000003,505560.007300001],[62813.3430000003,506001.6171],[62059.4844000004,506518.1677],[60239.3475000001,504999.887800001],[59000.5734000001,505091.6317],[57470.6403999999,507119.820800001],[57143.2958000004,510214.055199999],[53647.4808999998,510490.1873],[54119.2564000003,514144.9605],[52249.7587000001,515955.143300001],[52092.0793000003,517964.5801],[54247.6897,518622.725299999],[56818.5669999998,518280.946599999],[58473.1229999997,519288.842],[58400.4052999998,520041.661800001],[59592.3291999996,518904.4123],[60731.9137000004,519210.181399999],[62091.0159,520539.756899999],[63235.2279000003,520337.3267],[63055.8945000004,521650.5701],[65775.6560000004,520848.613600001],[67462.3858000003,521715.295700001],[68322.6672,520990.784600001],[68223.3459999999,522037.318600001],[69254.2556999996,522093.6927],[69933.5268999999,523652.2862],[71754.7450999999,524367.8048],[71663.7588,523799.449200001],[73849.2823999999,523952.459100001],[74681.6873000003,526156.9847],[75983.6563999997,525926.665200001],[78349.9194999998,527890.268999999],[77735.8180999998,529440.3518],[78879.8953999998,530752.581499999],[77739.6053999998,532153.8303],[78946.3453000002,531855.0098],[79258.2171,533788.5474],[80566.9976000004,534913.2766],[79746.0813999996,535459.051899999],[78304.7220000001,539982.479900001],[79626.7811000003,541203.5877],[77548.7122,542219.4672],[78361.0012999997,545999.6984],[77367.5289000003,547420.786],[78817.6206999999,549870.384299999],[82164.7604999999,550907.4617],[82380.7512999997,553281.9015],[83527.8254000004,553149.019200001],[84844.0903000003,554251.262700001],[83736.6606999999,556420.0931],[84540.9352000002,558355.264799999]]]},"properties":{"OBJECTID":326,"lad19cd":"N09000009","lad19nm":"Mid Ulster","lad19nmw":" ","bng_e":83920,"bng_n":528564,"long":-6.8889,"lat":54.552731,"GlobalID":"5154e6d0-d083-48b7-b7ad-4d1cf89a45f7"}},{"type":"Feature","id":327,"geometry":{"type":"Polygon","coordinates":[[[152442.3311,517863.149900001],[154347.7089,514215.048900001],[157918.683,514054.0747],[158672.5785,512210.5154],[160032.8281,511990.0922],[162345.6104,513494.5144],[164196.2029,513012.571699999],[164903.9246,513810.649],[167696.5925,511942.5732],[166693.8683,507242.3003],[167321.9426,505514.5011],[169563.0537,503403.1271],[171392.8288,497802.5187],[170327.5298,496904.500700001],[170677.3237,496278.9055],[169045.264,495915.142899999],[168297.7927,493738.157500001],[166201.0382,491315.113],[165078.1207,491554.0603],[164931.527,489699.0844],[164304.2719,489448.038799999],[163978.303,490536.005799999],[163284.9393,490198.053300001],[162992.2652,491390.1183],[163097.97,489074.922],[161450.3984,487303.432700001],[160469.8527,489693.239700001],[159478.0154,490271.134],[151040.5833,489778.077199999],[150325.7423,491356.279999999],[151510.4675,491569.013],[151771.1296,494602.635299999],[149247.1322,491042.3246],[150326.3841,490752.8246],[150504.0452,489705.490700001],[146168.5592,485870.7215],[147312.2987,481590.2499],[145285.6636,474687.865900001],[141523.8161,471895.9827],[140704.2013,470261.386499999],[138529.9812,470224.519200001],[139029.3905,469783.932399999],[137260.0553,468132.3934],[133930.3576,466186.3698],[131107.3648,468294.442],[131754.4062,469192.838199999],[133401.0629,468800.8572],[132077.9264,470744.1974],[127879.3763,471247.6467],[126379.9662,472305.804300001],[125567.6253,475089.351],[121897.646,475106.3835],[119603.809,477066.066500001],[118378.6217,476475.036499999],[117684.3662,474760.638900001],[116511.5076,475252.0558],[116394.2222,477176.668400001],[114679.1967,477476.0623],[114584.3338,472903.1426],[112675.576,471485.011399999],[111349.7866,472040.671],[109241.9497,471435.290899999],[108536.4426,473273.915200001],[107148.9547,473871.2478],[107496.7838,472642.286699999],[104833.6216,471291.2982],[103481.3636,472156.991],[101708.5896,471113.497199999],[99893.0992000001,472154.333900001],[99254.8301999997,470749.7204],[97305.8601000002,469971.8495],[94619.6991999997,474202.601299999],[95351.3685999997,474533.2654],[95450.6096999999,476751.367000001],[96351.4555000002,476671.4989],[95492.6131999996,479710.1787],[96312.3979000002,479538.5505],[97770.7269000001,482980.170600001],[97031.1468000002,485981.054500001],[100193.2237,490148.2819],[101111.9668,489485.2776],[102049.7091,490614.218],[105202.8239,491864.167099999],[106481.5613,490494.290899999],[109118.5526,493595.5447],[109678.0108,493239.6478],[111007.8426,494871.308599999],[113481.4078,495335.6109],[115589.4396,494342.250299999],[116755.3404,495239.9981],[118007.9243,493954.7973],[120789.5372,493993.3144],[121444.8394,494702.8979],[122985.0883,493050.6668],[123839.1679,493661.7618],[125702.0247,492979.750800001],[127619.2833,491255.4789],[127086.4226,490546.1733],[128829.7324,488364.7722],[130532.4537,490965.916200001],[132447.016,490516.9923],[134931.7105,491967.204500001],[136149.3109,490728.968499999],[137022.6485,492821.2599],[134627.7161,492997.5141],[135527.5624,493834.3621],[134947.5452,494773.5233],[135834.0265,494870.4628],[135835.2759,496041.728700001],[133115.0891,499220.3423],[133555.9896,500095.966700001],[135821.638,500004.715],[139024.859,504678.7722],[142242.6166,506046.751],[143528.287,505427.1128],[144307.6629,505873.6041],[143635.2443,508126.1384],[145475.4312,510275.1664],[145171.3252,511004.0759],[146145.9426,511287.8607],[146209.4345,513137.9607],[147255.6809,513613.8221],[147139.7143,514446.9944],[148844.456,514916.0471],[149253.7897,516255.702500001],[152442.3311,517863.149900001]]]},"properties":{"OBJECTID":327,"lad19cd":"N09000010","lad19nm":"Newry, Mourne and Down","lad19nmw":" ","bng_e":133006,"bng_n":480432,"long":-6.08891,"lat":54.149529,"GlobalID":"d79afe7d-14f5-4de1-840d-ba9e83702d20"}},{"type":"Feature","id":328,"geometry":{"type":"MultiPolygon","coordinates":[[[[151239.0342,533347.092800001],[154597.8584,535993.1063],[158858.0526,537834.9921],[160106.7548,536587.351299999],[162736.9581,536651.096899999],[163185.0653,535972.8189],[164296.1026,536806.8676],[165362.8634,536331.2381],[165856.621,537691.767100001],[168981.1754,537312.174699999],[172259.0272,533500.5439],[171882.4101,531008.018200001],[172547.739,528206.8959],[175227.2139,524332.0976],[174580.7618,522421.0221],[175751.8219,516992.844900001],[177683.5678,515659.139799999],[177022.917,514386.509],[177335.631,512308.1183],[174299.9448,509261.2553],[175249.0481,507672.972999999],[175357.4511,504518.2477],[173387.7721,503505.6457],[173110.0959,502283.7632],[173825.5906,501286.239700001],[172699.6085,500763.6654],[172690.572,498734.7774],[171392.8288,497802.5187],[169563.0537,503403.1271],[167321.9426,505514.5011],[166693.8683,507242.3003],[167696.5925,511942.5732],[164903.9246,513810.649],[164196.2029,513012.571699999],[162345.6104,513494.5144],[160032.8281,511990.0922],[158672.5785,512210.5154],[157918.683,514054.0747],[154347.7089,514215.048900001],[152442.3311,517863.149900001],[151856.5603,518555.8243],[152409.3943,521215.024700001],[154721.7948,523349.005100001],[154408.8577,525028.6993],[155130.578,526156.712400001],[157225.2617,527198.780300001],[156267.5249,528644.220000001],[156542.8989,530786.208699999],[155585.9602,531537.8146],[154096.5505,531166.5239],[152670.8316,530693.5447],[152802.6044,531374.3037],[150957.7627,532234.543099999],[151239.0342,533347.092800001]]],[[[172219.6259,537600.087400001],[173007.2115,536965.820800001],[172758.8991,536149.3024],[171433.7077,536651.444599999],[172219.6259,537600.087400001]]]]},"properties":{"OBJECTID":328,"lad19cd":"N09000011","lad19nm":"Ards and North Down","lad19nmw":" ","bng_e":164321,"bng_n":524944,"long":-5.64568,"lat":54.564091,"GlobalID":"08fdfb21-c9b2-4b41-8e20-0ed81b24754d"}},{"type":"Feature","id":329,"geometry":{"type":"Polygon","coordinates":[[[298892.2998,694533.9012],[296654.3016,693504.595899999],[298806.3038,692049.602399999],[296075.8034,691820.797800001],[295937.7976,690981.4981],[293452.3981,691516.404999999],[291841.2967,688502.6976],[289574.1028,690303.4022],[290221.3978,690989.2959],[289617.0018,690422.1982],[288327.2022,692144.395199999],[287163.6014,692479.8992],[286206.1025,691596.602],[286540.9014,692615.600299999],[285040.0972,693562.7095],[285395.5965,694000.8038],[284956.5965,693615.404100001],[284778.1644,693364.843900001],[284216.1467,692547.326400001],[284230.6023,693366.6953],[282997.2979,694569.700999999],[283054.6003,694590.629899999],[284659.5022,695176.7972],[283437.8974,696841.000800001],[284913.3016,697127.0989],[284704.9984,698428.496400001],[286583.0997,701944.799900001],[289656.001,704167.003799999],[291419.9988,703529.496300001],[292308.9978,700961.5013],[295452.9962,701640.9968],[296644.4983,700807.4954],[297667.496,702379.995300001],[298457.9994,701679.9957],[299716.303,702625.2951],[302359.3975,701503.6961],[301883.5008,700215.7048],[300904.3998,699867.3046],[301184.501,698968.401900001],[297751.3977,697557.095799999],[298424.5987,696607.0978],[297883.599,695097.799799999],[298892.2998,694533.9012]]]},"properties":{"OBJECTID":329,"lad19cd":"S12000005","lad19nm":"Clackmannanshire","lad19nmw":" ","bng_e":291159,"bng_n":696335,"long":-3.75344,"lat":56.14724,"GlobalID":"3880ebdf-0a3e-4f57-a6cd-100168e63398"}},{"type":"Feature","id":330,"geometry":{"type":"Polygon","coordinates":[[[274517.4999,620706.0042],[275526.0028,619598.5012],[276741.0032,620480.4988],[278405.4997,619736.501700001],[280243.9999,620067.9969],[284620.9977,618242.499399999],[285146.4967,616319.4998],[288350.9974,613323.497400001],[288970.0036,610394.9957],[291638.3033,609025.897600001],[291023.5021,607593.997500001],[291521.5037,604566.0042],[293564.0033,602934.001399999],[294454.5028,600997.9956],[297319.4967,601375.1976],[297189.4968,603693.604],[298134.9992,604705.5043],[300238.9986,604939.497300001],[299376.7961,606942.403999999],[300386.9975,607913.495999999],[300094.5039,611244.502499999],[301390.0009,611566.000499999],[301945.0007,612763.9976],[303105.996,612454.496200001],[304665.4998,614182.601500001],[306876.9984,613187.996200001],[310174.5034,614481.9958],[311364.9995,613573.9957],[313858.5039,614519.495100001],[314355.4996,614011.500499999],[315853.0006,617159.499399999],[317166.9995,617554.496300001],[318247.4983,615985.4955],[319132.0037,616452.0019],[321395.9985,615568.504799999],[317580.4976,611862.9955],[316986.4986,610300.502800001],[317460.804,609095.297700001],[316717.6025,608854.196799999],[316378.4996,606940.9044],[317416.2972,606143.4027],[322953.4988,609802.495300001],[325340.5017,608017.496300001],[325616.0022,606490.5034],[328636.4979,607881.995100001],[329725.4973,606561.0032],[330220.4978,606949.0021],[330372.0008,604730.997],[333638.4961,600655.003799999],[333104.7026,599016.8027],[333832.5024,597982.6987],[335307.6016,598807.9025],[335908.9963,597495.998],[336816.4972,597666.9991],[338999.5008,599993.5031],[341839.9986,598524.503599999],[343028.4994,599187.004000001],[343860.5003,596860.0001],[342576.0022,596263.500800001],[341501.4976,594000.0987],[345164.0032,593912.003900001],[345268.5011,592456.500600001],[343575.5015,590761.4957],[342471.999,586969.5012],[342932.5022,583960.002599999],[344943.4973,582670.501800001],[345325.9032,579663.3026],[343536.2962,578178.797499999],[342836.6039,576311.202099999],[340043.004,575366.102600001],[340285.5984,574300.797599999],[338852.7965,573174.799900001],[332951.5012,573642.695900001],[332791.1017,573038.298900001],[334533.2996,571807.5013],[332697.7017,566976.0043],[332427.7052,566869.6834],[332405.0166,566753.682499999],[331312.74,565719.789999999],[330814.39,566393.83],[331284.86,565641.481000001],[330249.79,565076.390000001],[329154.43,565457.85],[326495.35,563849.630000001],[322992.81,565524.25],[320648.7,564416.619999999],[320284.8,564992.43],[318904.1,564666.4],[318841.9,564167.9],[314526.91,565945.91],[315028.91,565711.210000001],[314374.11,565203.41],[312375.8,564864.5],[309943.53,565329.02],[308509.74,567561.640000001],[308132.3,566994.6],[305603.9,564571.9],[302612.13,564478.140000001],[300235.69,566159.66],[299012.17,569971.029999999],[298316.86,568245],[299225.151,566253.192],[297275.55,565603.939999999],[298710.03,565597.25],[298230.17,560053.300000001],[299319.378,559911.108999999],[299887.694,558074.572000001],[297702.876,555412.495999999],[297732.846,554286.388],[291120.886,555282.197000001],[292639.91,556732.039999999],[289260.097,555296.089],[287025.15,552774.98],[285311.6168,552388.6217],[283775.7134,554568.932700001],[283354.67,556181.52],[282880.84,553382.33],[284059.2,551583.800000001],[283046.2,551762.6],[281825.96,554096.720000001],[280649.7,553784.74],[282249.9,551672.4],[281122.6,552245.9],[280424.09,551714.199999999],[282879.31,549171.449999999],[272405.9,543317],[271062.38,544028.18],[268556.61,543577.93],[267272.6,544888.5],[268647.65,548650.57],[268069.38,549792.130000001],[267217.3,548510.4],[266956.6,548947.199999999],[267530.9643,550688.085100001],[267366.7684,550501.626],[265708.4,548618.4],[265692,545000],[264632.38,544647.619999999],[265662.84,544105.51],[265344.51,543199.09],[264601.31,543401.189999999],[264288.28,544552.800000001],[263440.91,544611.630000001],[263678.712,545726.289000001],[262526.54,544430.41],[261200.49,544964.550000001],[259980.4,546301.699999999],[259959.1,548149.4],[258130.6,548764],[257506.02,550094.51],[258000.73,551362.08],[257225.72,551694.6],[257352.54,552727.960000001],[258733.9,554783],[257180.41,554567.189999999],[255118.58,551501.859999999],[252373.17,552171.1],[248456.64,554603.310000001],[247185.42,556262.970000001],[246728.24,558569.119999999],[247375.78,558807.34],[246594.44,558654.119999999],[246335.1,560955.699999999],[246311.5,560388.199999999],[245897.5,558656.4],[246417.6997,558078.4999],[244324.99,557068.01],[244059.19,556158.609999999],[244734.16,555695.82],[244635.6,554817.300000001],[245023.43,550804.220000001],[248793.8,549042.199999999],[249592.9,547420.800000001],[249214.8,546491.6],[247760.1,546797.199999999],[248296.89,545075.02],[247573.3,544480.800000001],[248603.27,543892.57],[247646.9,538971],[248712.2,537382],[245807.18,533995.09],[240022.2,536700.199999999],[236282.85,539445.24],[236224.99,540552.039999999],[234533.7,541170.300000001],[232826.08,545546.109999999],[228391.769,548258.252],[226086.641,551034.221999999],[221441.7,552170.5],[219266.69,556105.42],[218226.338,555747.066],[216828.7,556575.810000001],[216335.8267,556336.875499999],[215587.2801,556139.5735],[215378.56,556588.699999999],[214912.91,556005.279999999],[215443.545,556110.950200001],[215650.08,556004.439999999],[216166.953,556255.009099999],[216686.524,556358.476],[217109.49,555232.755999999],[211520.9,552595.9],[209779.6,549485.1],[212301.132,542594.955],[212866.31,537878.890000001],[215286.556,535647.506999999],[214062.99,532536.23],[214419.9,530916.9],[215989.3465,530638.2794],[214543.4,530255.1],[211517.3,531513.9],[208881.5,533921.6],[208503.4,536802.199999999],[210151.3,537929.800000001],[208998.2355,539883.7081],[209666.1,541074.5],[207431,541889.1],[207875.8,543535.6],[206771.9495,544156.5913],[206500.02,547319.57],[204501.8,548389.6],[203863.4,550387.1],[198640.1108,555220.741],[195951.9,562482.5],[196683.7,568211.5],[196166.54,569086.42],[197129.91,571362.390000001],[198214.19,572786.199999999],[199431.4,572552.800000001],[201910.3,573702.65],[204136.81,567978.17],[203234.8,567537.9],[203909.5,563156.199999999],[205826.9379,561041.2807],[207965.3,561626.300000001],[208171.92,564279.949999999],[205662.594,571250.0984],[209981.502,572595.9956],[209723.0028,573786.504799999],[210838.5019,573669.9981],[212881.0014,576913.499700001],[212774.5,578365.5041],[213443.9989,578542.0035],[215227.0016,577871.995300001],[215775.999,575402.5022],[218581.0018,575938.4988],[219203.001,574787.498199999],[221051.5024,575799.498600001],[221834.5029,574282.002900001],[222723.9966,575447.999199999],[223660.0007,574980.503],[224953.997,575969.4999],[226590.5015,574814.000700001],[231042.0017,576745.4978],[231068.9961,575896.500800001],[231783.0019,576120.4967],[232466.5009,578035.998400001],[230206.9997,580494.5046],[230572.0003,583843.495999999],[232900.0015,586077.996400001],[235401.0006,586117.495100001],[236679.4963,587856.997099999],[242159.502,587091.996099999],[243296.0012,588978.1962],[244508.9981,588736.995200001],[244614.0979,585329.9005],[246553.5012,586785.004000001],[246678.9003,589863.502800001],[247854.8027,592411.5034],[248793.0989,592266.8049],[250102.497,598518.995200001],[253227.4988,602148.496200001],[254036.9989,604230.500299999],[256785.0036,603565.500600001],[257994.9993,605324.997],[260309.2973,604894.700200001],[262207.5,602174.9987],[264225.0005,601025.9976],[265919.5007,602947.497500001],[265634.9966,605178.9988],[267850.9969,608340.503799999],[266531.5975,610360.4956],[267730.0007,615115.704399999],[273402.0008,617683.999299999],[272510.5036,618877.4976],[274517.4999,620706.0042]]]},"properties":{"OBJECTID":330,"lad19cd":"S12000006","lad19nm":"Dumfries and Galloway","lad19nmw":" ","bng_e":270645,"bng_n":579856,"long":-4.02863,"lat":55.09621,"GlobalID":"a793c587-0aaf-4b61-acf8-4c6cb45f1c59"}},{"type":"Feature","id":331,"geometry":{"type":"Polygon","coordinates":[[[241287.6032,653032.300899999],[242794.8994,655039.896299999],[243648.5023,654952.701199999],[244077.196,653500.197000001],[245801.4032,653570.197000001],[245089.6977,651552.104599999],[246954.4008,651767.503],[249281.998,649297.200099999],[250331.0996,650306.0013],[252199.9993,647394.504699999],[253454.5019,647670.4957],[253941.4964,646317.503],[258813.503,645129.303099999],[260582.0027,641524.505000001],[260246.8986,640187.397700001],[261457.7023,639239.199200001],[261202.6002,637903.001599999],[263075.0041,636727.698100001],[261820.6994,636308.3981],[261267.0023,634357.4965],[258660.4994,632111.999299999],[259564.9991,631852.503599999],[259752.5,630779.500700001],[264682.5024,633101.9959],[266008.0032,632275.002599999],[268835.4985,632401.496400001],[271564.0035,635081.499299999],[274154.5028,631795],[275457.5028,631882.505000001],[275682.7991,630963.098200001],[276649.4995,630856.998500001],[276497.9965,629195.0043],[272114.9962,623937.9991],[272973.002,622844.0022],[272612.0003,621753.0045],[274517.4999,620706.0042],[272510.5036,618877.4976],[273402.0008,617683.999299999],[267730.0007,615115.704399999],[266531.5975,610360.4956],[267850.9969,608340.503799999],[265634.9966,605178.9988],[265919.5007,602947.497500001],[264225.0005,601025.9976],[262207.5,602174.9987],[260309.2973,604894.700200001],[257994.9993,605324.997],[256785.0036,603565.500600001],[254036.9989,604230.500299999],[253227.4988,602148.496200001],[250102.497,598518.995200001],[248793.0989,592266.8049],[247854.8027,592411.5034],[246678.9003,589863.502800001],[246553.5012,586785.004000001],[244614.0979,585329.9005],[244508.9981,588736.995200001],[243296.0012,588978.1962],[242471.0004,592229.4955],[244094.5024,593523.495100001],[244300.2002,596425.5044],[245705.7027,598228.498299999],[243952.2998,601767.5953],[245352.4019,604230.4003],[243606.3041,605126.4038],[243125.7984,606245.003599999],[241758.9981,606170.8049],[239757.5013,609099.4965],[237519.1981,610047.0953],[240463.3033,612845.804199999],[239967.1979,613782.3961],[238922.5982,614281.403200001],[237714.8039,613262.9048],[236232.5975,614478.796700001],[235212.4031,614307.595699999],[237295.4024,615280.997099999],[237771.2001,617704.803300001],[239657.7031,617361.7015],[240062.4037,615707.494999999],[241660.1976,614534.6008],[244968.7015,615845.0956],[244794.1041,617956.5013],[243715.1966,617786.899800001],[242359.7992,618889.904100001],[243567.0988,619945.202],[243208.4964,621026.102600001],[242426.8975,620992.5022],[242475.5022,622417.204399999],[243900.2982,624123.096100001],[244710.697,623835.398399999],[245920.198,624932.804300001],[246016.7971,626105.5986],[247486.2979,625655.0976],[247346.2968,626309.000399999],[248595.102,626731.0996],[248105.403,631480.0002],[246449.0032,632389.1],[246418.1997,633164.597999999],[245299.0976,632554.102700001],[241296.6975,633068.5955],[241401.5005,633734.105],[240044.8004,634197.4024],[240278.4985,636037.295700001],[238238.8023,636243.5966],[238292.7002,637244.200200001],[236767.5041,636864.198999999],[237602.0032,637468.7959],[237088.8966,639110.396],[238987.6022,639819.802999999],[238337.5039,640669.299799999],[239170.7003,642207.7994],[243050.4962,643155.598099999],[243309.4984,644101.7973],[240885.203,643566.1006],[239929.9962,644440.600299999],[238253.899,642429.4959],[236869.7016,642007.9966],[236244.7013,642386.598200001],[236719.0973,643230.5966],[234177.6974,645268.4033],[235931.1993,645651.703600001],[238058.9033,649554.296499999],[241287.6032,653032.300899999]]]},"properties":{"OBJECTID":331,"lad19cd":"S12000008","lad19nm":"East Ayrshire","lad19nmw":" ","bng_e":255398,"bng_n":624935,"long":-4.29057,"lat":55.496738,"GlobalID":"c3885581-2e8b-4ca7-bbbc-84ce0937b68b"}},{"type":"Feature","id":332,"geometry":{"type":"Polygon","coordinates":[[[332793.3032,673164.2982],[334552.7992,673392.902799999],[334347.0025,672709.6983],[334973.8992,673898.3981],[337024.1986,673774.703500001],[339471.1018,675679.0984],[342976.8029,676183.8039],[344829.7979,678374.2969],[344558.0984,680057.805],[347586.3032,680556.0024],[346237.6998,681472.300100001],[346144.1019,683083.9987],[347867.097,683467.898800001],[349295.1993,685802.500600001],[351130.0964,686150.401000001],[352949.6,685375.402799999],[359380.7972,685359.5973],[361450.9012,684075.095000001],[361841.7995,682408.902000001],[363833.798,681300.1993],[363268.0961,680567.3991],[363747.9999,679502.8038],[363213.8024,680360.2984],[362956.9028,679236.5001],[362357.7012,679542.2026],[361913.0038,679479.4005],[361183.3984,678386.703299999],[362221.036,679407.7258],[362423.9256,679360.5163],[362749.9023,678466.2006],[363854.8971,678494.102600001],[364246.3974,680094.804400001],[365598.6039,678299.3983],[366280.7013,679270.000499999],[368163.4033,679397.8039],[368423.8977,678600.801999999],[372319.9035,677305.8027],[373916.6008,675365.4981],[374960.2029,675493.3015],[375530.7034,673787.4998],[377193.3035,672607.197699999],[370895.5032,665789.9991],[368548.0024,668874.496099999],[365441.9972,668853.0023],[364917.9988,668312.9969],[365423.9982,667578.997],[364447.9974,666703.997400001],[366716.5022,664362.9976],[366642.0988,663212.3969],[365347.5005,660791.4999],[363696.5013,661517.0022],[362876.497,659652.4959],[359483.4977,660235.9989],[359815.9962,661043.9976],[358191.9995,661685.0041],[353745.9987,659686.496200001],[351430.9999,661505.4955],[347072.9987,658736.098200001],[346103.0002,661074.098999999],[343810.6012,662316.0035],[344107.0029,663266.2015],[342911.403,662975.104800001],[341443.5018,663765.398600001],[339656.6982,669173.000700001],[338289.6011,669301.304],[336462.3966,668081.7031],[332735.497,670112.1019],[332085.8027,671460.196],[332793.3032,673164.2982]]]},"properties":{"OBJECTID":332,"lad19cd":"S12000010","lad19nm":"East Lothian","lad19nmw":" ","bng_e":354854,"bng_n":672351,"long":-2.72435,"lat":55.94207,"GlobalID":"3b10fb2c-7678-4028-ab28-d5d81f1506ba"}},{"type":"Feature","id":333,"geometry":{"type":"Polygon","coordinates":[[[250907.8004,661444.302999999],[251761.5022,660808.1951],[251385.5027,658266.2027],[253798.6012,657973.5965],[254308.7974,659690.904899999],[256435.1986,660231.5002],[258425.8037,659840.6021],[257881.2999,657700.4047],[258954.1967,656913.100099999],[258743.4035,655560.0974],[256898.4969,655133.499500001],[257318.5003,653563.898800001],[260481.0996,650478.1021],[260448.0039,646467.0002],[258813.503,645129.303099999],[253941.4964,646317.503],[253454.5019,647670.4957],[252199.9993,647394.504699999],[250331.0996,650306.0013],[249281.998,649297.200099999],[246954.4008,651767.503],[245089.6977,651552.104599999],[245801.4032,653570.197000001],[244077.196,653500.197000001],[243648.5023,654952.701199999],[242794.8994,655039.896299999],[241287.6032,653032.300899999],[240057.3,655507.102499999],[240671.4993,656837.401699999],[241907.401,656334.3957],[243615.2994,658090.2031],[243697.4037,659280.602399999],[245088.5022,658823.903100001],[245548.9971,659579.796700001],[249661.6996,660127.9998],[250907.8004,661444.302999999]]]},"properties":{"OBJECTID":333,"lad19cd":"S12000011","lad19nm":"East Renfrewshire","lad19nmw":" ","bng_e":251929,"bng_n":653115,"long":-4.3606,"lat":55.74868,"GlobalID":"61c8b63d-e7cb-419f-a279-7c4ebc162cbc"}},{"type":"Feature","id":334,"geometry":{"type":"MultiPolygon","coordinates":[[[[153403,949933.5],[156519.4868,946872.7238],[154369.5,946537.5],[151324.5,943223.5],[151504.7404,941942.934599999],[149485.6,941901.9],[149018.6082,941216.7532],[149148.2,941121.1],[149092.65,939229.09],[146849.1,939383.800000001],[146217.9,938258.4],[146644.68,936559.199999999],[144794.32,934993.289999999],[144997.23,935628.43],[143973.9538,936097.1456],[144030.47,934755.66],[142872.49,934332.369999999],[144190.43,933692.25],[145571.91,934127.33],[145120.5,934931.52],[148382.96,932217.560000001],[152067.1,934288.300000001],[153453.7,936449.1],[155300,936778.5],[156226.3,938110.300000001],[157498.4,937488.300000001],[155559,934214.1],[156182.9973,933321.143100001],[154582.6658,931513.779899999],[152836.024,931077.767000001],[152835.8019,929977.567500001],[150184.3546,929081.6932],[148040.5,932170.199999999],[144261.5278,930472.645199999],[143971.1,932141.699999999],[142111.2135,932672.9537],[142412.2552,933494.293099999],[142094.6118,932677.695800001],[142099.2918,932640.4275],[141787.2816,931789.1624],[142405.41,930616.039999999],[143292.27,930818.890000001],[142147.58,929564.800000001],[143145,926534],[140632.81,925470.18],[139784.1726,926198.706599999],[139741.35,925061.74],[142290.692,925643.0944],[143023.3797,925382.5031],[142829.5048,924178.3079],[141040.52,924679.720000001],[139753.85,924078.58],[135697.65,925934.789999999],[137160.5871,924898.594000001],[137025,923998.5],[137652.7343,924433.1281],[138410.5,923595],[138183.8,924430.699999999],[139362.5,923779],[137458.4844,921595.274700001],[126916.28,920020.029999999],[127484.78,919250.41],[128425.35,920001.26],[128573.28,919249.960000001],[128814.07,920105.66],[130343.2,920178.6],[130854.5,919121.5],[131099.533,920071.695499999],[133309.6172,919667.2009],[134380.58,920545.880000001],[136489.72,919874.49],[137043.7271,920649.232899999],[138891.5,919774],[139784.4161,920773.419399999],[140676.861,920592.652000001],[139876.78,920876.800000001],[139640.6083,920802.5481],[138767,920979.5],[140942.5,922022],[141223,920729],[140656.5,920694],[141773.2,919948.6],[140751,919885],[140911.5,919052.98],[142045,919875.5],[141804,918394.699999999],[142513.5,918053.5],[141721.24,917150.4],[142510.3953,916745.855799999],[142020,914982.5],[138121.22,915257.66],[142867.5814,913893.906300001],[140787.714,909594.6293],[137981.5,911720],[137239,910520.5],[136744.17,912106.970000001],[136033,910995.5],[134346.111,911913.0208],[134830.1518,911020.4628],[133626.5,910945],[132677.5,911991.5],[132736.5,910783],[129518,910763],[135715.0082,910102.127499999],[137023,908674.5],[136984.2087,906043.691],[135804,905640],[135421.49,902996.810000001],[133668,903442.5],[132535.5,902020.5],[131006.56,905599.08],[131215,900938],[129715.5,901404.5],[129793.5,900812],[129342,901972.5],[128992.5,900421],[127227,903806.5],[127401.21,904925.619999999],[126796.5,904776.5],[125315.58,906657.07],[127314.5,901289],[126275.1384,901313.895099999],[125770.09,902596.939999999],[125819,901901.5],[125111,902262],[124675.5,901517.5],[121981.81,906481.157199999],[121762.28,912317.16],[124851.5,915450.5],[124888.5,916631.5],[126792,916681],[127388.67,915766.67],[129522.14,916324.1],[123152.6,917315.130000001],[124521.5,916758.5],[124400,915654.5],[121099.04,912452.75],[118862.6376,911499.544600001],[119002.31,910286.380000001],[120097.6057,909932.031500001],[120856,906672],[120638.0854,905749.0854],[119377.5,905814],[121691.2947,905675.160599999],[123327.4444,901558.7009],[120957,901516],[123406.5,899622.5],[123545,897642.5],[119031.5,898341],[117261.1,900049.84],[115529.66,899915.289999999],[116324.03,897976.49],[114815,898224.5],[115230.21,896536.33],[117000,896447.5],[117840.89,893583.74],[118764,893452.5],[118903,891772.5],[118016.5,891304.5],[117822.63,892196.48],[117385,891284.5],[117252.673,892664.423],[116815.0117,891747.7103],[115332.04,892870.42],[115482,889529.5],[114645.19,890814.779999999],[114247.91,890157.869999999],[113647.5,890573.470000001],[112546.36,893077.699999999],[112340.9,892266.17],[111478.76,893061.15],[113051.8,890835.5],[112207,889557],[111913,890785.4],[111565,890108.9],[111287.5,890754.4],[111567.9,889088.199999999],[110679.4,889091.300000001],[111437,888583],[109971.8,889469.800000001],[110392,886461.5],[107517.39,887627.85],[108755,885508.5],[106933,884911.5],[106854.47,885595.42],[105850.4681,882864.1654],[103859.25,883556.699999999],[104551,881967.5],[103980.0696,881919.4724],[101185.2084,886325.1743],[101980.81,886626.07],[100996.05,887346.189999999],[101019.4,886503.9],[99648,887721.5],[98148.7300000004,891058.6],[96061.5,892311.5],[95453,894664.5],[97157.5,894969.5],[98445.5,893894.5],[98351.4100000001,891750.199999999],[98945.4000000004,891464.300000001],[98769,892705],[103556.51,894976.66],[104048.5,897496.5],[104547.11,896872.08],[106120.76,897236.470000001],[106545,898309],[106477.28,896883.289999999],[107252.86,897652.33],[108312.1,896822.4],[109223,897147.5],[106130.5,899407.800000001],[106939.5,901327.5],[108800,901879.5],[111285.92,900538.449999999],[112685.54,900338.51],[113072.5,900944.5],[114904.387,900331.487],[112380.6,902234.699999999],[111980,903252.5],[113603.2,903475.5],[113063,904228.5],[112542.6,903664.800000001],[109268.5,904691],[110116.9293,906258.2467],[108835,905169],[107619.5,906419],[106080.5,906456],[104435,908315.5],[103937.07,908163],[104601.5,907085.949999999],[102972,906939],[101069,908142.5],[101038.34,909109.369999999],[99713.5,908844.5],[99342.5,911977],[98521.5,911100],[97876.5,911390.5],[99249,912495],[100019.5,914788],[101474.5,913368.5],[102321.5,915170.5],[105389.8012,916670.5625],[110637,917201],[106190.1169,917388.7623],[102699.5,916066],[101410.5,916974],[101435.5,917564.5],[103924.5,918236],[101677.5,918557],[104088.788,920136.017000001],[103396.5,921304],[101163,919862.5],[101273.5,919101],[99269,920699],[99155.5,924841],[97758.5,926400.5],[98235.5,928043],[99512.5,928620.5],[99147,929423.5],[100007.5,929444.5],[100818,930777],[100087.5,932986],[101335.8586,933553.3813],[102856.5,932415.5],[103122.3,932989.9],[103603,931337.9],[104031.579,932732.192],[105072.5998,932683.909299999],[105186,932614],[105814.5,932649.5],[105164.0408,932679.668299999],[104524.8,934591.300000001],[103780.5,933239.699999999],[102499.6284,934166.2794],[103767,938197.5],[105312.5,939401.5],[105061.6,938081.699999999],[106952,938033.5],[108272.8,936393.4],[109104,938095.5],[109964.884,936131.268999999],[111844.5,935434.5],[111599.8,934365.199999999],[109684.6,934607.1],[109562.8,933994.4],[108572,934592.199999999],[110162.27,932549.880000001],[112520.5,932480],[112450.41,928362.630000001],[113930,923866.5],[112720.24,929721.35],[113063.5,930843],[113820.5,930774],[113492,932662],[114476.5,931676.5],[114392.5,933103.5],[116482.72,934153.699999999],[119126.5,932825.5],[119052.71,932092.15],[119259.5,932656.5],[120405,931890],[120987.4,932436.4],[121699.76,929501.48],[121857.5,930512],[122820,929762.5],[122335,931307.5],[123442.56,931364.34],[121892.6,933018.1],[121691.2,932271.800000001],[120393.5,933239],[120696.5,934361],[121851.55,933796.060000001],[121730.37,934749.5],[120712.1,935142.5],[119820.41,937677.33],[119616.9,937109.4],[119029.7,937482.5],[118389.5,938661],[119125.2,938861.5],[118009,939338.5],[117650,941604],[120382.2,942525.6],[117226.3277,942626.361],[119137.3,944248.1],[118671.6927,945139.863500001],[121598.648,945131.65],[123494,947471.5],[124884.7,948361.699999999],[125621.4,947632.199999999],[128017.086,950055.345899999],[128248.1677,949037.379699999],[128146.15,948940.4],[128385.5,948432.4],[128267.8726,948950.575200001],[129927.4,949089.300000001],[132109,950800],[134181.6,950841.4],[136052,954291.5],[137353.6,954332.1],[141193.5,958131],[146105.5,960542.5],[147499,962638.300000001],[149433,962716.5],[151259.5,964713.199999999],[150576.1,965830.199999999],[151919.6,966511.1],[154113.7,964678.699999999],[153770.55,963441.01],[156281,960772],[155244.5,958591.5],[156832.5,956618.5],[156683.5,955210.5],[155346.5,954287.5],[153403,949933.5]]],[[[79349.0300000003,847298.289999999],[79990.0199999996,846879.43],[80290.9000000004,847595.4],[79792.5499999998,846261.970000001],[80610.2400000002,846036.6],[80478,844977],[82648.6799999997,845006.4],[83612.5,843758],[82512.5,843766],[82945.5,844236],[82369.96,844525.48],[80879,843785],[82660.6327999998,843358.195],[84922.5,841344.5],[84769.5,840712],[82930,841149],[83094.6200000001,840536.279999999],[85241.5,840039.5],[86096,840784],[85731.5,839760.5],[85095,839970.5],[85375.5,839350],[83299,839205.699999999],[83342.2000000002,838658.5],[81550.8300000001,839811.68],[82801.4000000004,838138.1],[85441,838045],[85697.5300000003,835423.92],[87058,835944],[87404,835008],[86565,833135.5],[85141,833392.5],[83387.5,831085.5],[83917.5,829753.5],[82205.5,827128],[80088.5,827420.5],[80263,828382.5],[81295,827574.5],[80025.4000000004,829021.199999999],[79806.5,828331],[78172.2999999998,828162.6],[77691.0999999996,829619.699999999],[77559,828861.5],[76644.2400000002,829985.140000001],[77276.9199999999,827651.390000001],[79133.5,827270],[78791,827736],[79783.5,827942],[80132.5,826332],[81662,826215.5],[82430.5,825201.5],[81976.5,823701.5],[82877.5,822546],[83072.5,820301.5],[82228,819142.5],[80571,818940],[78450.7999999998,820707.199999999],[80166.5,818690.5],[78349.2000000002,819304.33],[77838.5999999996,820372.050000001],[76256.9500000002,819703.300000001],[77465.9400000004,817631.779999999],[80633,818176],[82730.5,817209],[82729,815312],[83475,816103.5],[84656,815011.5],[84377,814266.5],[84211.2407,814301.114800001],[83207.5,813630.5],[83418.5259999996,812701.6722],[79181.6789999995,814703.662],[78104.5499999998,813442.630000001],[77977.7560000001,814161.209000001],[74763.9220000003,814263.671],[73706.3260000004,815421.43],[72800.5750000002,819503.048],[72752.1490000002,827024.902000001],[72196.6299999999,829287.541999999],[70867.04,829898.802999999],[72680.5300000003,830443.560000001],[73559.8849999998,835012.886],[75100.0810000002,836355.379000001],[75570.25,835866.060000001],[74977.9330000002,837023.827],[75186.6289999997,842639.923],[73889.2120000003,846143.957],[74924.4919999996,845929.854],[75836.8279999997,847276.255999999],[77054.3169999998,846663.257999999],[76625.3099999996,846368.279999999],[79349.0300000003,847298.289999999]]],[[[90729.0690000001,883457.411],[92630.0659999996,883856.596000001],[93926.0199999996,882693.67],[93290.9409999996,881400.711999999],[92132.96,881722.02],[92448,880826.5],[90557,878659.5],[92745.21,876925.26],[92514,875978],[92142.5300000003,875498.039999999],[91639,876183],[91645.5,875218],[90926,875314],[91913,874798],[90471.0537999999,874905.1927],[90418,874940],[89141.3700000001,875004.039999999],[90421.7969000004,874908.8544],[90553.5,873828.5],[91471.4124999996,873447.9024],[90678.5,873669],[89592.6299999999,873551.460000001],[90378,873035.5],[88676.5,872995.5],[90441,872019],[89412.4000000004,871014.699999999],[90608.5300000003,870482.09],[90147.5899999999,870162.109999999],[92438.6799999997,869808.85],[90624.6399999997,869782.720000001],[92318.1900000004,869320.050000001],[91704.2999999998,868617.9],[92141,868047],[91156.0499999998,868915.25],[91595.4699999997,868077.93],[90550.5,868153.6],[91640.5,867867.5],[90209.5,867759.5],[91992,867786.5],[91577.5,867039.5],[92258.9199999999,866832.82],[95331.5,867423.5],[94112,864451],[91383.5,863605],[90748,864615],[89947,864766],[90288.5,863913],[87843.5,864718],[88721.1600000001,863908.710000001],[85557.7000000002,863708.300000001],[84970.4900000002,864401.439999999],[86194.5,864157.5],[85898.4400000004,865951.470000001],[85941,864846.5],[83874.2619000003,864887.7885],[84773.5999999996,863874],[83788.0899999999,864889.51],[83344.7999999998,865484.630000001],[83572.4800000004,864591.42],[82731.1799999997,863974.77],[83980.9100000001,862929.67],[84031.0999999996,863770.6],[91086,862577.5],[91144.5,863376.5],[92969.5,863180],[91969,859053],[90567,858803.5],[91982.0773999998,858606.6185],[90101,858291.5],[87528.0199999996,859793.75],[87226,859254.5],[88599.5,858253.5],[87025,859263.5],[86385.5,858922.5],[87100,858587],[85945.5,858463],[84233.2999999998,859797.4],[84875.79,858074.060000001],[84144.9000000004,859605],[83129.7999999998,859279.699999999],[82083.4800000004,860408.67],[82894.3300000001,859183.18],[81944.5,858926],[81119.2999999998,859462.699999999],[81846.0199999996,860733.17],[81409.3700000001,861974.1],[80308.1900000004,862803.15],[80281.54,861520.85],[79369.5,860962.5],[79913.5,859819],[79240.7800000003,857912.689999999],[76841.6799999997,863890.452],[77783.9500000002,862275.359999999],[78137,863436.4],[78453.6900000004,862996.08],[79067.5,863684.1],[78654.8200000003,862623.747],[79459.9699999997,862544.949999999],[80376.2400000002,862900.85],[79778.29,863839.289999999],[80654.0999999996,864014.949999999],[80803.0700000003,863357.73],[82445.7800000003,864006.32],[79377.1200000001,864360.619999999],[74947.25,868360.74],[75585.0300000003,867261.18],[74680.5499999998,866406.060000001],[72277.7779999999,866361.473999999],[71805.1529999999,868061.893999999],[72516.8751999997,868871.102299999],[71686.04,869372.890000001],[72001.6720000003,868366.543],[71175.3030000003,868157.174000001],[68764.5,870792.300000001],[69590.4000000004,871370.1],[69761.0999999996,870434.5],[70424.3859999999,870632.049000001],[70906.8499999996,872211.890000001],[70188.4000000004,872619],[71827.8140000002,873023.7634],[71720,874295.1],[72895.4100000001,875545.390000001],[72441.5,876556],[73123,876911.5],[74437.7999999998,876251.4],[75169.7000000002,876768.4],[75629,875630.5],[76764.5,875453],[77383.5,874364.5],[76896.5,873963.5],[78845,872858],[79826.932,875133.739],[79452.4239999996,875944.551000001],[81726.7019999996,876841.242000001],[81545.5,878228.5],[83461,879570.5],[83711.1140000001,878729.778999999],[82830.2560000001,878337.747],[82989.0499999998,877198.416999999],[81808.2999999998,875677.859999999],[84432.0199999996,874931.869999999],[84374.284,873586.835999999],[85157.3600000003,874210.01],[84759.5999999996,874822.9],[85800.4000000004,874180.609999999],[86727.5899999999,874679.98],[86156.2400000002,875094.99],[87172.4699999997,874726.1],[85364.0700000003,876043.991],[87488.5120000001,876762.499],[88898.5,878650.5],[89720.2999999998,877843.390000001],[91381.0700000003,879954.140000001],[90667.3310000002,880831.131999999],[90408.5,879947.5],[88688,880576],[90729.0690000001,883457.411]]],[[[80283.9000000004,855893.5],[81920.1100000003,855670.77],[82607.2000000002,856383.4],[83312.5,856014.5],[82678.9400000004,855442.74],[84970.9000000004,855330.199999999],[84788.2000000002,854642.9],[83469,854884.5],[84313.5,853695.5],[84986.7000000002,854034.9],[85447,853292],[85329.2999999998,855134],[86108,854514],[85480.7000000002,854532.4],[85715.5,853754.5],[86626,854342.5],[87895,853189],[85613.5,853290.5],[85726,852207.5],[87091,851561],[85615.5,851788],[85188.5,853184],[85534.5,851642.5],[84833.5,851440],[83997,852557],[84110.5,851753.5],[83470,851939.5],[84255,851089],[83093,850976.5],[85168,849833],[86743.5,849901],[85412.5,850777.5],[87127.5,850462],[87744,849649],[87864,849064.5],[86554.4199999999,849426.560000001],[87537,848124],[84630.0999999996,847952.9],[85509.5,846726.5],[81105.2999999998,848902.800000001],[82397,847883.800000001],[83994.2000000002,846541.199999999],[82364.8174000001,847873.1776],[81233.5999999996,847499.800000001],[81501.7599999998,846709.119999999],[79304.5800000001,849413.859999999],[76459.1500000004,849753.050000001],[75802.2290000003,855157.607999999],[77698.1500000004,855492.698999999],[78529.9819999998,857391.184],[79592.2319999998,857508.001],[79658.2510000002,856367.339],[80719.4000000004,856342.5],[80283.9000000004,855893.5]]],[[[63695.7289000005,797520.4537],[62005,798618],[62495,800073],[64773.5,800531],[65220.0800000001,801269.220000001],[64454.5,801975],[65404.8859999999,802182.579],[65246.4929999998,803222.922],[66134.0700000003,803734.390000001],[64558,804927.5],[67246.0109999999,804862.691],[69007.1710000001,805805.380000001],[69583.7549999999,809633.341],[71426.9830999998,807589.724300001],[69635.8650000002,805266.045],[72675,803007.5],[70586.9699999997,804371.57],[71889.7000000002,803267.300000001],[70426.1100000003,803202.109999999],[71553.3099999996,802348.926000001],[72157.0300000003,802860.529999999],[73433,801646],[73373,800461.5],[71967.2999999998,801007.4],[71571.8099999996,802215.4],[70842.5800000001,802047.5],[71725.4500000002,801571.390000001],[71725.7999999998,800426.310000001],[70648.5266000004,800272.0583],[70262,798669.5],[69328.2800000003,798760.6],[69607,797314.5],[66753.7000000002,797270.199999999],[66877.2000000002,798145.460000001],[65661.5,797857],[65492.54,798696.109999999],[65465,797403.5],[63812.8200000003,797645.630000001],[63695.7289000005,797520.4537]]],[[[113344.4965,940584.5001],[115700.0033,940030.998500001],[116189.9001,937245.595799999],[116420.0033,938025.502599999],[117235.0028,936779.499199999],[117205.9967,937835.9968],[118357.1969,935675.7952],[119112.9969,935841.4977],[119069.9989,933565.9991],[117901.7974,934350.004699999],[114211.9017,934632.4038],[113826.5028,936080.499299999],[114762.4986,935476.0023],[115152.4983,936625.803200001],[114228.598,938548.8028],[114657.4978,936390.000700001],[113821.4981,937166.498400001],[113344.4965,940584.5001]]],[[[94569,874709],[95016.5,875126.5],[96224.2999999998,873297],[97351.3200000003,873448.17],[97986,872444],[95507.5,869003.5],[93727.2999999998,871118.9],[94742,872002.93],[92867.0599999996,871496.41],[91576.5,872213],[91953.9500000002,873318.99],[91530.4687000001,873431.443700001],[91944.5,873842],[91314.5,874055.5],[92719,873946.5],[92132.5,874481],[93314.4316999996,874077.3791],[93807.5,873909],[93525,872673],[95859.6299999999,873550.93],[94569,874709]]],[[[101537.9978,902587.996400001],[103561.5007,903475.002499999],[104621.5022,901933.503799999],[103997.4995,899761.4955],[102904.9959,898974.500800001],[100986.5021,900656.999199999],[100525.496,899267.9968],[99085.4961000001,898618.002800001],[98742.9962999998,900719.001399999],[100971.9991,900931.000700001],[101537.9978,902587.996400001]]],[[[94844.5005000001,916155.002900001],[97189.5031000003,916960.5023],[98607.9999000002,915813.500700001],[98658.5998,913093.599199999],[96965.5012999997,914029.001499999],[95731.0011999998,913809.5043],[95099.5038000001,915128.4967],[94844.5005000001,916155.002900001]]],[[[61426,797885],[63695.7289000005,797520.4537],[63063.6600000001,796811.550000001],[66336.5,795555],[64513.9000000004,796063.83],[63395.4759999998,794798.009],[65276.6069999998,794646.691],[65201.1569999997,794117.835999999],[62376.6909999996,793487.536],[61732.3300000001,794978.603],[62718.6289999997,794746.674000001],[62983.2560000001,795405.198000001],[61150,796321],[61947,797240],[61426,797885]]],[[[78241,809227.5],[78373.6900000004,812418.15],[80994.5,812334],[80242,809802.5],[78929.5,809830],[80193,809168.5],[79234.5,808170],[78241,809227.5]]],[[[89314.9998000003,889328.0021],[90196.9987000003,889187.0024],[90943.4983000001,887763.4999],[89501.0000999998,886488.504899999],[88398.5034999996,886527.003799999],[87037.4994999999,888197.9955],[89314.9998000003,889328.0021]]],[[[121285.6035,897469.001700001],[124293.5007,896308.0041],[124778.4999,894676.0012],[122970.4982,894049.000700001],[123025.501,895171.499399999],[122328.7026,895169.4999],[122594.4987,894468.000700001],[122001.4974,894848.002],[122325.3964,895553.100099999],[121447.0995,896552.5041],[121245.4995,895338.3016],[120609.5002,897054.500399999],[121882.0017,896777.999500001],[121285.6035,897469.001700001]]],[[[7564.99629999977,901270.503599999],[8475.00370000023,900263.501800001],[8855.00210000016,901026.5034],[10488.4971000003,900730.998],[11279.5034999996,899133.995100001],[10035.4968999997,899075.002],[9518.00389999989,897796.498],[9134.50140000042,898724.002499999],[7665.00069999974,899170.004799999],[7564.99629999977,901270.503599999]]],[[[85777.2999999998,857892.800000001],[86329.9900000002,857273.539999999],[87628,857455],[87218.5,856329.5],[88357,854727],[86636.5,855325.300000001],[86547.5,856007],[85718.4000000004,855312.199999999],[84238.29,857433.15],[83092.9900000002,856872.52],[84857.6399999997,858043.369999999],[85582.9000000004,857689.699999999],[85438.5,858308.5],[86735.5,858036],[85777.2999999998,857892.800000001]]],[[[56969,782001],[55723.5,781415],[54244.5170999998,781909.475500001],[55470.6036999999,783253.556600001],[54894.5,784362],[57107.0223000003,784987.5074],[56969,782001]]],[[[88981.9982000003,857718.000299999],[90494.0022999998,857565.504000001],[90963.5007999996,856657.004000001],[90003.0005999999,855957.5043],[91001.9970000004,855468.0044],[90012.4989999998,855278.498600001],[90264.5010000002,854366.499700001],[89515.0001999997,853911.9998],[88777.4960000003,854498.002],[89154.5014000004,855655.500700001],[88092.9993000003,856385.501700001],[88366.4961999999,857287.5035],[89930.9965000004,856378.003900001],[88981.9982000003,857718.000299999]]],[[[86520.7713000001,845210.638499999],[87356.5009000003,844853.002900001],[86385.4966000002,845166.5031],[85666.9972000001,845575.9959],[86841.0032000002,847114.4955],[88478.0023999996,847520.999199999],[88366.9990999997,845812.9981],[86520.7713000001,845210.638499999]]],[[[62883.5,792230.5],[63684,792610],[65420.5,791924],[65151.7225000001,790097.3621],[63183,791123.5],[62883.5,792230.5]]],[[[75672.5,876486.07],[78381.0700000003,877280.859999999],[79616.4500000002,876930.949999999],[78428.7300000004,875458.01],[78174.3499999996,876149.51],[77233.1699999999,875754.439999999],[75672.5,876486.07]]],[[[59235.5,788198.5],[60239.5,788271.5],[61324.5,787674.5],[60632.5,786716],[58857.5,787080.5],[59235.5,788198.5]]],[[[72496.5015000002,808181.5],[73426.0001999997,809717.500299999],[74440.4972999999,808494.000499999],[72961.4982000003,807518.4998],[72496.5015000002,808181.5]]],[[[120018.0985,911184.595699999],[120954.1025,911850.495100001],[121610.4012,910283.603599999],[120898.4978,909358.498400001],[120018.0985,911184.595699999]]],[[[84489.5034999996,880951.999700001],[84980.9999000002,882314.999500001],[85998.0033999998,881760.498199999],[85593.5006999997,880065.003599999],[84489.5034999996,880951.999700001]]],[[[63604.4999000002,862460.502800001],[64645.9995999997,863121.003699999],[64782.4965000004,861733.5009],[63367.0009000003,860661.9976],[63604.4999000002,862460.502800001]]],[[[54454.5021000002,780283.4957],[55573.0023999996,780662.997099999],[57418.5027000001,779888.998600001],[55837.5039999997,779365.498500001],[54454.5021000002,780283.4957]]],[[[74627.5034999996,804032.997500001],[75483.4974999996,804734.4967],[76604.9989999998,804016.0023],[76549.9961999999,803198.496300001],[74627.5034999996,804032.997500001]]],[[[74987.5290000001,865682.515000001],[75265.3890000004,866299.452],[75510.6900000004,865786.93],[76998.6909999996,864313.509],[75556.3890000004,864446.983999999],[74987.5290000001,865682.515000001]]],[[[60232.5007999996,862030.9957],[62293.5022,863527.997199999],[62534.0023999996,862328.000700001],[60232.5007999996,862030.9957]]],[[[96968.5025000004,886845.002800001],[97948.9968999997,887477.501800001],[98173.9963999996,884834.998199999],[96968.5025000004,886845.002800001]]],[[[137496.4984,909595.500600001],[137647.4985,910402.999399999],[138974.4998,910354.5033],[139384.9967,909485.502],[137496.4984,909595.500600001]]],[[[97013.9987000003,883606.4998],[97432.5015000002,884659.498400001],[98807.4973999998,882736.4989],[97013.9987000003,883606.4998]]],[[[83362.5026000002,875919.4002],[84830.9974999996,876534.5042],[84967.4038000004,875068.9037],[83362.5026000002,875919.4002]]],[[[181226.9998,1033724.499],[181863.502,1032034.5028],[180265.9967,1031785.5041],[181355.4991,1032848.9995],[181226.9998,1033724.499]]],[[[75815.5014000004,804879.994999999],[77045.4995999997,805396.997],[76969.9995999997,804051.5022],[75815.5014000004,804879.994999999]]],[[[140515.5018,898773.498299999],[141734.5011,898912.998400001],[142060.5025,896156.997300001],[141813.497,897825.999500001],[140515.5018,898773.498299999]]],[[[97326.0000999998,921104.995999999],[97885.9963999996,922336.5035],[98312.9998000003,920812.999600001],[97326.0000999998,921104.995999999]]],[[[113780.9983,941647.9956],[115118.5039,940497.505000001],[113936.5002,940496.495200001],[113780.9983,941647.9956]]],[[[5512.99849999975,901467.497199999],[7066.49990000017,901953.9979],[6582.0036000004,900984.995300001],[5512.99849999975,901467.497199999]]],[[[109544.9992,938486.000700001],[110438.5,938648.0044],[110368.4995,937214.504699999],[109544.9992,938486.000700001]]],[[[112703.5008,936008.9998],[113639.4966,934787.499399999],[113008.5021,934343.4965],[112703.5008,936008.9998]]],[[[14830.9976000004,904925.497300001],[15469.9981000004,905968.4988],[15637.0017999997,904428.499600001],[14830.9976000004,904925.497300001]]],[[[142793.002,898552.001700001],[143268.5029,899195.997400001],[143864.0025,898069.999700001],[142793.002,898552.001700001]]],[[[137932.4973,920876.001499999],[138867.0007,922025.002599999],[139099.9979,921377.498],[137932.4973,920876.001499999]]],[[[98346.4994999999,873955.002499999],[98807.4973999998,874847.9969],[99014.4978999998,873468.501800001],[98346.4994999999,873955.002499999]]],[[[68431.0020000003,794214.498],[69100.5010000002,794417],[68738.9962999998,793165.498299999],[68431.0020000003,794214.498]]],[[[91171.4989,857648.5002],[92019.9982000003,857307.4978],[91326.0031000003,856701.5013],[91171.4989,857648.5002]]],[[[73636.4966000002,802763.001],[74324.0027999999,802744.496300001],[74491.9959000004,801763.497099999],[73636.4966000002,802763.001]]],[[[87782.4984999998,891606],[88555.4977000002,891194.9976],[87805.5022,890790.5034],[87782.4984999998,891606]]],[[[95819.0007999996,875213.5023],[96247.9995999997,875607.499500001],[96623.4961000001,874642.4957],[95819.0007999996,875213.5023]]],[[[91096.9966000002,871619.5011],[91669.5005999999,871738.9969],[92100,870935.9967],[91096.9966000002,871619.5011]]],[[[85913.4998000003,847772.997],[86597.9965000004,848031.503],[86814.5036000004,847386.997500001],[85913.4998000003,847772.997]]],[[[74759.0039999997,801985.003699999],[75236.5001999997,802554.000800001],[75663.0006999997,802033.4998],[74759.0039999997,801985.003699999]]],[[[99844.9982000003,879486.999],[100314.4967,879709.995200001],[100761.5027,878889.5],[99844.9982000003,879486.999]]],[[[95519.4989,875852.499399999],[95708.5005000001,876515.999500001],[96251.0007999996,875890.998400001],[95519.4989,875852.499399999]]],[[[118635.5007,897658.997300001],[119142.4977,896955.4987],[118641.0001,896720.495999999],[118635.5007,897658.997300001]]],[[[69748.9998000003,810150.496400001],[70247.4961999999,810680.5046],[70693.0016000001,810267.502900001],[69748.9998000003,810150.496400001]]],[[[110186.498,933278.501399999],[110844.5033,933501.997400001],[110870.5,932864.4999],[110186.498,933278.501399999]]]]},"properties":{"OBJECTID":334,"lad19cd":"S12000013","lad19nm":"Na h-Eileanan Siar","lad19nmw":" ","bng_e":126473,"bng_n":932862,"long":-6.65722,"lat":58.199379,"GlobalID":"3545722d-13ad-47a0-bced-23dc898d8fc1"}},{"type":"Feature","id":335,"geometry":{"type":"Polygon","coordinates":[[[305533.8037,679796.799699999],[305814.2017,678921.4003],[304242.5035,678038.302999999],[300305.899,679365.5031],[296663.3959,675881.2005],[296902.1976,675261.097999999],[295559.2998,674699.298800001],[295950.8,673744.702099999],[293687.2999,672588.703],[291889.0026,672719.4955],[288673,669048.496300001],[286129.2008,668542.601199999],[286990.4964,669451.601],[285507.6963,669818.296],[281175.8979,673292.001700001],[283954.6979,675587.4046],[279249.3981,676056.3004],[278413.5963,677099.901699999],[278710.5999,678316.103499999],[277521.5961,678868.995300001],[276233.9979,678424.702400001],[275993.102,678933.096899999],[276920.8033,679306.6],[276115.302,681213.1043],[273507.9993,681505.500600001],[274204.6987,683523.6029],[276824.8967,684709.9033],[277184.2,685730.0013],[281946.4978,685239.9016],[287104.5008,685923.296],[287062.5994,686859.2981],[288160.0995,687300.6017],[285852.0019,689502.701400001],[286499.6546,690454.964600001],[286871.2975,691001.4024],[288327.2022,692144.395199999],[289985.3005,688503.0975],[292162.9035,687102.7984],[292391.4979,683507.897399999],[292964.5965,682987.793199999],[290747.0039,682206.899800001],[293105.2975,682860.1028],[293242.2931,683085.5801],[295290.9973,683807.001800001],[294553.1962,682522.399499999],[295376.9026,683205.503900001],[295897.1,681572.4014],[294481.8022,679797.499500001],[295663.6988,681131.397700001],[300518.9019,682047.0955],[305533.8037,679796.799699999]]]},"properties":{"OBJECTID":335,"lad19cd":"S12000014","lad19nm":"Falkirk","lad19nmw":" ","bng_e":289661,"bng_n":679536,"long":-3.7706,"lat":55.99604,"GlobalID":"891a4932-823f-4405-8c10-151a9cc314c3"}},{"type":"Feature","id":336,"geometry":{"type":"MultiPolygon","coordinates":[[[[322064.793,973987.229],[324060.083,973530.247],[325966.693,974648.658],[328912.149,974194.221000001],[331063.899,975311.521],[332892.763,972733.836999999],[336257.689,973724.882999999],[340603.4076,973386.2278],[339492.66,968260.779999999],[337768.1616,967620.215700001],[338461.602,966411.107000001],[337977.725,964507.778000001],[334538.356,960471.579],[334006.754,957529.026000001],[333020.9,958950.300000001],[335242.91,954727.15],[338949.5,954850],[338183.98,950878.17],[334562.52,951714.689999999],[336943.3,950802],[337706.3,949643.1],[336611.53,948283.800000001],[335290.6,943060.699999999],[328554.4,935847.800000001],[324422.0107,935083.112199999],[324034.08,934141.439999999],[319052.6,932142.9],[317041.6993,929394.5032],[316267.4963,929544.800100001],[311375.1649,921326.224099999],[303381.0018,915162.8969],[302384.1986,915772.3025],[302814.599,915104.103700001],[297132.9027,910124.4991],[293625.0002,908975.498],[291856.8963,907000.103499999],[290915.096,903426.1965],[288277.3031,901438.995300001],[282777.097,899533.300799999],[281447.5974,895689.5011],[279901.5,895705.4965],[281222.5979,897803.9958],[278931.5016,896811.0001],[278512.9988,897998.600099999],[276881.2022,897678.9016],[277595.9996,896038.4012],[279677.0035,894875.5041],[281376.5002,895001.8979],[281104.6029,895441.5021],[281564.5041,894759.397299999],[282030.4985,892148.9046],[280751.6977,890812.897],[280749.4963,887314.8983],[279271.5032,888272.1043],[277129.5022,888295.997500001],[274761.0013,886288.902000001],[274228.4033,887108.2974],[272695.0033,887112.2963],[273447.8021,887521.2992],[273437.2979,888744.199200001],[271717.4029,887596.9976],[271070.8994,888608.498],[267690.0039,889483.497500001],[265349.198,888960.997099999],[265349.198,888023.4955],[264185.8034,888137.402899999],[261107.8974,891087.6983],[263626.9037,888135.9033],[263780.097,887025.801100001],[269936.0987,888026.5046],[271613.1029,884736.996200001],[274239.1961,884155.9026],[273131.8019,885850.1976],[274646.296,884694.6983],[274827.9017,885448.8025],[274876.8031,884766.4978],[275473.4982,885011.997500001],[278419.6328,882616.582900001],[278421.6023,882476.303300001],[279050.7994,882103.4001],[278518.5759,882536.135199999],[283703.9985,885735.500399999],[286851.699,884010.6041],[287633.001,883305.495999999],[286692.756,883887.0175],[284398.9995,882103.5],[283712.4992,882491.9988],[284108.6002,881971.697799999],[286699.5034,883055.997400001],[289669.4981,883179.502],[291534.399,884337.3006],[292524.4989,887078.9958],[294973.0018,887760.0009],[293619.4018,884402.402000001],[286052.497,875265.297499999],[282355.5023,868889.002699999],[278643.3037,869101.901699999],[280533.0964,872865.104499999],[280476.5023,874286.897500001],[278022.5001,872921.498400001],[276655.6009,873283.4048],[270849.602,868211.296599999],[268513.9988,869124.995100001],[266594.2023,868668.9956],[266642.7987,867772.0024],[263613.1015,868014.0031],[262838.7006,866525.699100001],[264104.2021,866149.596799999],[262952.6968,866238.601299999],[262562.7961,865291.002599999],[260577.303,864646.9969],[258787.3002,862026.2971],[255764.702,859886.499600001],[256173.6983,858452.100199999],[256237.6964,858411.401799999],[266094.0981,866227.804400001],[270941.6993,867176.9027],[270897.3986,865068.996099999],[273141.4981,865240.596999999],[275673.6965,865793.798599999],[278680.9012,867822.9978],[281213.0007,866909.9991],[274501.1004,859443.496400001],[273789.1971,857531.2038],[275033.0965,855704.296700001],[272095.4967,856176.4016],[270028.0971,854988.7016],[269129.4019,852724.999500001],[268788.5016,851834.0046],[266202.298,847823.4026],[257344.1012,849331.101],[262878.2027,845747.9967],[266001.5967,847247.497500001],[266466.7996,844297.301899999],[266187.8032,847257.9045],[269507.3967,845988.897700001],[271363.3023,847758.301200001],[271478.4033,849619.7984],[273542.9007,849291.102499999],[274231.0005,851387.3025],[278006.0017,854066.095699999],[277663.9966,855928.3026],[275954.6965,856631.001499999],[277058.9987,857515.3983],[279538.7008,857636.003799999],[279831.6973,858577.304300001],[282711.9033,856881.899599999],[280204.102,858784.8049],[284651.4962,856737.0011],[288875.3009,857277.7963],[288916.6993,857338.898800001],[290812.4038,858804.3993],[291720.0036,860045.304099999],[294861.6027,861449.4022],[296177.8031,857795.998],[295563.4965,857000.095799999],[297672.2039,854304.6974],[296612.2024,853641.6971],[297606.8041,850620.502],[296963.2029,850030.900699999],[298822.1013,849046.9024],[297934.1,848189.197899999],[299227.9975,845651.5043],[298005.997,839712.0045],[300430.2016,838752.699100001],[302976.4991,839502.5044],[303483.0014,840817.9979],[306097.9967,840708.9991],[309941.4979,842153.4956],[311789.0018,839077.496099999],[314016.504,837644.996099999],[315250.501,837915.4987],[316802.5019,834003.998400001],[316002.5001,833362.502],[316228.0025,832041.000299999],[310093.9986,824796.504000001],[310072.9984,823830.000600001],[312727.0011,822075.2029],[311978.0033,821138.5011],[312767.5009,819354.0019],[311747.3972,817411.9978],[313771.502,815637.9956],[312710.9975,814409.497199999],[313580.0022,813509.005000001],[312296.5018,810498.9966],[310153.9979,810610.504699999],[308420.4985,809292.502],[307205.696,809538.501499999],[305671.4962,806654.9969],[304273.4966,806152.0009],[302208.0017,803578.997400001],[299894.9982,803989.9998],[298082.5029,801733.095799999],[296146.9995,799971.5001],[294027.4994,799724.0009],[293502.5034,798960.499500001],[294134.0008,797647.995200001],[295020.5016,797522.5011],[293453,795452.503599999],[294181.5006,793085.5012],[293881.5041,790464.501399999],[293088.997,788399.502499999],[291387.9997,787201.4954],[290468.5023,784179.500499999],[289098.9976,784495.0002],[287193.0033,782809.002800001],[284764.9977,782872.004699999],[284454.497,783892.502599999],[282270.504,784353.500700001],[282175.4961,785825.499299999],[281436.4995,785679.0012],[280240.9987,783737.497],[280244.5028,780384.9966],[278289.4999,779440.497],[277573.8038,780322.604499999],[276852.5012,779311.503900001],[276172.0033,780750.202099999],[275780.9978,780169.998199999],[271477.9993,780139.9968],[268053.0009,781357.498299999],[267698.9992,782149.501599999],[265710.9996,779176.502599999],[266515.9979,778373.002599999],[266034.9975,777606.0021],[264959.9982,777479.998199999],[264263.9996,776232.995100001],[259591.4987,775696.4987],[257966.0014,774144.0031],[257868.5036,772694.9979],[257076.4995,772427.5044],[255230.9992,773713.496300001],[250876.5021,767358.4954],[249227.4981,767865.000399999],[246198.9965,771028.504899999],[244323.5007,768500.498500001],[244458.4971,767427.9955],[241773.9959,766137.504899999],[242516.9996,763313.5033],[240573.4985,760397.498],[241459.0016,759974.9989],[241361.9984,758720.9979],[237269.0017,756823.0012],[233603.9978,757172.5011],[233582.5029,753355.503699999],[236715.5025,752950.499700001],[238885.0007,754562.498199999],[239515.5994,752617.904899999],[238328.5003,751241.9987],[238924.5028,750168.495999999],[235169.0011,748646.001800001],[234229.8969,749232.0041],[232681.1034,747315.4027],[229411.4997,747442.496300001],[228017.499,745920.0021],[226220.9991,745505.500800001],[225714.9997,746041.497300001],[223227.4977,745276.996200001],[219038.5037,746533.4965],[218731.4989,745203.997099999],[217482.9988,744242.0024],[216632.9989,744493.000600001],[215998.5002,742920.500700001],[212431.0025,742413.9957],[211779.9972,741431.9968],[209685.6032,741679.595899999],[209616.799,742491.9027],[208643.9964,743899.000600001],[209589.4988,744671.499500001],[209943.5005,746728.500700001],[209184.9961,748279.4967],[210588.9981,749191.9955],[211072.002,750643.100199999],[208722.003,751542.002800001],[206603.5005,751222.0044],[206679.9981,752762.003599999],[202976.4981,753518.9969],[202658.5026,750216.0024],[200568.998,749200.0032],[199079.9976,750225.499700001],[197672.4997,749989.497199999],[196099.158,752595.470899999],[197980.7,754539.859999999],[197722.28,755484.960000001],[196155.5,755539.5],[196742.5,756212.5],[199282,757932],[200695.09,757935.24],[200780.41,757368.74],[202667,759598.5],[205004.43,760007.1],[205062.08,761005.75],[201292.54,761526.800000001],[202551.5,764410],[210373.61,774461.08],[211914.34,775482.76],[211081.64,775757.699999999],[210809.66,774860.93],[210319.97,776278.869999999],[208376.8592,776360.9827],[209522,775752.5],[209496.14,774821.859999999],[203440.5,768398.5],[202065.73,768595.1],[202574.5,766828.5],[200888.78,764775.91],[201675.002,763445.732000001],[199711.44,762648.210000001],[199032.5,761367],[198824.36,762440.029999999],[198250.6774,762693.4299],[198248.4,762730],[197740,762919],[198225.2894,762704.643999999],[196755,761091.5],[194240.5,759594],[194545,758748.5],[191719.5,755732],[189528.37,755380.720000001],[187160.5,752435.5],[186333.5,752717.5],[186024.5,751924.5],[183594.5,752724.5],[185765,751504.5],[182051.5,745817.5],[178757.5,742840],[173348.5,739993.5],[172726.057,741700.278999999],[169724.77,743290.029999999],[169101.47,742603.59],[168186.89,744209.9],[170267.44,747406.189999999],[169813.3761,747723.4267],[167372.236,744233.436000001],[160119.5,746739],[156939,750411.5],[155972.27,753581.01],[154630.5,754726.5],[154424.5,757552],[160693,758604.5],[161478,756506],[162391.5,756659.5],[165094,754266],[165338,755024.5],[163094,756348],[162297,757981],[166086.79,759319.57],[170730,762939],[169358,763749],[168931.2586,764722.9586],[168771,763521.5],[165130.5,760261.5],[163617.5,761015],[161466.5,760303.5],[160965.5,761064.5],[159585.5,760665],[158474.26,762171.98],[156795.85,761503.59],[156622,760470],[155897.5,761901],[153249,761546.5],[152028,763039.5],[149247,762630],[148310.27,763061.300000001],[148485.34,763745.16],[146541.5,762241],[143636,762984],[141888.5,764783.5],[141514,767482],[142479.8567,767261.821],[143157.5,768628],[144143.5,768251.5],[144218,770444],[145309.5,769967],[148448,771351],[151957.55,770243.18],[152619.32,771213.41],[154579.22,770795.82],[154767.613,771390.433],[155290.51,770669.35],[154850.446,771715.606000001],[156838.17,771239.17],[157856.5,772925],[161080.78,768827.35],[162576.5,770271],[163547,769339.5],[163427.5,767806.5],[165234.75,767546.560000001],[164573.5,768349],[164927.4545,768665.2009],[165654.1,768048.58],[165055.02,768779.16],[164868.8068,768714.968499999],[164583,768957.5],[164618.89,770034.060000001],[164044.84,769647.710000001],[162400.5,770632.5],[162682.5,772716],[164392.5,771789.5],[164517.59,770636.699999999],[164741,771985],[165998.42,770809.5],[166627.5,772626],[167745.99,772284.41],[168231.5,773117],[169189.5,772058.5],[171232.22,772111.119999999],[164180.5,775460.5],[164557,777561.5],[166521.5,778020],[167234.8,777226.35],[167767,778257],[169164.5,778084],[170585,779235],[173276,778633.5],[175006.5,781319],[176706.85,781984.75],[175250.06,782529.32],[172891.5,779480.5],[169128,780656],[171644,783069.5],[173261.5,783241],[172231,783703.5],[172920.98,784088.439999999],[172465.5,784536.5],[164717.47,783637.109999999],[163230,782602],[161190,783787],[161106,784701.5],[162594,784968.5],[163004.5,785970],[164929.5,785291.5],[164908,784683.5],[166119.6,786171.4],[165704.28,786822.43],[164349,786503.5],[163748,787673],[164503.2,788583.949999999],[165461.9,788355.800000001],[164806.94,789191.09],[165737.74,789888.65],[165337.06,790578.59],[166393,792765.5],[168031.74,791980.300000001],[167460.06,793494.6],[166279.5,793405],[167519.47,797283.720000001],[173841,798090],[174808,794992.5],[179116.73,792392.76],[180818.5,793768.5],[180169.5,793788],[177730,795170.5],[176742.5,796993],[176556,798708.5],[177751.02,799142.4],[175173.7,800567.369999999],[172590.5,799384.5],[171937.5,801890],[170707,801160.5],[169923,803622],[174453.53,807299.640000001],[174769.5,809181.5],[178946.5,809951],[182641.5,808870.5],[184007,806212],[186782.02,804442.26],[187507,806188.5],[188889.5,806547],[186456,806737.5],[184984.6955,808015.557399999],[184569,810376.4],[181655.5,811884.5],[178690.5,811698],[177544.4444,812360.5952],[176831,814745],[177958.6,816392.66],[180719.69,818013.869999999],[181465.6,820182.5],[179394,821178.5],[180706,823561.5],[183136.6,824448.199999999],[183930.45,824027.09],[187192.5,825589],[190264,821195],[193396.2682,818850.910499999],[194612.0668,820766.571699999],[195462.87,820912.369999999],[194648.8,820824.449999999],[193937.3,820650.939999999],[191323.06,821988.199999999],[188154.44,826469.33],[188138.4,827568.9],[187917.7,826198.09],[187027,826817.42],[185778.53,826278.560000001],[185641.294,827047.908],[183497.64,825741.08],[183104.69,826910.039999999],[181925.4,826196.4],[180260.62,827728.890000001],[178693,827060.5],[175068.56,827580.779999999],[176009.16,827556.949999999],[175408.86,829054.119999999],[176284.5,831067.5],[177514.5,832285],[179253.04,832259.02],[178389.9,832432.300000001],[178302.7,833907.4],[180866.4,834252],[179717.16,833088.640000001],[180391.62,832997.49],[184547.28,833788.449999999],[184903.9,834918.6],[187469.5,834682.5],[192321.45,838696.460000001],[193781.87,841326.699999999],[193417.1,842163.220000001],[191898.46,841780.039999999],[189404.49,839081.07],[189828,838481.1],[186448.7,835327.300000001],[183451.61,835157.050000001],[182777,835632],[183732,836231.5],[181468.5,836532.5],[181654.5,838021],[184114.85,839106.960000001],[182909.8,840122.4],[183474.19,842497.4],[182301.1946,839979.232899999],[178354,838023],[175710.5,835524],[172169.5,834779.5],[171169.49,838169.060000001],[170763.5,836634],[170255.5,836794.5],[169869,839892.5],[170579.78,839571.789999999],[170572.92,841029.220000001],[171387.52,839835.5],[170398.36,843000],[171677,845146.83],[168836.5,845684],[167897.5,849278],[170752,860818],[171697,860567.5],[172265.37,861470.92],[174692.81,858411.859999999],[176151.5,857721.5],[176183.5,856516],[177073,856962.5],[178259.541,856014.540999999],[177708.5,857389],[178224.5,857864.5],[178760,854908.5],[180158,854450.5],[181481.8,852403.800000001],[181271.64,856124.449999999],[180573,856542.5],[180512.325,857394.863],[178561.07,858714.039999999],[178723,859454],[179932,859030],[179731.78,860087.939999999],[177280.5,861167.5],[177082,863524.5],[175844.5,865506.5],[173297.537,867544.67],[172173.5,867460.5],[174357.84,872296.380000001],[174300.7,873828.199999999],[177422.5,874871],[178091,874564],[177781.88,873760.289999999],[179181.95,873780.91],[180634.17,872541.189999999],[180346.7356,873684.351],[181324.544,873887.922599999],[181194.05,875216.09],[180085.96,875105.050000001],[180578.092,875739.414999999],[180028.7199,877163.0098],[176259.78,877515.07],[173219.5,879744.5],[174193.438,884541.630000001],[173762,891377.5],[174230.5,892129.5],[175911.57,891744.382999999],[177043.5,892955],[181616.6692,892152.514699999],[180944.1,889796.800000001],[181692.8,889615],[181335.456,888739.067],[182367.58,888426.4],[182666.67,887343.300000001],[182088.1,884850],[184623.279,881117.355],[185759.73,880753.939999999],[186237.1,881632.5],[184799.5,883561.5],[185674.5,884243],[185820.5,883189],[187358.36,883500.300000001],[187327.5,884435],[186324,884826],[187461.88,888580.369999999],[186178.6,890264.300000001],[183992.89,890993.93],[183329.5,893556.5],[184107,893997],[183393.5,894704.5],[184089,896242.5],[185823.5,898514],[187986.0648,897865.0244],[188148.5311,896823.7304],[188943.8,897673.1],[189697.4806,897027.481699999],[189130.11,895910.014],[189822.3,895495],[190111.1,892178.300000001],[193145.62,890519.42],[195106.95,889838.289999999],[195058,891424],[196677.962,893336.514],[196165.8,893800.1],[197344.6557,896216.1513],[201528.9,893421.199999999],[199017.9,896547.699999999],[198531.89,898614.27],[200434.595,898359.744000001],[201159,899359.5],[202814.4,896524.800000001],[204754.5,895987.5],[208205.4593,896630.4585],[208018.5,896094.5],[209474.1136,895643.0517],[212450.6,894641.199999999],[209195.3,897392.199999999],[211892,899061],[212299,900729],[211138,899460],[211222.5,900926.5],[209258.5,901081.5],[208106,902571],[204314.5,903663],[204567.5,904712],[203306.252,906796.357000001],[201853.5,906867.5],[202362.01,907609.91],[201858.34,909067.119999999],[198168,909986],[198730.305,912168.911],[196928.5,913297],[196196.01,914997.449999999],[196883.5,915300.5],[197004.5,917268.5],[198158,918152.5],[200809,915926.5],[202035.321,912550.107000001],[202459.5,914863],[203200,915011.5],[204041.52,913590.67],[205397.653,913113.691],[205915.5,914177],[206708.5,914109],[206224,915167],[207012.5,915287],[206663.5,916461],[207596.5,917197],[207187.5,918229],[206504.5,917922.5],[206949,918658],[205562,919296],[207967.4568,919328.377599999],[205884.4073,921252.2481],[208283.238,921148.726],[208760.4088,922382.474400001],[209435.52,922103.210000001],[209594.8,923085.300000001],[207682.5,922298.5],[205358.5,923239],[207238.6036,924482.449100001],[205378.5,924057],[204945.5,924925],[205795,925524.5],[204170,926155.5],[202642.917,930388.033],[200218.5,932508.5],[202062.5,935583.5],[202477,934115],[204266,934077],[203850.9,933110.4],[205299.5,932618],[205688.35,930935.33],[209330.5,933684],[210446,933932.5],[210570.5,933047],[211280,934209],[212076,933113.5],[213437.5,933569.5],[213808.5651,932924.358100001],[213836.5,932502],[214635,931487.5],[213909.2334,932749.334000001],[214374.5,934331.5],[215016.5,933675],[215806,934479.5],[216524.5223,934280.3378],[216986.5,932989],[216693.5,934233.5],[216458.7986,934464.051100001],[216356.5,934750],[217743.5,935483.5],[220830,932654],[221116,933257.5],[222646.17,932993.529999999],[219310,934714.5],[217775.5,935994],[217875.1634,936951.5122],[216971.05,936651.76],[216994.8467,936840.3302],[216306.5027,936416.0033],[216480.0036,937544.000399999],[216999.3519,936882.7787],[217187.5662,938161.051999999],[216051.5,937926],[216412.5,938674],[215678,939157.5],[216885.5,940041.5],[215735.5,940228],[216923.5,941079.5],[216048,941959.5],[215445.5,941123.5],[214464.5,941417.5],[215209.5,942794],[213845.5,944695.5],[215509.8,944820.800000001],[214309,945886.5],[216270.5,948396],[215836.8508,950149.386700001],[216572.7791,951396.284700001],[217973.5,949496.5],[219505.1127,949219.929400001],[219239.5,948616.5],[220162.5,949193],[220327.1,948447.49],[220987.5,948681.5],[220719.84,947824.029999999],[222519,947636.5],[222005,946797.5],[223508.4362,947084.216399999],[222115.5,948231],[222867.62,948933.859999999],[221097.5,949547.5],[221649,950282.5],[220642.5,950082.5],[221783.6912,951056.964299999],[223013,950903],[220968,951471],[220889.63,950784.75],[219379,950649],[218218.5,951429],[220633.8397,951550.8334],[218171,953063.5],[218981,954219.5],[220128,954038.5],[219093.5,954393.5],[219923.8526,955002.4735],[221213.5,954935.5],[220494.6595,955536.578500001],[223054.2,955216.800000001],[220570.5,956188],[221851.5,956907],[220094,957581.5],[220325.855,958414.101],[219266.68,959123.42],[218478.5,958693.5],[217898,959894.5],[218788,963497],[220158.5,965118.5],[222523.581,965448.261],[224857.381,969457.210999999],[224451.5,970451],[225114.52,970942.5],[225502.5,974781.5],[228958.114,972705.779999999],[229566.0126,973621],[233031.5,973252.5],[234556.81,971458.119999999],[235937.501,971092.619000001],[236029.734,967287.672],[236897.921,967392.744999999],[237480.268,968748.982000001],[239301.082,969154.448999999],[237877.9635,971469.5141],[239276.68,971909.59],[239283.682,970254.571],[240666.141,969490.265000001],[241032.34,967501.742000001],[242031.03,967898.68],[242824.8,966291.151000001],[245660.5,965662],[245062.5,965358],[245619,963569.5],[242026.884,959654.975],[246208.5,962174.5],[247627,962482.5],[247719.113,961303.049000001],[249124,963646.5],[248562,965911],[249534.0214,968433.5286],[253904.8565,968390.521400001],[257171.9,966341.767000001],[257190.8374,964797.009500001],[258305.0762,965717.581800001],[259030.778,964948.357000001],[258594.16,962722.9],[259785.132,961799.214],[257016.2,959061.85],[261209.177,960401.697000001],[263262.8262,963569.2061],[266267.068,963962.401000001],[268057,963218],[268096.717,961094.146],[268178.044,962062.717],[269881.583,961972.506999999],[271195.45,958424.539999999],[269647.451,963217.978],[271222.46,962339.18],[271243,964703.5],[271981.94,964863.92],[273418.034,963464.958000001],[274586.5,964234.5],[274857.5,965931.5],[276021,965747.5],[276441,966556],[278261.5,965089],[278669,965628.5],[279432.04,964361.380000001],[279577.112,965697.5],[281020.452,966699.848999999],[281316.4,968824.4],[282362.396,968764.934],[282775,969960],[283495.2,965681.779999999],[286277,966805],[287077.784,965972.479],[287704.03,966667.859999999],[288341.408,965157.800000001],[288884.1005,965049.346999999],[288913.842,964779.630000001],[289465.02,962629.76],[289149.539,964996.301000001],[289029.2025,965020.349400001],[289412.9,965821],[291949.376,965361.879000001],[295372,966472.6],[296546.927,965246.253],[297040.655,966507.351],[301504.161,969883.719000001],[302908.529,969944.914000001],[303908.798,971570.578],[305359.711,970808.835000001],[310921.5,971584.5],[309919.58,969970.220000001],[311456.8,968665.9],[312171.15,968922.9],[311333.18,967638.33],[312965.253,969550.323000001],[315112.202,970301.812000001],[320562.138,968286.608999999],[321501.448,968960.024],[321721.736,970906.903000001],[318044.56,973372.814999999],[318408.207,975399.719000001],[320250.297,976859.876],[321442.802,976030.634],[322064.793,973987.229]]],[[[140826.0025,877037.000299999],[142070.5038,876006.995200001],[144140.5006,876764.498299999],[144389.9961,875763.504799999],[143652.3023,875011.3002],[146630.5008,872800.503],[147315.5994,868725.999299999],[149913.9974,868105.4969],[152023.9993,862758.997300001],[152830.0035,862845.502599999],[151988.7022,860428.704399999],[152458.4975,858266.5033],[151560.9979,853126.5046],[152100.0023,850047.495999999],[151250.4971,845345.002],[149472.4992,843529.0019],[148008.0032,843541.0984],[147594.703,841149.8029],[148895.6005,842977.0999],[149263.0004,842362.9956],[151484.5002,842591.5002],[152255.5041,840558.5022],[150820.5996,838780.0013],[152381.4969,835416.0042],[153121.4994,835000.1032],[153178.0028,835809.501599999],[153677.9998,835080.000399999],[152928.6969,834656.1017],[153000.0001,832860.595699999],[151309.0041,832636],[148970.0039,830449.7958],[152162.6977,832296.997],[155797.4999,832076.5001],[156588.4981,829752.995200001],[153924.9971,827059.2963],[157815.998,829057.0044],[159315.6015,827042.0012],[162689.8021,825558.2959],[163593.9967,825936.997500001],[164576.7008,824779.5988],[163927.3033,823527.2973],[165621.0037,823055.9022],[167776.5018,824729.0033],[166978.6025,823384.7981],[173826.9998,826693.0011],[176363.9968,826164.5024],[175034.4972,825071.995100001],[178971.4974,825311.4966],[180089.5029,824170.0033],[178786.5029,822039.0033],[178518.4972,819115.000299999],[176678.0017,817401.500800001],[171497.4979,814790.998],[169899.0032,815917.9954],[170569.4998,814090.498500001],[169871.7038,812525.4965],[170943.9987,811649.497300001],[169809.602,811557.3037],[169809.0001,809777.5031],[168296.996,808358.999199999],[166786.204,808885.0986],[165578.2036,806158.2991],[164460.701,805638.8978],[164018.403,803419.802999999],[163523.6004,803716.597999999],[163642.0984,803078.900599999],[159756.0032,799918.495200001],[159044.8997,800456.201300001],[157193.9989,799233.5013],[156691.0007,799822.502699999],[156258.4978,799031.999],[155227.5023,803446.995200001],[156118.0019,804899.999299999],[157693.798,805209.300799999],[157273.0031,807039.9967],[157858.5013,808557.5023],[158788.9977,808879.5002],[157623.5006,809771.504799999],[158125.5011,810784.7048],[159522.9978,811397.999299999],[160013.4965,812567.5045],[161761.6968,813071.100299999],[163384.4979,815108.997],[166368.501,815582.001599999],[168199.1024,817529.804099999],[165699.9997,816146.9999],[164538.0974,816612.3967],[164235.5037,815689.500800001],[162230.9974,816336.9955],[158783.0035,815705.996099999],[158306.101,819199.496099999],[156442.9975,822459.302999999],[156596.1,817498.902899999],[155342.1994,817251.7037],[155286.8008,815762.100099999],[152940.0008,811387.0024],[151256.7963,812629.5967],[152131.4984,816275.0032],[151001.9992,819085.998600001],[150491.0033,817965.999199999],[148327.4993,819680.498400001],[147797.0038,816987.9991],[145677.0007,817528.0046],[138750.0033,815990.004799999],[141091.5017,818778.9965],[141303.004,820430.003900001],[140791.4969,820886.5032],[138533.9992,819012.999500001],[137392.0005,818941.0001],[135218.5035,822600.502599999],[135704.7972,823694.7993],[137620.9989,823855.0035],[138149.499,826390.797599999],[137174.9988,824609.997400001],[134273.0011,824326.998400001],[131689.9966,827865.9954],[131437.5988,830544.298699999],[130074.5006,831218.9956],[130160.9995,833388.004699999],[132923.4,834948.9979],[133613.6023,834511.1032],[133500.4966,836411.9991],[136073.4009,834728.601],[138205.4995,831630.4978],[140703.1016,831404.4025],[138586.5038,832258.498],[137922.0013,834305.5021],[135191.5009,836286.095100001],[135108.2011,837841.4999],[136509.004,838890.999500001],[131870.0028,836426.504899999],[132218.0021,838713.8002],[130691.5032,839483.4999],[131552.1969,840777.0996],[130484.4038,841131.4981],[130485.8961,843719.0975],[128069.6975,840028.104],[128737.399,842664.8992],[127576.4037,845004.5995],[127685.997,842733.7995],[127202.0037,842484.900699999],[127228.7012,843217.501],[126542.4978,841946.005000001],[125314.9978,842367.304400001],[125507.9982,836784.502499999],[124349.5012,836235.499600001],[121928.0009,838390.002900001],[116355.5022,841117.5022],[115359.4988,843143.5022],[115993.5028,843767.503599999],[115327.4997,846306.4968],[113969.9999,847665.4978],[112563.4996,846883.001800001],[113425.496,850953.9965],[116964.301,849780.002499999],[115702.9963,851528.502],[115456.9966,853673.498],[115669.4966,855495.4965],[117657.9992,856883.499199999],[121723.3997,848669.4004],[122823.9999,847394.395400001],[123523.9974,849054.000399999],[124187.0982,848753.0965],[124844.7985,846080.3016],[125107.5026,847233.001599999],[125574.2967,847004.2971],[124002.4995,850516.0019],[123407.9976,849924.5012],[122792.0009,850454.999299999],[123485.9959,851304.496200001],[122291.5009,855369.002699999],[123435.5031,855123.503],[124699.504,855970.000700001],[126403.6015,854001.804099999],[126953.0029,855606.9046],[122437.2983,860831.3991],[121880.0971,859844.501599999],[121554.6975,860241.098099999],[122563.2994,861847.3983],[123277.9977,867081.5],[126234.5035,864627.002599999],[126958.997,860096.1996],[128429.0007,859964.997099999],[130512,858275.0009],[132892.0028,854755.498299999],[132559.496,854121.4998],[135014.9989,856214.500700001],[133212.9996,852134.498600001],[133944.5014,852151.503699999],[134349.4988,850923.395199999],[134287.702,853281.3003],[136579.4992,855061.500700001],[136735.0011,857268.9988],[138012.9031,854009.5019],[138357.8023,854500.001499999],[139478.0999,853519.4022],[139659.9035,851724.7959],[140307.7015,852719.101199999],[140627.9974,849231.6995],[141467.7981,848754.796],[140845.7989,852148.104699999],[142090.2012,851748.099199999],[138713.5024,855584.501],[138146.4978,857337.9991],[138701.4976,857446.9979],[137168.5017,860022.500700001],[137329.9977,861786.9956],[138000.7994,861028.7026],[139569.4964,863812.3958],[137439.5003,863500.495100001],[137662.4962,866590.500600001],[135879.5018,869992.4968],[137218.2029,870839.704299999],[137073.2959,871943.2984],[138683.3008,871765.699200001],[140507.5041,872936.5041],[141274.6987,874429.9966],[140826.0025,877037.000299999]]],[[[137581.9997,804926.501700001],[141644.0033,802034.499500001],[142297.0039,800135.5031],[140291.4999,799327.704299999],[142751.0017,798397.500600001],[141807.9975,794702.498299999],[137839.9959,790898.997],[134378.4967,793076.503699999],[134181.0027,795409.296],[129315.9962,799544.5023],[132532.5017,801785.001],[133346.5036,803224.4989],[135095.5037,804301.500600001],[136212.0004,803739.501499999],[137581.9997,804926.501700001]]],[[[161332.5001,850251.997400001],[158047.5029,844863.999700001],[158601.4968,840298.996400001],[160020.4965,838210.0044],[159955.5007,836798.998299999],[158086.9967,834136.1006],[156301.9987,833688.998500001],[155330.7965,834337.502900001],[155473.098,835708.600400001],[154181.0969,836328.403000001],[155206.9969,839550.500700001],[154843.0022,844149.0044],[156902,848557.502499999],[159083.9977,847611.0034],[159543.5032,848753.996200001],[158482.0011,849302.9991],[159706.4999,851478.996200001],[160883.4988,851857.4979],[160650.5016,853313.0012],[161709.0026,851917.500700001],[161332.5001,850251.997400001]]],[[[149893.5002,788998.501],[149361.0012,784949.0002],[148741.5003,785144.5042],[147849.5001,783203],[146349.5009,783356.496099999],[143664.4967,785377.497500001],[143931.4965,787420.002900001],[145342.0039,788262.0019],[146974.9959,788115.003900001],[146899.0012,790497.0021],[148421.9959,791304.501],[149893.5002,788998.501]]],[[[163292.4996,827985.0013],[160151.997,827374.495999999],[158625.4981,829113.498299999],[157792.4996,830956.0009],[158296.5037,832675.998500001],[159255.5033,833152.0023],[161601.5035,832608.4978],[163644.4977,831000.4981],[163292.4996,827985.0013]]],[[[128170.9963,806238.995999999],[127933.0026,805007.998400001],[124254.9963,805543.495100001],[122740.9969,804100.998],[120561.0028,804473.501399999],[121482.0008,805962.495200001],[126821.9971,806861.4978],[128170.9963,806238.995999999]]],[[[162725.5032,861803.5009],[163658.0031,860050.502599999],[161843.0013,854130.997099999],[160757.4978,855651.002],[161885.4964,857024.4988],[161049.4966,856554.5034],[160664.5018,857352.504899999],[162190.4977,858038.498600001],[161505.0033,860218.004699999],[162008.9991,860928.5013],[162408.4971,860418.997199999],[162221.4991,861104.5009],[162939.9985,860470.002599999],[162725.5032,861803.5009]]],[[[147159.9986,815759.0009],[147153.9962,814621.996400001],[145456.9977,814525.504000001],[145751.5031,812869.4981],[144135.5041,812219.5041],[142685.5029,814559.5043],[144483.0004,815390.996300001],[145203.998,814770.004000001],[144837.9998,815440.0023],[145836.9961,816200.004699999],[147159.9986,815759.0009]]],[[[163467.501,775498.995200001],[167477.5029,773362.9967],[166167.5029,773602.4981],[164860.9988,772663.4969],[162715.5019,773464.997500001],[163467.501,775498.995200001]]],[[[139991.0004,781077.498400001],[140598.0018,780162.000499999],[142580.9968,780607.0031],[142669.4992,778968.0022],[142163.4998,779473.497500001],[141647.4992,778169.001],[140982.9967,779310.0043],[139577.9971,778861.502699999],[139184.9963,779698.0033],[140142.5034,780163.9999],[139991.0004,781077.498400001]]],[[[335978.6011,976489.4024],[334046.8987,976025.895099999],[335436.3977,979280.003599999],[336290.6025,977953.0034],[335978.6011,976489.4024]]],[[[186243.4022,887986.3961],[186107.9028,887009.795600001],[184031.4996,888442.9954],[184455.6998,890055.8037],[186243.4022,887986.3961]]],[[[214956.003,948151.0042],[214613.0002,947225.4991],[212438.4972,947624.504899999],[213033.9968,948834.498500001],[214230.9982,948959.002900001],[214956.003,948151.0042]]],[[[200223.0022,906972.001499999],[199342.0009,906269.502599999],[197921.5006,906925.504799999],[198762.0021,908938.998500001],[199525.503,908047.503699999],[199023.5025,907366.498600001],[200223.0022,906972.001499999]]],[[[208767,935598],[208962.5031,934772.003900001],[209952.5041,934774.0033],[209868.9945,933886.024],[209517.205,933797.1106],[207655.5,934584],[208767,935598]]],[[[159423.8313,759985.598999999],[160749.5001,758717.9987],[158088.4973,758699.0042],[158661.0014,759903.499399999],[158585.9961,758869.4954],[159423.8313,759985.598999999]]],[[[168245.0027,836225.002599999],[168938.0001,834056.0035],[169377.5031,835489.5032],[170094.5018,833571.0023],[168661.502,833712.501800001],[168245.0027,836225.002599999]]],[[[162874.4997,758904.4954],[161670.0034,757791.0041],[161343.499,758951.5019],[162243.9999,759881.4957],[162874.4997,758904.4954]]],[[[174528.0031,878229.499],[173769.004,877105.500700001],[172530.4969,877627.5013],[172696.9976,878304.997400001],[174528.0031,878229.499]]],[[[210108.5007,899937.495100001],[209889.7015,898706.5975],[208638.497,899379.005000001],[208379.6021,899991.7996],[209059.0033,900118.5033],[210108.5007,899937.495100001]]],[[[127427.4979,805039.999199999],[129260.4987,803668.002],[127821.4964,804295.002499999],[126480.9979,803830.995300001],[126375.5023,804723.999700001],[127427.4979,805039.999199999]]],[[[193168.5032,901826.5044],[191853.0037,901572.497099999],[191520.9998,902310.4959],[192528.9998,903031.499500001],[193168.5032,901826.5044]]],[[[198042.0022,911607.204700001],[197523.9979,910605.501399999],[196506.4997,910833.995999999],[196889.4993,912003.5013],[198042.0022,911607.204700001]]],[[[168154.9996,826960.5045],[167098.9969,826375.502],[166827.0006,827420.003],[167706.5013,827905.504000001],[168154.9996,826960.5045]]],[[[194397.5038,895226.503599999],[194986.0032,892914.995300001],[193831.0021,893681.4959],[194397.5038,895226.503599999]]],[[[129840.0028,837221.997199999],[129721.4965,835586.995200001],[128482,835766.503900001],[129840.0028,837221.997199999]]],[[[264366.5022,966109.503599999],[264154.0022,964833.9987],[263304.4971,964853.5031],[263605.4995,966014.500800001],[264366.5022,966109.503599999]]],[[[197202.0036,907403.498],[196386.5011,906834.001],[195800.4998,907786.998199999],[196547.9971,908166.999500001],[197202.0036,907403.498]]],[[[284758.5006,886456.403999999],[285722.8017,885212.4001],[283507.9969,886397.001],[284758.5006,886456.403999999]]],[[[158910.0022,852292.5033],[158778.6007,849958.9013],[158340.4994,851567.5009],[158910.0022,852292.5033]]],[[[121895.4989,857823.5001],[122318.5035,856320.500299999],[121606.9959,856392.999600001],[121895.4989,857823.5001]]],[[[160421.0993,854371.9981],[160936.4981,853286.9987],[159744.9961,854169.9959],[160421.0993,854371.9981]]],[[[202702.4982,904430.9989],[202239.4968,903842.497300001],[202107.5016,905333.000700001],[202702.4982,904430.9989]]],[[[163489.4988,788382.997199999],[163582.0001,787686.9965],[162723.4996,787714.498600001],[163489.4988,788382.997199999]]],[[[166223.998,831028.0002],[165733.4994,830592.504899999],[165646.4975,831717.502900001],[166223.998,831028.0002]]],[[[171336.0019,812466.5034],[170595.7026,812240.1982],[170893.7038,813000.1007],[171336.0019,812466.5034]]],[[[144213.9971,879158.0032],[144458.9991,878371.998199999],[143738.4961,878779.501499999],[144213.9971,879158.0032]]],[[[266532.03,964729.812999999],[266470.05,964100.799000001],[265967.699,964642.85],[266532.03,964729.812999999]]],[[[263312.503,966270.997400001],[263368.0006,965716.995999999],[262747.502,965951.9987],[263312.503,966270.997400001]]],[[[196560.0019,902339.4976],[195827.5024,902241.4956],[196229.2018,902730.4956],[196560.0019,902339.4976]]],[[[124033.5009,849770.495300001],[124011.5031,849139.9957],[123522.4968,849601.503599999],[124033.5009,849770.495300001]]]]},"properties":{"OBJECTID":336,"lad19cd":"S12000017","lad19nm":"Highland","lad19nmw":" ","bng_e":241018,"bng_n":858292,"long":-4.66103,"lat":57.586571,"GlobalID":"2a519d65-7631-432e-a046-81ade05eda77"}},{"type":"Feature","id":337,"geometry":{"type":"Polygon","coordinates":[[[219396.0462,668397.169600001],[218827.82,670246.85],[220619.7994,672258.5605],[219956.25,672868.49],[220315.56,675905.6],[224211.93,678013.59],[225095.25,677303.449999999],[225398.5,677937.550000001],[226740.94,677674.43],[228647.8,675764.359999999],[236767.8009,673883.602299999],[235407.2999,672097.4036],[236737.7971,671189.603499999],[236295.2023,669312.0009],[237509.7987,668223.8024],[236759.3992,667070.4026],[237550.1995,666297.4038],[235950.7978,666268.302200001],[235249.9017,664012.097999999],[232346.997,663774.2961],[229589.5023,665495.0035],[227882.6015,665263.4998],[225276.9973,667871.5033],[225022.9999,670152.500299999],[222160.0014,668336.000299999],[219396.0462,668397.169600001]]]},"properties":{"OBJECTID":337,"lad19cd":"S12000018","lad19nm":"Inverclyde","lad19nmw":" ","bng_e":227922,"bng_n":670894,"long":-4.75387,"lat":55.900299,"GlobalID":"c0e75d7b-93aa-4c3b-bbef-cbfa8b94e0ed"}},{"type":"Feature","id":338,"geometry":{"type":"Polygon","coordinates":[[[314327.4994,659833.0042],[315484.5041,660147.0044],[319019.4998,664430.9981],[320905.1041,665496.203199999],[321628.501,664645.3967],[322627.5963,666204.000600001],[324462.8974,666228.703500001],[324957.0982,667507.897299999],[327391.8977,666827.801999999],[331774.1971,667949.301000001],[330235.3966,669493.198999999],[330639.8004,671294.5034],[332085.8027,671460.196],[332735.497,670112.1019],[336462.3966,668081.7031],[338289.6011,669301.304],[339656.6982,669173.000700001],[341443.5018,663765.398600001],[342911.403,662975.104800001],[344107.0029,663266.2015],[343810.6012,662316.0035],[346103.0002,661074.098999999],[347072.9987,658736.098200001],[345565.9994,659326.3993],[344705.9983,657456.5045],[343567.5038,657688.998],[341849.0022,655931.0012],[341094.2988,656097.203600001],[340470.1971,658820.903999999],[332620.9979,652347.4969],[330816.5003,649855.500299999],[331511.9959,648175.5012],[329205.0031,646900.496099999],[327797.0023,648615.495200001],[328271.4973,650222.495200001],[327207.9998,651235.495300001],[327682.5031,652570.903000001],[326397.9968,653815.4967],[326851.7967,654639.7008],[326024.0008,654856.5987],[325808.4997,657131.0977],[325150.8983,657185.1022],[323941.2984,655186.904200001],[323233.5011,655537.8037],[322578.398,654669.802200001],[320158.2994,654293.300000001],[319014.5033,654894.9977],[318948.6006,656648.4958],[315758.504,656338.604499999],[314327.4994,659833.0042]]]},"properties":{"OBJECTID":338,"lad19cd":"S12000019","lad19nm":"Midlothian","lad19nmw":" ","bng_e":330088,"bng_n":659217,"long":-3.11738,"lat":55.82111,"GlobalID":"5b29f988-be1b-428f-987a-5e06978ce7e0"}},{"type":"Feature","id":339,"geometry":{"type":"Polygon","coordinates":[[[294861.6027,861449.4022],[296644.5,862969],[297325.5,862923.5],[295370,861298],[298472.5,863106],[299283.5,864359.5],[302013.94,864888.41],[303444.23,863975.23],[303153.72,862797.57],[302083.61,862481.4],[301461.998,862096.366],[302078.49,861137.34],[302083.124,862353.817299999],[302238.948,862418.404999999],[302647.31,862252.800000001],[302131.41,861911.43],[302759.81,862209.9],[302425.8,861443.970000001],[303308.25,862094.33],[304492.74,861552.449999999],[304068.54,860824.609999999],[304580.68,861554.699999999],[305182.28,861206.970000001],[305609.92,862898.310000001],[303190.42,864816.449999999],[308909.7,864865.800000001],[310844.5,866459],[310853.54,869252.390000001],[313079.83,869146.460000001],[320168.56,871363.119999999],[323935.76,871240.07],[323658.4021,870495.3029],[325257.97,869029.15],[323839.893,870588.034],[330099,867070.5],[334476.08,865634.972999999],[333681.389,865658.522],[334166.76,864801.539999999],[334661.533,865610.514],[338815.62,864211.74],[347809.923,868734.5724],[349569.34,868798.560000001],[350458.5042,867031.077500001],[352316.9358,867537.944399999],[352182.0013,864245.901699999],[353998.2976,862483.5962],[351662.1008,858062.6017],[352754.2993,857507.8005],[353720.101,855165.301000001],[355411.7979,854649.6986],[355262.2985,853302.904100001],[357026.7003,852911.396199999],[357679.1979,849156.401000001],[359043.5,850081.6962],[361185.4019,849010.6028],[358599.2973,847569.395300001],[358479.7027,846634.902799999],[357661.8009,846979.0043],[357071.8008,845867.602499999],[355641.0024,846224.500299999],[354529.6011,847328.5043],[354645.403,848219.9991],[352848.7959,846729.3958],[351158.4017,848041.5002],[350944.7969,849736.8049],[350199.8969,850116.7961],[348223.498,849165.998299999],[347051.0009,849483.997300001],[347005.4964,848317.0013],[344996.1997,846606.7009],[345149.5001,845350.4005],[341807.1997,845583.4038],[338888.2997,840372.5954],[339436.1015,839625.599199999],[342739.3039,839093.2016],[339628.7969,837147.6985],[338567.5008,835438.9976],[340649.1974,834688.102499999],[342704.5015,832334.496300001],[340934.5012,830741.5023],[341737.0013,829403.495300001],[341561.4969,826812.9968],[342769.0026,825700.295299999],[341243.5014,823565.996200001],[340754.5033,821219.4979],[338627.5002,819460.501399999],[337169.996,821385.000499999],[336540.502,820990.5034],[334245.0028,822045.501499999],[333156.0034,821268.503900001],[331168.4984,821388.999399999],[329831.5041,819666.002599999],[327189.0032,819031.0043],[324902.7962,815000.098200001],[325025.4992,813059.503699999],[323625.999,813204.5022],[322761.999,811767.003599999],[320697.9964,812042.504799999],[318269.4961,810517.5013],[318051.4967,809243.495999999],[318933.0009,808078.499500001],[318454.0041,807168.9998],[320043.0005,805165.5033],[319161.4963,803019.4976],[317971.0002,802949.997500001],[316600.4979,801602.5032],[314658.4974,801692.997300001],[313916.4996,802500.496099999],[312287.0035,801069.9956],[310040.9993,801374.998299999],[308171.003,800508.996200001],[306872.0019,801033.496099999],[305991.0006,800140.001800001],[305717.0007,801679.0013],[303532.4965,800355.000299999],[300318.4975,800910.5013],[299147.5009,798722.4976],[298082.5029,801733.095799999],[299894.9982,803989.9998],[302208.0017,803578.997400001],[304273.4966,806152.0009],[305671.4962,806654.9969],[307205.696,809538.501499999],[308420.4985,809292.502],[310153.9979,810610.504699999],[312296.5018,810498.9966],[313580.0022,813509.005000001],[312710.9975,814409.497199999],[313771.502,815637.9956],[311747.3972,817411.9978],[312767.5009,819354.0019],[311978.0033,821138.5011],[312727.0011,822075.2029],[310072.9984,823830.000600001],[310093.9986,824796.504000001],[316228.0025,832041.000299999],[316002.5001,833362.502],[316802.5019,834003.998400001],[315250.501,837915.4987],[314016.504,837644.996099999],[311789.0018,839077.496099999],[309941.4979,842153.4956],[306097.9967,840708.9991],[303483.0014,840817.9979],[302976.4991,839502.5044],[300430.2016,838752.699100001],[298005.997,839712.0045],[299227.9975,845651.5043],[297934.1,848189.197899999],[298822.1013,849046.9024],[296963.2029,850030.900699999],[297606.8041,850620.502],[296612.2024,853641.6971],[297672.2039,854304.6974],[295563.4965,857000.095799999],[296177.8031,857795.998],[294861.6027,861449.4022]]]},"properties":{"OBJECTID":339,"lad19cd":"S12000020","lad19nm":"Moray","lad19nmw":" ","bng_e":328024,"bng_n":843593,"long":-3.20187,"lat":57.47683,"GlobalID":"9406c9c7-3200-47c2-a988-bc0678d078c0"}},{"type":"Feature","id":340,"geometry":{"type":"MultiPolygon","coordinates":[[[[219396.0462,668397.169600001],[222160.0014,668336.000299999],[225022.9999,670152.500299999],[225276.9973,667871.5033],[227882.6015,665263.4998],[225785.9979,664236.003900001],[229543.9978,661969.002800001],[228999.9969,660901.498400001],[229594.0041,660220.0035],[231766.0006,659982.501499999],[233117.7041,655023.900800001],[234904.9036,656775.999299999],[235040.9965,655478.400699999],[235922.0968,655117.0042],[238640.9963,657461.303099999],[240057.3,655507.102499999],[241287.6032,653032.300899999],[238058.9033,649554.296499999],[235931.1993,645651.703600001],[234177.6974,645268.4033],[236719.0973,643230.5966],[236244.7013,642386.598200001],[236869.7016,642007.9966],[238253.899,642429.4959],[239929.9962,644440.600299999],[240885.203,643566.1006],[243309.4984,644101.7973],[243050.4962,643155.598099999],[239170.7003,642207.7994],[238337.5039,640669.299799999],[238987.6022,639819.802999999],[237088.8966,639110.396],[237602.0032,637468.7959],[236767.5041,636864.198999999],[233118.2978,633148.102700001],[232484.0716,633934.793400001],[230274.302,637802.65],[230124.481,637989.4],[226931.371,640057.369000001],[226683.65,641241],[224098.745,640974.231000001],[223954.15,641911.25],[222214.868,642130.163000001],[222950.409,642970.549000001],[220137.83,647120.52],[217508.126,648899.063999999],[217769.937,651464.715],[218943.936,652204.017999999],[218310.5,653073],[219667.08,652289.26],[219587.92,654366.146],[220749.811,654088.216],[220904.18,655282.438999999],[220878.484,657656.524],[219172.735,662064.128],[219396.0462,668397.169600001]]],[[[194934.5,652357],[198880.64,650115.810000001],[201343.5,647349.5],[203073,639584],[200911.5,636764.199999999],[204103.07,635287.01],[205635,633096],[202646.336,630877.268999999],[202830.933,630036.528000001],[205654.04,628319.220000001],[204584.15,626340.619999999],[205108,622176],[203215.8,620626.699999999],[201621.3,621149],[197857.5,620197.800000001],[194422.61,620981.77],[190649,624009.5],[189949.816,627725.187999999],[188208,628779.5],[188512.5,631711.5],[189560,633484.4],[186259.5,640534.5],[186360.5,642296.050000001],[188533.5,647887],[190982,648969.5],[191744,650811],[193605.537,650326.064999999],[193131.5,651605.5],[194934.5,652357]]],[[[217999.9971,659345.1039],[218559.4987,656285.1998],[217996.1961,654870.9046],[217194.1001,654002.703199999],[217231.7965,655026.4001],[216200.496,654890.698999999],[215078.5988,653899.002800001],[216394.6012,658457.597999999],[217999.9971,659345.1039]]],[[[215616.9023,652986.8039],[214508.6012,650262.9037],[213694.3025,651579.096899999],[215616.9023,652986.8039]]],[[[205597.5041,631355.4958],[206668.4963,628546.9998],[205249.4965,630128.9969],[205597.5041,631355.4958]]]]},"properties":{"OBJECTID":340,"lad19cd":"S12000021","lad19nm":"North Ayrshire","lad19nmw":" ","bng_e":228996,"bng_n":651640,"long":-4.7246,"lat":55.72789,"GlobalID":"f493691a-3ec1-4454-a2d5-660f841b9dc4"}},{"type":"Feature","id":341,"geometry":{"type":"MultiPolygon","coordinates":[[[[331563.6923,1030321.6046],[337411.114,1026250.82],[338687.62,1026768.08],[338854.1,1025680.9],[340204.6,1024709.2],[339271.379,1023724.202],[342533.668,1021001.805],[342034.342,1017306.462],[338994.525,1018553.963],[339655.557,1017033.128],[339175.907,1015650.7],[338051.74,1015704.387],[336842.451,1014161.815],[335538.9742,1014250.7552],[336254.8,1013556.65],[339561.463,1012297.345],[340326.021,1014001.917],[342265.5,1014107.7],[344896.726,1011239.6192],[346561.22,1014533.14],[346819.715,1013571.461],[348337.49,1013963.96],[347494.724,1012116.563],[349065.24,1011872.51],[347252.612,1010973.827],[347238.64,1009049.89],[349001.188,1008458.065],[350930.25,1011315.3],[352644.143,1010695.911],[354183.1209,1011930.0035],[354555.27,1008960.564],[352943.449,1009139.632],[351305.141,1008166.43],[352608.111,1005530.078],[351633.56,1004535.5],[352645.8,1004009.1],[352961.907,1004873.519],[353967.574,1004879.069],[353706.505,1004223.856],[354688.187,1003426.856],[355272.182,1004679.983],[354491.08,1004684.93],[354847.343,1006184.45],[353760.98,1007009.64],[359398.1,1009723.7],[358703.49,1005781.37],[359167.72,1004068.27],[357027.437,1004293.214],[356203.9,1003123.22],[354837.496,1003292.456],[352383.57,998732.08],[350798.362,1000824.969],[349158.053,1001771.906],[348408.005,1001258.054],[349166.43,1000592.41],[347445.79,998331.810000001],[349077.4,998811.6],[348863.429,996704.157],[350602.1,996505.4],[348080.707,995255.177999999],[349397.9,992726.300000001],[348334.25,992731.859999999],[346313.613,990013.465],[346855.336,988752.270500001],[345748.774,986994.937000001],[347495.7899,985476.063300001],[346613.7,983214],[344372.02,982877.189999999],[344215.96,984142.949999999],[343581.26,983867.039999999],[342673,985564.630000001],[343416.06,986351.49],[343500.815,989150.01],[342634.03,989253.359999999],[341055.6,991530.300000001],[341777.53,992169.25],[342471.343,990758.616],[343832.945,992684.964],[343297.872,992024.221000001],[342137.18,993687.646],[340226.4687,992884.1798],[341608.5,994406.199999999],[342883.063,993805.856000001],[344450.69,994711.92],[344784.01,993565.119999999],[348008.57,995434.85],[343018.5,996564.1],[344735.797,997400.718],[344514,996413.82],[345942.96,997418.310000001],[347312.233,996800.525],[346819.6,999251.5],[348469.121,1000688.712],[347650.45,1001358.3],[346425,1000742.7],[344108.83,1006283.08],[344322.13,1008540.32],[343531.84,1008797.63],[340753.26,1006233.8],[338739.66,1005907.72],[337326.64,1006713.24],[338016.42,1005231.73],[336013.217,1005428.316],[335012.4,1003853.2],[333480.331,1004278.874],[332083.953,1003351.883],[331711.154,1004091.063],[330962.9,1003368.9],[329390.9,1005584.9],[329376.292,1009374.611],[328080.1535,1010584.4082],[327396.54,1009035.43],[325807.655,1008981.333],[325711.9,1009705.58],[325288.95,1007711.8],[322131.37,1009421.62],[321644.4,1015041.2],[322746.98,1017513.12],[322258.68,1018714.62],[323544.88,1019423.847],[322714.6,1020191.69],[322945.831,1024269.099],[322336.3329,1024906.8292],[324518.272,1026980.092],[324270.4,1028440.2],[331563.6923,1030321.6046]]],[[[327304.491,989494.514],[328639.573,989087.017999999],[330363.63,991069.9],[333522.331,991578.034],[334309.25,991068.140000001],[333401.805,989363.913000001],[334673.2319,989317.799900001],[331396.9,988327.140000001],[328913.997,989280.254000001],[329544.71,988252.01],[328965.91,987785.74],[327834.07,988901.289999999],[325107,988558],[323693,990627],[323374.644,992976.479],[321020.5,995225.5],[320538.741,998664.721000001],[317343,999204.5],[319332.5,1004731.5],[322173.84,1005755.43],[323781.19,1005248.28],[324405.815,1002822.93],[326048.5,1002693],[330195.635,999580.255999999],[329096.701,998729.512],[329974,998551.5],[329661.301,997700.032],[330969.37,996759.24],[329977.533,995420.299000001],[331351.9251,994886.556500001],[330493.82,993899.58],[332560.154,993163.975],[330566.733,991421.822000001],[328364.907,991243.222999999],[327304.491,989494.514]]],[[[376370.659,1044642.221],[377846.099,1043620.652],[375993.137,1043233.667],[374832.389,1044193.424],[372732.236,1043425.639],[370516.215,1039531.757],[371228.55,1037472.866],[370201.456,1038711.777],[370981.446,1040815.106],[370289.065,1041356.163],[369397.53,1040570.97],[370212.183,1039244.744],[367806.155,1038988.935],[367529.079,1037243.399],[366928.986,1037814.842],[367157.341,1039086.115],[368096.945,1039227.686],[367563.238,1039954.757],[365748.83,1038222.306],[365493.372,1039067.156],[364100.138,1039158.805],[362761.113,1036117.492],[361888.17,1035833.689],[361604.999,1034009.677],[360803.105,1035463.558],[360407.522,1033293.596],[360362.347,1037364.821],[361338.491,1037224.036],[362648.525,1039626.695],[365778.57,1041610.96],[365342.197,1042512.147],[366295.794,1042631.446],[365038.061,1045515.695],[365631.318,1044943.231],[368329.614,1046723.065],[369956.863,1046400.432],[368410.082,1044664.373],[368572.54,1043394.175],[367624.085,1043598.868],[366839.414,1042131.121],[368304.368,1041661.024],[368528.604,1042635.677],[369027.01,1041638.534],[372734.087,1044914.01],[374470.406,1044959.739],[374662.979,1046468.587],[376058.301,1047427.132],[376370.659,1044642.221]]],[[[345940.48,1050531.96],[345732.5,1049440.15],[344124.632,1049221.959],[343795.467,1048208.792],[344714.23,1048421.9],[345645.968,1047206.571],[346493.6,1047562.73],[346589.23,1046693.83],[347971.988,1046084.78],[348619.36,1046728.184],[349811.13,1044708.66],[349882.034,1042518.417],[351440.1138,1042620.0238],[352347.51,1040316.88],[351099.165,1040841.209],[349682.9,1038267.4],[350228.618,1041301.586],[349288.3,1041233.4],[348120.66,1043761.244],[345209.986,1045131.157],[346061.531,1043310.142],[344356.299,1042797.83],[344037.4,1041837],[341690.8,1043927.6],[341839.606,1046973.4574],[339168.8082,1049737.9678],[341290.718,1049001.165],[341800.8,1049705.4],[343059.815,1049484.607],[344383.544,1050359.167],[344608.89,1052374.16],[345966,1052983.6],[346374.876,1051755.104],[344970.255,1050952.826],[345940.48,1050531.96]]],[[[340856.41,1032889.79],[343300.23,1032788.03],[344752.5,1033828.5],[345648.28,1032961.81],[344130.878,1031124.949],[344843.34,1027983.5],[340558.062,1027090.304],[337563.8,1029265.9],[336169.5,1032304],[338732.5,1035222.5],[340068.4588,1034987.624],[340095.273,1033473.289],[340856.41,1032889.79]]],[[[364087.843,1030758.19],[364849.847,1029791.179],[363739.414,1030059.328],[364346.128,1028665.428],[367416.069,1028433.865],[365474.416,1027971.735],[365987.87,1025584.76],[369344.109,1026257.225],[368433.445,1025069.708],[368706.086,1023606.428],[369896.8737,1023010.0085],[369306.837,1021121.827],[367616.621,1022048.842],[367065.268,1021124.753],[365375.796,1020703.211],[365457.272,1023469.509],[363897.144,1024707.361],[362421.899,1023892.868],[363189.757,1022495.292],[362788.337,1021179.89],[360581.827,1021455.106],[361718.068,1024836.37],[364039.877,1024977.33],[364564.885,1025861.073],[361465.33,1029579.843],[364087.843,1030758.19]]],[[[354132.7003,1020460.4958],[352810.5966,1018065.3014],[353860.5968,1016013.5987],[352716.6029,1014988.6021],[348370.4003,1016866.5046],[347834.1992,1016156.9977],[346489.3968,1016301.2964],[348371.4969,1021497.8989],[348916.5037,1019883.9009],[350633.6036,1018705.2982],[350196.6978,1019307.9957],[352065.3007,1020119.5034],[351946.5966,1021397.7975],[354111.0983,1022549.098],[354132.7003,1020460.4958]]],[[[356324.728,1034148.6],[356774.62,1030587.11],[357823.61,1029218.27],[354996.58,1028184.6],[354674.69,1030626.12],[353011.77,1031918.13],[352804.46,1033761.84],[353058.1,1034507.8],[354222.082,1033240.122],[355530.462,1033940.739],[354992.44,1038946.56],[357035.1293,1040611.3189],[356567.926,1038606.079],[358206.85,1037054.79],[356890.674,1036094.38],[357104.54,1034665.05],[356324.728,1034148.6]]],[[[378404.404,1056338.5958],[378946.0963,1055166.4014],[376823.1992,1054509.3994],[377424.3961,1052184.305],[376191.5038,1051327.6002],[375634.0965,1052422.2968],[374565.6025,1052337.801],[375534.6033,1055643.3048],[376752.8029,1056020.8968],[377152.2019,1055446.4012],[378404.404,1056338.5958]]],[[[335821.3019,994915.697899999],[336480.0987,993989.603],[337918.1033,994288.0976],[337716.0993,992347.1032],[336516.8964,993060.5989],[336152.2009,992406.7961],[334323.0011,992699.5023],[334133.0019,994558.000299999],[338363.5015,996271.4998],[338479.5013,995623.495300001],[335821.3019,994915.697899999]]],[[[350223.12,1050109.21],[349752.6689,1049095.8756],[349076.715,1049696.457],[348582.1,1048891.9],[348286.749,1051832.181],[350170.79,1055794.04],[350699.82,1054101.03],[349560.971,1052276.743],[350223.12,1050109.21]]],[[[348177.3999,1031121.7041],[347418.2029,1026824.5041],[346045.5981,1030147.203],[346896.8017,1031851.1953],[348177.3999,1031121.7041]]],[[[345627.3014,1026119.5959],[344723.0986,1025282.2956],[342177.304,1025595.8958],[345042.504,1027093.897],[345627.3014,1026119.5959]]],[[[344843.6001,1023049.4047],[345840.1972,1021660.5023],[345545.5022,1021157.7962],[344982.8015,1021901.0035],[344265.5966,1020981.4967],[343194.8023,1022588.6966],[344843.6001,1023049.4047]]],[[[324798.3972,1006677.901],[326263.0004,1005716.8961],[326836.6011,1006087.1001],[327154.2998,1004746.8038],[324937.4996,1004839.4973],[324798.3972,1006677.901]]],[[[333745.5005,995130.996300001],[332736,994532.4976],[331919.4998,996143.996300001],[333031.9977,996986.994999999],[333745.5005,995130.996300001]]],[[[357924.3978,1040288.2002],[358968.9976,1038346.396],[357505.4992,1038800.8959],[357924.3978,1040288.2002]]],[[[362063.402,1028308.8992],[362091.6001,1027011.0007],[361348.0028,1027149.0012],[361125.5016,1027796.5959],[362063.402,1028308.8992]]],[[[339138.0014,984040.5009],[338117.9966,983671.4965],[339324.0017,985406.9998],[339138.0014,984040.5009]]],[[[366992.5964,1029185.4983],[365797.5984,1029167.1036],[366514.6961,1030178.1042],[366992.5964,1029185.4983]]],[[[333411.5014,999346.6996],[332681.698,998868.496400001],[332461.2003,1000147.8003],[333411.5014,999346.6996]]],[[[361831.5014,1001770.5957],[360667.002,1000673.1999],[360708.5983,1001529.8047],[361831.5014,1001770.5957]]],[[[367985.6975,1016080.8995],[367216.6971,1015464.9958],[367420.1028,1016645.7978],[367985.6975,1016080.8995]]],[[[336535.0026,1029375.0041],[336132.9981,1028608.0036],[335690.9969,1029620.5038],[336535.0026,1029375.0041]]],[[[348605.5,1015797.5006],[348384.3015,1014944.8047],[348022.4999,1015720.9025],[348605.5,1015797.5006]]]]},"properties":{"OBJECTID":341,"lad19cd":"S12000023","lad19nm":"Orkney Islands","lad19nmw":" ","bng_e":348293,"bng_n":1006584,"long":-2.90025,"lat":58.94334,"GlobalID":"9fe2465f-5709-48b2-93c5-cc7cb65551ca"}},{"type":"Feature","id":342,"geometry":{"type":"Polygon","coordinates":[[[379452.5987,670847.701300001],[383903.596,670110.802300001],[386122.5975,671127.3013],[389150.5962,669250.7984],[391477.4019,669332.805],[392139.4968,667318.2016],[391684.4024,666517.900699999],[393615.1978,664726.703400001],[394396.6977,664983.9998],[394527.2005,664098.303300001],[395286.6036,664387.7005],[395729.0006,661054.4046],[397945.6078,657535.9723],[394698.7967,655530.9957],[394722.9096,652158.036],[393658.6612,652067.282299999],[393334.404,651900.205],[392617.2981,649919.402000001],[392668.302,649768.395199999],[391525.6025,649676.9014],[391123.7043,649427.867000001],[390723.6961,649180.003599999],[390566.504,647687.300899999],[388994.6986,647259.703299999],[389627.5977,645942.700300001],[386347.2012,642512.202299999],[386356.0976,641215.9033],[384481.5995,639897.0009],[385346.1024,638635.1021],[380853.3026,639320.595899999],[378937.8018,637673.7972],[380665.8017,637299.4044],[380191.2984,636364.702],[381875.3027,634500.3956],[381891.0013,631888.6032],[384939.3982,629130.2028],[385645.497,623996.202400001],[387293.5034,621767.700300001],[387371.8974,620178.895099999],[389634.0041,619406.5962],[388206.0008,618712.8048],[387771.7993,616763.602700001],[385461.5992,614972.0955],[383607.3014,615480.0001],[380262.9975,612584.099099999],[378846.9,612748.602],[378252.0023,611761.604499999],[379187.8003,609745.8015],[378155.9968,608840.400699999],[378704.4006,608184.398499999],[376070.4993,606192.298699999],[374764.0034,606094.096799999],[373788.7034,607290.704299999],[369956.4979,606849.8005],[367084.8009,603343.1043],[364622.0011,602784.1043],[363691.8016,600458.0001],[361400.598,598959.799000001],[360273.2014,596629.596000001],[358992.6032,596399.002],[361224.7968,594942.099099999],[360028.6034,594692.000600001],[359931.996,592345.3024],[357677.7963,592130.603800001],[356180.3036,588517.3981],[355295.7981,586770.7981],[350067.2998,583327.8036],[347472.9996,582972.495300001],[347321.0019,581474.304199999],[345325.9032,579663.3026],[344943.4973,582670.501800001],[342932.5022,583960.002599999],[342471.999,586969.5012],[343575.5015,590761.4957],[345268.5011,592456.500600001],[345164.0032,593912.003900001],[341501.4976,594000.0987],[342576.0022,596263.500800001],[343860.5003,596860.0001],[343028.4994,599187.004000001],[341839.9986,598524.503599999],[338999.5008,599993.5031],[336816.4972,597666.9991],[335908.9963,597495.998],[335307.6016,598807.9025],[333832.5024,597982.6987],[333104.7026,599016.8027],[333638.4961,600655.003799999],[330372.0008,604730.997],[330220.4978,606949.0021],[329725.4973,606561.0032],[328636.4979,607881.995100001],[325616.0022,606490.5034],[325340.5017,608017.496300001],[322953.4988,609802.495300001],[317416.2972,606143.4027],[316378.4996,606940.9044],[316717.6025,608854.196799999],[317460.804,609095.297700001],[316986.4986,610300.502800001],[317580.4976,611862.9955],[321395.9985,615568.504799999],[319132.0037,616452.0019],[318247.4983,615985.4955],[317166.9995,617554.496300001],[315853.0006,617159.499399999],[314355.4996,614011.500499999],[313858.5039,614519.495100001],[311364.9995,613573.9957],[310174.5034,614481.9958],[306876.9984,613187.996200001],[304665.4998,614182.601500001],[302703.9998,617666.5043],[304112.5036,621042.9978],[303918.4973,622882.5012],[305093.5009,625329.0009],[306230.0002,625815.001800001],[305241.4998,629219.497300001],[306220.5019,630893.4981],[303882.4004,634768.798800001],[303720.0964,636373.0996],[306775.3038,636867.198100001],[306598.9996,640499.498400001],[312321.6987,647219.8047],[312247.3035,647898.4005],[310923.1961,647262.2026],[309680.5005,648786.7962],[308734.5034,653212.499299999],[307774.3991,654051.2992],[309827.9964,655524.997400001],[310118.9976,657846.003],[312706.001,659379.0042],[314327.4994,659833.0042],[315758.504,656338.604499999],[318948.6006,656648.4958],[319014.5033,654894.9977],[320158.2994,654293.300000001],[322578.398,654669.802200001],[323233.5011,655537.8037],[323941.2984,655186.904200001],[325150.8983,657185.1022],[325808.4997,657131.0977],[326024.0008,654856.5987],[326851.7967,654639.7008],[326397.9968,653815.4967],[327682.5031,652570.903000001],[327207.9998,651235.495300001],[328271.4973,650222.495200001],[327797.0023,648615.495200001],[329205.0031,646900.496099999],[331511.9959,648175.5012],[330816.5003,649855.500299999],[332620.9979,652347.4969],[340470.1971,658820.903999999],[341094.2988,656097.203600001],[341849.0022,655931.0012],[343567.5038,657688.998],[344705.9983,657456.5045],[345565.9994,659326.3993],[347072.9987,658736.098200001],[351430.9999,661505.4955],[353745.9987,659686.496200001],[358191.9995,661685.0041],[359815.9962,661043.9976],[359483.4977,660235.9989],[362876.497,659652.4959],[363696.5013,661517.0022],[365347.5005,660791.4999],[366642.0988,663212.3969],[366716.5022,664362.9976],[364447.9974,666703.997400001],[365423.9982,667578.997],[364917.9988,668312.9969],[365441.9972,668853.0023],[368548.0024,668874.496099999],[370895.5032,665789.9991],[377193.3035,672607.197699999],[379452.5987,670847.701300001]]]},"properties":{"OBJECTID":342,"lad19cd":"S12000026","lad19nm":"Scottish Borders","lad19nmw":" ","bng_e":345891,"bng_n":626135,"long":-2.85866,"lat":55.52594,"GlobalID":"d2dca289-1204-4757-8374-fb8f1d322153"}},{"type":"Feature","id":343,"geometry":{"type":"MultiPolygon","coordinates":[[[[436021.4551,1194001.9133],[436927.4107,1193429.4626],[437910.3604,1195120.6061],[438206.39,1190392.33],[437419.2,1189064.83],[436501.778,1189054.967],[437717,1187706],[437651.49,1184370.23],[436244.5,1183867.5],[435589.65,1184414.31],[434854.7,1182703.9],[437222.23,1182621.38],[435093.1416,1181650.0512],[436466.72,1181943.53],[437219.5,1180958],[436132.5698,1180112.7447],[436515.5,1178538.8],[435461.5,1177421],[436815.9,1177358.5],[437060,1179229.5],[437989,1179291],[437943,1177807],[436870,1177379.5],[437503.545,1174405.648],[436728.5,1173992.9],[436526.6239,1174206.8451],[436502,1174423],[435882.79,1174889.17],[436436.8943,1174301.9391],[435135.2,1171881.5],[435576,1170114],[434757.5,1170219.5],[434063.5,1168334.5],[434534.511,1167920.377],[437136.9,1169862.9],[436083,1170142],[436958,1172779.5],[438872.1,1173549.9],[439633.3,1172743.8],[439859.83,1174040.37],[440816.83,1173498.07],[438357.61,1176247.07],[439649,1178439.5],[440684.147,1177178.973],[442472.24,1179288.05],[443903.18,1177442.14],[443655.59,1174995.66],[444705.61,1175879.67],[445305.01,1175468.27],[445383.77,1174709.76],[443966.51,1173757.34],[445923.5,1173420],[444448.34,1172249.46],[445611.5,1172491.5],[445947,1170976.5],[444759.5,1171268.5],[444399.11,1172234.727],[440931.51,1168442.41],[444495.5,1170951.5],[444673,1170242.5],[442776.15,1168901.78],[445840.9432,1170346.028],[446202.88,1166232.22],[446858.5,1169150],[448488.4,1169264.8],[447645,1170093],[448620.5,1172050.5],[449107.5,1170482.5],[451207,1173905],[452319.5,1174355],[452506,1173294.5],[447439.5,1166867.5],[448218.5,1166768],[448137.3,1165360.89],[449266.5,1168107],[451077,1167514.5],[451111.5,1163993],[448773.501,1162688.5141],[444604.116,1163495.515],[445625.5,1162810.5],[446024.792,1160071.392],[446699,1161831.5],[447940.35,1159820.41],[447962.86,1160689.77],[449873.5,1160033.5],[450654.5,1160535],[450232.2,1158828.3],[450855.1852,1158220.166],[450538.4905,1157605.0896],[448936.1,1157962.7],[446562.88,1155464.32],[447476.5,1155435.5],[447352.8765,1154660.3723],[447345.6941,1154647.483],[449423.5,1154992],[448944.5,1154423.5],[449316.5,1153852.5],[450101.1639,1154306.0568],[449791.5,1153086],[447468.1,1153107.58],[446912.811,1151688.641],[447742.5,1152009],[446043.5,1150728.5],[445598.4,1152310.5],[446314.5,1153169.9],[445050.158,1153033.077],[444393.85,1154263.56],[443792.83,1153789.43],[444751.5,1151512.5],[442673,1149771],[445234,1150057.5],[443235.4,1146297.62],[446244,1149006.5],[445492.8083,1147799.8217],[446107.5,1147454],[445147,1146919.9],[443445.97,1143169.62],[447018.8323,1146935.2347],[446755.5,1145256],[447520.5,1145253.5],[446541.287,1142663.349],[448299.4,1140809.2],[448005.1242,1140272.1148],[446758.44,1140768.75],[447022.2276,1138528.7594],[446058.86,1139922.16],[445945.5,1137457],[444332.4,1138722.3],[444614.55,1136015.9],[443139.25,1135326.15],[444218.244,1134174.13],[443665.14,1132400.78],[444799.6,1130285.6],[444456.7,1129482.3],[446252.5,1128724],[446098.5,1128102.5],[444246.77,1128097.12],[444158.85,1129353.95],[443957.7,1128037.3],[442830.893,1127839.876],[443409.75,1125000],[444844.974,1123168.0964],[444253.86,1122961.25],[444491.6201,1121097.7705],[443573.76,1123601.99],[442842.27,1122049.57],[441778.12,1123765.98],[441393.5,1122892.5],[440411.24,1123020.16],[441002.22,1121525.57],[441737.02,1121501.17],[441566.9915,1117006.8808],[440827.8345,1115266.4863],[439682.5,1115444.4],[440974.2913,1113906.596],[440848.4,1111398.6],[439259.055,1111183.597],[440400.44,1111060],[440213.169,1109935.404],[441046.4583,1110274.5905],[440621.2736,1107679.3352],[439461.99,1110266.86],[438560.4356,1107978.7299],[438931.23,1110928.64],[438209.6,1112688.3],[436782,1112621],[436473.5,1111100.5],[435989.5,1112145.5],[434707.9471,1111669.0156],[434087.7533,1114387.4881],[435686.1,1115245.8],[435628,1118041],[436696.1324,1117664.0344],[436836.0415,1118425.4939],[437576.1,1118305.2],[437407.2,1120647.7],[435756.5,1120668.5],[436113.8718,1121925.4702],[437494.63,1120998.5],[436529.98,1123962.47],[438152,1125523],[438839.5,1130623.5],[440592,1135054.6],[440830.86,1139435.76],[440805.68,1139983.89],[440611.9934,1139050.2966],[438678.5,1138890.5],[439498.6,1140500.5],[438840,1140713],[439829.8,1145899.1],[439083.3,1145653.9],[438068,1141805.5],[437935,1143228],[440821.9,1150874.3],[437374.5,1142384],[439407.9,1152469.2],[436274,1146435],[435051,1150216],[435129.5,1150785.5],[435972.5,1150555.5],[435702.98,1151440.88],[434064,1152054],[434019.5,1151326],[433247,1151424.5],[432309.47,1152894.17],[431370.3,1152437.5],[434638.5,1150409],[435576.3525,1145787.6552],[434854.6167,1145224.6379],[435092.195,1147439.749],[433670.962,1146313.866],[433503.9369,1148443.5627],[433308.3636,1144006.6647],[432166.5,1142393],[431243,1143213.5],[431242.34,1145060.63],[429950.389,1140311.3672],[429528.5,1141877],[427264.9699,1142342.7491],[427177.2,1144396.1],[426047.5,1143888.5],[425230.6335,1144768.751],[425441,1146756],[426978,1147262],[428686,1146743],[427583.77,1147238.62],[429530.44,1148736.92],[427439.5,1147977.5],[427493.1,1149449],[428272.79,1149715.31],[426924,1149893],[427159.62,1150960.22],[425890.5,1151484.5],[426109.94,1150037.26],[426984.5,1149528.5],[424626.5,1146153.5],[424987.03,1148587.76],[424263.81,1149469.97],[423672.76,1148394.46],[421593.33,1148482.5],[422392,1147427.5],[420974.8831,1146963.984],[419394.5,1148451.5],[420194.3,1149514],[419216.5036,1149173.9762],[417286.9,1150014.4],[416824.9507,1151477.7851],[417455.67,1152208.58],[416526.9351,1152333.9982],[417790.5,1154805.5],[416549,1156201],[418555.3,1158007.69],[422121.3671,1158162.5402],[423756,1155998.5],[423447,1157607.5],[423885.5,1156812],[425750.3,1156545],[424934.5,1158070],[427425.7712,1159593.8157],[428977,1154586.5],[429998.5,1156198.5],[428956,1156179.8],[428394.5,1158183.5],[430804.66,1157139.21],[429603,1158045],[431146.25,1158456.51],[429748.5,1158932.5],[431764.5,1160662.5],[432202.5,1159135.5],[432618.39,1159724.22],[433935.17,1159000],[434689.69,1155737.79],[435129.7,1157426.5],[436627.52,1157624.08],[435227.5,1157995],[434560,1160059.5],[435652,1162509.5],[436612.249,1161245.918],[437057.9,1161673.3],[436517,1164140.5],[438700.5,1164275.5],[440329.73,1162948.13],[440854.09,1163259.21],[438599.5,1165292.5],[435160.6,1165207.7],[436285.477,1166706.742],[435730.99,1168121.06],[434416.88,1166034.92],[432900.58,1166797.82],[432634.8486,1168117.3076],[433969,1168362],[432291,1169094],[432730,1170171.5],[433693.41,1169540.89],[433185.5,1170758],[430242.2897,1170363.9402],[430403.0241,1173514.8675],[431911.12,1174289.84],[429519.0077,1174378.4846],[429554.5,1175770],[431422,1176498.5],[429492,1176109.5],[430122.25,1178589.44],[428217.78,1176977.79],[428651.67,1176345.72],[427794.53,1174437.93],[426763.0566,1175937.7026],[427930.8,1177062.7],[427782.3,1177929.09],[425523.4097,1177382.1312],[424591.041,1178637.454],[423672.4,1177041.8],[422908.4,1177631.4],[421363,1176682],[420270,1178226.5],[421480.3294,1180642.2196],[422994,1180626.4],[423516.03,1179683.87],[424175.68,1180147.43],[423244.4,1180684.9],[423952,1181372],[423889.9211,1183881.1576],[425684.7231,1185952.085],[426535.9936,1183219.1413],[429341,1180851.5],[430605.5,1180143],[433380.573,1181079.1981],[430005,1180975],[427672.5908,1183787.8934],[427764.3192,1184904.2767],[431093,1187943],[430491.9893,1189530.0067],[431908.1627,1191096.7009],[431052.5229,1191221.6298],[431784.1756,1192505.0048],[434309.2202,1191543.0733],[435706.0246,1192016.8886],[436638.21,1190876.24],[435675.9178,1193184.8626],[436021.4551,1194001.9133]]],[[[450647,1205746.5],[452368.1,1204768.3],[452373.4,1205823.8],[454673.1,1204629.9],[454162.5,1203714.5],[455417.5,1202325],[454261.2364,1202425.7841],[454983.57,1202031.47],[455359.1772,1197083.2391],[454807.6,1196612.4],[455804.5,1195313.5],[454894.5,1194872],[453000.7,1195905.4],[450972.47,1199062.94],[451849.5,1195750],[453559.084,1194326.666],[453789,1192976.5],[452315,1191147.5],[451013.95,1192352.35],[449869.33,1191570.04],[453144.5,1190826],[453274.2,1189667.5],[453899.5,1190101.5],[453926.9,1189174.4],[454733.3779,1189036.8096],[454690.7895,1187339.9619],[453607.2,1186806.9],[454196.5,1185428],[452290.2,1185537.4],[453045.5,1184210],[452582.68,1183736.86],[453829,1183553.1],[453636.4009,1181085.8631],[453048.2066,1181170.4621],[453457,1179650],[451280.5,1178807],[450064.63,1179884.72],[449004.5,1179738],[449985.13,1179935.02],[448572,1181000],[448350.21,1179728.77],[449622.5,1178398],[447313.5,1178671],[447016.5,1178089.5],[445812.5,1179785],[445355.3,1182410.8],[444668,1182357.5],[445299.19,1182822.38],[444538.5,1185031.5],[445011.5,1187911.5],[444285.1,1188059.9],[444510,1186729],[443826.5,1187315.5],[444778.4,1189023.8],[443728,1191742],[444513,1194960],[446129.8121,1197430.9728],[446453.69,1193386.96],[447345.5,1193495.5],[448190,1191721],[449089.4,1191534.2],[446820.5,1194108.5],[447836.2707,1201344.9542],[447299.1768,1202702.6562],[448167.37,1204331.39],[447672.8044,1205175.1669],[448692.54,1205638.2853],[450143,1205135],[450617.5,1203015.5],[450647,1205746.5]]],[[[459873,1218033],[461196.22,1218618.07],[461748.6,1217279.82],[460982.489,1214094.346],[461742.38,1214169.7],[463394.5161,1218459.737],[463909.23,1217031.91],[465443.1495,1217528.1851],[465477.2727,1216844.1828],[466576,1216887],[466347,1215818.5],[467631.3961,1215463.6125],[465150.16,1214714.59],[466694.0327,1213274.4711],[466506.4491,1211418.9985],[463492.42,1212081.99],[465343,1208976.5],[461921.28,1208794.26],[464827.5,1207929],[461749.5,1202645],[463302.4,1201358.1],[463770.8545,1202050.4546],[463861,1200618],[462569.4486,1199501.2323],[459447.9,1201258.6],[457613,1199355.5],[456570.5,1199643.5],[456549.2,1200617.7],[455740,1200512],[456605.8,1201859.1],[455514,1204479.5],[457285.6,1204286.8],[456531.5,1206439],[457936.9295,1207989.6537],[457491,1209153.5],[458247.5,1211458],[456995,1212494.5],[458567.5,1214551.5],[457866.5,1214915.5],[459234,1215298],[460176.72,1216856.33],[459873,1218033]]],[[[460433.5,1193510],[462124,1194904],[464037.0041,1194435.9985],[464437,1192074.5],[464819.5,1191514.9],[465312.3218,1192009.839],[465378.1,1191201.5],[466246.9466,1192770.1708],[467217.1376,1193005.3498],[467430.8624,1190507.4158],[465825.9398,1187792.7969],[464145.55,1189999.971],[463303.6387,1189384.0717],[462562.667,1190559.034],[460853,1190452.8],[460548,1189782],[462590,1187799.5],[460737.5,1187099.5],[457696.9,1192315.7],[458301,1194630],[459763.5,1194542],[460433.5,1193510]]],[[[450567.5039,1144936.505],[451079.0028,1145245.4965],[451593.8986,1141902.8033],[452740.498,1143204.5007],[453076.5008,1142815.5021],[451651.0039,1135706.9969],[448878.0002,1137583.4997],[449231.499,1141809.6],[448943.3011,1141138.902],[447377.1023,1143463.7965],[448373.9961,1144752.9975],[451214.9968,1143294.505],[450567.5039,1144936.505]]],[[[458763.41,1166332.82],[460006,1167254.5],[460737.5,1166918.5],[459237.5387,1165877.3029],[456491.71,1161248.1],[455053.1,1160670.1],[453231.5,1161564.4],[454447,1162900.1],[454069.3,1163685.4],[455107.5,1165435.6],[456593.3944,1165607.4652],[457295.1,1166975.3],[458763.41,1166332.82]]],[[[430463.6424,1167093.7973],[431642.1713,1167521.4531],[434156.3,1165960.2],[434368.3,1165030],[433657.69,1163202.53],[431470.1475,1162477.9262],[429708.9899,1163683.9034],[429017.989,1165707.9145],[429981,1165663.5],[430463.6424,1167093.7973]]],[[[396011.5012,1141468.9975],[397186.9995,1141357.4994],[397885.0017,1139443.4973],[396539.0037,1136120.9984],[393618.5041,1138830.5028],[393871.5038,1140161.5018],[396011.5012,1141468.9975]]],[[[421988.4979,1072799.5039],[422877.0021,1072701.0021],[422694.4977,1071897.5021],[421822.5,1071971.1011],[422231.9992,1070875.5047],[421275.803,1071269.4019],[421192.0002,1069970.5037],[419900.601,1069564.8998],[419440.0979,1070791.3988],[420254.8006,1071111.2972],[420456.4995,1074080.4973],[422249.0006,1074249.9987],[421988.4979,1072799.5039]]],[[[414529.9991,1161456.4962],[415629.9974,1162518.0023],[416120.4961,1161849.5037],[416674.0036,1162327.4968],[416867.4987,1161389.4953],[417160.9981,1162101.5015],[417364.1976,1160860.4968],[417654.498,1162120.4961],[418407,1162117.497],[417975.6019,1160566.401],[418814.1988,1160023.9962],[416433.9981,1159063.0013],[416328.9972,1160603.5003],[415625.5039,1159559.999],[414529.9991,1161456.4962]]],[[[437847.26,1135810.43],[438125.5,1137288],[438458.1,1135822.9],[438003.9159,1134314.9736],[437368.1715,1133191.4617],[437139.42,1131444.78],[436680.5,1130718],[435173.5,1128665],[434778.1365,1129602.1172],[436586.3815,1130662.7922],[436662.5321,1130770.4681],[435929.5,1132911],[437586.5,1134667.5],[436312.86,1135983.23],[437847.26,1135810.43]]],[[[439788.1007,1136004.0019],[438452.4997,1135153.0954],[439023.7011,1138170.9016],[440322.9001,1138791.9038],[439788.1007,1136004.0019]]],[[[428216.5037,1160438.4976],[429123.9964,1162045.9974],[429151.5019,1160863.9958],[429843.5016,1161375.9992],[431139.9962,1160477.9963],[429441.4972,1159597.9982],[429227.9996,1158659.9967],[428704.0012,1159773.9978],[429579.503,1160481.4953],[428216.5037,1160438.4976]]],[[[454855.0017,1193250.9951],[455478.5014,1193271.9991],[456444.501,1192206.0042],[455949.5005,1191491.9986],[454751.5014,1191843.9978],[454861.4988,1190864.9981],[454247.0026,1190987.503],[454855.0017,1193250.9951]]],[[[421947.9981,1146387.4996],[423155.5038,1147316.5037],[424328.5039,1145659.498],[422955.0004,1145221.0035],[421947.9981,1146387.4996]]],[[[453212.9977,1140430.5048],[453588.5026,1141507.4965],[455303.5,1141135.0031],[455070.5028,1138987.4978],[453707.9982,1140789.0022],[453212.9977,1140430.5048]]],[[[459182.4962,1199337.5029],[459799.8039,1200064.4048],[461487.9967,1199169.5009],[460963.9983,1197881.4996],[459182.4962,1199337.5029]]],[[[437440.8346,1133265.8364],[439054,1134917],[437042.5788,1128577.0714],[437729.5,1130848.5],[437440.8346,1133265.8364]]],[[[433013.4967,1161182.5046],[434029.5026,1162204.0022],[434662.5007,1161272.4988],[433533.4963,1159848.9963],[433013.4967,1161182.5046]]],[[[445351.4969,1125104.5018],[446989.9966,1123457.0034],[445759.5037,1123344.4956],[445351.4969,1125104.5018]]],[[[468541.5643,1171669.9494],[468600.1571,1171581.5544],[468700.7291,1171128.1025],[467491.003,1171362.3007],[466256.0001,1170165.5032],[468385.5015,1172554.4994],[468552.1032,1171803.3378],[468541.5643,1171669.9494]]],[[[452766.9976,1164733.4981],[453719.5001,1165546.4954],[452989.4989,1163353.5032],[452766.9976,1164733.4981]]],[[[446146.5022,1176127.9965],[446534.0035,1177102.4976],[447314.0028,1175664.4992],[446146.5022,1176127.9965]]],[[[465787,1206916],[465979,1209178.5],[466374.5,1207667.5],[465787,1206916]]],[[[435570.9993,1127472.0041],[436615.5001,1127137],[436266.5032,1126236.4978],[435570.9993,1127472.0041]]],[[[435910.4979,1137558.9967],[436296.004,1137949.505],[437070.9985,1137953.004],[436997.9967,1137349.4967],[435910.4979,1137558.9967]]],[[[435542.0014,1141054.4962],[436174.4965,1140484.4993],[435615.4979,1139563.503],[435542.0014,1141054.4962]]],[[[434897.5015,1136556.5037],[435220.5017,1137793.9995],[435745.4977,1137289.004],[434897.5015,1136556.5037]]],[[[468541.5643,1171669.9494],[469003.9965,1172502.5043],[469461.4984,1172012.5045],[468541.5643,1171669.9494]]],[[[442085.4963,1181507.4966],[442591.5039,1181923.9974],[442955.0039,1181027.0042],[442085.4963,1181507.4966]]],[[[430880.1675,1192692.1235],[431387.5,1193169],[432038.5542,1192751.7446],[430880.1675,1192692.1235]]]]},"properties":{"OBJECTID":343,"lad19cd":"S12000027","lad19nm":"Shetland Islands","lad19nmw":" ","bng_e":434516,"bng_n":1180307,"long":-1.37344,"lat":60.504951,"GlobalID":"05237560-1b18-450e-9b70-7cb5bc3e634d"}},{"type":"Feature","id":344,"geometry":{"type":"MultiPolygon","coordinates":[[[[236767.5041,636864.198999999],[238292.7002,637244.200200001],[238238.8023,636243.5966],[240278.4985,636037.295700001],[240044.8004,634197.4024],[241401.5005,633734.105],[241296.6975,633068.5955],[245299.0976,632554.102700001],[246418.1997,633164.597999999],[246449.0032,632389.1],[248105.403,631480.0002],[248595.102,626731.0996],[247346.2968,626309.000399999],[247486.2979,625655.0976],[246016.7971,626105.5986],[245920.198,624932.804300001],[244710.697,623835.398399999],[243900.2982,624123.096100001],[242475.5022,622417.204399999],[242426.8975,620992.5022],[243208.4964,621026.102600001],[243567.0988,619945.202],[242359.7992,618889.904100001],[243715.1966,617786.899800001],[244794.1041,617956.5013],[244968.7015,615845.0956],[241660.1976,614534.6008],[240062.4037,615707.494999999],[239657.7031,617361.7015],[237771.2001,617704.803300001],[237295.4024,615280.997099999],[235212.4031,614307.595699999],[236232.5975,614478.796700001],[237714.8039,613262.9048],[238922.5982,614281.403200001],[239967.1979,613782.3961],[240463.3033,612845.804199999],[237519.1981,610047.0953],[239757.5013,609099.4965],[241758.9981,606170.8049],[243125.7984,606245.003599999],[243606.3041,605126.4038],[245352.4019,604230.4003],[243952.2998,601767.5953],[245705.7027,598228.498299999],[244300.2002,596425.5044],[244094.5024,593523.495100001],[242471.0004,592229.4955],[243296.0012,588978.1962],[242159.502,587091.996099999],[236679.4963,587856.997099999],[235401.0006,586117.495100001],[232900.0015,586077.996400001],[230572.0003,583843.495999999],[230206.9997,580494.5046],[232466.5009,578035.998400001],[231783.0019,576120.4967],[231068.9961,575896.500800001],[231042.0017,576745.4978],[226590.5015,574814.000700001],[224953.997,575969.4999],[223660.0007,574980.503],[222723.9966,575447.999199999],[221834.5029,574282.002900001],[221051.5024,575799.498600001],[219203.001,574787.498199999],[218581.0018,575938.4988],[215775.999,575402.5022],[215227.0016,577871.995300001],[213443.9989,578542.0035],[212774.5,578365.5041],[212881.0014,576913.499700001],[210838.5019,573669.9981],[209723.0028,573786.504799999],[209981.502,572595.9956],[205662.594,571250.0984],[204486,574394.5],[205110.9,577233.699999999],[208254.37,581779.361],[209423,587320],[212724.861,589485.473999999],[214842,593213.5],[218187.92,596276.606000001],[217969.876,598318.844000001],[218578.91,598150.699999999],[218030.97,598341.119999999],[219976.24,602444.68],[219571.4,607217.4],[224210.28,610825.060000001],[224720.325,615338.889],[225804.4,617040.1],[228440.913,618792.402000001],[232242.47,619590.370999999],[232575,619105.15],[232852.5,622710.35],[234334.45,621538.75],[232961.939,622817.262],[233968.674,623522.359999999],[234588.088,625838.502],[233872.475,628117.68],[234618.1,627016],[234525.66,627788.029999999],[230670.429,631373.630000001],[232301.82,631435.34],[232484.0716,633934.793400001],[233118.2978,633148.102700001],[236767.5041,636864.198999999]]],[[[202214.5967,600215.0997],[202636.0018,599689.3002],[201808.6017,599205.0988],[201623.2032,600159.795499999],[202214.5967,600215.0997]]]]},"properties":{"OBJECTID":344,"lad19cd":"S12000028","lad19nm":"South Ayrshire","lad19nmw":" ","bng_e":226545,"bng_n":596271,"long":-4.72899,"lat":55.23008,"GlobalID":"3d5b9a7a-fb46-471c-a4fd-5aae85d56223"}},{"type":"Feature","id":345,"geometry":{"type":"Polygon","coordinates":[[[260361.7921,661857.0747],[260548.5347,662887.9011],[261061.3412,662320.4011],[262078.6611,663479.4833],[262161.8,663439.65],[262412.4969,662204.895300001],[263300.5202,662371.6679],[263536.6038,662416.004899999],[263992.3001,660993.602],[266652.7999,662059.4969],[267845.3985,661197.503699999],[268133.2006,662167.096100001],[271890.5987,659499.999600001],[271680.6959,657896.1987],[274710.3024,655763.799000001],[274525.0029,654824.9978],[276267.2997,654403.5984],[278944.3968,652258.3025],[279625.3977,650708.0962],[281606.1994,653366.7952],[289280.4961,654381.504699999],[290719.1026,655676.304099999],[291415.9999,655198.001],[293597,657010.0023],[300354.9984,658585.001499999],[302581.7008,655803.797599999],[303091.798,656353.700200001],[307774.3991,654051.2992],[308734.5034,653212.499299999],[309680.5005,648786.7962],[310923.1961,647262.2026],[312247.3035,647898.4005],[312321.6987,647219.8047],[306598.9996,640499.498400001],[306775.3038,636867.198100001],[303720.0964,636373.0996],[303882.4004,634768.798800001],[306220.5019,630893.4981],[305241.4998,629219.497300001],[306230.0002,625815.001800001],[305093.5009,625329.0009],[303918.4973,622882.5012],[304112.5036,621042.9978],[302703.9998,617666.5043],[304665.4998,614182.601500001],[303105.996,612454.496200001],[301945.0007,612763.9976],[301390.0009,611566.000499999],[300094.5039,611244.502499999],[300386.9975,607913.495999999],[299376.7961,606942.403999999],[300238.9986,604939.497300001],[298134.9992,604705.5043],[297189.4968,603693.604],[297319.4967,601375.1976],[294454.5028,600997.9956],[293564.0033,602934.001399999],[291521.5037,604566.0042],[291023.5021,607593.997500001],[291638.3033,609025.897600001],[288970.0036,610394.9957],[288350.9974,613323.497400001],[285146.4967,616319.4998],[284620.9977,618242.499399999],[280243.9999,620067.9969],[278405.4997,619736.501700001],[276741.0032,620480.4988],[275526.0028,619598.5012],[274517.4999,620706.0042],[272612.0003,621753.0045],[272973.002,622844.0022],[272114.9962,623937.9991],[276497.9965,629195.0043],[276649.4995,630856.998500001],[275682.7991,630963.098200001],[275457.5028,631882.505000001],[274154.5028,631795],[271564.0035,635081.499299999],[268835.4985,632401.496400001],[266008.0032,632275.002599999],[264682.5024,633101.9959],[259752.5,630779.500700001],[259564.9991,631852.503599999],[258660.4994,632111.999299999],[261267.0023,634357.4965],[261820.6994,636308.3981],[263075.0041,636727.698100001],[261202.6002,637903.001599999],[261457.7023,639239.199200001],[260246.8986,640187.397700001],[260582.0027,641524.505000001],[258813.503,645129.303099999],[260448.0039,646467.0002],[260481.0996,650478.1021],[257318.5003,653563.898800001],[256898.4969,655133.499500001],[258743.4035,655560.0974],[258954.1967,656913.100099999],[260448.6965,656462.598999999],[260660.3967,657644.1008],[261921.9982,658550.701300001],[261331.9981,660198.5996],[260635.1008,659897.9956],[260140.6033,660636.1044],[260361.7921,661857.0747]]]},"properties":{"OBJECTID":345,"lad19cd":"S12000029","lad19nm":"South Lanarkshire","lad19nmw":" ","bng_e":284634,"bng_n":636071,"long":-3.83272,"lat":55.60453,"GlobalID":"0e03f880-9078-486c-b1cf-4b8352146675"}},{"type":"Feature","id":346,"geometry":{"type":"Polygon","coordinates":[[[286499.6546,690454.964600001],[285852.0019,689502.701400001],[288160.0995,687300.6017],[287062.5994,686859.2981],[287104.5008,685923.296],[281946.4978,685239.9016],[277184.2,685730.0013],[276824.8967,684709.9033],[274204.6987,683523.6029],[269468.4965,683604.999600001],[267703.501,681707.002900001],[265894.5016,681546.9987],[265327.0023,684043.5041],[263054.6965,681868.696599999],[261565.0036,683053.497500001],[259406.0013,682777.996300001],[257924.9987,684072.9956],[256754.9998,682881.4967],[258194.0021,680143.500399999],[258240.1002,677037.0996],[257247.9968,677235.502800001],[257354.2014,676224.0024],[254313.7032,676507.5012],[252448.5962,678909.9035],[250190.7027,678031.7049],[248452.9983,678893.9981],[247462.5027,681721.998600001],[246088.4962,681533.002699999],[245335.5984,682625.200099999],[244449.9964,686678.399800001],[245613.3003,687064.099400001],[245964.9027,688139.1017],[244161.5017,688912.3004],[244035.3028,687916.0956],[242474.6035,689625.5962],[239050.0008,689730.496200001],[238422.898,690979.898600001],[237999.4976,691515.495200001],[239017.3009,693927.4048],[235983.4977,695316.997099999],[235197.999,700101.497500001],[232864.8034,704108.1006],[233592.9989,705856.5002],[232744.4997,710188.5002],[233096.4978,712379.0031],[235404.4965,713035.995100001],[234127.5015,714945.998299999],[234856.0021,715438.497400001],[234526.9994,716605.5033],[235693.5024,717569.497400001],[233393.9961,717719.5044],[232177.998,718604.5011],[231773.0006,717671.498199999],[230703.5008,718878.002800001],[227830.3031,718081.900699999],[227438.0031,719144.4965],[228082.503,720314.001800001],[223799.4988,723449.0044],[226508.9991,726424.002800001],[226658.0038,728590.002800001],[227459.498,728465.998299999],[229430.4963,730583.0023],[231558.4971,730246.998500001],[232100.5027,733038.999299999],[233757.0014,733849.997099999],[235853.0031,732957.502599999],[236535.9993,734374.497],[237551.5022,734670.0024],[238196.4969,734452.504699999],[238453.0007,735799.4991],[241479.0041,737772.5043],[244477.9967,737624.9965],[244515.9981,739146.501],[245850.5025,739632.002],[246610.4993,738411.501399999],[247655.503,738413.001],[249884.4976,739750.998],[253818.9995,740487.997],[254698.5002,741961.495200001],[256745.9962,740992.002800001],[258619.002,733802.0009],[265000.0032,735852.0041],[267512.0012,737439.499600001],[269138.0015,736385.5013],[270283.0014,734911.0034],[270796.5038,732332.001599999],[268585.5,732253.0043],[266826.4986,730158.503799999],[264397.9983,731694.0043],[264489.9967,723768.502900001],[261755.0028,723600.0012],[261553.5017,720085.497199999],[262714.497,718880.5021],[261762.0028,717433.496300001],[264706.9985,714574.504699999],[267674.9979,713768.4954],[269113.4972,711854.0034],[271070.0007,711778.494999999],[271445.4973,712772.500499999],[273018.4983,710895.9976],[273886.4971,711624.4991],[273910.6963,710381.7048],[275928.5019,710970.996200001],[279800.6959,705635.003599999],[281283.0012,705249.104],[282277.7019,706243.499399999],[283927.0027,704010.998400001],[285569.5013,705248.5042],[285702.9971,702554.4954],[286583.0997,701944.799900001],[284704.9984,698428.496400001],[284913.3016,697127.0989],[283437.8974,696841.000800001],[284659.5022,695176.7972],[283054.6003,694590.629899999],[282997.2979,694569.700999999],[284230.6023,693366.6953],[284216.1467,692547.326400001],[284778.1644,693364.843900001],[284956.5965,693615.404100001],[285395.5965,694000.8038],[285040.0972,693562.7095],[286540.9014,692615.600299999],[286206.1025,691596.602],[287163.6014,692479.8992],[288327.2022,692144.395199999],[286871.2975,691001.4024],[286499.6546,690454.964600001]]]},"properties":{"OBJECTID":346,"lad19cd":"S12000030","lad19nm":"Stirling","lad19nmw":" ","bng_e":255980,"bng_n":708769,"long":-4.32595,"lat":56.249531,"GlobalID":"c1883358-b254-46b9-8915-26b24a2485e9"}},{"type":"Feature","id":347,"geometry":{"type":"Polygon","coordinates":[[[394932.9095,799432.8059],[392906.7987,799944.297800001],[392464.7974,803060.8957],[389702.8009,802586.601500001],[385845.2007,800394.8989],[384382.5021,800501.598300001],[383725.5026,798739.002900001],[381448.2992,798394.101600001],[380882.0037,798824.7983],[382482.1969,799741.9958],[382891.3993,801410.1982],[380048.9969,801219.402899999],[378238.802,802313.6996],[378842.7032,805025.6033],[381681.8983,803652.0965],[383312.2025,804260.802300001],[384716.897,807533.5954],[382269.6969,811912.202099999],[383205.9978,812306.1993],[383492.2993,815985.1962],[384288.797,815338.101399999],[385539.6964,816096.1044],[386367.6984,815305.0009],[387706.3995,815658.999600001],[389548.1978,813292.596899999],[391453.7963,813401.9956],[392355.8967,815198.9013],[396391.6574,813466.5222],[395409.677,809476.197000001],[393577.1,809552],[395380.061,809333.455],[395489,806479.25],[396404.7,806091.1],[394349.25,806061.6],[395365.1105,805603.9768],[396734,806002.85],[397262.2,805475.800000001],[394932.9095,799432.8059]]]},"properties":{"OBJECTID":347,"lad19cd":"S12000033","lad19nm":"Aberdeen City","lad19nmw":" ","bng_e":387763,"bng_n":808479,"long":-2.20398,"lat":57.166969,"GlobalID":"821629a8-8733-4fc1-8079-d70291b02b3d"}},{"type":"Feature","id":348,"geometry":{"type":"Polygon","coordinates":[[[413062.5088,844637.2487],[413562.5071,845171.548],[413133.2149,844573.854800001],[412325.8,843850],[413572.23,842741.91],[413243.07,841248.4],[412040.3,840401.199999999],[409995.9164,835649.835000001],[409170.5,836223.51],[408476.5,835196.9],[408616.7,833286.6],[405502.29,830604.369999999],[400875.49,824411.07],[400707.58,823941.369999999],[396391.6574,813466.5222],[392355.8967,815198.9013],[391453.7963,813401.9956],[389548.1978,813292.596899999],[387706.3995,815658.999600001],[386367.6984,815305.0009],[385539.6964,816096.1044],[384288.797,815338.101399999],[383492.2993,815985.1962],[383205.9978,812306.1993],[382269.6969,811912.202099999],[384716.897,807533.5954],[383312.2025,804260.802300001],[381681.8983,803652.0965],[378842.7032,805025.6033],[378238.802,802313.6996],[380048.9969,801219.402899999],[382891.3993,801410.1982],[382482.1969,799741.9958],[380882.0037,798824.7983],[381448.2992,798394.101600001],[383725.5026,798739.002900001],[384382.5021,800501.598300001],[385845.2007,800394.8989],[389702.8009,802586.601500001],[392464.7974,803060.8957],[392906.7987,799944.297800001],[394932.9095,799432.8059],[394510.17,797444.050000001],[390299.86,791884.24],[389316.15,787611.630000001],[387381.45,786289.73],[388474.3544,784415.9877],[387897.05,784121.960000001],[388130.31,779747.6],[385877.14,774621.27],[384107.24,772596.73],[383342.18,772710.91],[383176.63,770944.52],[380193.56,767227.57],[377434.93,765691.9],[377128.4,764735.49],[375688.683,764815.425000001],[374166.1259,762673.458900001],[372889.2992,762320.297599999],[371804.8015,761885.302100001],[367717.7,766086.399599999],[362445.8986,765936.4025],[361533.0962,768797.003699999],[360241.4991,768958.7973],[360365.2987,770312.999700001],[359191.3009,772515.599199999],[359811.9974,777345.4967],[358606.9982,777609.0013],[358284.5009,780627.497199999],[355987.501,781849.497400001],[355081.5008,784381.502599999],[353573.0009,785654.9981],[349959.9986,785937.497199999],[349453.9992,787621.495200001],[348358.5027,787140.502900001],[345865.996,788757.5],[344610.7019,788198.699999999],[344767.0035,787545.497],[342671.0018,787349.5031],[342088.4965,786581.502900001],[337705.0015,787310.0044],[334225.0003,785766.996099999],[332474.4996,781375.0032],[332676.5036,778733.499399999],[331836.9998,778013.4955],[329427.999,780099.498400001],[328595.5035,779398.499],[325058.9989,781388.999199999],[322787.501,781670.998500001],[321934.5,782653.497300001],[321852.9975,780284.4954],[318648.9998,779073.502],[316464.9985,776753.496099999],[314486.0025,777841.004799999],[313481.0037,777366.500700001],[312976.4967,778153.4954],[310757.9981,776670.9998],[308548.0002,778311.5002],[306911.9986,777957.501499999],[306421.5,778931.502699999],[304991.996,778056.1033],[304551.0007,779237.495100001],[305158.9997,779860.9966],[303746.0024,783310.9991],[299915.0007,782511.4979],[299399,783621.5002],[298135.9968,783601.4959],[297599.499,781796.502599999],[295966.0039,781554.5019],[294170.9964,783830.500399999],[291535.5039,782725.9965],[290468.5023,784179.500499999],[291387.9997,787201.4954],[293088.997,788399.502499999],[293881.5041,790464.501399999],[294181.5006,793085.5012],[293453,795452.503599999],[295020.5016,797522.5011],[294134.0008,797647.995200001],[293502.5034,798960.499500001],[294027.4994,799724.0009],[296146.9995,799971.5001],[298082.5029,801733.095799999],[299147.5009,798722.4976],[300318.4975,800910.5013],[303532.4965,800355.000299999],[305717.0007,801679.0013],[305991.0006,800140.001800001],[306872.0019,801033.496099999],[308171.003,800508.996200001],[310040.9993,801374.998299999],[312287.0035,801069.9956],[313916.4996,802500.496099999],[314658.4974,801692.997300001],[316600.4979,801602.5032],[317971.0002,802949.997500001],[319161.4963,803019.4976],[320043.0005,805165.5033],[318454.0041,807168.9998],[318933.0009,808078.499500001],[318051.4967,809243.495999999],[318269.4961,810517.5013],[320697.9964,812042.504799999],[322761.999,811767.003599999],[323625.999,813204.5022],[325025.4992,813059.503699999],[324902.7962,815000.098200001],[327189.0032,819031.0043],[329831.5041,819666.002599999],[331168.4984,821388.999399999],[333156.0034,821268.503900001],[334245.0028,822045.501499999],[336540.502,820990.5034],[337169.996,821385.000499999],[338627.5002,819460.501399999],[340754.5033,821219.4979],[341243.5014,823565.996200001],[342769.0026,825700.295299999],[341561.4969,826812.9968],[341737.0013,829403.495300001],[340934.5012,830741.5023],[342704.5015,832334.496300001],[340649.1974,834688.102499999],[338567.5008,835438.9976],[339628.7969,837147.6985],[342739.3039,839093.2016],[339436.1015,839625.599199999],[338888.2997,840372.5954],[341807.1997,845583.4038],[345149.5001,845350.4005],[344996.1997,846606.7009],[347005.4964,848317.0013],[347051.0009,849483.997300001],[348223.498,849165.998299999],[350199.8969,850116.7961],[350944.7969,849736.8049],[351158.4017,848041.5002],[352848.7959,846729.3958],[354645.403,848219.9991],[354529.6011,847328.5043],[355641.0024,846224.500299999],[357071.8008,845867.602499999],[357661.8009,846979.0043],[358479.7027,846634.902799999],[358599.2973,847569.395300001],[361185.4019,849010.6028],[359043.5,850081.6962],[357679.1979,849156.401000001],[357026.7003,852911.396199999],[355262.2985,853302.904100001],[355411.7979,854649.6986],[353720.101,855165.301000001],[352754.2993,857507.8005],[351662.1008,858062.6017],[353998.2976,862483.5962],[352182.0013,864245.901699999],[352316.9358,867537.944399999],[352877.82,868142.9],[353725.52,867221.699999999],[354872.3515,867426.356000001],[355959.31,866024.300000001],[357522.6913,867208.2848],[359327.7,866090.91],[360300.3,866947.73],[362037.82,865773.68],[365284.31,865447.539999999],[365842.56,866019.82],[367088.12,864664.779999999],[369024.84,864644.48],[369385.5407,863571.9537],[368571.73,862519.220000001],[369447.85,863386.68],[369453.1311,863659.387599999],[370425.5,864917.23],[376446.87,864337.109999999],[378512.57,865185.32],[379544.29,864502.08],[380719.32,865341.43],[380594.25,866325.24],[382362.4,867416.1],[384395.72,865525.27],[387474.91,865543.35],[388651.45,864622.810000001],[393063.3,867928.85],[397575.43,866876.300000001],[399848,867673.949999999],[400311.8,865740.1],[402660.7337,865065.0306],[401838.83,864301.83],[402843.76,865012.43],[402836.7996,865228.521299999],[403327,865683.710000001],[404867.13,865008.73],[406626.11,860474.539999999],[406859.7,860964.300000001],[410472.62,858294.359999999],[410479.72,853091.74],[411819.9,851828.6],[412242.85,847500],[411302.05,848097.49],[411392.54,847563.720000001],[414056.4,846324.9],[413772.1676,845248.323799999],[413573.56,846391.560000001],[412450.35,845186.1],[413062.5088,844637.2487]]]},"properties":{"OBJECTID":348,"lad19cd":"S12000034","lad19nm":"Aberdeenshire","lad19nmw":" ","bng_e":352284,"bng_n":816277,"long":-2.79208,"lat":57.234692,"GlobalID":"674a20c0-d9eb-4b29-918f-4df8fafff166"}},{"type":"Feature","id":349,"geometry":{"type":"MultiPolygon","coordinates":[[[[206679.9981,752762.003599999],[206603.5005,751222.0044],[208722.003,751542.002800001],[211072.002,750643.100199999],[210588.9981,749191.9955],[209184.9961,748279.4967],[209943.5005,746728.500700001],[209589.4988,744671.499500001],[208643.9964,743899.000600001],[209616.799,742491.9027],[209685.6032,741679.595899999],[211779.9972,741431.9968],[212431.0025,742413.9957],[215998.5002,742920.500700001],[216632.9989,744493.000600001],[217482.9988,744242.0024],[218731.4989,745203.997099999],[219038.5037,746533.4965],[223227.4977,745276.996200001],[225714.9997,746041.497300001],[226220.9991,745505.500800001],[228017.499,745920.0021],[229411.4997,747442.496300001],[232681.1034,747315.4027],[234229.8969,749232.0041],[235169.0011,748646.001800001],[238924.5028,750168.495999999],[239939.9975,750042.0022],[242832.4968,745274.4969],[240410.5019,745773.0042],[234271.5015,743034.4981],[234230.0041,742043.0019],[236548.0041,741217.9981],[236863.996,740265.0009],[236516.4997,738570.4959],[234712.0021,736396.9981],[235611.4971,735159.0024],[237551.5022,734670.0024],[236535.9993,734374.497],[235853.0031,732957.502599999],[233757.0014,733849.997099999],[232100.5027,733038.999299999],[231558.4971,730246.998500001],[229430.4963,730583.0023],[227459.498,728465.998299999],[226658.0038,728590.002800001],[226508.9991,726424.002800001],[223799.4988,723449.0044],[228082.503,720314.001800001],[227438.0031,719144.4965],[227830.3031,718081.900699999],[230703.5008,718878.002800001],[231773.0006,717671.498199999],[232177.998,718604.5011],[233393.9961,717719.5044],[235693.5024,717569.497400001],[234526.9994,716605.5033],[234856.0021,715438.497400001],[234127.5015,714945.998299999],[235404.4965,713035.995100001],[233096.4978,712379.0031],[232744.4997,710188.5002],[233592.9989,705856.5002],[232864.8034,704108.1006],[235197.999,700101.497500001],[235983.4977,695316.997099999],[239017.3009,693927.4048],[237999.4976,691515.495200001],[238422.898,690979.898600001],[236779.5007,686673.001399999],[237946.3994,683866.9046],[236149.5038,682793.002],[236077.4997,681982.0042],[234691.4966,682640.4957],[234235.0006,682061.001599999],[236817.5021,680437.996099999],[236285.1021,678601.6018],[237642.0989,676948.2951],[237133.0418,675690.4922],[233636.2,677138.9],[232612.7,678575.4],[231472.6,678217.1],[231570.62,679099.75],[232548.5,679106.1],[231646.53,681089.92],[226337.95,683749.300000001],[223947.65,691059.15],[223399.82,687732.02],[225937.96,682175.43],[227336.18,682107.970000001],[227450.8,680690.300000001],[223053.11,680415.07],[222114.6,681155.1],[221372.19,683771.43],[220772.8,688776.01],[222098.19,693424.18],[218595.4,688100.699999999],[219334.22,680523.02],[217453.12,681187.800000001],[215423.92,683164.210000001],[215410.47,681350.810000001],[218616.1,678871.5],[217724.7821,676340.4015],[216862.41,676160.84],[213673.9,667189.939999999],[209588.83,668368.51],[208513.5,677494.5],[206307.5,679755],[205390.55,684040.060000001],[204944,682617],[207578,676003.5],[207703.5,671504],[205561.5,671979],[201540,675658],[200912.5,681661],[200458,675623.5],[197371.5,671559.5],[199270,667226.5],[199397.84,663940.34],[196684,665551],[196271.5,666857],[194447,666564],[194072,667616],[192742.5,667121],[193276,667416.5],[192485.5,667657],[192957.4,669677.617000001],[192571.81,669156.779999999],[192820.6,669921.800000001],[190738,671130],[190515.5,672319],[191595,674661.5],[190916.5,675141],[191294,676831],[192398,678652],[191236,680177],[191685.5,683064],[194351.5,686112],[195825,693348],[194288,690314],[193341,690083.5],[193358.15,691173.869999999],[192569.97,691158.189999999],[192997.77,690008.49],[192028,689230],[191601.5,686087],[190829.09,686481.890000001],[189065,684026.5],[188478,684579.5],[187745.5,683857],[186432.5,685129.5],[186379.3,687742.1],[185764.6,688121.6],[184744.5,680808],[186006,677949.5],[186300,672324],[187317.5,671359],[186667.7,671573],[187669.5,669267],[186396.9,668654.1],[188259.5,668438.5],[190912.5,664378],[192254,659400],[191338.5,657374.5],[189896.6,657618.699999999],[187087,656183.5],[183279.5,651363.5],[183313.5,649193.5],[180870,644294],[182088.13,636849.869999999],[181528.13,636285.369999999],[181378.13,637548.869999999],[180262.67,637221.33],[180231.74,637861.08],[179841.5,631778],[178926,631511],[178314.5,627121],[175976.29,624869.59],[175480,621339],[173517.76,620309.43],[172072.2,620714.199999999],[173240.9,619159],[175325.39,619499.9],[176762,616537],[176976,613113.5],[174133.5,609073.5],[171391.5,607408.9],[166046.45,607827.33],[163929,606213],[161257,605866],[158773,607574],[159680.5,617397],[162787.914,620936.559],[164576.53,621062.199999999],[165048.733,622789.676000001],[165673.5,631469],[166371.8788,632772.250299999],[165832.5,637362],[167392,638828.199999999],[168941.5,643803.5],[169733,647678],[168972,649347],[172686.69,652196.289999999],[176162.5,658392.5],[177190.5,658353.5],[182065,662228],[185083.1,668007.1],[184431.5,668035.5],[181802.5,663971],[178191,660425.5],[175986,659264.5],[175857.5,659868],[174934.14,658483.939999999],[173268,657843],[173392.5,659131],[174309.37,659669.75],[173456,659585.5],[173092.5,660460],[174112.3407,661264.114399999],[171888,660830],[170424,662303],[170632,666863],[173817.7479,673363.0514],[177192.24,677353.720000001],[174648.25,676569.25],[170106,672052],[169582,674794],[171209.5,678919],[175920,685449.5],[177434,686223],[177935.8,687641.630000001],[175831.7057,686183.0189],[177966.5,688894],[176469.5,687737],[176668.5,688714.5],[176006.631,687234.5962],[175196.6813,687106.946],[177210.5,690417.5],[175008.96,687149.26],[174186.85,687190.199999999],[175027.5,686571.5],[173282,683548],[171884.5,682783],[173471,685966],[172385.5,684658],[170957.5,682261.5],[171075.15,681661.949999999],[172075.44,682067.42],[171153.5,680627],[169884.5,679796.5],[170657,681239],[168149.5,679080.5],[172222.5,687145.5],[173562.2,687771.4],[173894,690362.5],[177108,694567.5],[179053.5,694391.5],[179171,693238.5],[180939,691957],[181710.63,692856.09],[180509.16,692506.470000001],[180538,693649],[179549.5,693549],[180538.5,695372.5],[179012.5,695482.5],[179513.73,696539.939999999],[178552.5,695989],[178233,696954],[182822,704792.5],[182431.78,705384.48],[180801.38,704128.0196],[177811.64,701823.99],[176494.5,699170],[175474.5,699092.5],[177271.87,701440.27],[176336.8,700860.199999999],[176528,702336],[179453.88,706950.359999999],[178906,707746],[180555.75,708411.130000001],[179051.59,710628.42],[184462.6871,712612.624299999],[183483.36,713406.279999999],[183764.06,714127.84],[183058.06,714152.25],[182240.5,713007],[179496.52,713288.07],[178197.5,711953],[177286.5291,712109.599400001],[178558,715919],[177760,715807.9],[178944.6603,721435.128],[180450,722924.5],[181165,722563],[181460.5,723179],[182534.0513,722019.328600001],[183912.9,723254.9],[185024.5962,723460.157299999],[185112,723554],[184120.54,723883.380000001],[184348.59,724482.880000001],[182561.39,722566.189999999],[181528.5,724219],[183222.02,728140.15],[185868.9,729934.300000001],[185312.36,732531.27],[186775,733793.1],[188061.8,734591.57],[188319.92,733649.060000001],[189669.5,734463],[189679.95,733848.51],[193694.33,734764.880000001],[194852.25,733682.140000001],[195771.22,734443.16],[197568,733344.5],[198613,733501],[198795.5,734317.5],[199814.85,731986.310000001],[200656.91,731862.66],[201000.0003,732955.203299999],[199458.0007,734967.997099999],[197501.9012,734660.6951],[193974.1034,736095.4044],[193012.3005,735957.9037],[192666.5027,734732.204600001],[190175.1008,734845.0023],[190418.5032,737667.904300001],[189146.7026,738997.2038],[189675.2027,740295.702099999],[187068.9966,736764.502900001],[187590.9008,738217.4969],[186189.0013,737610.500700001],[188787.5972,741858.704700001],[190860.0015,742261.599300001],[191519.5982,740499.603700001],[193028.601,741945.6998],[192592.2971,742579.1984],[192025.3997,742030.995300001],[191492.2988,744240.7028],[190022.0972,743787.702500001],[190660.9987,746171.000299999],[191762.4977,747019.497400001],[191755.2997,745990.5019],[193077.5025,746634.6975],[191999.9966,747733.303099999],[192284.7975,748485.3978],[196099.158,752595.470899999],[197672.4997,749989.497199999],[199079.9976,750225.499700001],[200568.998,749200.0032],[202658.5026,750216.0024],[202976.4981,753518.9969],[206679.9981,752762.003599999]]],[[[147960.5034,757798.0021],[150748.0019,757038.499500001],[151187.8996,755840.266799999],[150440.5805,755093.326400001],[152649.0986,753762.997099999],[153747.4974,751213.4969],[155096.4966,750210.504000001],[156512.7012,745452.196],[155651.7025,744804.3015],[157026.3026,743220.604800001],[157748.6029,743945.2974],[158936.6008,742933.497],[162443.0027,743308.999500001],[164754.4973,741464.7974],[164882.5019,742683.998400001],[166514.0016,742355.502499999],[168104.4986,739388.501700001],[169715.4022,738477.2026],[171159.4999,738787.003900001],[171411.411,737587.234999999],[173479.5034,735912.9966],[173115.6983,734939.495300001],[174436.6973,734461.302100001],[175052.9991,735377],[174950.9995,731820.4981],[173774.1984,732327.403000001],[174187.3007,732735.2962],[173291.4006,733719.704399999],[172229.216,732260.165999999],[173493.9982,733018.6951],[173422.4971,731329.998500001],[173911.5034,731704.001399999],[174793.6012,730793.602],[172948.002,727348.998],[170643.4992,728248.000700001],[171190.5013,730890.0044],[170359.4981,730381.5],[168889.7005,730891.403999999],[169797.0035,728897.004899999],[168385.168,728812.255000001],[168080.0025,727334.5022],[165721.162,725815.457],[171114.0036,727453.998],[172214.9996,727269.500800001],[171886.4999,725942.000800001],[168601.9973,722904.000399999],[162954.9962,719769.4976],[159633.4981,721162.9987],[162426.3971,723669.3013],[162096.504,724619.099400001],[160609.4,724962.4012],[156823.0041,721306.997500001],[153594.7988,721640.202099999],[149779.504,718473.998500001],[147763.9988,719697.9981],[144781.9993,719244.9978],[143692.9999,717935.002699999],[140299.0029,718994.499500001],[138578.201,718131.896400001],[137381.4963,718785.7992],[136022.9988,716154.002499999],[135792.4999,717256.9968],[132411.4972,716948.495100001],[132538.9988,718424.502599999],[130879.4989,718551.996099999],[131233.5006,721114.002800001],[129392.5021,721544.999399999],[131287.4975,725752.2951],[134723.3621,725164.0474],[135145.5017,723874.002699999],[135288.9988,724713.5024],[135997.4969,724378.498299999],[136268.5038,722841.9981],[134386.7005,722968.102],[138121.0041,721768.395400001],[137560.4966,724858.0011],[141084.5017,723428.100400001],[141948.0976,723611.9977],[141417.5032,724048.502800001],[141919.5037,724362.502900001],[144106.3001,723813.0002],[144886.0025,724821.001599999],[146535.6991,724223.2028],[148622.5983,725685.204299999],[151897.8993,726386.703500001],[152935.6969,727877.5967],[152277.6998,728996.7963],[154464.086,728622.722999999],[151842.5007,729753.999600001],[149456.0008,727795.000299999],[148700.9016,728733.9016],[146830.5012,727000.4978],[140984.0026,726407.497500001],[140180.4967,727956.5041],[140475.9997,729382.4959],[144045.5999,732274.098200001],[145642.9981,736122.4966],[150239.496,736177.001],[153672.5003,738943.4991],[153709.8903,740966.7042],[154170.8,740613.6],[153711.209,741038.060000001],[153648.2693,741013.9123],[153110.5004,741425.898499999],[151693.6032,740212.7958],[146249.0018,738728.000800001],[145448.0024,739876.901900001],[144599.396,739829.295600001],[145388.5967,740936.398700001],[144781.4964,741949.998500001],[140265.5033,745426.603399999],[136452.5006,745061.4979],[133250.4981,746797.5009],[133799.0008,748766.497300001],[135564.796,749021.5043],[137261.4977,751025.1008],[135081.9983,751132.9999],[134760.4986,754398.994999999],[137753.8021,753829.597999999],[139094.0038,754927.503799999],[142906.9982,751238.999600001],[140849.5009,753864.9979],[141599.4964,753635.503599999],[140750.9972,754919.9959],[140881.5,757061.502900001],[142800.9997,755860.796599999],[142050.5013,757220.497400001],[142617.0029,756799.4979],[142703.9966,757943.000600001],[144665.4966,757757.9036],[147028.4981,759240.999],[147960.5034,757798.0021]]],[[[142387.5,679365],[142671,677513],[141729.36,674000],[143245.53,669026.470000001],[142974.5,665360],[144031,661916],[146230.5,659674],[145718,657284.5],[147110,655159],[146285.7845,653648.195900001],[146424.93,651696.59],[147176,652045.5],[146721,650719],[147406.24,650739.060000001],[145445.5,649444],[144870,648131.5],[144018.78,648745.630000001],[143721,646282],[143009.4,647070.02],[138885.5,644701.5],[137906,645346.5],[136566.6175,644592.621200001],[136132.1,645693.4],[134619.594,645513.077],[134934,644336.5],[132895.5,641291.5],[131756.5,641098.5],[131115.5,639984.5],[128350.3978,640495.669500001],[128266.5,641259],[126705.5,641600.5],[127266,644754],[129315.0586,647864.510299999],[131244.06,647840.210000001],[132263.8,648721.1],[130723.25,653750.25],[129349.19,655752.960000001],[127443.95,655510.369999999],[127613.4776,657002.7808],[128239,658346.5],[132755.742,660505.213],[133427.76,662150.43],[132950.6,662826.34],[127586.723,663092.892999999],[125730.7,658804],[122762,654680.5],[117897,651083.460000001],[116585.44,651819.189999999],[115703,653673.5],[117894,655781],[117061.5,656471.5],[117764.5,658292.5],[120211.4672,660018.515900001],[119589.5,660342.5],[120649.555,663350.041999999],[118855,664608],[120880.4216,666311.579500001],[121065.5,668097.5],[120487.5,668414],[121307,671116.5],[123026.5,671922],[123779.5,670884],[125260.99,671494.550000001],[129526.8327,674949.998],[127970.5,668691],[128582.409,667280.631999999],[129594.2,667180.77],[129075.5,668519],[130776.697,672106.362],[130407.178,672916.91],[133169.01,673673.42],[133171,674449.5],[137898,678370.5],[139371,678176],[142387.5,679365]]],[[[169693.998,701424.9987],[170942.4981,699067.5035],[170827.496,697093.998400001],[164677.4967,686806.5032],[163669.9997,686526.5033],[161720.9992,682157.503900001],[160705.4962,681959.000800001],[159979.9968,678601.501800001],[157818.9992,674803.499],[157928.5019,673079.502499999],[156982.0019,671929.501700001],[157389.0028,673298.4998],[156396.0006,673174.495300001],[155958.5012,670653.9968],[155052,671318.5],[153808.5026,670812.501399999],[152687.86,667216.93],[153350.5,666214.5],[151602.9982,662552.9957],[147132.5581,663166.033600001],[145395.4978,664459.0001],[144153.099,667345.873],[144416.504,670919.0009],[143830.9152,671891.9002],[144585.0001,674955.4955],[148666.9979,679985.4957],[155717.0034,680624.502699999],[159984.4986,682822.503599999],[159680.9979,684195.000700001],[157828.4976,682018.503699999],[157218.6462,683449.6523],[157066.0026,682549.501700001],[155876.9988,682644.004699999],[155155.0035,681322.0031],[154157.4995,681164.998],[150906.561,683064.737],[150123.9992,682808.997400001],[150520.0012,684489.996300001],[154047.9969,689780.002],[157784.5019,692832.9981],[162377.9986,695118.503900001],[163813.9997,697512.998500001],[164741.9978,697089.999600001],[167335.4982,699311.003799999],[167357.4961,700201.9988],[168836.2,700114.73],[168758.4969,701086.9954],[169693.998,701424.9987]]],[[[208460.2,667116.9],[208557.3,664897.6],[210716.41,665285.65],[210702.74,661476.18],[211844.8,657039.5],[209840.7,655655.1],[211475.5,652679],[209917.5,651775],[208358,653098.5],[208032,655927.1],[206081.9,658189.699999999],[204373.5,657627],[204161.31,661782.109999999],[203412,660994],[203156.5,662189.5],[204184.2,665764.800000001],[201701,666610.5],[199207,670333.5],[198705,672254],[201155.5,674846.5],[202744.68,674270.470000001],[205391,670970.5],[207551,669644.5],[207726.5,668836.5],[206589.35,667676.16],[208460.2,667116.9]]],[[[109578.326,748764.109999999],[109508.78,747177.788000001],[104654.3528,747164.261499999],[104007.192,745978.772],[105095.275,745186.051999999],[103942.583,743348.109999999],[99864.8810000001,743587.408],[98429.96,741677.82],[98635.6109999996,738874.413000001],[96119.3399999999,738800.5],[94886.4469999997,740694.573999999],[93278.5,739978],[93957.5,744014],[93321.4349999996,745768.641000001],[92525.4189999998,745805.274],[95682.8559999997,748425.854],[98041.5,748443],[100316.212,746945.892999999],[101301.5,748280.5],[104002.02,749437.772],[105139.317,748437.925000001],[105676.855,749059.35],[106307.27,748559.84],[107994.783,750602.548],[109578.326,748764.109999999]]],[[[127401,763983],[127352,762536.5],[123665.5,756279.5],[122110.01,758931.460000001],[122577,755971],[120800.5,754029.5],[119849.9,754084.279999999],[119716.09,753180.310000001],[118926.95,753831.25],[117679,752918],[117634.9,753609.140000001],[116922,752116.5],[116188.6,754086.039999999],[115246.12,751987.289999999],[114730.525,753118.199999999],[113297.429,753258.909],[112484.5,751263],[111663.742,751126.607000001],[110863.5,753011.5],[112909.5,754626.5],[114331.103,754327.247],[115635,756967.5],[116979,757507.5],[117309,759066.5],[121445.66,761274.08],[122517,763003.5],[124080.5,763186.5],[124299.5,763951.5],[124952.56,763481.720000001],[124892.5,764451],[126172.56,763956.91],[126446,764470],[127401,763983]]],[[[143209.5013,699755.996400001],[140768.5015,695081.0046],[138857.2963,693383.1006],[139682.9979,692261.001800001],[139324.5027,691071.5023],[137389.5023,689722.498500001],[137153.7018,691183.9002],[136675.9994,690445.501499999],[135370.9959,690522.499500001],[135654.5023,691748.498500001],[133573.4984,690816.995200001],[135628.0027,692852.002699999],[134799.003,693112.998],[135823.3034,693744.597200001],[135048.0039,694064.9955],[136153.4027,694752.5986],[135414.9998,695109.4965],[135960.996,696228.496200001],[138630.4005,698546.8025],[139900.6016,697767.195699999],[140219.5041,699538.0988],[142424.0025,701147.998],[143209.5013,699755.996400001]]],[[[189423.0028,746358.9965],[184240.9984,739512.996099999],[178374.4972,735687.0013],[179843.5033,737228.5],[180313.9995,739849.999600001],[183378.3012,741167.502499999],[186937.9991,745070.995200001],[186837.5,746107.998299999],[187671.9002,745104.295600001],[189423.0028,746358.9965]]],[[[139850.0017,742271.4965],[142820.4993,740042.5045],[143181.501,740737.4956],[143816.6016,739613.397399999],[144328.9992,740021.000700001],[145014.5018,738713.505000001],[143835.4993,737901.997300001],[142105.9988,738361.9956],[141716.5021,737713.5012],[140816.496,737997.4999],[140914.4968,739111.0012],[138800.4961,738475.0032],[137258.4965,739983.501399999],[138558.0006,741911.499500001],[139566.9982,741588.502],[139850.0017,742271.4965]]],[[[172109.5041,703358.995100001],[170305.9959,702497.501700001],[167487.9989,702861.997300001],[167185.5041,703849.4047],[168573.5024,705777.502800001],[171203.5038,707042.500700001],[172024.0028,705985.0034],[172109.5041,703358.995100001]]],[[[165730.0035,652686.4999],[166228.4999,651397.4989],[165350.4998,649753.999299999],[166384.4964,649794.4977],[165171.4995,648957.997199999],[165201.5033,646979.003699999],[163273.5029,645568.997300001],[163665.0032,648022.505000001],[162980.0035,648031.5024],[162793.5002,649055.499299999],[164766.9968,652567.504000001],[165327.4961,652315.496099999],[165148.0011,654137.004699999],[166335.496,654779.0009],[167010.9974,653889.4956],[165730.0035,652686.4999]]],[[[184908.4031,730892.9036],[180777.0009,725715.4956],[180241.5006,725485.001599999],[180672,726375.296700001],[180027.599,726797.595899999],[178512.9978,726682.4988],[180254.9978,729699.995100001],[182769.5023,729899.9978],[184300,731420.002699999],[184908.4031,730892.9036]]],[[[178687.0015,720702.000700001],[177979.5011,717942.2007],[176623.5019,717022.0041],[177300.2977,715547.496200001],[175502.0993,714041.397299999],[175234.2008,716867.498299999],[173999.9976,717695.101399999],[176328.9965,720305.5042],[176727.4968,719474.901900001],[177281.4,719767.7981],[176709.0031,718869.495200001],[178687.0015,720702.000700001]]],[[[174762.303,708883.503699999],[174702.9963,705443.498400001],[172818.0022,708960.501700001],[174768.998,714593.9991],[175964.9029,712023.3049],[174762.303,708883.503699999]]],[[[127568.9996,722294.504799999],[126605.4983,721488.9954],[125471.4973,721892.4999],[125302.4983,722518.500700001],[126729.6029,723538.6987],[126518.4964,725057.0041],[129089.999,726268.997199999],[129092.4973,724589.4979],[127568.9996,722294.504799999]]],[[[135949.9971,687477.5011],[134670.0008,686858.498299999],[135029.8977,688231.1954],[133955.5003,689436.000499999],[136781.9979,689792.498400001],[137760.0023,689632.5042],[137996.5037,688764.502699999],[136420.4025,688756.095100001],[135949.9971,687477.5011]]],[[[136000.4981,742193.9987],[137092.004,741244.500499999],[138273.9995,741691.502499999],[136616.9978,739525.002699999],[136485.0026,740553.9981],[134898.0015,740424.495200001],[134890.0038,741497.4981],[136000.4981,742193.9987]]],[[[177525.5033,707442.995999999],[176056.0026,706180.497400001],[176368.0039,710021.9978],[177456.5004,709190.9957],[177525.5033,707442.995999999]]],[[[170822.4995,709623.002],[171504.0033,707270.995300001],[170780.4991,707197.496300001],[170512.5017,708440.000700001],[169707.0004,708353.995300001],[171395.4983,710927.498600001],[170822.4995,709623.002]]],[[[202737.4985,659086.4979],[202024.0039,658193.003699999],[201482.5013,659846.000499999],[201983.9989,661375.502699999],[202737.4985,659086.4979]]],[[[171225.5016,680539.9969],[169031.4991,677182.498],[169180.5038,679580.501599999],[169661.0012,679992.003799999],[170331.4979,679328.003900001],[171225.5016,680539.9969]]],[[[130709.5022,720341.503900001],[130125.0016,718781.500399999],[129590.499,719614.0021],[128709.4977,719257.5042],[129577.4965,720642.9976],[130709.5022,720341.503900001]]],[[[173254.001,604986.004000001],[173390.498,604009.5035],[171618.9971,604182.0042],[173254.001,604986.004000001]]],[[[192299.4985,749991.4967],[191439.4974,748123.501399999],[191169.0017,749439.004799999],[192299.4985,749991.4967]]],[[[190433.6989,742373.997199999],[189092.7963,742275.1954],[190491.9008,743552.299900001],[190433.6989,742373.997199999]]],[[[149028.5026,738023.002599999],[148732.9996,737546.499],[147504.9967,737755.499199999],[148196.9965,738401.5043],[149028.5026,738023.002599999]]],[[[167526.5033,711813.494999999],[165996.5003,711370.002],[167540.9981,712704.5],[167526.5033,711813.494999999]]],[[[164400.0009,709739.998500001],[163319.9968,709210.0002],[164569.9976,710549.9967],[164400.0009,709739.998500001]]],[[[144173.0026,736087.4966],[143437.5019,734797.4959],[143341.2986,735695.5988],[144173.0026,736087.4966]]],[[[176585.5004,714004.9977],[175877.1949,712396.528100001],[175640.1463,712924.9267],[176585.5004,714004.9977]]],[[[139595.5014,644161.000299999],[139254.5021,643316.502],[138565.0006,643478.4957],[139595.5014,644161.000299999]]],[[[176185.4995,620521.497],[175947.0028,619851.4988],[175217.9993,620300.500299999],[176185.4995,620521.497]]],[[[107070.2029,746482.101199999],[107659.9969,745907.4957],[106706.9997,746018.503900001],[107070.2029,746482.101199999]]],[[[174011.7963,716821.501499999],[173341.5965,716814.203600001],[173827.4038,717373.9034],[174011.7963,716821.501499999]]]]},"properties":{"OBJECTID":349,"lad19cd":"S12000035","lad19nm":"Argyll and Bute","lad19nmw":" ","bng_e":200740,"bng_n":715443,"long":-5.22114,"lat":56.28944,"GlobalID":"66afe350-4e3d-4b84-a94d-c652bec019bb"}},{"type":"Feature","id":350,"geometry":{"type":"Polygon","coordinates":[[[311189.0994,678791.297499999],[311966.5014,679192.3027],[311848.3002,678652.597200001],[313404.102,678297.098999999],[315783.099,679562.5967],[318732.8026,676576.101600001],[319108.3981,677367.904899999],[321298.6986,676961.9012],[323824.202,677882.6976],[323852.3012,677097.5023],[323941.0016,677884.2971],[324080.9038,677067.101],[325259.898,677021.5041],[326342.2025,678235.0967],[330401.6995,674321.397],[332793.3032,673164.2982],[332085.8027,671460.196],[330639.8004,671294.5034],[330235.3966,669493.198999999],[331774.1971,667949.301000001],[327391.8977,666827.801999999],[324957.0982,667507.897299999],[324462.8974,666228.703500001],[322627.5963,666204.000600001],[321628.501,664645.3967],[320905.1041,665496.203199999],[319019.4998,664430.9981],[315484.5041,660147.0044],[314327.4994,659833.0042],[312706.001,659379.0042],[312657.0006,660715.501599999],[311175.998,662334.3982],[311415.3026,663926.8024],[312701.5981,664833.502900001],[311645.7026,665926.200099999],[313333.4996,668619.699100001],[309813.1965,669236.002699999],[310686.2001,671899.4003],[311502.9971,672081.898],[309580.7023,674049.8047],[311124.2025,674331.6041],[309989.5996,675215.801000001],[309721.7011,677012.796599999],[310889.8036,677460.1985],[311189.0994,678791.297499999]]]},"properties":{"OBJECTID":350,"lad19cd":"S12000036","lad19nm":"City of Edinburgh","lad19nmw":" ","bng_e":320193,"bng_n":669416,"long":-3.27826,"lat":55.91119,"GlobalID":"2a8e8d51-9b88-4d78-b6aa-d05771043959"}},{"type":"Feature","id":351,"geometry":{"type":"Polygon","coordinates":[[[236767.8009,673883.602299999],[239971.45,674331.050000001],[241344.6927,674025.7739],[244947.95,673569.449999999],[250477.0009,668859.5902],[252768.8014,666942.3992],[252078.7969,664988.398499999],[251068.8017,665136.396199999],[251830.9999,663895.8013],[250907.8004,661444.302999999],[249661.6996,660127.9998],[245548.9971,659579.796700001],[245088.5022,658823.903100001],[243697.4037,659280.602399999],[243615.2994,658090.2031],[241907.401,656334.3957],[240671.4993,656837.401699999],[240057.3,655507.102499999],[238640.9963,657461.303099999],[235922.0968,655117.0042],[235040.9965,655478.400699999],[234904.9036,656775.999299999],[233117.7041,655023.900800001],[231766.0006,659982.501499999],[229594.0041,660220.0035],[228999.9969,660901.498400001],[229543.9978,661969.002800001],[225785.9979,664236.003900001],[227882.6015,665263.4998],[229589.5023,665495.0035],[232346.997,663774.2961],[235249.9017,664012.097999999],[235950.7978,666268.302200001],[237550.1995,666297.4038],[236759.3992,667070.4026],[237509.7987,668223.8024],[236295.2023,669312.0009],[236737.7971,671189.603499999],[235407.2999,672097.4036],[236767.8009,673883.602299999]]]},"properties":{"OBJECTID":351,"lad19cd":"S12000038","lad19nm":"Renfrewshire","lad19nmw":" ","bng_e":239305,"bng_n":664698,"long":-4.56834,"lat":55.848621,"GlobalID":"1ad9d43c-bb72-4b15-94ba-f62e8978e2de"}},{"type":"Feature","id":352,"geometry":{"type":"Polygon","coordinates":[[[238422.898,690979.898600001],[239050.0008,689730.496200001],[242474.6035,689625.5962],[244035.3028,687916.0956],[244161.5017,688912.3004],[245964.9027,688139.1017],[245613.3003,687064.099400001],[244449.9964,686678.399800001],[245335.5984,682625.200099999],[246088.4962,681533.002699999],[247462.5027,681721.998600001],[248452.9983,678893.9981],[250190.7027,678031.7049],[251394.8032,672325.598300001],[250708.7976,671183.0953],[251573.4984,669985.098200001],[250477.0009,668859.5902],[244947.95,673569.449999999],[241344.6927,674025.7739],[239971.45,674331.050000001],[237133.0418,675690.4922],[237642.0989,676948.2951],[236285.1021,678601.6018],[236817.5021,680437.996099999],[234235.0006,682061.001599999],[234691.4966,682640.4957],[236077.4997,681982.0042],[236149.5038,682793.002],[237946.3994,683866.9046],[236779.5007,686673.001399999],[238422.898,690979.898600001]]]},"properties":{"OBJECTID":352,"lad19cd":"S12000039","lad19nm":"West Dunbartonshire","lad19nmw":" ","bng_e":242904,"bng_n":681586,"long":-4.52074,"lat":56.0014,"GlobalID":"37fa04fe-c419-4c39-9339-50a533d839c1"}},{"type":"Feature","id":353,"geometry":{"type":"Polygon","coordinates":[[[305533.8037,679796.799699999],[311189.0994,678791.297499999],[310889.8036,677460.1985],[309721.7011,677012.796599999],[309989.5996,675215.801000001],[311124.2025,674331.6041],[309580.7023,674049.8047],[311502.9971,672081.898],[310686.2001,671899.4003],[309813.1965,669236.002699999],[313333.4996,668619.699100001],[311645.7026,665926.200099999],[312701.5981,664833.502900001],[311415.3026,663926.8024],[311175.998,662334.3982],[312657.0006,660715.501599999],[312706.001,659379.0042],[310118.9976,657846.003],[309827.9964,655524.997400001],[307774.3991,654051.2992],[303091.798,656353.700200001],[302581.7008,655803.797599999],[300354.9984,658585.001499999],[293597,657010.0023],[291415.9999,655198.001],[290719.1026,655676.304099999],[291411.0034,656886.4977],[290917.0006,657608.501],[292622.3019,659196.996300001],[291120.0023,661066.201199999],[290544.7031,664253.698799999],[293033.9036,665839.404899999],[293006.901,666761.1011],[292187.3996,667091.396600001],[289833.5996,665796.597200001],[289157.2984,666737.9977],[287753.9973,665941.595699999],[286073.2993,667138.5031],[285577.1033,668234.0995],[286129.2008,668542.601199999],[288673,669048.496300001],[291889.0026,672719.4955],[293687.2999,672588.703],[295950.8,673744.702099999],[295559.2998,674699.298800001],[296902.1976,675261.097999999],[296663.3959,675881.2005],[300305.899,679365.5031],[304242.5035,678038.302999999],[305814.2017,678921.4003],[305533.8037,679796.799699999]]]},"properties":{"OBJECTID":353,"lad19cd":"S12000040","lad19nm":"West Lothian","lad19nmw":" ","bng_e":299483,"bng_n":668514,"long":-3.60909,"lat":55.8992,"GlobalID":"fe287709-7a14-4576-a180-da2d907a60ca"}},{"type":"Feature","id":354,"geometry":{"type":"Polygon","coordinates":[[[316464.9985,776753.496099999],[318648.9998,779073.502],[321852.9975,780284.4954],[321934.5,782653.497300001],[322787.501,781670.998500001],[325058.9989,781388.999199999],[328595.5035,779398.499],[329427.999,780099.498400001],[331836.9998,778013.4955],[332676.5036,778733.499399999],[332474.4996,781375.0032],[334225.0003,785766.996099999],[337705.0015,787310.0044],[342088.4965,786581.502900001],[342671.0018,787349.5031],[344767.0035,787545.497],[344610.7019,788198.699999999],[345865.996,788757.5],[348358.5027,787140.502900001],[349453.9992,787621.495200001],[349959.9986,785937.497199999],[353573.0009,785654.9981],[355081.5008,784381.502599999],[355987.501,781849.497400001],[358284.5009,780627.497199999],[358606.9982,777609.0013],[359811.9974,777345.4967],[359191.3009,772515.599199999],[360365.2987,770312.999700001],[360241.4991,768958.7973],[361533.0962,768797.003699999],[362445.8986,765936.4025],[367717.7,766086.399599999],[371804.8015,761885.302100001],[372889.2992,762320.297599999],[374166.1259,762673.458900001],[372262.345,756956.316],[373407.307,756671.415999999],[372714.9986,754343.301000001],[370463.9979,753426.003599999],[368747.9039,751207.1987],[369280.6998,748845.2048],[370473.8013,748648.301200001],[370631.0017,747829.795499999],[368098.3992,743375.600500001],[367074.5028,742801.704700001],[367067.6017,741789.5045],[362830.2999,739983.601399999],[360927.9994,737380.4965],[356013.3988,733928.3047],[354855.0996,730476.402799999],[351135.0023,732326.6032],[348435.0003,731643.898600001],[348504.3001,733656.4025],[346986.4008,734112.602],[344899.0976,733817.396500001],[341794.2962,735060.000800001],[339705.7975,734009.501499999],[336589.1974,734965.297900001],[335329.6983,734360.501],[335363.297,732765.5975],[332465.9,732445.599099999],[332974.7028,731066.6039],[331116.299,731178.002],[331186.3985,732196.4005],[329659.0009,732546.4003],[329771.1008,733413.702],[326751.8995,735216.8959],[327186.3978,735710.3046],[325531.3996,737576.100500001],[327936.7973,737746.6017],[328511.7007,739067.103700001],[326947.7033,741671.8981],[330516.9985,743592.6983],[333311.8021,747343.4047],[331960.1975,747450.8039],[329848.4971,745437.4003],[328514.6029,745831.6974],[329328.7038,747485.304099999],[326998.6,748423.9954],[328229.5959,748867.0985],[327831.4007,749929.204500001],[329336.2975,750160.7982],[329509.0974,751856.8027],[325747.7006,752167.9037],[322629.8967,753918.502599999],[321371.6014,753399.301200001],[321438.1968,754742.296800001],[319948.9986,756123.501399999],[320081.4967,757541.9954],[317317.9996,760205.502900001],[316661.5031,761550.9978],[317055.9963,762604.996099999],[315845.4976,763250.001499999],[315150.4967,765045.997400001],[317193.4991,768924.497199999],[316658.5019,769937.497199999],[317595.0006,770680.5045],[314267.5001,773322.9981],[316464.9985,776753.496099999]]]},"properties":{"OBJECTID":354,"lad19cd":"S12000041","lad19nm":"Angus","lad19nmw":" ","bng_e":345518,"bng_n":759594,"long":-2.89189,"lat":56.7248,"GlobalID":"9ff99043-8e11-4a13-bfef-0783ad7d4050"}},{"type":"Feature","id":355,"geometry":{"type":"Polygon","coordinates":[[[332974.7028,731066.6039],[332465.9,732445.599099999],[335363.297,732765.5975],[335329.6983,734360.501],[336589.1974,734965.297900001],[339705.7975,734009.501499999],[341794.2962,735060.000800001],[344899.0976,733817.396500001],[346986.4008,734112.602],[348504.3001,733656.4025],[348435.0003,731643.898600001],[346477.3013,730373.4023],[343706.499,730974.3003],[339162.5964,729234.6982],[336036.399,729245.495100001],[335270.3999,730078.3967],[332974.7028,731066.6039]]]},"properties":{"OBJECTID":355,"lad19cd":"S12000042","lad19nm":"Dundee City","lad19nmw":" ","bng_e":340291,"bng_n":732145,"long":-2.97095,"lat":56.4776,"GlobalID":"db8bea64-c967-40a4-93c6-2cd954e83a20"}},{"type":"Feature","id":356,"geometry":{"type":"Polygon","coordinates":[[[250190.7027,678031.7049],[252448.5962,678909.9035],[254313.7032,676507.5012],[257354.2014,676224.0024],[257247.9968,677235.502800001],[258240.1002,677037.0996],[258194.0021,680143.500399999],[256754.9998,682881.4967],[257924.9987,684072.9956],[259406.0013,682777.996300001],[261565.0036,683053.497500001],[263054.6965,681868.696599999],[265327.0023,684043.5041],[265894.5016,681546.9987],[268253.3971,678015.999399999],[267537.9979,675376.1951],[271347.9005,676944.1962],[272288.596,675140.8024],[270726.2971,674257.7952],[271502.2975,671961.9024],[268162.8993,672035.9012],[268282.1971,671389.6962],[266979.7001,670734.2038],[264377.3032,671424.7961],[262933.6013,671067.6984],[263784.3019,670126.797700001],[260258.4994,669340.402799999],[258371.8975,672927.9958],[256521.2029,673064.196900001],[256273.0018,671646.2028],[256933.7033,671115.104800001],[254549.8995,669846.597899999],[253280.3002,670507.198799999],[253464.701,671754.9016],[251394.8032,672325.598300001],[250190.7027,678031.7049]]]},"properties":{"OBJECTID":356,"lad19cd":"S12000045","lad19nm":"East Dunbartonshire","lad19nmw":" ","bng_e":261240,"bng_n":676154,"long":-4.22417,"lat":55.95829,"GlobalID":"b97067cd-e767-429b-a17a-22130b0b148f"}},{"type":"Feature","id":357,"geometry":{"type":"Polygon","coordinates":[[[321170.3972,718296.699200001],[324318.6996,718758.097100001],[335955.3995,725312.800899999],[339027.3032,725829.8029],[343275.8018,729188.8014],[345655.7964,729268.298599999],[346733.4011,727886.804099999],[350265.264,728000.2404],[350034.9317,722405.681700001],[348271.5676,720206.196599999],[346726.0489,719409.7809],[348257.9556,718160.7061],[349457.3061,719807.5754],[350267.3003,717198.103700001],[351907.4985,716614.900599999],[351727.7974,716632.095699999],[351239.4,716129.5],[351772.7055,716516.968],[352027.1643,715864.630000001],[359250.6983,714188.595100001],[361079.7003,711338.501],[363848.499,709783.496099999],[362755.5996,708055.900599999],[361098.4001,707401.198000001],[356960.2039,703194.5022],[356436.5023,703567.6953],[356194.0975,702768.704],[351604.0968,701195.904300001],[349628.5966,699255.499700001],[349273.0036,699973.5042],[348046.5013,699294.1986],[346149.9971,699714.498299999],[346355.0023,700379.198000001],[345370.2039,700370.9004],[345955.4961,700926.701300001],[344889.0964,701836.6009],[341588.2027,702724.796599999],[338269.5985,700422.295700001],[337151.7991,700638.7037],[338245.1025,700213.0956],[337526.6031,698972.1008],[337725.5977,699672.4004],[335131.6025,697709.102299999],[330225.7994,692641.502900001],[328627.4036,692279.0967],[326973.2959,686151.2007],[324337.3994,686336.0978],[323112.8017,685226.295499999],[321250.7041,685896.603599999],[320117.7008,685557.6007],[320147.3005,684908.396500001],[319445.2006,685212.399499999],[317704.0004,683087.797599999],[316953.8977,683769.4025],[315516.9979,682295.204500001],[313135.2966,682685.3029],[312665.6991,682136.799900001],[313579.2024,681935.497500001],[313328.8988,680084.0974],[310440.7034,682142.098300001],[309787.1999,681913.9037],[310156.3972,681494.3038],[309343.3023,681785.4004],[308907.7981,682892.8035],[305297.896,684251.104599999],[303724.4003,684065.797700001],[301987.2979,686232.897399999],[301060.5035,686320.602299999],[300812.7971,684807.895300001],[299927.2034,684866.898399999],[299365.4014,685970.4025],[295057.4971,685192.595100001],[291841.2967,688502.6976],[293452.3981,691516.404999999],[295937.7976,690981.4981],[296075.8034,691820.797800001],[298806.3038,692049.602399999],[296654.3016,693504.595899999],[298892.2998,694533.9012],[301854.5029,695193.202500001],[301763.799,696482.703400001],[302961.8971,697450.6963],[304067.8978,697282.4045],[304416.499,695931.6011],[309787.4967,696250.999700001],[312062.8037,694872.404300001],[314982.6025,695639.504799999],[314911.4971,697707.3029],[316561.3998,698625.699999999],[318350.0009,697872.3956],[319593.1994,698304.301999999],[318842.6021,699958.2985],[321854.9022,701108.1994],[321024.5008,703130.4005],[321660.4012,703774.496099999],[320097.7972,704352.000800001],[320751.5976,705326.7018],[315340.3969,706089.203600001],[316253.4962,707798.204399999],[314402.9005,709339.0033],[317428.302,711580.501700001],[318076.6029,710827.6972],[320016.2041,711448.0996],[319640.7982,714269.202099999],[322452.1991,717124.8047],[322488.7,717811.1982],[321170.3972,718296.699200001]]]},"properties":{"OBJECTID":357,"lad19cd":"S12000047","lad19nm":"Fife","lad19nmw":" ","bng_e":339197,"bng_n":704726,"long":-2.98235,"lat":56.231171,"GlobalID":"f9e6f791-0233-4513-8118-08325bb6d48e"}},{"type":"Feature","id":358,"geometry":{"type":"Polygon","coordinates":[[[238924.5028,750168.495999999],[238328.5003,751241.9987],[239515.5994,752617.904899999],[238885.0007,754562.498199999],[236715.5025,752950.499700001],[233582.5029,753355.503699999],[233603.9978,757172.5011],[237269.0017,756823.0012],[241361.9984,758720.9979],[241459.0016,759974.9989],[240573.4985,760397.498],[242516.9996,763313.5033],[241773.9959,766137.504899999],[244458.4971,767427.9955],[244323.5007,768500.498500001],[246198.9965,771028.504899999],[249227.4981,767865.000399999],[250876.5021,767358.4954],[255230.9992,773713.496300001],[257076.4995,772427.5044],[257868.5036,772694.9979],[257966.0014,774144.0031],[259591.4987,775696.4987],[264263.9996,776232.995100001],[264959.9982,777479.998199999],[266034.9975,777606.0021],[266515.9979,778373.002599999],[265710.9996,779176.502599999],[267698.9992,782149.501599999],[268053.0009,781357.498299999],[271477.9993,780139.9968],[275780.9978,780169.998199999],[276172.0033,780750.202099999],[276852.5012,779311.503900001],[277573.8038,780322.604499999],[278289.4999,779440.497],[280244.5028,780384.9966],[280240.9987,783737.497],[281436.4995,785679.0012],[282175.4961,785825.499299999],[282270.504,784353.500700001],[284454.497,783892.502599999],[284764.9977,782872.004699999],[287193.0033,782809.002800001],[289098.9976,784495.0002],[290468.5023,784179.500499999],[291535.5039,782725.9965],[294170.9964,783830.500399999],[295966.0039,781554.5019],[297599.499,781796.502599999],[298135.9968,783601.4959],[299399,783621.5002],[299915.0007,782511.4979],[303746.0024,783310.9991],[305158.9997,779860.9966],[304551.0007,779237.495100001],[304991.996,778056.1033],[306421.5,778931.502699999],[306911.9986,777957.501499999],[308548.0002,778311.5002],[310757.9981,776670.9998],[312976.4967,778153.4954],[313481.0037,777366.500700001],[314486.0025,777841.004799999],[316464.9985,776753.496099999],[314267.5001,773322.9981],[317595.0006,770680.5045],[316658.5019,769937.497199999],[317193.4991,768924.497199999],[315150.4967,765045.997400001],[315845.4976,763250.001499999],[317055.9963,762604.996099999],[316661.5031,761550.9978],[317317.9996,760205.502900001],[320081.4967,757541.9954],[319948.9986,756123.501399999],[321438.1968,754742.296800001],[321371.6014,753399.301200001],[322629.8967,753918.502599999],[325747.7006,752167.9037],[329509.0974,751856.8027],[329336.2975,750160.7982],[327831.4007,749929.204500001],[328229.5959,748867.0985],[326998.6,748423.9954],[329328.7038,747485.304099999],[328514.6029,745831.6974],[329848.4971,745437.4003],[331960.1975,747450.8039],[333311.8021,747343.4047],[330516.9985,743592.6983],[326947.7033,741671.8981],[328511.7007,739067.103700001],[327936.7973,737746.6017],[325531.3996,737576.100500001],[327186.3978,735710.3046],[326751.8995,735216.8959],[329771.1008,733413.702],[329659.0009,732546.4003],[331186.3985,732196.4005],[331116.299,731178.002],[332974.7028,731066.6039],[335270.3999,730078.3967],[330621.2985,727113.395500001],[324190.2992,720226.3968],[320129.6973,719151.9044],[319686.7974,718673.101500001],[321170.3972,718296.699200001],[322488.7,717811.1982],[322452.1991,717124.8047],[319640.7982,714269.202099999],[320016.2041,711448.0996],[318076.6029,710827.6972],[317428.302,711580.501700001],[314402.9005,709339.0033],[316253.4962,707798.204399999],[315340.3969,706089.203600001],[320751.5976,705326.7018],[320097.7972,704352.000800001],[321660.4012,703774.496099999],[321024.5008,703130.4005],[321854.9022,701108.1994],[318842.6021,699958.2985],[319593.1994,698304.301999999],[318350.0009,697872.3956],[316561.3998,698625.699999999],[314911.4971,697707.3029],[314982.6025,695639.504799999],[312062.8037,694872.404300001],[309787.4967,696250.999700001],[304416.499,695931.6011],[304067.8978,697282.4045],[302961.8971,697450.6963],[301763.799,696482.703400001],[301854.5029,695193.202500001],[298892.2998,694533.9012],[297883.599,695097.799799999],[298424.5987,696607.0978],[297751.3977,697557.095799999],[301184.501,698968.401900001],[300904.3998,699867.3046],[301883.5008,700215.7048],[302359.3975,701503.6961],[299716.303,702625.2951],[298457.9994,701679.9957],[297667.496,702379.995300001],[296644.4983,700807.4954],[295452.9962,701640.9968],[292308.9978,700961.5013],[291419.9988,703529.496300001],[289656.001,704167.003799999],[286583.0997,701944.799900001],[285702.9971,702554.4954],[285569.5013,705248.5042],[283927.0027,704010.998400001],[282277.7019,706243.499399999],[281283.0012,705249.104],[279800.6959,705635.003599999],[275928.5019,710970.996200001],[273910.6963,710381.7048],[273886.4971,711624.4991],[273018.4983,710895.9976],[271445.4973,712772.500499999],[271070.0007,711778.494999999],[269113.4972,711854.0034],[267674.9979,713768.4954],[264706.9985,714574.504699999],[261762.0028,717433.496300001],[262714.497,718880.5021],[261553.5017,720085.497199999],[261755.0028,723600.0012],[264489.9967,723768.502900001],[264397.9983,731694.0043],[266826.4986,730158.503799999],[268585.5,732253.0043],[270796.5038,732332.001599999],[270283.0014,734911.0034],[269138.0015,736385.5013],[267512.0012,737439.499600001],[265000.0032,735852.0041],[258619.002,733802.0009],[256745.9962,740992.002800001],[254698.5002,741961.495200001],[253818.9995,740487.997],[249884.4976,739750.998],[247655.503,738413.001],[246610.4993,738411.501399999],[245850.5025,739632.002],[244515.9981,739146.501],[244477.9967,737624.9965],[241479.0041,737772.5043],[238453.0007,735799.4991],[238196.4969,734452.504699999],[237551.5022,734670.0024],[235611.4971,735159.0024],[234712.0021,736396.9981],[236516.4997,738570.4959],[236863.996,740265.0009],[236548.0041,741217.9981],[234230.0041,742043.0019],[234271.5015,743034.4981],[240410.5019,745773.0042],[242832.4968,745274.4969],[239939.9975,750042.0022],[238924.5028,750168.495999999]]]},"properties":{"OBJECTID":358,"lad19cd":"S12000048","lad19nm":"Perth and Kinross","lad19nmw":" ","bng_e":284304,"bng_n":744186,"long":-3.8848,"lat":56.575291,"GlobalID":"b05c27ec-ed00-4d7d-b87c-679d288f0926"}},{"type":"Feature","id":359,"geometry":{"type":"Polygon","coordinates":[[[263784.3019,670126.797700001],[264941.7024,669317.3994],[264712.3001,667721.995999999],[268295.9004,668042.404300001],[270057.6968,667337.496099999],[270434.1004,665061.5976],[269364.8973,664266.895099999],[270189.1973,663159.402100001],[268464.2976,663032.0985],[268133.2006,662167.096100001],[267845.3985,661197.503699999],[266652.7999,662059.4969],[263992.3001,660993.602],[263536.6038,662416.004899999],[263300.5202,662371.6679],[262412.4969,662204.895300001],[262161.8,663439.65],[262078.6611,663479.4833],[261061.3412,662320.4011],[260548.5347,662887.9011],[260361.7921,661857.0747],[260140.6033,660636.1044],[260635.1008,659897.9956],[261331.9981,660198.5996],[261921.9982,658550.701300001],[260660.3967,657644.1008],[260448.6965,656462.598999999],[258954.1967,656913.100099999],[257881.2999,657700.4047],[258425.8037,659840.6021],[256435.1986,660231.5002],[254308.7974,659690.904899999],[253798.6012,657973.5965],[251385.5027,658266.2027],[251761.5022,660808.1951],[250907.8004,661444.302999999],[251830.9999,663895.8013],[251068.8017,665136.396199999],[252078.7969,664988.398499999],[252768.8014,666942.3992],[250477.0009,668859.5902],[251573.4984,669985.098200001],[250708.7976,671183.0953],[251394.8032,672325.598300001],[253464.701,671754.9016],[253280.3002,670507.198799999],[254549.8995,669846.597899999],[256933.7033,671115.104800001],[256273.0018,671646.2028],[256521.2029,673064.196900001],[258371.8975,672927.9958],[260258.4994,669340.402799999],[263784.3019,670126.797700001]]]},"properties":{"OBJECTID":359,"lad19cd":"S12000049","lad19nm":"Glasgow City","lad19nmw":" ","bng_e":261534,"bng_n":667033,"long":-4.21479,"lat":55.876492,"GlobalID":"36ede3e1-5f5e-448d-ab38-350ec1c3adca"}},{"type":"Feature","id":360,"geometry":{"type":"Polygon","coordinates":[[[265894.5016,681546.9987],[267703.501,681707.002900001],[269468.4965,683604.999600001],[274204.6987,683523.6029],[273507.9993,681505.500600001],[276115.302,681213.1043],[276920.8033,679306.6],[275993.102,678933.096899999],[276233.9979,678424.702400001],[277521.5961,678868.995300001],[278710.5999,678316.103499999],[278413.5963,677099.901699999],[279249.3981,676056.3004],[283954.6979,675587.4046],[281175.8979,673292.001700001],[285507.6963,669818.296],[286990.4964,669451.601],[286129.2008,668542.601199999],[285577.1033,668234.0995],[286073.2993,667138.5031],[287753.9973,665941.595699999],[289157.2984,666737.9977],[289833.5996,665796.597200001],[292187.3996,667091.396600001],[293006.901,666761.1011],[293033.9036,665839.404899999],[290544.7031,664253.698799999],[291120.0023,661066.201199999],[292622.3019,659196.996300001],[290917.0006,657608.501],[291411.0034,656886.4977],[290719.1026,655676.304099999],[289280.4961,654381.504699999],[281606.1994,653366.7952],[279625.3977,650708.0962],[278944.3968,652258.3025],[276267.2997,654403.5984],[274525.0029,654824.9978],[274710.3024,655763.799000001],[271680.6959,657896.1987],[271890.5987,659499.999600001],[268133.2006,662167.096100001],[268464.2976,663032.0985],[270189.1973,663159.402100001],[269364.8973,664266.895099999],[270434.1004,665061.5976],[270057.6968,667337.496099999],[268295.9004,668042.404300001],[264712.3001,667721.995999999],[264941.7024,669317.3994],[263784.3019,670126.797700001],[262933.6013,671067.6984],[264377.3032,671424.7961],[266979.7001,670734.2038],[268282.1971,671389.6962],[268162.8993,672035.9012],[271502.2975,671961.9024],[270726.2971,674257.7952],[272288.596,675140.8024],[271347.9005,676944.1962],[267537.9979,675376.1951],[268253.3971,678015.999399999],[265894.5016,681546.9987]]]},"properties":{"OBJECTID":360,"lad19cd":"S12000050","lad19nm":"North Lanarkshire","lad19nmw":" ","bng_e":277984,"bng_n":665608,"long":-3.9514,"lat":55.868141,"GlobalID":"720237e7-6499-4447-ab8f-a0fdc3bab6f7"}},{"type":"Feature","id":361,"geometry":{"type":"MultiPolygon","coordinates":[[[[243981.7901,363857.252699999],[244275.04,365702.560000001],[243598.78,363828.57],[243857.7094,363703.119899999],[243748,363177.5],[242550,362285],[244280,361358],[239669,363556.5],[238477.5,362475.5],[239072,363506],[238328.5,365699.5],[240369.129,366287.225],[240752.2693,368684.6851],[240756.08,368708.529999999],[239950.926,368324.346000001],[236706.5,364774],[235305.801,367979.825999999],[235752.6,369217.699999999],[235265.48,368072.109999999],[235261.58,367857.310000001],[233924.9,367341.6],[233836.3,368391.1],[232775.8,368483.9],[233313.65,370705.470000001],[231616.94,372911.449999999],[231662.3368,373517.5041],[231776.5,373517.35],[232408.44,374232.93],[231709.1,374141.800000001],[231667.5405,373586.9748],[230856.7,374105.1],[229600.67,375563.9],[229755.06,377558.16],[229335.7,377229.699999999],[227517.52,379158.73],[228365.2,379655],[227894.46,380159.49],[228465.58,379861.810000001],[231554.2,382157.57],[229287.94,381117.300000001],[229408.92,383040.42],[228075.96,384082.23],[230117.92,389360.800000001],[228965.4,392739.4],[231930,392896],[233274.2,394050.800000001],[233293.8,393221.199999999],[234467.33,393377.35],[235427.15,394574.16],[237245.93,393471.34],[237234.05,394582.51],[238972.9,395319.9],[240441.41,394256.550000001],[242736.93,394529.02],[243487.13,393408.02],[244674.2,393969.199999999],[244944.01,393256.48],[245567.91,393801.630000001],[247685.57,392921.189999999],[248085.5,393573.49],[249183.67,390588.1],[247341.36,387760.65],[248650.6,388435.6],[248426.7,389002.800000001],[249384.7,387271],[251683.8,386857.699999999],[251372.01,384960.560000001],[252279.21,382527.33],[253249.88,381917.029999999],[252515.2,380268.5],[253187.83,379518.140000001],[257278.82,380848.960000001],[258900.1,382344.5],[264170.4,381235.699999999],[259955.51,375138.449999999],[255980.3,372936.5],[255719.1758,371808.1226],[255176.55,371988.1],[253012.62,371007.210000001],[251856.91,367688.6],[245083.45,363286.119999999],[245042.01,363936.65],[243981.7901,363857.252699999]]],[[[225693.6537,384745.822899999],[223700,383462.1],[225047.5,382944.279999999],[225281.31,383481.83],[224777.293,382214.9024],[225500.3481,382731.1281],[226100.1,381604.4],[227839.74,381362.800000001],[227875.27,380138.01],[226091.01,378994.18],[226896.77,379342.65],[226906.72,378411.560000001],[228295.15,378144.48],[227718.56,377143.199999999],[229233.7,377172],[228500.52,376932.99],[229532.11,375066.640000001],[226755.68,374627.460000001],[225734.8886,375351.970699999],[226087.9,376385.4],[225004.9,377914],[225597.8,378990.800000001],[223346.67,380049.42],[222272.1767,379347.537900001],[221001.49,379709.300000001],[221648.43,381269.6],[220422.7097,382327.4142],[221440.36,383994.48],[222786.6,383520.1],[225693.6537,384745.822899999]]]]},"properties":{"OBJECTID":361,"lad19cd":"W06000001","lad19nm":"Isle of Anglesey","lad19nmw":"Ynys Môn","bng_e":245212,"bng_n":378343,"long":-4.32306,"lat":53.279419,"GlobalID":"2ddcaf07-b12d-4b2d-b210-e2ff5d54f257"}},{"type":"Feature","id":362,"geometry":{"type":"MultiPolygon","coordinates":[[[[262450.4013,338569.406500001],[260480.276,338165.403999999],[258636.2,336682.119999999],[257616.75,337830.085000001],[258210.896,337924.164999999],[256991.4,338174.26],[257149.6,338972.800000001],[255364.839,336492.734999999],[250900.64,338047.560000001],[248036.6,337222.4],[246482.3,337968.4],[247863.5,337194.9],[244328.19,337095.5],[243572.6,335256.1],[239514.3,335824.199999999],[238388.46,334561.130000001],[238141.7,335411.119999999],[237596.5,334705.109999999],[238800.5,334337.800000001],[235717.121,333702.720000001],[233361.1,331780.9],[233739.7,330671.9],[231238.9,328213.699999999],[231832.9,328269.199999999],[231613.9,326786.199999999],[232712.3,325953.800000001],[232445.9,324813.699999999],[230528.5,324674.5],[229580.5,323008.1],[228634.1,324019.800000001],[229119.1,325538.4],[224817.6,328438.800000001],[221849.3,325750.6],[220709.68,326496.73],[218829.6688,325196.821],[216679.12,326276.01],[215820.9,323973.699999999],[213491.4,325634.800000001],[216709.9,330000],[216538.4,331926.800000001],[218589.5,332511.699999999],[221897.9,337592.5],[223080.8,337524.5],[224296.5,339462.300000001],[227352.9,341035],[227601.2,342102.300000001],[228053.08,340881.359999999],[230783.3,341073.300000001],[234110.12,343899.390000001],[236547.484,347375.0045],[238352.02,347238.25],[242258.39,351024.52],[243595.136,356095.207],[243040.5,360026.5],[243673.5,360931.5],[244872,360769.5],[243893.67,359966.859999999],[244787.96,357578],[245745.23,359225.1],[245209.25,359104.73],[245410.13,361387.4],[247376.01,362693.460000001],[247989.33,361930.300000001],[247754.3005,363115.380100001],[250126.72,366054.380000001],[252277.39,367404.6],[253223.5,370358.279999999],[255558.3418,371634.994000001],[255696.6073,371710.5989],[258450.95,373216.699999999],[258959.5,372570.699999999],[259059.4,373177.300000001],[259510.3,372657.1],[260537.6,373113.199999999],[260869.39,371873.4],[266154.491,374090.418],[270868.2028,370393.0955],[270572.9967,368757.703600001],[268790.2001,366945.102399999],[268361.3992,364373.998400001],[265746.5028,362498.295299999],[264921.7988,360533.297800001],[264861.1976,360508.8048],[264110.6992,358421.802200001],[265257.8015,358156.598099999],[265248.3032,356615.099400001],[267034.101,355952.598999999],[266698.997,355103.902000001],[267631.0022,354236.5002],[266184.0022,350794.5955],[266891.2966,347769.701300001],[272722.5006,348715.2007],[273442.4016,347696.802200001],[272806.4023,345855.8992],[275922.5984,343818.5024],[276439.7039,342132.604900001],[278271.0969,340647.4001],[281220.8005,341679.204700001],[283585.3026,343908.196699999],[287115.7966,344602.398],[287818.5973,345721.997500001],[291721.801,347223.797599999],[292775.8991,347238.0035],[291987.5971,345511.097899999],[293783.2972,342301.9965],[297100.6975,342914.201199999],[299046.4,341945.398499999],[302217.5,344054.104900001],[303631.396,343576.001800001],[302812.7027,342811.2007],[302925.3962,341630.4987],[299853.8965,338404.902000001],[301591.8977,336876.0996],[299864.5986,334187.499199999],[300912.1996,331437.0965],[300262.8021,330803.4979],[298708.7977,328221.097100001],[294545.6025,326988.399900001],[294427.3024,326191.498],[293205.6976,326754.8968],[292459.0002,325250.897299999],[291623.7013,323040.200099999],[293187.0968,316840.504699999],[292090.2975,315446.9036],[291854.7032,313126.797800001],[288147.4021,311695.6974],[286291.8017,312015.2959],[284512.501,309522.5995],[284033.1001,310390.501],[282204.7001,310715.9978],[281128.497,309421.998199999],[277856.4033,310448.904300001],[275574.5002,307496.999299999],[275936.5986,305501.8004],[274829.5012,304147.4981],[275350.3005,301821.403899999],[273069.1972,301109.197799999],[273030.602,300059.098300001],[271886.2724,299361.645099999],[270319.28,299565],[269969.3733,299078.2535],[269747.291,298079.6621],[270876.7994,297590.9904],[269535.0719,297623.9923],[269194.2224,296801.102499999],[268763.46,296410.52],[268469.7,297338.4],[268600.7,297640.4],[267199.85,297674.560000001],[260096,295728.6],[256099.52,303191.92],[255972.57,303677.15],[258430.06,309911.02],[261039.5,311943],[261633.04,315051.73],[261488.03,313761.43],[263918.95,315568.279999999],[264215.49,314727.48],[265794.5,317237],[263496.73,317303.84],[262569.02,315656.699999999],[261026.73,315338.859999999],[255136.3,325580.9],[256402.7,327518.4],[255900.7,326357.800000001],[257359.68,327964.99],[258072.4,327538.369999999],[257620.75,328158.23],[256630.2,327616.75],[257398.38,329930.789999999],[255780.968,335075.885],[259760.476,335873.123],[259991.839,335675.748],[260985.06,336681.5],[259826.081,336007.966],[260656.855,337323.523],[260792.805,337521.433],[261648.7081,337382.3114],[262450.4013,338569.406500001]]],[[[212492.7003,321554.895199999],[210986.7976,320064.301899999],[211642.8983,322646.502800001],[212545.1966,322344.099300001],[212492.7003,321554.895199999]]]]},"properties":{"OBJECTID":362,"lad19cd":"W06000002","lad19nm":"Gwynedd","lad19nmw":"Gwynedd","bng_e":280555,"bng_n":334966,"long":-3.77715,"lat":52.89883,"GlobalID":"eab57109-ce70-4989-9fe5-40145bbf8ca9"}},{"type":"Feature","id":363,"geometry":{"type":"Polygon","coordinates":[[[299744.9106,380361.5462],[299763.4446,380323.5909],[300289.5726,379246.1458],[298631.3024,377347.704700001],[298806.1966,374337.0965],[297804.9989,373523.2995],[298234.3027,372574.201099999],[299381.1989,372685.8992],[302214.6966,370305.000700001],[301549.7984,365376.701400001],[302422.4969,364092.598999999],[297478.8984,361408.6972],[295471.3003,359174.796700001],[295934.7964,357738.5978],[292807.8982,355674.7985],[293381.301,354654.8005],[295304.7006,356415.296599999],[298588.997,355804.2015],[298948.8032,354300.301999999],[300503.0962,355124.2961],[300463.9981,353107.9033],[302046.0027,350881.7005],[300213.4966,349989.9958],[301084.6038,348698.995300001],[300737.1982,347827.3049],[302474.4985,345499.701099999],[302217.5,344054.104900001],[299046.4,341945.398499999],[297100.6975,342914.201199999],[293783.2972,342301.9965],[291987.5971,345511.097899999],[292775.8991,347238.0035],[291721.801,347223.797599999],[287818.5973,345721.997500001],[287115.7966,344602.398],[283585.3026,343908.196699999],[281220.8005,341679.204700001],[278271.0969,340647.4001],[276439.7039,342132.604900001],[275922.5984,343818.5024],[272806.4023,345855.8992],[273442.4016,347696.802200001],[272722.5006,348715.2007],[266891.2966,347769.701300001],[266184.0022,350794.5955],[267631.0022,354236.5002],[266698.997,355103.902000001],[267034.101,355952.598999999],[265248.3032,356615.099400001],[265257.8015,358156.598099999],[264110.6992,358421.802200001],[264861.1976,360508.8048],[264921.7988,360533.297800001],[265746.5028,362498.295299999],[268361.3992,364373.998400001],[268790.2001,366945.102399999],[270572.9967,368757.703600001],[270868.2028,370393.0955],[266154.491,374090.418],[267788.11,375441.75],[277356.35,379195.25],[278555.05,377488.880000001],[277228.45,381811.5],[274993.1,384150.699999999],[278049,383911.9],[278951.38,382192.949999999],[281875.9202,382732.937000001],[282532.55,381663.5],[284235.76,381097.85],[284664.412,379554.489],[286327.15,378777.199999999],[293057.5,378298.199999999],[299407.95,381051.6],[299587.3724,380684.165100001],[299744.9106,380361.5462]]]},"properties":{"OBJECTID":363,"lad19cd":"W06000003","lad19nm":"Conwy","lad19nmw":"Conwy","bng_e":283293,"bng_n":362563,"long":-3.74646,"lat":53.147388,"GlobalID":"ba3450f5-c1f4-4c3f-8982-b922a023f7b9"}},{"type":"Feature","id":364,"geometry":{"type":"Polygon","coordinates":[[[308927.3966,382801.8035],[307622.0963,381598.198000001],[307289.4988,382021.9967],[306785.6019,380571.202],[308074.9975,380765.296499999],[307176.0962,379211.5012],[308434.6965,378068.2985],[309719.2028,378668.696599999],[309624.599,377185.801100001],[311430.0036,375976.6972],[309244.5017,373760.601500001],[311074.897,371898.9044],[313027.3028,371446.8039],[311804.1974,370076.696],[312136.3002,368911.6995],[312991.7995,368677.4966],[312738.1979,367534.103800001],[314874.6994,365459.897600001],[314465.1012,364262.000499999],[315096.3019,363012.898],[316895.2011,362406.2017],[319311.8038,363204.403200001],[321031.5009,362529.5964],[321335.4963,358301.796599999],[323378.9028,356918.2026],[322967.2021,355702.3007],[324414.2021,353387.703199999],[323145.6995,350229.997099999],[324243.7025,347994.8969],[322999.6959,345199.697000001],[324870.5003,343720.100500001],[324738.604,342744.6997],[325881.6004,342350.002699999],[325465.0022,341913.197699999],[326878.0984,342139.7029],[326741.1975,341324.6962],[325490.801,341060.1019],[326425.1972,340770.105],[319596.3985,339205.6028],[316957.5997,340007.703199999],[312913.0015,339183.899],[311784.7968,339631.101],[311080.0007,337979.7037],[309111.7974,336917.897600001],[309398.5029,336284.9988],[307590.0972,333662.1996],[306625.9033,331857.6961],[301316.3972,330406.2016],[300262.8021,330803.4979],[300912.1996,331437.0965],[299864.5986,334187.499199999],[301591.8977,336876.0996],[299853.8965,338404.902000001],[302925.3962,341630.4987],[302812.7027,342811.2007],[303631.396,343576.001800001],[302217.5,344054.104900001],[302474.4985,345499.701099999],[300737.1982,347827.3049],[301084.6038,348698.995300001],[300213.4966,349989.9958],[302046.0027,350881.7005],[300463.9981,353107.9033],[300503.0962,355124.2961],[298948.8032,354300.301999999],[298588.997,355804.2015],[295304.7006,356415.296599999],[293381.301,354654.8005],[292807.8982,355674.7985],[295934.7964,357738.5978],[295471.3003,359174.796700001],[297478.8984,361408.6972],[302422.4969,364092.598999999],[301549.7984,365376.701400001],[302214.6966,370305.000700001],[299381.1989,372685.8992],[298234.3027,372574.201099999],[297804.9989,373523.2995],[298806.1966,374337.0965],[298631.3024,377347.704700001],[300289.5726,379246.1458],[299763.4446,380323.5909],[299744.9106,380361.5462],[299910.4179,381081.1755],[299922.8801,381112.5931],[301492.05,382294.1],[309342.9307,384772.844799999],[308927.3966,382801.8035]]]},"properties":{"OBJECTID":364,"lad19cd":"W06000004","lad19nm":"Denbighshire","lad19nmw":"Sir Ddinbych","bng_e":309843,"bng_n":355416,"long":-3.34761,"lat":53.088329,"GlobalID":"02db471c-4d9e-4e08-bbed-38dc48209723"}},{"type":"Feature","id":365,"geometry":{"type":"MultiPolygon","coordinates":[[[[312716.4545,383625.7212],[313635.742,382469.629000001],[315285.144,381169.419],[316077.592,381765.529999999],[316268.6,380472],[320030.389,378077.363],[326089.131,372115.614],[328922.875,370539.012499999],[327050.093,372535.698000001],[327690.745,372015.256999999],[327405.684,372520.736],[327958.3286,372508.566199999],[328223.9809,372285.870200001],[328533.438,371461.643999999],[328344.067,372099.888],[329412.415,372602.967],[328435.099,372200.782],[326090.9,373972.908],[327674.0278,373840.767000001],[327869.9007,373720.307399999],[327891.6104,373707.426999999],[331672.6015,372855.6006],[336685.7965,368665.6],[338592.4073,365488.9263],[338584.7903,365405.293400001],[336983.501,363539.997099999],[333553.7039,362356.7958],[334590.8007,361944.8038],[335612.9986,359943.296700001],[333398.2021,359659.597899999],[331195.097,356751.100400001],[331284.5971,355576.796599999],[330789.4977,356009.2028],[329176.5989,354757.4011],[328347.2034,355245.8013],[324414.2021,353387.703199999],[322967.2021,355702.3007],[323378.9028,356918.2026],[321335.4963,358301.796599999],[321031.5009,362529.5964],[319311.8038,363204.403200001],[316895.2011,362406.2017],[315096.3019,363012.898],[314465.1012,364262.000499999],[314874.6994,365459.897600001],[312738.1979,367534.103800001],[312991.7995,368677.4966],[312136.3002,368911.6995],[311804.1974,370076.696],[313027.3028,371446.8039],[311074.897,371898.9044],[309244.5017,373760.601500001],[311430.0036,375976.6972],[309624.599,377185.801100001],[309719.2028,378668.696599999],[308434.6965,378068.2985],[307176.0962,379211.5012],[308074.9975,380765.296499999],[306785.6019,380571.202],[307289.4988,382021.9967],[307622.0963,381598.198000001],[308927.3966,382801.8035],[309342.9307,384772.844799999],[312850.218,385098.096999999],[312716.4545,383625.7212]]],[[[325905.807,374538.564999999],[326616.659,375034.4682],[327023.9248,374461.4527],[325905.807,374538.564999999]]],[[[326256.5298,375568.8619],[326616.659,375034.4682],[325973.485,374948.903999999],[326256.5298,375568.8619]]]]},"properties":{"OBJECTID":365,"lad19cd":"W06000005","lad19nm":"Flintshire","lad19nmw":"Sir y Fflint","bng_e":321134,"bng_n":369280,"long":-3.18248,"lat":53.21471,"GlobalID":"854a9a51-7e26-4685-92c9-19fce3c168f1"}},{"type":"Feature","id":366,"geometry":{"type":"Polygon","coordinates":[[[324414.2021,353387.703199999],[328347.2034,355245.8013],[329176.5989,354757.4011],[330789.4977,356009.2028],[331284.5971,355576.796599999],[331195.097,356751.100400001],[333398.2021,359659.597899999],[335612.9986,359943.296700001],[339169.2996,357658.300799999],[341131.5994,358631.202299999],[339686.5041,355359.798699999],[341436.8975,354167.899900001],[341030.4985,353379.5955],[342363.2961,351835.5975],[341618.0003,351617.1],[342504.501,351121.301999999],[341763.402,350140.602700001],[342718.1965,349227.404100001],[342341.6034,347629.001599999],[343473.8976,347039.2004],[343988.3977,344750.3956],[346172.5968,343884.803400001],[348530.7008,344444.903100001],[349080.2011,343500.0035],[351298.6997,343127.000299999],[350715.9965,341650.302999999],[351448.1002,340216.103499999],[351125.8008,336679.2959],[349317.5022,336623.0021],[346355.901,333443.202299999],[343580.3991,338688.8007],[340728.3005,339169.802999999],[340474.8968,339828.304500001],[337669.6961,338322.795499999],[335609.9974,339739.5999],[334614.5959,341735.0987],[334130.0997,340652.898499999],[332269.6016,340345.0966],[330518.4001,337397.4004],[327726.5977,336993.1961],[326427.9016,337547.1975],[325141.3011,333527.698100001],[322891.6032,333139.2992],[321104.0986,334437.297700001],[319004.4031,333532.296800001],[317095.2015,330658.599300001],[315155.7983,330647.502499999],[309565.6963,333634.497500001],[307590.0972,333662.1996],[309398.5029,336284.9988],[309111.7974,336917.897600001],[311080.0007,337979.7037],[311784.7968,339631.101],[312913.0015,339183.899],[316957.5997,340007.703199999],[319596.3985,339205.6028],[326425.1972,340770.105],[325490.801,341060.1019],[326741.1975,341324.6962],[326878.0984,342139.7029],[325465.0022,341913.197699999],[325881.6004,342350.002699999],[324738.604,342744.6997],[324870.5003,343720.100500001],[322999.6959,345199.697000001],[324243.7025,347994.8969],[323145.6995,350229.997099999],[324414.2021,353387.703199999]]]},"properties":{"OBJECTID":366,"lad19cd":"W06000006","lad19nm":"Wrexham","lad19nmw":"Wrecsam","bng_e":333523,"bng_n":345387,"long":-2.99203,"lat":53.001671,"GlobalID":"f607a81f-07b1-4b1e-a1ee-3e799959ee58"}},{"type":"Feature","id":367,"geometry":{"type":"Polygon","coordinates":[[[270876.7994,297590.9904],[274047.6963,297512.997199999],[275281.8005,296425.2985],[274957.5965,292057.998600001],[276050.8009,288998.0045],[277004.5978,288319.298800001],[282457.3041,291265.6954],[281588.3983,287730.2974],[280106.2991,287173.196900001],[279678.3969,284162.0988],[283650.9993,280861.8035],[284539.7014,275674.398399999],[285341.0966,275799.4026],[287148.0018,273468.399800001],[283933.104,272853.7958],[281152.3005,270261.697799999],[282298.4959,268927.7996],[281892.2041,267210.201199999],[283617.3017,265361.3005],[281941.0973,265111.0021],[280401.0023,262956.898700001],[281016.1004,262334.8968],[280334.7038,256933.0031],[280877.402,250430.704299999],[279749.1973,249226.598999999],[277767.9998,246640.1993],[277232.9036,248053.4048],[272807.301,250953.4047],[269552.0025,248544.1043],[267295.8982,250680.6028],[261855.6997,246232.1961],[259170.3987,248170.101399999],[256240.4998,246270.895],[253224.3987,246159.796800001],[252189.1983,245369.303099999],[252956.0962,244668.003900001],[252183.8967,244736.904100001],[251757.5034,243296.296499999],[249856.8024,242370.8014],[248881.5024,242761.7995],[246835.5977,240112.9977],[243547.896,240392.797599999],[243149.7008,241849.6006],[242315.8036,241748.7995],[241946.4991,240310.101299999],[239970.496,240675.5967],[238829.7011,239090.100500001],[236526.501,240641.896299999],[235550.4012,240074.398800001],[234736.2014,240903.101600001],[232164.4019,241246.103399999],[231112.497,240434.695599999],[229528.2992,241883.900800001],[228508.6985,241197.0974],[226207.304,241474.498],[225863.5015,242351.097100001],[225568.7983,241483.795299999],[224550.0962,241462.001599999],[223889.403,243171.302300001],[221330.9028,243628.101500001],[220126.2004,242819.403000001],[219555.1276,243308.1741],[219322.449,243507.319599999],[218947.6147,245336.713500001],[218888.5064,245338.171599999],[218670.898,245327.2596],[217217.1038,243272.0035],[216211.8989,244671.902799999],[217095.1016,245098.3007],[216949.3778,245998.8386],[216248.2663,246332.1799],[216420.1037,247184.689300001],[215934.6427,248272.375499999],[215979.73,248498.199999999],[216023.6091,248990.9538],[216232.47,251336.42],[219378.4155,252197.651900001],[223342.9426,251997.996400001],[224433.98,252690.59],[225871.01,251387.75],[227723.79,251511.57],[231078.02,254211.93],[231398.14,255424.529999999],[232232.5,254986.9],[234021.24,256106.01],[237664.0335,260166.602399999],[238742.41,260478.289999999],[239495.24,259466.470000001],[241254.83,259812.880000001],[249447.77,265127.43],[254222.03,271533.970000001],[257784.6,280814],[257898.6,280843.199999999],[257825.72,281604.390000001],[259589.68,287691.810000001],[260764.52,289047.888],[260617.9,294704.300000001],[261599.78,294027.65],[261758.98,294054.220000001],[264336,294648.6],[265361.83,292931.91],[264642.8,294870],[266689.31,294356.83],[265499.4,295004.5],[267490.5,297080.6],[267935.8,296654],[268469.7,297338.4],[268763.46,296410.52],[269194.2224,296801.102499999],[269535.0719,297623.9923],[270876.7994,297590.9904]]]},"properties":{"OBJECTID":367,"lad19cd":"W06000008","lad19nm":"Ceredigion","lad19nmw":"Ceredigion","bng_e":267127,"bng_n":268437,"long":-3.94993,"lat":52.297951,"GlobalID":"b39b9180-dbbc-4c60-83b7-281187838807"}},{"type":"Feature","id":368,"geometry":{"type":"MultiPolygon","coordinates":[[[[216211.8989,244671.902799999],[217217.1038,243272.0035],[218670.898,245327.2596],[218888.5064,245338.171599999],[218947.6147,245336.713500001],[219322.449,243507.319599999],[219555.1276,243308.1741],[220126.2004,242819.403000001],[221330.9028,243628.101500001],[223889.403,243171.302300001],[224550.0962,241462.001599999],[225369.8037,238686.696],[226944.0992,237762.7005],[227618.0999,235920.3978],[229321.7027,235168.203199999],[228791.7019,232138.9003],[225459.4028,231724.3989],[222879.6963,229072.2981],[221384.8008,230129.295499999],[218844.2996,227734.0012],[216688.0017,229536.495200001],[213482.0993,227618.204299999],[213405.8985,225778.5009],[212733.2004,225409.4966],[213832.498,224609.095699999],[214579.7973,221323.596100001],[213529.3023,219987.1987],[213795.6013,219070.101199999],[217791.6031,218057.0012],[219700.4997,215791.899599999],[217736.6993,214266.1963],[218409.6035,212876.704],[217696.0017,211956.997300001],[219137.7001,210970.1998],[218296.9818,207334.485099999],[215266.46,206549.35],[213805.61,204996.109999999],[214870.2,203237.630000001],[213653.34,202058.73],[213282.13,200764.5],[213860.47,200455.449999999],[212359.23,199044.189999999],[212547.35,198254.210000001],[209393.91,198587.27],[209416.34,197508.880000001],[207944.7,197389.1],[207631.97,196565.800000001],[205482.3,197784.09],[202176.83,198132.68],[202072.3,197203.23],[199469.91,196017.109999999],[199548.2,194117.98],[197715.09,194336.380000001],[197621.39,192755.5],[195895.56,192803.630000001],[194079.39,194361.529999999],[191846.28,194255.9],[188314.93,195742.720000001],[189051.23,197866.050000001],[188122.89,200516.300000001],[184128.8,201555.1],[184019.62,202720.92],[185497.6,203825.6],[187512.64,203283.08],[186628.37,202952.380000001],[187580.55,202150.07],[189463,201892.15],[189224.77,203865.109999999],[190862.43,203926.119999999],[192213.98,203011.359999999],[194034.83,203138.619999999],[194525.027,201979.006999999],[194341.22,203014.300000001],[196734.9,204822.33],[193823.4,204287.050000001],[191473,205197.949999999],[191908.94,206348.91],[191259.4,205346],[186948.35,205344.050000001],[185637.69,207326.16],[186553.48,209167.289999999],[185688.32,208714.99],[184830.98,205888.970000001],[184265.34,206699.48],[182036.04,206282.15],[181194.41,208339.24],[181179.79,205645.439999999],[182464.22,205098.48],[181873.39,205052.16],[181863.01,203521.43],[180562.37,202723.939999999],[179732.89,203830.140000001],[179900.46,205933.449999999],[178776.36,206304.550000001],[178241.12,207577.439999999],[176380.4,207949.1],[175429.39,209397.43],[178387.51,208790.52],[179023.52,211175.050000001],[180192.28,210907.199999999],[182062.5,212886.5],[184921.55,212332.050000001],[185703.89,212958.060000001],[186202.12,216932.98],[185007.2,221647],[184055.37,223024.449999999],[181025.59,222836.789999999],[181199.56,223519.58],[180158.42,223558.58],[180556.35,224287.822000001],[179906.7,223580.699999999],[176667.78,224417.449999999],[174121.5415,224166.4506],[173129.19,223154.49],[173068.08,223754.119999999],[171513.3,223325.9],[172439.27,224749.380000001],[171884.47,225878.16],[173322.71,226774.84],[172829.83,227949.640000001],[172077.8,227799.9],[172732.05,228470.720000001],[175953.8,229054.1],[177601.7,230613.9],[179409.9,230837.5],[180442.59,232839.18],[183341.16,232454.800000001],[183904.38,233900.619999999],[186628.23,233748.42],[186858.37,234645.539999999],[188125.7,234470.300000001],[188610.5,236356.6],[187568.73,237322.380000001],[189201.2,238404.25],[188084.4,239717.279999999],[189433,241328.800000001],[192834.89,240077.470000001],[194845.39,240626.960000001],[195142.4,239503.4],[196282.28,239083.85],[195418.28,239340.279999999],[194654.8,238188.4],[195494,238274.67],[194871.47,237804.369999999],[196252.14,237105.17],[196147.24,237843.529999999],[199719.24,238653.9],[200494.187,241384.104499999],[202559.6,239535],[206985.14,239305.779999999],[205161.24,240070.57],[205429.3,241024.800000001],[204775.1,241528.9],[205505,242905.6],[208727.8,243685.1],[211024.5,245636.699999999],[212323,248022],[211794,248637.699999999],[213081.4,250135.300000001],[215979.73,248498.199999999],[215934.6427,248272.375499999],[216420.1037,247184.689300001],[216248.2663,246332.1799],[216949.3778,245998.8386],[217095.1016,245098.3007],[216211.8989,244671.902799999]]],[[[172309.9003,210292.603700001],[174360.1996,209054.4981],[173585.0979,208764.4012],[173531.1999,209322.2015],[172686.9964,208421.3993],[171483.102,208966.0034],[171352.896,209760.3961],[172309.9003,210292.603700001]]],[[[170907.2999,225144.9023],[170541.1038,222493.201300001],[169214.6961,223670.0045],[170314.7027,225331.298900001],[170907.2999,225144.9023]]],[[[215012.696,196601.602700001],[214331.3984,195756.9045],[212996.5972,196041.0032],[212620.3008,197185.295600001],[213126.3992,197177.697799999],[215012.696,196601.602700001]]],[[[174109.6982,204752.5995],[172849.3993,204521.9955],[173878.0037,205602.5962],[174515.0006,205388.897399999],[174109.6982,204752.5995]]]]},"properties":{"OBJECTID":368,"lad19cd":"W06000009","lad19nm":"Pembrokeshire","lad19nmw":"Sir Benfro","bng_e":199821,"bng_n":221392,"long":-4.90818,"lat":51.855129,"GlobalID":"97575c31-240b-4eca-bdad-08e5ba6dedfd"}},{"type":"Feature","id":369,"geometry":{"type":"Polygon","coordinates":[[[279749.1973,249226.598999999],[282307.1038,247970.998400001],[282701.597,246567.3002],[281664.2034,245369.203199999],[282031.8012,244384.705],[285838.2986,243081.2981],[284986.3034,241577.898399999],[287119.0039,239100.797499999],[285635.2969,237648.403200001],[285461.4003,235291.297900001],[282523.6026,230648.9968],[283258.6993,228874.704600001],[281800.7993,228377.397],[281267.0965,224963.1043],[282206.7037,224431.4965],[282146.8033,222339.7952],[277988.5964,217865.596000001],[275483.4995,211465.298],[274703.5991,213086.6039],[271494.3987,214057.7959],[269101.8964,213372.302200001],[270282.9024,211591.6019],[269875.4975,209475.897500001],[267740.6038,210255.304400001],[266481.6984,209849.500499999],[264479.6986,209051.698899999],[262123.1035,210278.297800001],[261964.4026,208998.6041],[259612.9029,206062.104699999],[258944.0965,206133.7042],[258489.9008,203467.497400001],[258863.9493,202859.9421],[258033.0008,203608.397],[258208.0022,202235.5],[256920.7008,202066.1985],[257201.7997,201123.498299999],[256206.4971,200945.499299999],[256225.6,198817.6],[256182.96,199399.27],[255598,199059.300000001],[256124.71,198175.689999999],[252803.9,197608.9],[252566.1,198443.6],[251635.65,197280.24],[250183.24,198367.699999999],[250170.7991,200231.8036],[250017.5976,198524.202400001],[249220.0034,200250.3983],[246947.2028,200829.602499999],[241827.696,200056.603700001],[243535.2976,199597.395199999],[241646.7004,199027.2984],[237797.5019,202205.5986],[235748.0023,206394.0996],[237079.4972,206145.2009],[236890.8007,205525.498299999],[237286.5966,206072.401699999],[237330.2323,205453.295],[237348.5006,205194.1031],[238787.1978,205289.4958],[238696.7989,204670.603],[239591.7014,205375.101299999],[239658.7007,204537.101199999],[239736.3032,205432.8048],[240195.8994,204812.202500001],[240209.3966,205596.298],[240553.0013,205050.1044],[241111.0023,205553.500299999],[239538.0013,206245.102299999],[241614.5034,207291.002900001],[239775.896,206526.6017],[236761.14,207004.789999999],[236094.7,208802.66],[236899.21,212484.289999999],[239854.36,213985],[239684.97,213971.550000001],[237116.7,213514.300000001],[234189.52,209243.49],[231128.78,210774.460000001],[230168.03,210696.34],[230395.26,209724.35],[233182.63,207942.710000001],[232760.08,207449.449999999],[229995.2,206534.5],[223420.5,207907.43],[222032,207098.15],[218296.9818,207334.485099999],[219137.7001,210970.1998],[217696.0017,211956.997300001],[218409.6035,212876.704],[217736.6993,214266.1963],[219700.4997,215791.899599999],[217791.6031,218057.0012],[213795.6013,219070.101199999],[213529.3023,219987.1987],[214579.7973,221323.596100001],[213832.498,224609.095699999],[212733.2004,225409.4966],[213405.8985,225778.5009],[213482.0993,227618.204299999],[216688.0017,229536.495200001],[218844.2996,227734.0012],[221384.8008,230129.295499999],[222879.6963,229072.2981],[225459.4028,231724.3989],[228791.7019,232138.9003],[229321.7027,235168.203199999],[227618.0999,235920.3978],[226944.0992,237762.7005],[225369.8037,238686.696],[224550.0962,241462.001599999],[225568.7983,241483.795299999],[225863.5015,242351.097100001],[226207.304,241474.498],[228508.6985,241197.0974],[229528.2992,241883.900800001],[231112.497,240434.695599999],[232164.4019,241246.103399999],[234736.2014,240903.101600001],[235550.4012,240074.398800001],[236526.501,240641.896299999],[238829.7011,239090.100500001],[239970.496,240675.5967],[241946.4991,240310.101299999],[242315.8036,241748.7995],[243149.7008,241849.6006],[243547.896,240392.797599999],[246835.5977,240112.9977],[248881.5024,242761.7995],[249856.8024,242370.8014],[251757.5034,243296.296499999],[252183.8967,244736.904100001],[252956.0962,244668.003900001],[252189.1983,245369.303099999],[253224.3987,246159.796800001],[256240.4998,246270.895],[259170.3987,248170.101399999],[261855.6997,246232.1961],[267295.8982,250680.6028],[269552.0025,248544.1043],[272807.301,250953.4047],[277232.9036,248053.4048],[277767.9998,246640.1993],[279749.1973,249226.598999999]]]},"properties":{"OBJECTID":369,"lad19cd":"W06000010","lad19nm":"Carmarthenshire","lad19nmw":"Sir Gaerfyrddin","bng_e":247954,"bng_n":224133,"long":-4.2111,"lat":51.894951,"GlobalID":"b0f83b29-0f7d-49da-a0f1-cc734687e067"}},{"type":"Feature","id":370,"geometry":{"type":"Polygon","coordinates":[[[266528.6309,192275.7289],[264500,192189.4],[261997.35,190756.1],[261477.75,188693.35],[263110.7533,187393.362400001],[262795.75,186953.35],[260750.65,187391.5],[259780.58,186861.02],[259062.94,187655.199999999],[256988.2,186283.1],[253772.94,187787.720000001],[254325.4029,188642.601],[250620.42,186989.439999999],[250818.2,184648.789999999],[247915.67,185546.75],[246770.57,184344.09],[242137.2,187197],[240108.87,187429.640000001],[241482.79,188870.08],[240200.0962,192613.304400001],[242268.1966,193248.8024],[244740.2968,196698.095100001],[245771.8034,196682.8994],[244946.2007,196554.0963],[245619.5996,196076.403100001],[244635.197,193406.7972],[245601.5017,194881.395099999],[245459.7031,193923.1994],[245843.4035,194746.7037],[246156.8972,193691.795600001],[246060.397,194280.2972],[246271.967,194216.9091],[247400.4008,193148.101299999],[246912.4994,194025.000299999],[246367.0862,194188.410599999],[246115.4988,194441.700999999],[246481.497,194859.601399999],[247196.5005,194101.2984],[246624.1547,195301.1808],[248761.9985,194252.495100001],[247956.8023,193787.9981],[248630.3991,193171.004699999],[248360.0023,193977.8038],[250183.6037,194372.8007],[249637.8961,193048.0999],[250656.2023,193920.4002],[250303.6023,194345.6985],[250883.6011,194171.7982],[250291.9026,194370.4014],[250955.1023,194308.099199999],[250717.1993,195040.5995],[252475.6977,194786.202400001],[252197.6,195865.803300001],[255694.0996,196416.9956],[253666.8039,196112.2028],[254448.7985,196972.6965],[258389.2039,197199.4016],[256143.6038,197975.2995],[257483.5004,199112.2041],[256494.8022,200185.596799999],[257036.2966,199923.7018],[258331.7029,202114.104800001],[258201.4969,203125.7952],[258886.7751,202809.5199],[258913.2023,202835.7982],[258489.9008,203467.497400001],[258944.0965,206133.7042],[259612.9029,206062.104699999],[261964.4026,208998.6041],[262123.1035,210278.297800001],[264479.6986,209051.698899999],[266481.6984,209849.500499999],[269700.1992,206174.102600001],[270461.5976,202245.6971],[272742.5031,201454.103700001],[270382.8985,197082.805],[269507.8997,192653.2686],[266657.7964,191484.7974],[266523.89,192639.42],[266553.8,192276.800000001],[266536.25,191691.25],[266528.6309,192275.7289]]]},"properties":{"OBJECTID":370,"lad19cd":"W06000011","lad19nm":"Swansea","lad19nmw":"Abertawe","bng_e":264022,"bng_n":197308,"long":-3.96723,"lat":51.658058,"GlobalID":"6cc46d3a-d7da-448f-93a0-5192ebb99a31"}},{"type":"Feature","id":371,"geometry":{"type":"Polygon","coordinates":[[[266481.6984,209849.500499999],[267740.6038,210255.304400001],[269875.4975,209475.897500001],[270282.9024,211591.6019],[269101.8964,213372.302200001],[271494.3987,214057.7959],[274703.5991,213086.6039],[275483.4995,211465.298],[277901.6027,207685.9998],[279570.8978,207520.0973],[280885.8037,210027.399599999],[284883.6029,211157.2962],[289467.5024,209568.800899999],[290258.2037,207411.398399999],[291042.5976,203307.6031],[290193.4965,199030.397500001],[291929.6013,195233.6043],[289668.5005,194419.5973],[284834.7015,194908.497400001],[283746.9965,192792.603],[283969.3988,190496.8002],[282979.0021,190763.8038],[282726.7032,189740.196799999],[285363.0038,186404.9015],[285206.496,183553.197799999],[283039.1003,183409.4989],[281949.8041,182292.1987],[277821.403,183429.803099999],[276090.4756,187166.3309],[275539.75,187131.4],[274153.45,187726.75],[275493.4382,187339.065400001],[275225.2282,188541.739],[274193.15,188315.6],[276053.8,189756.300000001],[274561.55,188738.199999999],[271950.4,192249.1],[272937.4,193247],[269507.8997,192653.2686],[270382.8985,197082.805],[272742.5031,201454.103700001],[270461.5976,202245.6971],[269700.1992,206174.102600001],[266481.6984,209849.500499999]]]},"properties":{"OBJECTID":371,"lad19cd":"W06000012","lad19nm":"Neath Port Talbot","lad19nmw":"Castell-nedd Port Talbot","bng_e":279261,"bng_n":195412,"long":-3.74638,"lat":51.644501,"GlobalID":"6a385f1b-6ef4-44b3-a4f7-ff926fe1eaa7"}},{"type":"Feature","id":372,"geometry":{"type":"Polygon","coordinates":[[[277821.403,183429.803099999],[281949.8041,182292.1987],[283039.1003,183409.4989],[285206.496,183553.197799999],[285363.0038,186404.9015],[282726.7032,189740.196799999],[282979.0021,190763.8038],[283969.3988,190496.8002],[283746.9965,192792.603],[284834.7015,194908.497400001],[289668.5005,194419.5973],[291929.6013,195233.6043],[293702.6027,195045.598099999],[295553.7014,192114.7971],[298111.6986,190185.7992],[297794.7008,188007.8027],[296928.2026,187202.803099999],[298640.9986,183738.4048],[296179.5015,180365.100400001],[293926.1016,179156.996200001],[294046.9989,178300.101500001],[293218.9969,178022.301000001],[293655.2019,176964.503799999],[292160.1992,178238.4991],[287617.3273,176539.7446],[286302.6018,175824.753799999],[284897.6662,176981.8376],[283427.6348,176251.3696],[282122.1034,176819.568600001],[282046.0985,176263.9518],[280597.8496,177040.5338],[278677.1,179797.1],[277821.403,183429.803099999]]]},"properties":{"OBJECTID":372,"lad19cd":"W06000013","lad19nm":"Bridgend","lad19nmw":"Pen-y-bont ar Ogwr","bng_e":288231,"bng_n":185870,"long":-3.61375,"lat":51.5606,"GlobalID":"d0cdf53e-0947-4271-8d4f-7b34458ed6a2"}},{"type":"Feature","id":373,"geometry":{"type":"Polygon","coordinates":[[[296179.5015,180365.100400001],[298415.2983,180560.904300001],[302165.9024,179592.501499999],[302783.9027,178712.5034],[304428.0998,180210.9045],[307396.396,179679.0967],[309971.7985,178685.801100001],[311801.1962,174775.600299999],[313398.2975,174692.7041],[315390.9969,175820.201300001],[317632.5981,172769.604499999],[319084.0812,172554.331],[318737.8216,168123.9146],[317478.4296,167453.6667],[314944.8436,167865.941500001],[312372.05,166947.65],[312017.3282,166147.309900001],[308929.3134,166783.9186],[306676.9687,165523.696799999],[302962.662,165778.647],[303036.42,167460.52],[302906.4229,165738.686100001],[302276.7738,165599.169399999],[301618.8093,166365.5648],[291652.0973,168075.2983],[289117.06,172546.529999999],[286099.24,174977.08],[287617.3273,176539.7446],[292160.1992,178238.4991],[293655.2019,176964.503799999],[293218.9969,178022.301000001],[294046.9989,178300.101500001],[293926.1016,179156.996200001],[296179.5015,180365.100400001]]]},"properties":{"OBJECTID":373,"lad19cd":"W06000014","lad19nm":"Vale of Glamorgan","lad19nmw":"Bro Morgannwg","bng_e":302946,"bng_n":173081,"long":-3.39803,"lat":51.44836,"GlobalID":"5af71ddd-1f04-412b-929e-6b676f81237e"}},{"type":"Feature","id":374,"geometry":{"type":"Polygon","coordinates":[[[314283.3966,184472.204700001],[319425.1981,185266.8972],[320183.1995,184268.902899999],[320750.6988,184671.197799999],[322508.3975,183565.0044],[325932.9011,180691.4969],[324425.3,179557.8014],[324944.5349,178663.7623],[321957.25,177329.35],[320864.95,179878.949999999],[322081.4193,176942.5889],[319193.96,172506.5107],[319176.8562,172512.853599999],[319084.0812,172554.331],[317632.5981,172769.604499999],[315390.9969,175820.201300001],[313398.2975,174692.7041],[311801.1962,174775.600299999],[309971.7985,178685.801100001],[307396.396,179679.0967],[307044.604,182657.1043],[308241.1025,182706.100299999],[309237.9963,184151.796399999],[311510.698,184437.104800001],[312599.5985,182852.7983],[314283.3966,184472.204700001]]]},"properties":{"OBJECTID":374,"lad19cd":"W06000015","lad19nm":"Cardiff","lad19nmw":"Caerdydd","bng_e":315273,"bng_n":178887,"long":-3.22208,"lat":51.502541,"GlobalID":"f24327f1-590c-4673-b6c2-cf489ab1ce64"}},{"type":"Feature","id":375,"geometry":{"type":"Polygon","coordinates":[[[290258.2037,207411.398399999],[292053.1041,208515.5024],[292481.6988,209911.7027],[294051.7976,209731.704299999],[293785.2018,210668.0962],[298316.5967,213345.4998],[298790.597,215453.5964],[299479.2987,215620.498600001],[300546.8032,214081.2992],[300743.5963,211776.399],[302340.4998,208560.2996],[301573.7998,207609.6017],[299808.5982,207996.401000001],[303388.9995,203055.7952],[304747.497,202265.4015],[308011.7991,196140.704600001],[309209.0974,196030.0963],[309183.9005,194804.097200001],[310638.9971,188929.898700001],[312114.6982,187983.399599999],[312565.2001,186018.302200001],[313977.9006,185910.8029],[314283.3966,184472.204700001],[312599.5985,182852.7983],[311510.698,184437.104800001],[309237.9963,184151.796399999],[308241.1025,182706.100299999],[307044.604,182657.1043],[307396.396,179679.0967],[304428.0998,180210.9045],[302783.9027,178712.5034],[302165.9024,179592.501499999],[298415.2983,180560.904300001],[296179.5015,180365.100400001],[298640.9986,183738.4048],[296928.2026,187202.803099999],[297794.7008,188007.8027],[298111.6986,190185.7992],[295553.7014,192114.7971],[293702.6027,195045.598099999],[291929.6013,195233.6043],[290193.4965,199030.397500001],[291042.5976,203307.6031],[290258.2037,207411.398399999]]]},"properties":{"OBJECTID":375,"lad19cd":"W06000016","lad19nm":"Rhondda Cynon Taf","lad19nmw":"Rhondda Cynon Taf","bng_e":302237,"bng_n":192395,"long":-3.41359,"lat":51.621849,"GlobalID":"0992bc98-f3ef-4ae4-bb42-376af4b66b1e"}},{"type":"Feature","id":376,"geometry":{"type":"Polygon","coordinates":[[[309746.1972,211439.395400001],[310360.8005,211948.399700001],[312307.4017,209522.903999999],[312652.3998,207493.295],[315627.2014,203416.402000001],[315558.6025,204090.499],[316470.7041,204248.1039],[315892.8985,205857.103399999],[316558.3986,206403.7969],[319446.998,201885.600199999],[320206.3022,202326.1041],[322060.4021,200273.7016],[321442.3028,198742],[322947.3975,199706.204],[323910.198,198722.5956],[325133.897,199401.4013],[325992.8015,197812.2962],[325737.3035,195374.6039],[323782.3996,193369.298],[325199.7998,191733.0963],[326369.1968,189991.7048],[324328.6019,188627.5953],[323547.2999,189286.3967],[322214.0982,188343.0967],[322367.9016,187355.2994],[324536.699,186162.6008],[322508.3975,183565.0044],[320750.6988,184671.197799999],[320183.1995,184268.902899999],[319425.1981,185266.8972],[314283.3966,184472.204700001],[313977.9006,185910.8029],[312565.2001,186018.302200001],[312114.6982,187983.399599999],[310638.9971,188929.898700001],[309183.9005,194804.097200001],[310453.5987,196941.195499999],[311195.4975,196276.695699999],[311269.5959,198377.0045],[312022.8977,198943.102499999],[310283.5031,204978.7048],[309247.404,204496.003],[309645.896,205294.4044],[308367.1035,207498.4035],[308057.3036,211036.2009],[309746.1972,211439.395400001]]]},"properties":{"OBJECTID":376,"lad19cd":"W06000018","lad19nm":"Caerphilly","lad19nmw":"Caerffili","bng_e":317245,"bng_n":195259,"long":-3.19753,"lat":51.650009,"GlobalID":"19ae02d6-2493-4d95-9691-3653528dfed0"}},{"type":"Feature","id":377,"geometry":{"type":"Polygon","coordinates":[[[309746.1972,211439.395400001],[309873.8967,212753.2993],[311645.8015,214875.102],[314698.4035,213361.1953],[320318.097,213680.0041],[321092.5968,212404.699100001],[320316.7036,211459.399700001],[321874.5007,211070.201099999],[321191.3974,210334.501700001],[323757.4995,207530.704299999],[323124.6003,207111.404300001],[323695.6038,203000.101199999],[322947.3975,199706.204],[321442.3028,198742],[322060.4021,200273.7016],[320206.3022,202326.1041],[319446.998,201885.600199999],[316558.3986,206403.7969],[315892.8985,205857.103399999],[316470.7041,204248.1039],[315558.6025,204090.499],[315627.2014,203416.402000001],[312652.3998,207493.295],[312307.4017,209522.903999999],[310360.8005,211948.399700001],[309746.1972,211439.395400001]]]},"properties":{"OBJECTID":377,"lad19cd":"W06000019","lad19nm":"Blaenau Gwent","lad19nmw":"Blaenau Gwent","bng_e":318236,"bng_n":206771,"long":-3.18592,"lat":51.753639,"GlobalID":"7ec00995-d49f-4898-8792-ee5758114940"}},{"type":"Feature","id":378,"geometry":{"type":"Polygon","coordinates":[[[321874.5007,211070.201099999],[323669.9039,211422.000399999],[327053.6028,209972.0955],[328096.8009,208484.601199999],[327674.5961,207383.296499999],[329138.6963,205685.502499999],[328860.9037,203165.1039],[332147.5005,202306.7996],[330834.9033,199594.696],[333144.8973,199631.395400001],[332367.9982,197666.8978],[331308.3017,198301.1962],[330700.4016,197174.6987],[333722.9998,192653.9027],[331617.7966,192679.995300001],[329498.8983,191348.0965],[327603.9029,192040.0984],[327726.103,190277.2031],[325199.7998,191733.0963],[323782.3996,193369.298],[325737.3035,195374.6039],[325992.8015,197812.2962],[325133.897,199401.4013],[323910.198,198722.5956],[322947.3975,199706.204],[323695.6038,203000.101199999],[323124.6003,207111.404300001],[323757.4995,207530.704299999],[321191.3974,210334.501700001],[321874.5007,211070.201099999]]]},"properties":{"OBJECTID":378,"lad19cd":"W06000020","lad19nm":"Torfaen","lad19nmw":"Torfaen","bng_e":327459,"bng_n":200480,"long":-3.05101,"lat":51.69836,"GlobalID":"2b427e4f-83cb-43d0-8a93-ba1b3d9826d6"}},{"type":"Feature","id":379,"geometry":{"type":"Polygon","coordinates":[[[329597.4021,229251.796700001],[330775.4976,225881.2015],[332939.1006,225891.6985],[333237.0029,223383.896400001],[339743.1971,226508.402000001],[341989.9021,225170.505000001],[340811.3035,224293.596000001],[342192.4997,224689.9025],[342576.9999,223386.095699999],[347202.5039,220498.202400001],[346471.1999,218872.897600001],[349189.0029,215591.8968],[350528.3966,216946.8989],[350827.2966,215978.995999999],[352060.296,216474.804099999],[352324.6986,215252.304],[354193.6973,215433.102299999],[355272.7037,214366.797499999],[354547.699,213998.402899999],[354627.404,212654.997500001],[353304.6983,211769.800899999],[353902.4983,210836.498],[353142.3036,208024.6029],[354352.4972,206356.2005],[354051.4726,205575.2554],[353869.6588,205103.577500001],[352585.17,203741.140000001],[353722.3116,200896.982999999],[353837.58,200608.68],[353077.5191,200514.782199999],[352976.5363,200502.3068],[352865.4079,200488.578],[352802.61,200480.82],[353732.8249,198926.8729],[354624.75,197436.890000001],[352569.24,196259.6],[352664.2188,196153.038699999],[353981.1,196368.550000001],[352976.8,194438],[353988.23,194117.66],[354191.0831,193186.633400001],[354530.61,191628.32],[353721.45,190207.07],[351923,189625.57],[350720.76,187295.789999999],[347603.48,186888.42],[343131.3492,184229.262800001],[342279.0976,186053.302100001],[341002.3004,186165.300100001],[340560.2002,187078.798599999],[341487.4975,187940.7019],[341405.2035,189460.3969],[342608.8011,191006.7042],[344479.0035,191068.196599999],[344322.9987,191963.000499999],[342199.7966,194851.2038],[338750.7968,193806.8027],[337197.779,192055.6],[335698.4497,191903.5109],[334686.0971,191803.596100001],[333722.9998,192653.9027],[330700.4016,197174.6987],[331308.3017,198301.1962],[332367.9982,197666.8978],[333144.8973,199631.395400001],[330834.9033,199594.696],[332147.5005,202306.7996],[328860.9037,203165.1039],[329138.6963,205685.502499999],[327674.5961,207383.296499999],[328096.8009,208484.601199999],[327053.6028,209972.0955],[323669.9039,211422.000399999],[321874.5007,211070.201099999],[320316.7036,211459.399700001],[321092.5968,212404.699100001],[320318.097,213680.0041],[322895.9978,216183.7974],[324229.1994,215399.002],[324517.1005,216994.1954],[326870.8016,218838.7974],[326281.2962,220168.196900001],[328512.3025,221180.797],[327904.7982,224176.999399999],[325921.6961,225661.6044],[325180.597,228545.3989],[325770.3992,229097.200999999],[324996.996,230198.595699999],[326793.1991,232169.001700001],[329597.4021,229251.796700001]]]},"properties":{"OBJECTID":379,"lad19cd":"W06000021","lad19nm":"Monmouthshire","lad19nmw":"Sir Fynwy","bng_e":337812,"bng_n":209231,"long":-2.9028,"lat":51.778271,"GlobalID":"72d368af-49dd-484e-9228-12e74beec842"}},{"type":"Feature","id":380,"geometry":{"type":"Polygon","coordinates":[[[343131.3492,184229.262800001],[337329.95,181887.140000001],[336111.12,182279.17],[336710.493,183027.005999999],[334118.7,182227.6],[332023.7,183372],[332831.4036,184524.299799999],[331541.0021,183867.3978],[330442.23,185689.18],[331496.53,183644.050000001],[331063.92,182421.529999999],[324944.5349,178663.7623],[324425.3,179557.8014],[325932.9011,180691.4969],[322508.3975,183565.0044],[324536.699,186162.6008],[322367.9016,187355.2994],[322214.0982,188343.0967],[323547.2999,189286.3967],[324328.6019,188627.5953],[326369.1968,189991.7048],[325199.7998,191733.0963],[327726.103,190277.2031],[327603.9029,192040.0984],[329498.8983,191348.0965],[331617.7966,192679.995300001],[333722.9998,192653.9027],[334686.0971,191803.596100001],[335698.4497,191903.5109],[337197.779,192055.6],[338750.7968,193806.8027],[342199.7966,194851.2038],[344322.9987,191963.000499999],[344479.0035,191068.196599999],[342608.8011,191006.7042],[341405.2035,189460.3969],[341487.4975,187940.7019],[340560.2002,187078.798599999],[341002.3004,186165.300100001],[342279.0976,186053.302100001],[343131.3492,184229.262800001]]]},"properties":{"OBJECTID":380,"lad19cd":"W06000022","lad19nm":"Newport","lad19nmw":"Casnewydd","bng_e":337897,"bng_n":187432,"long":-2.89769,"lat":51.58231,"GlobalID":"26a0ffac-7926-451f-b905-ae4bfa6bc7b0"}},{"type":"Feature","id":381,"geometry":{"type":"Polygon","coordinates":[[[270876.7994,297590.9904],[269747.291,298079.6621],[269969.3733,299078.2535],[270319.28,299565],[271886.2724,299361.645099999],[273030.602,300059.098300001],[273069.1972,301109.197799999],[275350.3005,301821.403899999],[274829.5012,304147.4981],[275936.5986,305501.8004],[275574.5002,307496.999299999],[277856.4033,310448.904300001],[281128.497,309421.998199999],[282204.7001,310715.9978],[284033.1001,310390.501],[284512.501,309522.5995],[286291.8017,312015.2959],[288147.4021,311695.6974],[291854.7032,313126.797800001],[292090.2975,315446.9036],[293187.0968,316840.504699999],[291623.7013,323040.200099999],[292459.0002,325250.897299999],[293205.6976,326754.8968],[294427.3024,326191.498],[294545.6025,326988.399900001],[298708.7977,328221.097100001],[300262.8021,330803.4979],[301316.3972,330406.2016],[306625.9033,331857.6961],[307590.0972,333662.1996],[309565.6963,333634.497500001],[315155.7983,330647.502499999],[317095.2015,330658.599300001],[319004.4031,333532.296800001],[321104.0986,334437.297700001],[322891.6032,333139.2992],[323688.4966,332552.997099999],[322540.7016,331874.101399999],[324182.7962,330552.399700001],[321771.1983,328408.703400001],[322554.0009,327848.003900001],[321391.9997,325274.500499999],[321349.0017,323946.9005],[322359.401,323823.7958],[321823.6039,322650.401699999],[324672.7013,321252.0019],[326827.8036,322555.298900001],[326472.2023,321567.1018],[327267.3973,319869.5977],[329409.596,319963.500800001],[329079.9997,319528.495300001],[330000.5031,319705.5046],[330252.2001,318990.699200001],[331465.4031,319380.0978],[331883.6008,318361.6993],[331129.4993,317635.497199999],[333129.3966,316696.8958],[333159.5983,315590.8024],[334930.0025,315394.298699999],[335175.6971,313632.902899999],[334024.1012,313525.103700001],[334075.5998,314774.2962],[332515.0983,314093.0012],[331185.2029,314648.702099999],[331012.304,312600.1985],[329327.904,310910.802100001],[329874.6999,309134.7005],[328981.9,306031.5987],[326776.0988,305388.6028],[328366.9998,304188.7962],[327457.9983,304006.5984],[326041.8019,301844.5973],[326300.4989,300746.7015],[324390.2007,299246.900800001],[322893.7963,299265.4955],[324715.0974,294302.0963],[322969.6014,293515.001599999],[323228.1006,292779.5021],[326472.4992,293512.0024],[326374.3005,295385.7961],[331364.6979,298001.5973],[332689.9019,295470.401799999],[331980.3979,291800.202400001],[330052.4964,292261.100500001],[330232.4037,289759.396600001],[324674.9027,289582.1973],[319932.2034,286876.002],[318779.6016,287123.6011],[316114.501,283442.9047],[317162.003,281060.796499999],[319908.6967,279696.1972],[321529.1975,277257.7951],[324494.6986,276040.703500001],[327847.0003,272769.300000001],[329236.4003,272313.8003],[333725.597,273405.3979],[335069.5007,272770.499600001],[334212.5997,270589.7039],[331879.4041,269766.6994],[331012.8977,265040.0024],[335295.0031,263902.798],[333400.6014,262839.802200001],[331456.0037,263375.198999999],[329390.8963,262569.6996],[328530.1036,261856.3038],[328790.4991,260483.5967],[326818.9979,260284.3038],[326846.0994,257748.5996],[324779.5985,256626.300799999],[325255.6023,254507.7973],[323321.5006,252276.495999999],[324916.5984,251285.7995],[326049.0988,252193.5997],[326721.5,251374.404200001],[325255.2973,250120.6031],[322357.7025,249453.404100001],[321926.2961,248343.1019],[324435.7959,247064.9977],[324383.7036,245804.0987],[323198.5008,245574.4044],[322937.8002,242814.304500001],[325311.0009,239685.699999999],[325588.8018,238533.5998],[324673.6989,236599.603399999],[326793.1991,232169.001700001],[324996.996,230198.595699999],[325770.3992,229097.200999999],[325180.597,228545.3989],[325921.6961,225661.6044],[327904.7982,224176.999399999],[328512.3025,221180.797],[326281.2962,220168.196900001],[326870.8016,218838.7974],[324517.1005,216994.1954],[324229.1994,215399.002],[322895.9978,216183.7974],[320318.097,213680.0041],[314698.4035,213361.1953],[311645.8015,214875.102],[309873.8967,212753.2993],[309746.1972,211439.395400001],[308057.3036,211036.2009],[306294.3034,211145.0997],[306500.6031,212908.9048],[303428.9963,213766.099400001],[303448.0011,215117.8025],[302453.0036,216114.8971],[300546.8032,214081.2992],[299479.2987,215620.498600001],[298790.597,215453.5964],[298316.5967,213345.4998],[293785.2018,210668.0962],[294051.7976,209731.704299999],[292481.6988,209911.7027],[292053.1041,208515.5024],[290258.2037,207411.398399999],[289467.5024,209568.800899999],[284883.6029,211157.2962],[280885.8037,210027.399599999],[279570.8978,207520.0973],[277901.6027,207685.9998],[275483.4995,211465.298],[277988.5964,217865.596000001],[282146.8033,222339.7952],[282206.7037,224431.4965],[281267.0965,224963.1043],[281800.7993,228377.397],[283258.6993,228874.704600001],[282523.6026,230648.9968],[285461.4003,235291.297900001],[285635.2969,237648.403200001],[287119.0039,239100.797499999],[284986.3034,241577.898399999],[285838.2986,243081.2981],[282031.8012,244384.705],[281664.2034,245369.203199999],[282701.597,246567.3002],[282307.1038,247970.998400001],[279749.1973,249226.598999999],[280877.402,250430.704299999],[280334.7038,256933.0031],[281016.1004,262334.8968],[280401.0023,262956.898700001],[281941.0973,265111.0021],[283617.3017,265361.3005],[281892.2041,267210.201199999],[282298.4959,268927.7996],[281152.3005,270261.697799999],[283933.104,272853.7958],[287148.0018,273468.399800001],[285341.0966,275799.4026],[284539.7014,275674.398399999],[283650.9993,280861.8035],[279678.3969,284162.0988],[280106.2991,287173.196900001],[281588.3983,287730.2974],[282457.3041,291265.6954],[277004.5978,288319.298800001],[276050.8009,288998.0045],[274957.5965,292057.998600001],[275281.8005,296425.2985],[274047.6963,297512.997199999],[270876.7994,297590.9904]]]},"properties":{"OBJECTID":381,"lad19cd":"W06000023","lad19nm":"Powys","lad19nmw":"Powys","bng_e":302329,"bng_n":273255,"long":-3.43531,"lat":52.34864,"GlobalID":"e8804b3e-2a1d-4260-9ef1-3241f8c67f51"}},{"type":"Feature","id":382,"geometry":{"type":"Polygon","coordinates":[[[300546.8032,214081.2992],[302453.0036,216114.8971],[303448.0011,215117.8025],[303428.9963,213766.099400001],[306500.6031,212908.9048],[306294.3034,211145.0997],[308057.3036,211036.2009],[308367.1035,207498.4035],[309645.896,205294.4044],[309247.404,204496.003],[310283.5031,204978.7048],[312022.8977,198943.102499999],[311269.5959,198377.0045],[311195.4975,196276.695699999],[310453.5987,196941.195499999],[309183.9005,194804.097200001],[309209.0974,196030.0963],[308011.7991,196140.704600001],[304747.497,202265.4015],[303388.9995,203055.7952],[299808.5982,207996.401000001],[301573.7998,207609.6017],[302340.4998,208560.2996],[300743.5963,211776.399],[300546.8032,214081.2992]]]},"properties":{"OBJECTID":382,"lad19cd":"W06000024","lad19nm":"Merthyr Tydfil","lad19nmw":"Merthyr Tudful","bng_e":305916,"bng_n":206424,"long":-3.36425,"lat":51.748581,"GlobalID":"ddc7393b-0c6c-4163-9538-51ba68a44793"}}]} \ No newline at end of file