Skip to content

Instantly share code, notes, and snippets.

@anisotropi4
Last active April 20, 2021 21:14
Show Gist options
  • Save anisotropi4/b11693e6c73e0a8bca509f53df52fabb to your computer and use it in GitHub Desktop.
Save anisotropi4/b11693e6c73e0a8bca509f53df52fabb to your computer and use it in GitHub Desktop.
Towns in Great Britain
Released license:MIT
height:780
border:no
Towns: Location of urbans areas > 10k population in Great Britain
Digital boundaries and reference map data:
Source: Office for National Statistics licensed under the Open Government Licence v.3.0.
Source: National Records Scotland data © Crown copyright and database right 2020.
Contains OS data © Crown copyright and database right 2020.

Towns in Great Britain

The Office for National Statistics and the Nation Record of Scotland provide population and shapefile data for the 2011 census. Where a 'Town' is an urban area with 10,000 or more inhabitants.

Creating the datafiles and associate geojson format report

Once the dependencies to create the report are met run the script:

$ ./prepublish

This will download and create ESRI Shape files in the shp directory for all Towns as well as all locations in Great Britian, as well as a Leaflet JavaScript visualisation using the Town data in a GeoJSON format.

Dependencies

These are environment and project dependencies.

python dependencies

For ease of use manage package python packages dependencies with a local virtual environment venv:

$ virtualenv venv
$ source venv/bin/activate
$ pip install -r requirements.txt

If missing install the python virtualenv package

$ sudo apt install virtualenv

Data License

Digital boundaries and reference map data:

Source: Office for National Statistics licensed under the Open Government Licence v.3.0.

Source: National Records Scotland data (c) Crown copyright and database right 2020.

Contains OS data (c) Crown copyright and database right 2020.

<!DOCTYPE html>
<html>
<head>
<title>Towns: Location in GB</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Cache-control" content="No-Cache">
<link rel="shortcut icon" type="image/x-icon" href="docs/images/favicon.ico"/>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ==" crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"
integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="
crossorigin=""></script>
<script src="http://d3js.org/d3.v5.min.js"></script>
<div id="map" style="width: 1340px; height: 780px"></div>
</head>
<body>
<div id='map'></div>
<script type="text/javascript">
var radius = 3;
var weight = 1;
var linewidth = 2;
var log2 = Math.log(2.0);
var minZoom = 3;
var maxZoom = 18;
var map = L.map('map').setView([54.533, -2.53], 6);
L.tileLayer("http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", {
maxZoom: maxZoom,
minZoom: minZoom,
attribution: 'Map data &copy; <a href="https://www.openstreetmap.org/">OpenStreetMap</a> contributors, ' + '<a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, ' + 'Imagery © <a href="https://www.mapbox.com/">Mapbox</a>',
id: 'osm.standard'
}).addTo(map);
d3.json("town_boundaries.geojson").then(function(d) {
function onEachFeature(feature, layer) {
var this_feature = feature.properties;
var popupContent;
if (this_feature.Town)
popupContent = this_feature.Town;
else
popupContent = this_feature.railway;
var lookup = {
"bua_code": "BUA code",
"bua_name": "BUA",
"citytownclassification": "Classification",
"latitude": "lat",
"longitude": "lon",
"region_name": "Region",
"la_name": "Local Authority",
"lsoa_code": "LSOA code",
"constituency_name": "Constituency",
"population": "population",
"outputarea_code": "OA code"
}
var k = Object.keys(this_feature).filter(i=>(i != "type" && i != "geometry" && i != "Town" && i != "is_in" && i != "z_order" && i != "railway" && i != "pgroup" && i != "urban"))
for (var i = 0; i < k.length; i++) {
if (k[i] in this_feature) {
popupContent += '<br>' + lookup[k[i]] + ': ' + this_feature[k[i]];
}
}
layer.bindPopup(popupContent);
}
L.geoJSON(d, {
style: function(feature) {
switch (feature.geometry.type) {
case 'Point':
return {
color: "red",
radius: radius,
weight: weight
};
default:
return {
weight: weight
};
}
},
onEachFeature: onEachFeature,
pointToLayer: function(feature, latlng) {
return L.circleMarker(latlng, {
opacity: 1,
fillOpacity: 0.8
});
}
}).addTo(map);
});
</script>
</body>
</html>
MIT License
Copyright (c) 2020 Will Deakin
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
#!/bin/sh
export PYTHONUNBUFFERED=1
for i in 'download' 'work' 'shp'
do
if [ ! -d ${i} ]; then
mkdir -p ${i}
fi
done
URL=https://www.nrscotland.gov.uk/files/geography
#FILENAME=output-area-2011-eor.zip
FILENAME=output-area-2011-mhw.zip
if [ ! -s download/${FILENAME} ]; then
curl -L -o download/${FILENAME} ${URL}/${FILENAME}
fi
if [ ! -s work/OutputArea2011_MHW.shp ]; then
(cd work; unzip ../download/${FILENAME})
fi
URL=https://opendata.arcgis.com/datasets
#FILENAME=d74074ae6dec4de59fdcd2744fefc1f9_0.zip
FILENAME=f79fc19485704ce68523d8d70d84a913_0.zip
if [ ! -s download/${FILENAME} ]; then
curl -L -o download/${FILENAME} ${URL}/${FILENAME}
fi
if [ ! -s work/Output_Areas__December_2011__Boundaries_EW_BGC.shp ]; then
(cd work; unzip ../download/${FILENAME})
fi
URL=https://researchbriefings.files.parliament.uk/documents/CBP-8322
FILENAME=oa-classification-csv.csv
if [ ! -s ${FILENAME} ]; then
curl -L -o ${FILENAME} ${URL}/${FILENAME}
fi
./town-boundaries.py
geopandas >= 0.9.0
xlrd >= 2.0.1
#!/usr/bin/env python3
import os
from functools import partial
from fiona.transform import transform_geom
import pandas as pd
import geopandas as gp
from shapely.ops import transform
# EPSG:4326 WG 84
# EPSG:32630
# EPSG:27700 OS GB36
URBANTYPES = {'Large Town',
'Large Town in Conurbation',
'Core City (outside London)',
'Village or small community in Conurbation',
'Other City',
'Small Town in Conurbation',
'Small Town',
'Medium Town',
'Medium Town in Conurbation',
'Core City (London)',
'Village or Small Community in Conurbation'}
def _set_precision(precision=6):
def _precision(x, y, z=None):
return tuple([round(i, precision) for i in [x, y, z] if i])
return partial(transform, _precision)
pd.set_option('display.max_columns', None)
print('Load Output Area Data')
TOWNDATA = pd.read_csv('oa-classification-csv.csv')
TOWNDATA['name'] = TOWNDATA['bua_name']
IDX1 = TOWNDATA['bua_name'] == 'None'
TOWNDATA.loc[IDX1, 'name'] = TOWNDATA.loc[IDX1, 'la_name']
for k in [' BUA in Conurbation', ' BUASD', ' BUA']:
TOWNDATA['name'] = TOWNDATA['name'].str.replace(k, '')
TOWNS = TOWNDATA.groupby(['bua_code', 'name', 'region_name']).filter(lambda v: v['population'].sum() > 1)
TOWNS['Town'] = TOWNDATA['name']
TOWNDATA = None
IDX2 = TOWNS['citytownclassification'].isin(URBANTYPES)
TOWNS['urban'] = 'N'
TOWNS.loc[IDX2, 'urban'] = 'Y'
print('Loaded Output Area Data')
print('Load Scotland')
SCDATA = gp.read_file('work/OutputArea2011_MHW.shp')
CRS = SCDATA.crs.srs
print('Aggregate Scotland')
SC = SCDATA[['DataZone', 'geometry']].dissolve(by='DataZone', aggfunc='sum')
SDX1 = TOWNS['lsoa_code'].str[:1] == 'S'
G1 = TOWNS.loc[SDX1, ['lsoa_code']].join(SC['geometry'], on='lsoa_code')
SC = None
SCDATA = None
print('Loaded Scotland')
print('Load England and Wales')
EW = gp.read_file('work/Output_Areas__December_2011__Boundaries_EW_BGC.shp')
EW = EW.to_crs(CRS)
EW = EW.set_index('OA11CD')
G2 = TOWNS.loc[~SDX1, ['outputarea_code']].join(EW['geometry'], on='outputarea_code')
EW = None
print('Loaded England and Wales')
print('Create GeoDataFrame')
GEOMETRY = pd.concat([G2['geometry'], G1['geometry']])
G1 = None
G2 = None
GF1 = gp.GeoDataFrame(TOWNS, geometry=GEOMETRY, crs=CRS)
_precision = _set_precision(1)
GF1['geometry'] = GF1['geometry'].apply(_precision)
print('Write GeoDataFrame')
GF1.to_file('all_boundaries.geojson', crs=CRS, driver='GeoJSON')
GF1.to_file('shp/all_boundaries.shp', crs=CRS)
GEOMETRY = None
print('Aggregate by region, town, Built Up Area (BUA) and Middle Super-Output-Area')
KEYS = ['region_name', 'Town', 'bua_code', 'msoa_code']
GF2 = GF1[KEYS + ['geometry', 'population']].dissolve(by=KEYS, aggfunc=sum)
#GF2 = GF2.to_crs('EPSG:4326')
print('Aggregated data')
FULLKEYS = KEYS + ['outputarea_code', 'lsoa_code', 'la_name', 'bua_name', 'constituency_name', 'citytownclassification', 'urban']
DF1 = TOWNS[FULLKEYS].drop_duplicates(subset=KEYS).set_index(KEYS)
_precision = _set_precision(5)
POINTS = gp.GeoDataFrame(geometry=GF2.centroid, crs=CRS).to_crs('EPSG:4326')
POINTS['geometry'] = POINTS['geometry'].apply(_precision)
POINTS['data'] = POINTS['geometry'].apply(lambda v: [v.x, v.y])
POINTS['longitude'], POINTS['latitude'] = zip(*POINTS.pop('data'))
DF2 = POINTS[['longitude', 'latitude']]
BOUNDARIES = GF2.join(DF1).join(DF2).reset_index().fillna('-')
BOUNDARIES = BOUNDARIES.to_crs('EPSG:4326')
for k in ['bua_code', 'bua_name', 'citytownclassification']:
BOUNDARIES[k] = BOUNDARIES[k].str.replace('None', '-')
#from matplotlib import pyplot as plt
#fig = plt.figure()
#ax1 = fig.add_subplot(111)
print('Segment boundaries')
INTERVAL = {'rural': 0, '5k': 5E3, '10k': 10E3, '50k': 50E3, '100k': 100E3, 'MC1': 1E9}
BINS = pd.IntervalIndex.from_breaks(list(INTERVAL.values()), closed='left')
KEYS = ['region_name', 'Town', 'bua_code']
POPULATION = BOUNDARIES[KEYS + ['population']].groupby(KEYS).sum()
CUT = pd.cut(POPULATION['population'].to_numpy(), BINS)
CUT = CUT.rename_categories({i: j for i, j in zip(CUT.categories, INTERVAL.keys())})
POPULATION['pgroup'] = CUT.tolist()
BOUNDARIES = BOUNDARIES.set_index(KEYS).join(POPULATION['pgroup']).reset_index()
IDX3 = BOUNDARIES['urban'] == 'N'
BOUNDARIES.loc[IDX3, 'pgroup'] = 'rural'
print('Write full boundaries')
_precision = _set_precision(5)
BOUNDARIES['geometry'] = BOUNDARIES['geometry'].apply(_precision)
BOUNDARIES.to_file('shp/full_boundaries.shp', crs='epsg:4326')
BOUNDARIES.to_file('full_boundaries.geojson', crs='epsg:4326', driver='GeoJSON')
print('Write segmented boundaries')
for k, g in BOUNDARIES.groupby('pgroup'):
stub = 'town_boundaries_{}'.format(k)
g.to_file('shp/{}.shp'.format(stub), crs='epsg:4326')
g.to_file('{}.geojson'.format(stub), driver='GeoJSON', crs='epsg:4326')
BOUNDARIES = BOUNDARIES.to_crs('epsg:27700')
for k, g in BOUNDARIES.groupby('pgroup'):
stub = 'town_boundaries_gb_{}'.format(k)
g.to_file('shp/{}.shp'.format(stub), crs='epsg:27700')
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Alfreton", "bua_code": "E35001356", "msoa_code": "E02004029", "population": 6611, "outputarea_code": "E00098113", "lsoa_code": "E01019402", "la_name": "Amber Valley", "bua_name": "Alfreton BUASD", "constituency_name": "Amber Valley", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.38723, "latitude": 53.09822, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.38239, 53.09416 ], [ -1.38155, 53.09327 ], [ -1.3816, 53.0928 ], [ -1.38198, 53.09279 ], [ -1.38469, 53.09229 ], [ -1.38588, 53.0915 ], [ -1.38585, 53.0911 ], [ -1.38761, 53.09023 ], [ -1.38733, 53.09005 ], [ -1.38961, 53.08939 ], [ -1.39273, 53.08877 ], [ -1.39591, 53.08853 ], [ -1.39585, 53.08987 ], [ -1.39874, 53.08904 ], [ -1.40051, 53.08926 ], [ -1.4047, 53.0887 ], [ -1.40685, 53.08927 ], [ -1.40613, 53.09014 ], [ -1.40618, 53.09213 ], [ -1.40561, 53.09308 ], [ -1.40421, 53.09566 ], [ -1.40512, 53.09649 ], [ -1.40634, 53.09916 ], [ -1.40404, 53.10064 ], [ -1.40424, 53.10661 ], [ -1.40395, 53.10706 ], [ -1.4029, 53.10731 ], [ -1.40052, 53.10622 ], [ -1.39746, 53.10533 ], [ -1.39556, 53.10516 ], [ -1.39491, 53.10476 ], [ -1.39388, 53.1051 ], [ -1.39271, 53.10489 ], [ -1.3924, 53.10537 ], [ -1.39114, 53.10523 ], [ -1.39034, 53.10545 ], [ -1.39043, 53.1058 ], [ -1.38953, 53.10582 ], [ -1.38976, 53.10617 ], [ -1.38904, 53.10643 ], [ -1.38817, 53.10597 ], [ -1.38812, 53.10649 ], [ -1.38715, 53.10673 ], [ -1.38671, 53.10632 ], [ -1.38631, 53.10691 ], [ -1.38606, 53.10659 ], [ -1.38499, 53.10698 ], [ -1.38402, 53.10698 ], [ -1.38342, 53.10764 ], [ -1.38247, 53.10752 ], [ -1.3813, 53.1079 ], [ -1.38125, 53.10837 ], [ -1.38023, 53.10831 ], [ -1.37959, 53.1079 ], [ -1.37967, 53.10854 ], [ -1.37911, 53.10845 ], [ -1.37903, 53.10881 ], [ -1.37811, 53.10825 ], [ -1.37792, 53.10866 ], [ -1.37736, 53.10845 ], [ -1.37703, 53.10867 ], [ -1.37602, 53.10842 ], [ -1.37365, 53.10786 ], [ -1.3728, 53.10717 ], [ -1.3727, 53.10554 ], [ -1.37319, 53.10499 ], [ -1.37286, 53.10384 ], [ -1.37036, 53.10249 ], [ -1.36898, 53.10025 ], [ -1.36897, 53.09938 ], [ -1.36958, 53.09904 ], [ -1.36689, 53.0977 ], [ -1.36597, 53.09667 ], [ -1.36405, 53.09592 ], [ -1.364, 53.09453 ], [ -1.36501, 53.09326 ], [ -1.36332, 53.09252 ], [ -1.36323, 53.09247 ], [ -1.37338, 53.09087 ], [ -1.37774, 53.09077 ], [ -1.37759, 53.09127 ], [ -1.37715, 53.09155 ], [ -1.3775, 53.09352 ], [ -1.37743, 53.09455 ], [ -1.37824, 53.09545 ], [ -1.37804, 53.09557 ], [ -1.37855, 53.0958 ], [ -1.37763, 53.09831 ], [ -1.37767, 53.09856 ], [ -1.37883, 53.09847 ], [ -1.37975, 53.09904 ], [ -1.3785, 53.09987 ], [ -1.37871, 53.10049 ], [ -1.37985, 53.10008 ], [ -1.38083, 53.10024 ], [ -1.38174, 53.09994 ], [ -1.38247, 53.09966 ], [ -1.38247, 53.09922 ], [ -1.38328, 53.09916 ], [ -1.38319, 53.09873 ], [ -1.38213, 53.09873 ], [ -1.38258, 53.09832 ], [ -1.38304, 53.09849 ], [ -1.3842, 53.09756 ], [ -1.38311, 53.09755 ], [ -1.38276, 53.09815 ], [ -1.38209, 53.09788 ], [ -1.38211, 53.09728 ], [ -1.38101, 53.09718 ], [ -1.38043, 53.0967 ], [ -1.38064, 53.09643 ], [ -1.38069, 53.09625 ], [ -1.38059, 53.09572 ], [ -1.38239, 53.09416 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Alfreton", "bua_code": "E35001356", "msoa_code": "E02004031", "population": 6808, "outputarea_code": "E00098112", "lsoa_code": "E01019403", "la_name": "Amber Valley", "bua_name": "Alfreton BUASD", "constituency_name": "Amber Valley", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.36761, "latitude": 53.08062, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.36561, 53.06724 ], [ -1.36233, 53.06783 ], [ -1.36304, 53.06852 ], [ -1.36139, 53.06903 ], [ -1.36161, 53.06986 ], [ -1.36128, 53.07023 ], [ -1.36051, 53.07027 ], [ -1.36035, 53.07058 ], [ -1.36143, 53.07077 ], [ -1.36272, 53.07221 ], [ -1.361, 53.07359 ], [ -1.36788, 53.07349 ], [ -1.36799, 53.07388 ], [ -1.36734, 53.07401 ], [ -1.36674, 53.07484 ], [ -1.36875, 53.07443 ], [ -1.36869, 53.07537 ], [ -1.36824, 53.07586 ], [ -1.36672, 53.07581 ], [ -1.36754, 53.07654 ], [ -1.36731, 53.07681 ], [ -1.36679, 53.07661 ], [ -1.3664, 53.07681 ], [ -1.36684, 53.07708 ], [ -1.36637, 53.0777 ], [ -1.36599, 53.07807 ], [ -1.36632, 53.07861 ], [ -1.36689, 53.07834 ], [ -1.3674, 53.07877 ], [ -1.36841, 53.07876 ], [ -1.36908, 53.07918 ], [ -1.36974, 53.07906 ], [ -1.36854, 53.07834 ], [ -1.36882, 53.07817 ], [ -1.37063, 53.07861 ], [ -1.37216, 53.07825 ], [ -1.37239, 53.0779 ], [ -1.37352, 53.07791 ], [ -1.37362, 53.07815 ], [ -1.37314, 53.07949 ], [ -1.37472, 53.08088 ], [ -1.37462, 53.08123 ], [ -1.37538, 53.08127 ], [ -1.37636, 53.08228 ], [ -1.37688, 53.08204 ], [ -1.37773, 53.08169 ], [ -1.37865, 53.08194 ], [ -1.37992, 53.08178 ], [ -1.38005, 53.08212 ], [ -1.38194, 53.08199 ], [ -1.38356, 53.08248 ], [ -1.38465, 53.08222 ], [ -1.38555, 53.08625 ], [ -1.38631, 53.08686 ], [ -1.38754, 53.08711 ], [ -1.38961, 53.08939 ], [ -1.38733, 53.09005 ], [ -1.38761, 53.09023 ], [ -1.38585, 53.0911 ], [ -1.38588, 53.0915 ], [ -1.38469, 53.09229 ], [ -1.38198, 53.09279 ], [ -1.3816, 53.0928 ], [ -1.38155, 53.09327 ], [ -1.38239, 53.09416 ], [ -1.38059, 53.09572 ], [ -1.38069, 53.09625 ], [ -1.38064, 53.09643 ], [ -1.38043, 53.0967 ], [ -1.38101, 53.09718 ], [ -1.38211, 53.09728 ], [ -1.38209, 53.09788 ], [ -1.38276, 53.09815 ], [ -1.38311, 53.09755 ], [ -1.3842, 53.09756 ], [ -1.38304, 53.09849 ], [ -1.38258, 53.09832 ], [ -1.38213, 53.09873 ], [ -1.38319, 53.09873 ], [ -1.38328, 53.09916 ], [ -1.38247, 53.09922 ], [ -1.38247, 53.09966 ], [ -1.38174, 53.09994 ], [ -1.38083, 53.10024 ], [ -1.37985, 53.10008 ], [ -1.37871, 53.10049 ], [ -1.3785, 53.09987 ], [ -1.37975, 53.09904 ], [ -1.37883, 53.09847 ], [ -1.37767, 53.09856 ], [ -1.37763, 53.09831 ], [ -1.37855, 53.0958 ], [ -1.37804, 53.09557 ], [ -1.37824, 53.09545 ], [ -1.37743, 53.09455 ], [ -1.3775, 53.09352 ], [ -1.37715, 53.09155 ], [ -1.37759, 53.09127 ], [ -1.37774, 53.09077 ], [ -1.37338, 53.09087 ], [ -1.36323, 53.09247 ], [ -1.36225, 53.09181 ], [ -1.36142, 53.09186 ], [ -1.36074, 53.0904 ], [ -1.3599, 53.09016 ], [ -1.36297, 53.08825 ], [ -1.36574, 53.08872 ], [ -1.37044, 53.08854 ], [ -1.36972, 53.08529 ], [ -1.36874, 53.0845 ], [ -1.36679, 53.08419 ], [ -1.3657, 53.08543 ], [ -1.365, 53.08525 ], [ -1.36449, 53.08564 ], [ -1.36283, 53.08506 ], [ -1.36136, 53.08523 ], [ -1.36055, 53.08441 ], [ -1.36264, 53.08245 ], [ -1.36273, 53.0815 ], [ -1.36098, 53.08138 ], [ -1.36006, 53.08137 ], [ -1.36001, 53.08264 ], [ -1.35692, 53.08331 ], [ -1.35499, 53.08231 ], [ -1.35297, 53.08264 ], [ -1.3533, 53.08158 ], [ -1.35963, 53.08091 ], [ -1.35952, 53.0794 ], [ -1.35706, 53.07903 ], [ -1.35531, 53.07849 ], [ -1.35398, 53.07795 ], [ -1.34976, 53.0795 ], [ -1.35007, 53.0764 ], [ -1.35051, 53.0759 ], [ -1.35262, 53.07603 ], [ -1.35439, 53.07547 ], [ -1.35473, 53.07459 ], [ -1.35422, 53.0743 ], [ -1.35625, 53.07316 ], [ -1.35514, 53.07269 ], [ -1.35469, 53.07069 ], [ -1.35229, 53.06996 ], [ -1.3508, 53.06983 ], [ -1.34968, 53.06858 ], [ -1.34871, 53.06853 ], [ -1.34869, 53.06787 ], [ -1.34921, 53.06702 ], [ -1.35105, 53.06674 ], [ -1.35002, 53.0664 ], [ -1.35145, 53.06446 ], [ -1.35072, 53.06403 ], [ -1.35292, 53.06347 ], [ -1.35658, 53.06187 ], [ -1.35865, 53.06098 ], [ -1.35964, 53.06141 ], [ -1.36005, 53.06205 ], [ -1.36027, 53.0646 ], [ -1.3649, 53.06602 ], [ -1.36561, 53.06724 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Alfreton", "bua_code": "E35001356", "msoa_code": "E02004032", "population": 8355, "outputarea_code": "E00098335", "lsoa_code": "E01019443", "la_name": "Amber Valley", "bua_name": "Alfreton BUASD", "constituency_name": "Amber Valley", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.38951, "latitude": 53.07508, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.36948, 53.07089 ], [ -1.36893, 53.07075 ], [ -1.36913, 53.07042 ], [ -1.36856, 53.07037 ], [ -1.36841, 53.06973 ], [ -1.36783, 53.06958 ], [ -1.36872, 53.06911 ], [ -1.37052, 53.06827 ], [ -1.37137, 53.06828 ], [ -1.37277, 53.06673 ], [ -1.3725, 53.06494 ], [ -1.37326, 53.06309 ], [ -1.37633, 53.06038 ], [ -1.37803, 53.06147 ], [ -1.37861, 53.06148 ], [ -1.38037, 53.06293 ], [ -1.38214, 53.06302 ], [ -1.38423, 53.0636 ], [ -1.38605, 53.0635 ], [ -1.38897, 53.06257 ], [ -1.39301, 53.06296 ], [ -1.39377, 53.06311 ], [ -1.39573, 53.06382 ], [ -1.40004, 53.06396 ], [ -1.40273, 53.06364 ], [ -1.40315, 53.06367 ], [ -1.40197, 53.06451 ], [ -1.40503, 53.06796 ], [ -1.40591, 53.06946 ], [ -1.40579, 53.06996 ], [ -1.40673, 53.07057 ], [ -1.40715, 53.0716 ], [ -1.40802, 53.07217 ], [ -1.4076, 53.07348 ], [ -1.40774, 53.07599 ], [ -1.40843, 53.07694 ], [ -1.40767, 53.07776 ], [ -1.4085, 53.08051 ], [ -1.40803, 53.08415 ], [ -1.40869, 53.08604 ], [ -1.40685, 53.08927 ], [ -1.4047, 53.0887 ], [ -1.40051, 53.08926 ], [ -1.39874, 53.08904 ], [ -1.39585, 53.08987 ], [ -1.39591, 53.08853 ], [ -1.39273, 53.08877 ], [ -1.38961, 53.08939 ], [ -1.38754, 53.08711 ], [ -1.38631, 53.08686 ], [ -1.38555, 53.08625 ], [ -1.38465, 53.08222 ], [ -1.38356, 53.08248 ], [ -1.38194, 53.08199 ], [ -1.38005, 53.08212 ], [ -1.37992, 53.08178 ], [ -1.37865, 53.08194 ], [ -1.37773, 53.08169 ], [ -1.37688, 53.08204 ], [ -1.37636, 53.08228 ], [ -1.37538, 53.08127 ], [ -1.37462, 53.08123 ], [ -1.37472, 53.08088 ], [ -1.37314, 53.07949 ], [ -1.37362, 53.07815 ], [ -1.37352, 53.07791 ], [ -1.37239, 53.0779 ], [ -1.37216, 53.07825 ], [ -1.37063, 53.07861 ], [ -1.36882, 53.07817 ], [ -1.36854, 53.07834 ], [ -1.36974, 53.07906 ], [ -1.36908, 53.07918 ], [ -1.36841, 53.07876 ], [ -1.3674, 53.07877 ], [ -1.36689, 53.07834 ], [ -1.36632, 53.07861 ], [ -1.36599, 53.07807 ], [ -1.36637, 53.0777 ], [ -1.36684, 53.07708 ], [ -1.3664, 53.07681 ], [ -1.36679, 53.07661 ], [ -1.36731, 53.07681 ], [ -1.36754, 53.07654 ], [ -1.36672, 53.07581 ], [ -1.36824, 53.07586 ], [ -1.36869, 53.07537 ], [ -1.36875, 53.07443 ], [ -1.36674, 53.07484 ], [ -1.36734, 53.07401 ], [ -1.36799, 53.07388 ], [ -1.36788, 53.07349 ], [ -1.361, 53.07359 ], [ -1.36272, 53.07221 ], [ -1.36484, 53.0717 ], [ -1.36695, 53.07226 ], [ -1.36869, 53.07191 ], [ -1.3682, 53.07277 ], [ -1.36917, 53.07322 ], [ -1.37007, 53.07167 ], [ -1.36897, 53.07132 ], [ -1.36948, 53.07089 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Alfreton", "bua_code": "E35001356", "msoa_code": "E02004033", "population": 1422, "outputarea_code": "E00098333", "lsoa_code": "E01019445", "la_name": "Amber Valley", "bua_name": "Alfreton BUASD", "constituency_name": "Amber Valley", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.36629, "latitude": 53.06683, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.3649, 53.06602 ], [ -1.36027, 53.0646 ], [ -1.36005, 53.06205 ], [ -1.35964, 53.06141 ], [ -1.35865, 53.06098 ], [ -1.36006, 53.06022 ], [ -1.36223, 53.06259 ], [ -1.36561, 53.06288 ], [ -1.36672, 53.06339 ], [ -1.36611, 53.06281 ], [ -1.36743, 53.06224 ], [ -1.36839, 53.06319 ], [ -1.36862, 53.06393 ], [ -1.37326, 53.06309 ], [ -1.3725, 53.06494 ], [ -1.37277, 53.06673 ], [ -1.37137, 53.06828 ], [ -1.37052, 53.06827 ], [ -1.36872, 53.06911 ], [ -1.36783, 53.06958 ], [ -1.36841, 53.06973 ], [ -1.36856, 53.07037 ], [ -1.36913, 53.07042 ], [ -1.36893, 53.07075 ], [ -1.36948, 53.07089 ], [ -1.36897, 53.07132 ], [ -1.37007, 53.07167 ], [ -1.36917, 53.07322 ], [ -1.3682, 53.07277 ], [ -1.36869, 53.07191 ], [ -1.36695, 53.07226 ], [ -1.36484, 53.0717 ], [ -1.36272, 53.07221 ], [ -1.36143, 53.07077 ], [ -1.36035, 53.07058 ], [ -1.36051, 53.07027 ], [ -1.36128, 53.07023 ], [ -1.36161, 53.06986 ], [ -1.36139, 53.06903 ], [ -1.36304, 53.06852 ], [ -1.36233, 53.06783 ], [ -1.36561, 53.06724 ], [ -1.3649, 53.06602 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Arnold", "bua_code": "E35000779", "msoa_code": "E02002874", "population": 1909, "outputarea_code": "E00070497", "lsoa_code": "E01013963", "la_name": "Nottingham", "bua_name": "Arnold BUASD", "constituency_name": "Nottingham East", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.14741, "latitude": 52.99594, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.1498, 52.99413 ], [ -1.15233, 52.99385 ], [ -1.15349, 52.99614 ], [ -1.15356, 52.99626 ], [ -1.15238, 52.99664 ], [ -1.14907, 52.99767 ], [ -1.14855, 52.99742 ], [ -1.1482, 52.99724 ], [ -1.14725, 52.99775 ], [ -1.14609, 52.99838 ], [ -1.14493, 52.99785 ], [ -1.14206, 52.99683 ], [ -1.14143, 52.99662 ], [ -1.14067, 52.99571 ], [ -1.14181, 52.9955 ], [ -1.14187, 52.9948 ], [ -1.14338, 52.99476 ], [ -1.14534, 52.99467 ], [ -1.1498, 52.99413 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Arnold", "bua_code": "E35000779", "msoa_code": "E02005868", "population": 7102, "outputarea_code": "E00143395", "lsoa_code": "E01028143", "la_name": "Gedling", "bua_name": "Arnold BUASD", "constituency_name": "Gedling", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.12503, "latitude": 53.01528, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.13287, 53.00604 ], [ -1.13458, 53.00549 ], [ -1.1355, 53.0057 ], [ -1.13578, 53.00539 ], [ -1.13708, 53.00533 ], [ -1.13763, 53.00568 ], [ -1.13733, 53.00631 ], [ -1.13563, 53.0084 ], [ -1.13556, 53.00923 ], [ -1.13499, 53.00912 ], [ -1.13467, 53.00952 ], [ -1.13492, 53.01009 ], [ -1.13549, 53.01025 ], [ -1.13515, 53.01067 ], [ -1.13761, 53.01095 ], [ -1.13785, 53.01128 ], [ -1.13739, 53.01141 ], [ -1.13669, 53.01297 ], [ -1.13623, 53.01314 ], [ -1.13501, 53.01342 ], [ -1.13447, 53.01386 ], [ -1.13229, 53.01364 ], [ -1.13069, 53.02097 ], [ -1.13087, 53.02171 ], [ -1.13179, 53.02256 ], [ -1.13038, 53.0281 ], [ -1.12981, 53.02795 ], [ -1.12999, 53.02657 ], [ -1.11846, 53.02265 ], [ -1.11491, 53.02143 ], [ -1.11685, 53.01885 ], [ -1.11391, 53.01794 ], [ -1.11566, 53.01512 ], [ -1.11341, 53.01453 ], [ -1.1152, 53.01178 ], [ -1.11433, 53.01152 ], [ -1.11472, 53.01094 ], [ -1.11553, 53.01096 ], [ -1.11598, 53.01051 ], [ -1.11647, 53.01022 ], [ -1.11808, 53.00959 ], [ -1.11833, 53.00957 ], [ -1.12002, 53.00787 ], [ -1.11921, 53.00743 ], [ -1.11941, 53.00716 ], [ -1.11944, 53.00663 ], [ -1.12099, 53.00653 ], [ -1.1211, 53.00689 ], [ -1.12266, 53.0066 ], [ -1.12402, 53.00691 ], [ -1.12439, 53.00655 ], [ -1.12454, 53.00685 ], [ -1.12528, 53.00618 ], [ -1.12683, 53.00593 ], [ -1.12688, 53.00622 ], [ -1.12732, 53.00642 ], [ -1.1272, 53.00782 ], [ -1.12836, 53.00871 ], [ -1.12959, 53.00964 ], [ -1.13113, 53.01075 ], [ -1.13142, 53.0105 ], [ -1.13268, 53.01054 ], [ -1.13301, 53.00967 ], [ -1.13193, 53.00902 ], [ -1.13238, 53.00849 ], [ -1.13132, 53.00729 ], [ -1.13163, 53.00705 ], [ -1.13049, 53.00683 ], [ -1.1304, 53.00736 ], [ -1.12911, 53.00726 ], [ -1.12936, 53.00591 ], [ -1.13007, 53.0056 ], [ -1.13012, 53.00589 ], [ -1.13102, 53.00615 ], [ -1.13204, 53.00599 ], [ -1.1324, 53.00621 ], [ -1.13282, 53.00606 ], [ -1.13287, 53.00604 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Arnold", "bua_code": "E35000779", "msoa_code": "E02005869", "population": 6010, "outputarea_code": "E00143544", "lsoa_code": "E01028174", "la_name": "Gedling", "bua_name": "Arnold BUASD", "constituency_name": "Gedling", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.11692, "latitude": 53.00855, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.12455, 52.99797 ], [ -1.1258, 52.99746 ], [ -1.12902, 52.99882 ], [ -1.12906, 52.99975 ], [ -1.13002, 53.00005 ], [ -1.13142, 52.99918 ], [ -1.13018, 52.99835 ], [ -1.13063, 52.99816 ], [ -1.13066, 52.99798 ], [ -1.13331, 52.99682 ], [ -1.13339, 52.99864 ], [ -1.13384, 52.99873 ], [ -1.13114, 53.00094 ], [ -1.13047, 53.00143 ], [ -1.12986, 53.00209 ], [ -1.12963, 53.00252 ], [ -1.12917, 53.00399 ], [ -1.1289, 53.00512 ], [ -1.1285, 53.00669 ], [ -1.12732, 53.00642 ], [ -1.12688, 53.00622 ], [ -1.12683, 53.00593 ], [ -1.12528, 53.00618 ], [ -1.12454, 53.00685 ], [ -1.12439, 53.00655 ], [ -1.12402, 53.00691 ], [ -1.12266, 53.0066 ], [ -1.1211, 53.00689 ], [ -1.12099, 53.00653 ], [ -1.11944, 53.00663 ], [ -1.11941, 53.00716 ], [ -1.11921, 53.00743 ], [ -1.12002, 53.00787 ], [ -1.11833, 53.00957 ], [ -1.11808, 53.00959 ], [ -1.11647, 53.01022 ], [ -1.11598, 53.01051 ], [ -1.11553, 53.01096 ], [ -1.11472, 53.01094 ], [ -1.11433, 53.01152 ], [ -1.1152, 53.01178 ], [ -1.11341, 53.01453 ], [ -1.11566, 53.01512 ], [ -1.11391, 53.01794 ], [ -1.11685, 53.01885 ], [ -1.11491, 53.02143 ], [ -1.1124, 53.02094 ], [ -1.11036, 53.02058 ], [ -1.10743, 53.01918 ], [ -1.10547, 53.01918 ], [ -1.10178, 53.0185 ], [ -1.09928, 53.01847 ], [ -1.09904, 53.01681 ], [ -1.09941, 53.01541 ], [ -1.10257, 53.01678 ], [ -1.10547, 53.01521 ], [ -1.1063, 53.01458 ], [ -1.10632, 53.01366 ], [ -1.10964, 53.01416 ], [ -1.11001, 53.01095 ], [ -1.1101, 53.01051 ], [ -1.11033, 53.0099 ], [ -1.11102, 53.00811 ], [ -1.11157, 53.00714 ], [ -1.11304, 53.00665 ], [ -1.11414, 53.00646 ], [ -1.11458, 53.00647 ], [ -1.11485, 53.00606 ], [ -1.11489, 53.00601 ], [ -1.11518, 53.00561 ], [ -1.11168, 53.00441 ], [ -1.11372, 53.00333 ], [ -1.11485, 53.00274 ], [ -1.11711, 53.00157 ], [ -1.11817, 53.001 ], [ -1.12096, 52.99931 ], [ -1.12062, 52.9991 ], [ -1.121, 52.99883 ], [ -1.12025, 52.99838 ], [ -1.12069, 52.99807 ], [ -1.12079, 52.99799 ], [ -1.12173, 52.99758 ], [ -1.12258, 52.99758 ], [ -1.12354, 52.9975 ], [ -1.12436, 52.99702 ], [ -1.12517, 52.99691 ], [ -1.1254, 52.99701 ], [ -1.12409, 52.99775 ], [ -1.12453, 52.998 ], [ -1.12455, 52.99797 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Arnold", "bua_code": "E35000779", "msoa_code": "E02005870", "population": 5058, "outputarea_code": "E00143396", "lsoa_code": "E01028144", "la_name": "Gedling", "bua_name": "Arnold BUASD", "constituency_name": "Gedling", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.13704, "latitude": 53.00185, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.14067, 52.99571 ], [ -1.14143, 52.99662 ], [ -1.14206, 52.99683 ], [ -1.14493, 52.99785 ], [ -1.14609, 52.99838 ], [ -1.14725, 52.99775 ], [ -1.1482, 52.99724 ], [ -1.14855, 52.99742 ], [ -1.14907, 52.99767 ], [ -1.14854, 52.99793 ], [ -1.14865, 52.99853 ], [ -1.14704, 52.99935 ], [ -1.1465, 53.00057 ], [ -1.14628, 53.00082 ], [ -1.1455, 53.00065 ], [ -1.14496, 53.00098 ], [ -1.14457, 53.00089 ], [ -1.14358, 53.0015 ], [ -1.13998, 53.00337 ], [ -1.14047, 53.00402 ], [ -1.1421, 53.00475 ], [ -1.14123, 53.00525 ], [ -1.14139, 53.00578 ], [ -1.1432, 53.00688 ], [ -1.1429, 53.00742 ], [ -1.14124, 53.00734 ], [ -1.14121, 53.00666 ], [ -1.14051, 53.0066 ], [ -1.14064, 53.00594 ], [ -1.14016, 53.00587 ], [ -1.14039, 53.00496 ], [ -1.13881, 53.00447 ], [ -1.13842, 53.00496 ], [ -1.13708, 53.00533 ], [ -1.13578, 53.00539 ], [ -1.1355, 53.0057 ], [ -1.13458, 53.00549 ], [ -1.13287, 53.00604 ], [ -1.13282, 53.00606 ], [ -1.1324, 53.00621 ], [ -1.13204, 53.00599 ], [ -1.13102, 53.00615 ], [ -1.13012, 53.00589 ], [ -1.13007, 53.0056 ], [ -1.12936, 53.00591 ], [ -1.12911, 53.00726 ], [ -1.1304, 53.00736 ], [ -1.13049, 53.00683 ], [ -1.13163, 53.00705 ], [ -1.13132, 53.00729 ], [ -1.13238, 53.00849 ], [ -1.13193, 53.00902 ], [ -1.13301, 53.00967 ], [ -1.13268, 53.01054 ], [ -1.13142, 53.0105 ], [ -1.13113, 53.01075 ], [ -1.12959, 53.00964 ], [ -1.12836, 53.00871 ], [ -1.1272, 53.00782 ], [ -1.12732, 53.00642 ], [ -1.1285, 53.00669 ], [ -1.1289, 53.00512 ], [ -1.12917, 53.00399 ], [ -1.12963, 53.00252 ], [ -1.12986, 53.00209 ], [ -1.13047, 53.00143 ], [ -1.13114, 53.00094 ], [ -1.13384, 52.99873 ], [ -1.13394, 52.99861 ], [ -1.13442, 52.99813 ], [ -1.13455, 52.99801 ], [ -1.13606, 52.99696 ], [ -1.13778, 52.9963 ], [ -1.13825, 52.99484 ], [ -1.14049, 52.9948 ], [ -1.14067, 52.99571 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Arnold", "bua_code": "E35000779", "msoa_code": "E02005871", "population": 7168, "outputarea_code": "E00143577", "lsoa_code": "E01028182", "la_name": "Gedling", "bua_name": "Arnold BUASD", "constituency_name": "Gedling", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.10785, "latitude": 53.00358, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.10243, 52.99844 ], [ -1.10276, 52.99787 ], [ -1.10278, 52.99783 ], [ -1.10286, 52.99764 ], [ -1.10361, 52.9956 ], [ -1.10424, 52.99448 ], [ -1.10644, 52.99315 ], [ -1.10896, 52.9919 ], [ -1.10932, 52.9921 ], [ -1.11027, 52.99274 ], [ -1.11321, 52.99457 ], [ -1.11361, 52.9948 ], [ -1.11481, 52.99549 ], [ -1.11779, 52.99699 ], [ -1.11893, 52.99799 ], [ -1.12062, 52.9991 ], [ -1.12096, 52.99931 ], [ -1.11817, 53.001 ], [ -1.11711, 53.00157 ], [ -1.11485, 53.00274 ], [ -1.11372, 53.00333 ], [ -1.11168, 53.00441 ], [ -1.11518, 53.00561 ], [ -1.11489, 53.00601 ], [ -1.11485, 53.00606 ], [ -1.11458, 53.00647 ], [ -1.11414, 53.00646 ], [ -1.11304, 53.00665 ], [ -1.11157, 53.00714 ], [ -1.11102, 53.00811 ], [ -1.11033, 53.0099 ], [ -1.1101, 53.01051 ], [ -1.11001, 53.01095 ], [ -1.10964, 53.01416 ], [ -1.10632, 53.01366 ], [ -1.1063, 53.01458 ], [ -1.10547, 53.01521 ], [ -1.10257, 53.01678 ], [ -1.09941, 53.01541 ], [ -1.09928, 53.01463 ], [ -1.10034, 53.01298 ], [ -1.10058, 53.01126 ], [ -1.09999, 53.00822 ], [ -1.10052, 53.00356 ], [ -1.10146, 53.00122 ], [ -1.10241, 52.99847 ], [ -1.10243, 52.99844 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Arnold", "bua_code": "E35000779", "msoa_code": "E02005872", "population": 1331, "outputarea_code": "E00143570", "lsoa_code": "E01028178", "la_name": "Gedling", "bua_name": "Arnold BUASD", "constituency_name": "Sherwood", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.10005, "latitude": 52.99524, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.10644, 52.99315 ], [ -1.10424, 52.99448 ], [ -1.10361, 52.9956 ], [ -1.10286, 52.99764 ], [ -1.10278, 52.99783 ], [ -1.10276, 52.99787 ], [ -1.10243, 52.99844 ], [ -1.10241, 52.99847 ], [ -1.10116, 52.99791 ], [ -1.10105, 52.99784 ], [ -1.09249, 52.99532 ], [ -1.09026, 52.99505 ], [ -1.09178, 52.99518 ], [ -1.0926, 52.99426 ], [ -1.09677, 52.99533 ], [ -1.09679, 52.99474 ], [ -1.09751, 52.99436 ], [ -1.10103, 52.99286 ], [ -1.10315, 52.9928 ], [ -1.10473, 52.99314 ], [ -1.10552, 52.99272 ], [ -1.10644, 52.99315 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Arnold", "bua_code": "E35000779", "msoa_code": "E02005873", "population": 10045, "outputarea_code": "E00143556", "lsoa_code": "E01028177", "la_name": "Gedling", "bua_name": "Arnold BUASD", "constituency_name": "Gedling", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.12642, "latitude": 52.99153, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.11542, 52.98811 ], [ -1.11737, 52.98678 ], [ -1.12035, 52.98501 ], [ -1.1228, 52.98347 ], [ -1.12373, 52.98347 ], [ -1.12485, 52.98406 ], [ -1.1273, 52.98503 ], [ -1.1312, 52.98608 ], [ -1.13282, 52.98652 ], [ -1.13594, 52.98653 ], [ -1.1362, 52.98652 ], [ -1.1378, 52.98633 ], [ -1.13982, 52.98595 ], [ -1.14245, 52.98627 ], [ -1.14033, 52.98922 ], [ -1.14031, 52.98926 ], [ -1.14, 52.99189 ], [ -1.14004, 52.99259 ], [ -1.1392, 52.99347 ], [ -1.1387, 52.99422 ], [ -1.13825, 52.99484 ], [ -1.13778, 52.9963 ], [ -1.13606, 52.99696 ], [ -1.13455, 52.99801 ], [ -1.13442, 52.99813 ], [ -1.13394, 52.99861 ], [ -1.13384, 52.99873 ], [ -1.13339, 52.99864 ], [ -1.13331, 52.99682 ], [ -1.13066, 52.99798 ], [ -1.13063, 52.99816 ], [ -1.13018, 52.99835 ], [ -1.13142, 52.99918 ], [ -1.13002, 53.00005 ], [ -1.12906, 52.99975 ], [ -1.12902, 52.99882 ], [ -1.1258, 52.99746 ], [ -1.12455, 52.99797 ], [ -1.12453, 52.998 ], [ -1.12409, 52.99775 ], [ -1.1254, 52.99701 ], [ -1.12517, 52.99691 ], [ -1.12436, 52.99702 ], [ -1.12354, 52.9975 ], [ -1.12258, 52.99758 ], [ -1.12173, 52.99758 ], [ -1.12079, 52.99799 ], [ -1.12069, 52.99807 ], [ -1.12025, 52.99838 ], [ -1.121, 52.99883 ], [ -1.12062, 52.9991 ], [ -1.11893, 52.99799 ], [ -1.11779, 52.99699 ], [ -1.11481, 52.99549 ], [ -1.11361, 52.9948 ], [ -1.11321, 52.99457 ], [ -1.11027, 52.99274 ], [ -1.10932, 52.9921 ], [ -1.10896, 52.9919 ], [ -1.11385, 52.98913 ], [ -1.11542, 52.98811 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Arnold", "bua_code": "E35000779", "msoa_code": "E02006835", "population": 635, "outputarea_code": "E00143400", "lsoa_code": "E01032622", "la_name": "Gedling", "bua_name": "Arnold BUASD", "constituency_name": "Gedling", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.1387, "latitude": 53.00829, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.13556, 53.00923 ], [ -1.13563, 53.0084 ], [ -1.13733, 53.00631 ], [ -1.13763, 53.00568 ], [ -1.13708, 53.00533 ], [ -1.13842, 53.00496 ], [ -1.13881, 53.00447 ], [ -1.14039, 53.00496 ], [ -1.14016, 53.00587 ], [ -1.14064, 53.00594 ], [ -1.14051, 53.0066 ], [ -1.14121, 53.00666 ], [ -1.14124, 53.00734 ], [ -1.1429, 53.00742 ], [ -1.14231, 53.00829 ], [ -1.14073, 53.01047 ], [ -1.13936, 53.01109 ], [ -1.13785, 53.01128 ], [ -1.13761, 53.01095 ], [ -1.13515, 53.01067 ], [ -1.13549, 53.01025 ], [ -1.13492, 53.01009 ], [ -1.13467, 53.00952 ], [ -1.13499, 53.00912 ], [ -1.13556, 53.00923 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Ashbourne", "bua_code": "E34003707", "msoa_code": "E02004075", "population": 1745, "outputarea_code": "E00099101", "lsoa_code": "E01019595", "la_name": "Derbyshire Dales", "bua_name": "Ashbourne BUA", "constituency_name": "Derbyshire Dales", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.73323, "latitude": 53.01935, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.73805, 53.01554 ], [ -1.73989, 53.01481 ], [ -1.7429, 53.01289 ], [ -1.74295, 53.01343 ], [ -1.7458, 53.01187 ], [ -1.74633, 53.01213 ], [ -1.74873, 53.01219 ], [ -1.74894, 53.01347 ], [ -1.74794, 53.01406 ], [ -1.74842, 53.01438 ], [ -1.74706, 53.01499 ], [ -1.74755, 53.01531 ], [ -1.7466, 53.01589 ], [ -1.74113, 53.01744 ], [ -1.73843, 53.01875 ], [ -1.7375, 53.02033 ], [ -1.73647, 53.02141 ], [ -1.73676, 53.02176 ], [ -1.73677, 53.02245 ], [ -1.73765, 53.0227 ], [ -1.737, 53.02461 ], [ -1.73138, 53.02355 ], [ -1.72961, 53.0246 ], [ -1.728, 53.02423 ], [ -1.72681, 53.02565 ], [ -1.72563, 53.02614 ], [ -1.72497, 53.02597 ], [ -1.7249, 53.02541 ], [ -1.72336, 53.02531 ], [ -1.72546, 53.02447 ], [ -1.72362, 53.02388 ], [ -1.72357, 53.02358 ], [ -1.72253, 53.02392 ], [ -1.72178, 53.0234 ], [ -1.72074, 53.02357 ], [ -1.72014, 53.023 ], [ -1.71945, 53.01977 ], [ -1.71975, 53.01847 ], [ -1.72049, 53.0184 ], [ -1.72068, 53.01707 ], [ -1.72411, 53.01737 ], [ -1.72429, 53.0182 ], [ -1.72235, 53.01882 ], [ -1.72616, 53.02108 ], [ -1.7264, 53.0214 ], [ -1.72562, 53.02162 ], [ -1.72583, 53.02195 ], [ -1.72755, 53.02168 ], [ -1.72853, 53.02196 ], [ -1.72988, 53.02192 ], [ -1.73243, 53.02078 ], [ -1.73151, 53.02035 ], [ -1.73206, 53.01977 ], [ -1.73152, 53.01925 ], [ -1.73225, 53.01858 ], [ -1.73148, 53.01827 ], [ -1.73105, 53.01862 ], [ -1.73022, 53.01839 ], [ -1.73045, 53.01741 ], [ -1.73248, 53.01653 ], [ -1.73358, 53.01697 ], [ -1.73788, 53.01558 ], [ -1.73805, 53.01554 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Ashbourne", "bua_code": "E34003707", "msoa_code": "E02004076", "population": 6985, "outputarea_code": "E00099099", "lsoa_code": "E01019594", "la_name": "Derbyshire Dales", "bua_name": "Ashbourne BUA", "constituency_name": "Derbyshire Dales", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.72445, "latitude": 53.01065, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.70897, 53.01125 ], [ -1.71013, 53.01077 ], [ -1.70946, 53.00875 ], [ -1.70673, 53.00559 ], [ -1.70692, 53.00522 ], [ -1.70573, 53.00458 ], [ -1.70772, 53.00072 ], [ -1.71268, 53.00333 ], [ -1.71324, 53.00297 ], [ -1.71465, 53.0028 ], [ -1.72334, 53.00285 ], [ -1.72626, 53.00257 ], [ -1.72706, 53.00352 ], [ -1.7303, 53.00355 ], [ -1.73328, 53.00525 ], [ -1.73765, 53.00682 ], [ -1.73971, 53.00826 ], [ -1.74237, 53.00924 ], [ -1.74276, 53.00902 ], [ -1.74305, 53.00923 ], [ -1.74443, 53.01041 ], [ -1.74506, 53.01044 ], [ -1.74613, 53.01103 ], [ -1.74736, 53.01056 ], [ -1.74948, 53.01083 ], [ -1.74873, 53.01219 ], [ -1.74633, 53.01213 ], [ -1.7458, 53.01187 ], [ -1.74295, 53.01343 ], [ -1.7429, 53.01289 ], [ -1.73989, 53.01481 ], [ -1.73805, 53.01554 ], [ -1.73788, 53.01558 ], [ -1.73358, 53.01697 ], [ -1.73248, 53.01653 ], [ -1.73045, 53.01741 ], [ -1.73022, 53.01839 ], [ -1.73105, 53.01862 ], [ -1.73148, 53.01827 ], [ -1.73225, 53.01858 ], [ -1.73152, 53.01925 ], [ -1.73206, 53.01977 ], [ -1.73151, 53.02035 ], [ -1.73243, 53.02078 ], [ -1.72988, 53.02192 ], [ -1.72853, 53.02196 ], [ -1.72755, 53.02168 ], [ -1.72583, 53.02195 ], [ -1.72562, 53.02162 ], [ -1.7264, 53.0214 ], [ -1.72616, 53.02108 ], [ -1.72235, 53.01882 ], [ -1.72429, 53.0182 ], [ -1.72411, 53.01737 ], [ -1.72068, 53.01707 ], [ -1.71734, 53.01631 ], [ -1.71628, 53.01691 ], [ -1.71447, 53.01614 ], [ -1.71441, 53.01573 ], [ -1.71387, 53.01555 ], [ -1.71352, 53.01626 ], [ -1.7123, 53.01673 ], [ -1.71108, 53.01525 ], [ -1.71032, 53.01542 ], [ -1.71029, 53.01494 ], [ -1.70782, 53.01386 ], [ -1.70728, 53.0137 ], [ -1.70813, 53.01157 ], [ -1.70897, 53.01125 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Ashby-de-la-Zouch", "bua_code": "E34003491", "msoa_code": "E02005399", "population": 7263, "outputarea_code": "E00131507", "lsoa_code": "E01025915", "la_name": "North West Leicestershire", "bua_name": "Ashby-de-la-Zouch BUA", "constituency_name": "North West Leicestershire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.45973, "latitude": 52.7597, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.46243, 52.74514 ], [ -1.46204, 52.74451 ], [ -1.46358, 52.74437 ], [ -1.46417, 52.74357 ], [ -1.46378, 52.74293 ], [ -1.46485, 52.74083 ], [ -1.4637, 52.73945 ], [ -1.46383, 52.7391 ], [ -1.46489, 52.73884 ], [ -1.46499, 52.73912 ], [ -1.46583, 52.7391 ], [ -1.46573, 52.73982 ], [ -1.46648, 52.74003 ], [ -1.46577, 52.74064 ], [ -1.46562, 52.74178 ], [ -1.46638, 52.74163 ], [ -1.46734, 52.74199 ], [ -1.46763, 52.74133 ], [ -1.46632, 52.741 ], [ -1.4665, 52.74069 ], [ -1.46726, 52.74081 ], [ -1.46753, 52.74051 ], [ -1.46854, 52.74078 ], [ -1.46848, 52.74163 ], [ -1.46897, 52.74154 ], [ -1.46917, 52.74195 ], [ -1.46946, 52.74167 ], [ -1.47019, 52.74155 ], [ -1.47083, 52.74185 ], [ -1.47034, 52.74283 ], [ -1.47168, 52.74283 ], [ -1.47278, 52.741 ], [ -1.47408, 52.74131 ], [ -1.47357, 52.74198 ], [ -1.47273, 52.74192 ], [ -1.47255, 52.74281 ], [ -1.47424, 52.7428 ], [ -1.47445, 52.74495 ], [ -1.47344, 52.74581 ], [ -1.47347, 52.74663 ], [ -1.4731, 52.7467 ], [ -1.47385, 52.74806 ], [ -1.47468, 52.74814 ], [ -1.47711, 52.74785 ], [ -1.4788, 52.74797 ], [ -1.47952, 52.74814 ], [ -1.48309, 52.74985 ], [ -1.48572, 52.75153 ], [ -1.48724, 52.75292 ], [ -1.48888, 52.75533 ], [ -1.49399, 52.75904 ], [ -1.49291, 52.75966 ], [ -1.49247, 52.75942 ], [ -1.48825, 52.76251 ], [ -1.48779, 52.76234 ], [ -1.4859, 52.76304 ], [ -1.48569, 52.76278 ], [ -1.47993, 52.76386 ], [ -1.47847, 52.76368 ], [ -1.47714, 52.76597 ], [ -1.47334, 52.76549 ], [ -1.47255, 52.76655 ], [ -1.47183, 52.76625 ], [ -1.46876, 52.76679 ], [ -1.46834, 52.76739 ], [ -1.46645, 52.76797 ], [ -1.46355, 52.77105 ], [ -1.46216, 52.77138 ], [ -1.46042, 52.77467 ], [ -1.46041, 52.77623 ], [ -1.45588, 52.77709 ], [ -1.4571, 52.77741 ], [ -1.45876, 52.77684 ], [ -1.4595, 52.77708 ], [ -1.45709, 52.77909 ], [ -1.45937, 52.77981 ], [ -1.45986, 52.78016 ], [ -1.45952, 52.78034 ], [ -1.46121, 52.7814 ], [ -1.46105, 52.78174 ], [ -1.45829, 52.78281 ], [ -1.45884, 52.78367 ], [ -1.45765, 52.7844 ], [ -1.45799, 52.78471 ], [ -1.45884, 52.78444 ], [ -1.46088, 52.78603 ], [ -1.46151, 52.78585 ], [ -1.46279, 52.78671 ], [ -1.46233, 52.78714 ], [ -1.45754, 52.78859 ], [ -1.45487, 52.78899 ], [ -1.45548, 52.78725 ], [ -1.45459, 52.78667 ], [ -1.45498, 52.78598 ], [ -1.45457, 52.78469 ], [ -1.45154, 52.78263 ], [ -1.45036, 52.78064 ], [ -1.44681, 52.77907 ], [ -1.44521, 52.77948 ], [ -1.44066, 52.77984 ], [ -1.44244, 52.77656 ], [ -1.44132, 52.77381 ], [ -1.44141, 52.77267 ], [ -1.44295, 52.77254 ], [ -1.44356, 52.77169 ], [ -1.44243, 52.7708 ], [ -1.44106, 52.76743 ], [ -1.44038, 52.76458 ], [ -1.44071, 52.76242 ], [ -1.44001, 52.76219 ], [ -1.43639, 52.76093 ], [ -1.43808, 52.75823 ], [ -1.43665, 52.7581 ], [ -1.4361, 52.75765 ], [ -1.43508, 52.75745 ], [ -1.43434, 52.75612 ], [ -1.43503, 52.75501 ], [ -1.43733, 52.75421 ], [ -1.43712, 52.75396 ], [ -1.43983, 52.75169 ], [ -1.44098, 52.7497 ], [ -1.43926, 52.74918 ], [ -1.43955, 52.7472 ], [ -1.44162, 52.74562 ], [ -1.44387, 52.74544 ], [ -1.44442, 52.74142 ], [ -1.44975, 52.74269 ], [ -1.46022, 52.74289 ], [ -1.46086, 52.74344 ], [ -1.46014, 52.74373 ], [ -1.4614, 52.74386 ], [ -1.46173, 52.74523 ], [ -1.46243, 52.74514 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Ashby-de-la-Zouch", "bua_code": "E34003491", "msoa_code": "E02005402", "population": 6154, "outputarea_code": "E00131508", "lsoa_code": "E01025914", "la_name": "North West Leicestershire", "bua_name": "Ashby-de-la-Zouch BUA", "constituency_name": "North West Leicestershire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.47837, "latitude": 52.74143, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.47424, 52.7428 ], [ -1.47255, 52.74281 ], [ -1.47273, 52.74192 ], [ -1.47357, 52.74198 ], [ -1.47408, 52.74131 ], [ -1.47278, 52.741 ], [ -1.47168, 52.74283 ], [ -1.47034, 52.74283 ], [ -1.47083, 52.74185 ], [ -1.47019, 52.74155 ], [ -1.46946, 52.74167 ], [ -1.46917, 52.74195 ], [ -1.46897, 52.74154 ], [ -1.46848, 52.74163 ], [ -1.46854, 52.74078 ], [ -1.46753, 52.74051 ], [ -1.46726, 52.74081 ], [ -1.4665, 52.74069 ], [ -1.46632, 52.741 ], [ -1.46763, 52.74133 ], [ -1.46734, 52.74199 ], [ -1.46638, 52.74163 ], [ -1.46562, 52.74178 ], [ -1.46577, 52.74064 ], [ -1.46648, 52.74003 ], [ -1.46573, 52.73982 ], [ -1.46583, 52.7391 ], [ -1.46499, 52.73912 ], [ -1.46489, 52.73884 ], [ -1.46383, 52.7391 ], [ -1.4637, 52.73945 ], [ -1.46485, 52.74083 ], [ -1.46378, 52.74293 ], [ -1.46417, 52.74357 ], [ -1.46358, 52.74437 ], [ -1.46204, 52.74451 ], [ -1.46243, 52.74514 ], [ -1.46173, 52.74523 ], [ -1.4614, 52.74386 ], [ -1.46014, 52.74373 ], [ -1.46086, 52.74344 ], [ -1.46022, 52.74289 ], [ -1.44975, 52.74269 ], [ -1.44442, 52.74142 ], [ -1.444, 52.74077 ], [ -1.44726, 52.73826 ], [ -1.44932, 52.73717 ], [ -1.45189, 52.73864 ], [ -1.45638, 52.73995 ], [ -1.45723, 52.73951 ], [ -1.4574, 52.73885 ], [ -1.45668, 52.73873 ], [ -1.45844, 52.73657 ], [ -1.45963, 52.73565 ], [ -1.46032, 52.73599 ], [ -1.46391, 52.73396 ], [ -1.46753, 52.73383 ], [ -1.47065, 52.73534 ], [ -1.47144, 52.73695 ], [ -1.47237, 52.73685 ], [ -1.47422, 52.73551 ], [ -1.47713, 52.73356 ], [ -1.47688, 52.73284 ], [ -1.48234, 52.73194 ], [ -1.48723, 52.72933 ], [ -1.48823, 52.72684 ], [ -1.49009, 52.7278 ], [ -1.4918, 52.72822 ], [ -1.49406, 52.73012 ], [ -1.49733, 52.73136 ], [ -1.4983, 52.73304 ], [ -1.49546, 52.73392 ], [ -1.49326, 52.7351 ], [ -1.48983, 52.73564 ], [ -1.48892, 52.73636 ], [ -1.48822, 52.73767 ], [ -1.48653, 52.73856 ], [ -1.4882, 52.73932 ], [ -1.48793, 52.74007 ], [ -1.48836, 52.74121 ], [ -1.48834, 52.74231 ], [ -1.48842, 52.74383 ], [ -1.4897, 52.74517 ], [ -1.49144, 52.74586 ], [ -1.49194, 52.74637 ], [ -1.49173, 52.74682 ], [ -1.49086, 52.74685 ], [ -1.48931, 52.74697 ], [ -1.4898, 52.74725 ], [ -1.48777, 52.74882 ], [ -1.49191, 52.75063 ], [ -1.49912, 52.75458 ], [ -1.503, 52.75579 ], [ -1.50206, 52.75653 ], [ -1.49974, 52.75748 ], [ -1.49886, 52.7572 ], [ -1.49576, 52.75989 ], [ -1.49399, 52.75904 ], [ -1.48888, 52.75533 ], [ -1.48724, 52.75292 ], [ -1.48572, 52.75153 ], [ -1.48309, 52.74985 ], [ -1.47952, 52.74814 ], [ -1.4788, 52.74797 ], [ -1.47711, 52.74785 ], [ -1.47468, 52.74814 ], [ -1.47385, 52.74806 ], [ -1.4731, 52.7467 ], [ -1.47347, 52.74663 ], [ -1.47344, 52.74581 ], [ -1.47445, 52.74495 ], [ -1.47424, 52.7428 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Beeston (Broxtowe)", "bua_code": "E35001323", "msoa_code": "E02005856", "population": 6943, "outputarea_code": "E00143117", "lsoa_code": "E01028090", "la_name": "Broxtowe", "bua_name": "Beeston (Broxtowe) BUASD", "constituency_name": "Broxtowe", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.24355, "latitude": 52.9351, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.23312, 52.93764 ], [ -1.23074, 52.93764 ], [ -1.22693, 52.93774 ], [ -1.22609, 52.93782 ], [ -1.2249, 52.93547 ], [ -1.22337, 52.93374 ], [ -1.22555, 52.93321 ], [ -1.22423, 52.93218 ], [ -1.22388, 52.93231 ], [ -1.22565, 52.93065 ], [ -1.22842, 52.92935 ], [ -1.23, 52.92966 ], [ -1.22957, 52.92891 ], [ -1.23111, 52.92788 ], [ -1.23068, 52.92754 ], [ -1.23468, 52.92671 ], [ -1.23576, 52.92656 ], [ -1.23726, 52.92867 ], [ -1.2412, 52.92692 ], [ -1.24204, 52.9277 ], [ -1.24411, 52.92666 ], [ -1.24213, 52.92551 ], [ -1.2435, 52.92503 ], [ -1.24528, 52.92499 ], [ -1.24765, 52.92475 ], [ -1.25022, 52.92447 ], [ -1.25857, 52.92452 ], [ -1.25827, 52.92683 ], [ -1.25701, 52.92822 ], [ -1.25762, 52.9285 ], [ -1.25722, 52.92891 ], [ -1.25727, 52.93082 ], [ -1.25731, 52.93212 ], [ -1.25787, 52.93372 ], [ -1.25847, 52.93481 ], [ -1.25857, 52.935 ], [ -1.25865, 52.93521 ], [ -1.25837, 52.93613 ], [ -1.25778, 52.93715 ], [ -1.2577, 52.93794 ], [ -1.25834, 52.93873 ], [ -1.26028, 52.93925 ], [ -1.25878, 52.94111 ], [ -1.25502, 52.94447 ], [ -1.25245, 52.94228 ], [ -1.24951, 52.94232 ], [ -1.24635, 52.94277 ], [ -1.24662, 52.94394 ], [ -1.24823, 52.94354 ], [ -1.2471, 52.94517 ], [ -1.24647, 52.94507 ], [ -1.24616, 52.94703 ], [ -1.24496, 52.94695 ], [ -1.24422, 52.94737 ], [ -1.24477, 52.94764 ], [ -1.24426, 52.94871 ], [ -1.24447, 52.94943 ], [ -1.24401, 52.94923 ], [ -1.24345, 52.94888 ], [ -1.24128, 52.9474 ], [ -1.23787, 52.94576 ], [ -1.23559, 52.94517 ], [ -1.23509, 52.94454 ], [ -1.23445, 52.9438 ], [ -1.23411, 52.94321 ], [ -1.23428, 52.94208 ], [ -1.23322, 52.94231 ], [ -1.23243, 52.94205 ], [ -1.23235, 52.94169 ], [ -1.23384, 52.94154 ], [ -1.23339, 52.9394 ], [ -1.23318, 52.93879 ], [ -1.23312, 52.93764 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Beeston (Broxtowe)", "bua_code": "E35001323", "msoa_code": "E02005857", "population": 356, "outputarea_code": "E00143309", "lsoa_code": "E01028125", "la_name": "Broxtowe", "bua_name": "Beeston (Broxtowe) BUASD", "constituency_name": "Broxtowe", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.25854, "latitude": 52.94524, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.26028, 52.93925 ], [ -1.26173, 52.93981 ], [ -1.26126, 52.94005 ], [ -1.25999, 52.94108 ], [ -1.26167, 52.94181 ], [ -1.26128, 52.9421 ], [ -1.26156, 52.94263 ], [ -1.26385, 52.94346 ], [ -1.26438, 52.94409 ], [ -1.26652, 52.94416 ], [ -1.26814, 52.94464 ], [ -1.26674, 52.9451 ], [ -1.26484, 52.94636 ], [ -1.26214, 52.94604 ], [ -1.26069, 52.94615 ], [ -1.25879, 52.94691 ], [ -1.25564, 52.94901 ], [ -1.25394, 52.94943 ], [ -1.25333, 52.9502 ], [ -1.25244, 52.95056 ], [ -1.25083, 52.94856 ], [ -1.25284, 52.9473 ], [ -1.25361, 52.94582 ], [ -1.25502, 52.94447 ], [ -1.25878, 52.94111 ], [ -1.26028, 52.93925 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Beeston (Broxtowe)", "bua_code": "E35001323", "msoa_code": "E02005858", "population": 7330, "outputarea_code": "E00143060", "lsoa_code": "E01028079", "la_name": "Broxtowe", "bua_name": "Beeston (Broxtowe) BUASD", "constituency_name": "Broxtowe", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.22133, "latitude": 52.93419, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.22552, 52.92675 ], [ -1.22638, 52.92656 ], [ -1.22611, 52.92632 ], [ -1.22667, 52.92583 ], [ -1.2273, 52.92607 ], [ -1.22779, 52.9259 ], [ -1.22998, 52.92762 ], [ -1.23068, 52.92754 ], [ -1.23111, 52.92788 ], [ -1.22957, 52.92891 ], [ -1.23, 52.92966 ], [ -1.22842, 52.92935 ], [ -1.22565, 52.93065 ], [ -1.22388, 52.93231 ], [ -1.22423, 52.93218 ], [ -1.22555, 52.93321 ], [ -1.22337, 52.93374 ], [ -1.2249, 52.93547 ], [ -1.22609, 52.93782 ], [ -1.22693, 52.93774 ], [ -1.23074, 52.93764 ], [ -1.23312, 52.93764 ], [ -1.23318, 52.93879 ], [ -1.23339, 52.9394 ], [ -1.23384, 52.94154 ], [ -1.23235, 52.94169 ], [ -1.23243, 52.94205 ], [ -1.23126, 52.94224 ], [ -1.22979, 52.94173 ], [ -1.22679, 52.9412 ], [ -1.22595, 52.9407 ], [ -1.22608, 52.94007 ], [ -1.22706, 52.93954 ], [ -1.22638, 52.93897 ], [ -1.22357, 52.93922 ], [ -1.22369, 52.93949 ], [ -1.22302, 52.93962 ], [ -1.22344, 52.94047 ], [ -1.22222, 52.94062 ], [ -1.22197, 52.9411 ], [ -1.22, 52.94062 ], [ -1.21809, 52.94059 ], [ -1.21713, 52.93893 ], [ -1.21716, 52.93882 ], [ -1.21625, 52.93723 ], [ -1.21714, 52.93676 ], [ -1.21955, 52.93669 ], [ -1.22004, 52.93613 ], [ -1.21583, 52.93604 ], [ -1.21555, 52.93585 ], [ -1.21744, 52.93497 ], [ -1.21682, 52.93425 ], [ -1.21582, 52.93415 ], [ -1.21528, 52.93405 ], [ -1.21076, 52.93357 ], [ -1.2107, 52.93356 ], [ -1.20935, 52.93331 ], [ -1.20889, 52.934 ], [ -1.20605, 52.93277 ], [ -1.20511, 52.9334 ], [ -1.20782, 52.93129 ], [ -1.20953, 52.93016 ], [ -1.2125, 52.92865 ], [ -1.21263, 52.92859 ], [ -1.21293, 52.92877 ], [ -1.21341, 52.92872 ], [ -1.215, 52.92958 ], [ -1.21449, 52.93003 ], [ -1.21626, 52.93107 ], [ -1.21581, 52.93138 ], [ -1.21606, 52.93152 ], [ -1.21877, 52.92972 ], [ -1.22015, 52.93088 ], [ -1.22049, 52.93072 ], [ -1.22027, 52.93053 ], [ -1.22171, 52.92987 ], [ -1.2206, 52.92897 ], [ -1.2202, 52.92898 ], [ -1.22014, 52.9284 ], [ -1.22151, 52.92825 ], [ -1.22181, 52.92846 ], [ -1.22245, 52.92816 ], [ -1.22225, 52.92786 ], [ -1.22315, 52.92739 ], [ -1.22352, 52.92765 ], [ -1.22392, 52.92746 ], [ -1.22432, 52.92727 ], [ -1.22406, 52.92704 ], [ -1.22516, 52.92647 ], [ -1.22552, 52.92675 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Beeston (Broxtowe)", "bua_code": "E35001323", "msoa_code": "E02005860", "population": 8709, "outputarea_code": "E00143042", "lsoa_code": "E01028074", "la_name": "Broxtowe", "bua_name": "Beeston (Broxtowe) BUASD", "constituency_name": "Broxtowe", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.21277, "latitude": 52.92622, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.21602, 52.92027 ], [ -1.21776, 52.92009 ], [ -1.21955, 52.91986 ], [ -1.22074, 52.92087 ], [ -1.22131, 52.92152 ], [ -1.22181, 52.92188 ], [ -1.22384, 52.92083 ], [ -1.2242, 52.92107 ], [ -1.22495, 52.92196 ], [ -1.22691, 52.9228 ], [ -1.22913, 52.92277 ], [ -1.2303, 52.9235 ], [ -1.22974, 52.92387 ], [ -1.23028, 52.92432 ], [ -1.22754, 52.92572 ], [ -1.22779, 52.9259 ], [ -1.2273, 52.92607 ], [ -1.22667, 52.92583 ], [ -1.22611, 52.92632 ], [ -1.22638, 52.92656 ], [ -1.22552, 52.92675 ], [ -1.22516, 52.92647 ], [ -1.22406, 52.92704 ], [ -1.22432, 52.92727 ], [ -1.22392, 52.92746 ], [ -1.22352, 52.92765 ], [ -1.22315, 52.92739 ], [ -1.22225, 52.92786 ], [ -1.22245, 52.92816 ], [ -1.22181, 52.92846 ], [ -1.22151, 52.92825 ], [ -1.22014, 52.9284 ], [ -1.2202, 52.92898 ], [ -1.2206, 52.92897 ], [ -1.22171, 52.92987 ], [ -1.22027, 52.93053 ], [ -1.22049, 52.93072 ], [ -1.22015, 52.93088 ], [ -1.21877, 52.92972 ], [ -1.21606, 52.93152 ], [ -1.21581, 52.93138 ], [ -1.21626, 52.93107 ], [ -1.21449, 52.93003 ], [ -1.215, 52.92958 ], [ -1.21341, 52.92872 ], [ -1.21293, 52.92877 ], [ -1.21263, 52.92859 ], [ -1.2125, 52.92865 ], [ -1.20953, 52.93016 ], [ -1.20782, 52.93129 ], [ -1.20511, 52.9334 ], [ -1.20311, 52.93229 ], [ -1.20308, 52.93227 ], [ -1.20186, 52.93121 ], [ -1.20047, 52.93025 ], [ -1.199, 52.93123 ], [ -1.19663, 52.92965 ], [ -1.19735, 52.92907 ], [ -1.19577, 52.92786 ], [ -1.19973, 52.92547 ], [ -1.20247, 52.92382 ], [ -1.20322, 52.92337 ], [ -1.2039, 52.92371 ], [ -1.20649, 52.92508 ], [ -1.20671, 52.92496 ], [ -1.20683, 52.92487 ], [ -1.20693, 52.92482 ], [ -1.20992, 52.92279 ], [ -1.21004, 52.92268 ], [ -1.2104, 52.92244 ], [ -1.21157, 52.92164 ], [ -1.21166, 52.92156 ], [ -1.21375, 52.92067 ], [ -1.21602, 52.92027 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Beeston (Broxtowe)", "bua_code": "E35001323", "msoa_code": "E02005861", "population": 5664, "outputarea_code": "E00143080", "lsoa_code": "E01028082", "la_name": "Broxtowe", "bua_name": "Beeston (Broxtowe) BUASD", "constituency_name": "Broxtowe", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.19968, "latitude": 52.91833, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.19499, 52.91154 ], [ -1.19756, 52.90996 ], [ -1.19901, 52.90948 ], [ -1.20571, 52.91244 ], [ -1.2083, 52.91265 ], [ -1.21051, 52.91227 ], [ -1.21137, 52.91339 ], [ -1.21065, 52.91407 ], [ -1.21336, 52.91645 ], [ -1.21388, 52.91686 ], [ -1.21776, 52.92009 ], [ -1.21602, 52.92027 ], [ -1.21375, 52.92067 ], [ -1.21166, 52.92156 ], [ -1.21157, 52.92164 ], [ -1.2104, 52.92244 ], [ -1.21004, 52.92268 ], [ -1.20992, 52.92279 ], [ -1.20693, 52.92482 ], [ -1.20683, 52.92487 ], [ -1.20671, 52.92496 ], [ -1.20649, 52.92508 ], [ -1.2039, 52.92371 ], [ -1.20322, 52.92337 ], [ -1.20247, 52.92382 ], [ -1.19973, 52.92547 ], [ -1.19577, 52.92786 ], [ -1.19391, 52.92641 ], [ -1.19082, 52.92389 ], [ -1.18769, 52.92135 ], [ -1.1823, 52.91734 ], [ -1.18516, 52.91599 ], [ -1.19339, 52.91244 ], [ -1.19499, 52.91154 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Beeston (Broxtowe)", "bua_code": "E35001323", "msoa_code": "E02005862", "population": 7960, "outputarea_code": "E00143165", "lsoa_code": "E01028099", "la_name": "Broxtowe", "bua_name": "Beeston (Broxtowe) BUASD", "constituency_name": "Broxtowe", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.2476, "latitude": 52.91769, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.23674, 52.91049 ], [ -1.23579, 52.90906 ], [ -1.23594, 52.90856 ], [ -1.23696, 52.90607 ], [ -1.23859, 52.90927 ], [ -1.23959, 52.91126 ], [ -1.24014, 52.91222 ], [ -1.24045, 52.91285 ], [ -1.24588, 52.91165 ], [ -1.24646, 52.91158 ], [ -1.24835, 52.91133 ], [ -1.25093, 52.91094 ], [ -1.25137, 52.9106 ], [ -1.25291, 52.91032 ], [ -1.25628, 52.90949 ], [ -1.25873, 52.90885 ], [ -1.26008, 52.91263 ], [ -1.26022, 52.91303 ], [ -1.25814, 52.91326 ], [ -1.25849, 52.91462 ], [ -1.25808, 52.91542 ], [ -1.25921, 52.91577 ], [ -1.26018, 52.9177 ], [ -1.25829, 52.91788 ], [ -1.25873, 52.91979 ], [ -1.25845, 52.92039 ], [ -1.25846, 52.9206 ], [ -1.25857, 52.92452 ], [ -1.25022, 52.92447 ], [ -1.24765, 52.92475 ], [ -1.24528, 52.92499 ], [ -1.2435, 52.92503 ], [ -1.24213, 52.92551 ], [ -1.24411, 52.92666 ], [ -1.24204, 52.9277 ], [ -1.2412, 52.92692 ], [ -1.23893, 52.92573 ], [ -1.23799, 52.92511 ], [ -1.23753, 52.92336 ], [ -1.23719, 52.92264 ], [ -1.23673, 52.92148 ], [ -1.23668, 52.92117 ], [ -1.2366, 52.92061 ], [ -1.23631, 52.9191 ], [ -1.23625, 52.91875 ], [ -1.23613, 52.91805 ], [ -1.23611, 52.91791 ], [ -1.23612, 52.9162 ], [ -1.23544, 52.91603 ], [ -1.23509, 52.91583 ], [ -1.23478, 52.91482 ], [ -1.23774, 52.91353 ], [ -1.23774, 52.91329 ], [ -1.23674, 52.91049 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Beeston (Broxtowe)", "bua_code": "E35001323", "msoa_code": "E02005863", "population": 7719, "outputarea_code": "E00143027", "lsoa_code": "E01028069", "la_name": "Broxtowe", "bua_name": "Beeston (Broxtowe) BUASD", "constituency_name": "Broxtowe", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.22873, "latitude": 52.9087, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.23968, 52.89297 ], [ -1.23962, 52.89424 ], [ -1.24046, 52.89472 ], [ -1.24029, 52.89504 ], [ -1.24104, 52.89536 ], [ -1.24177, 52.89529 ], [ -1.24258, 52.89621 ], [ -1.24466, 52.89657 ], [ -1.24452, 52.8971 ], [ -1.24587, 52.8975 ], [ -1.24755, 52.89889 ], [ -1.24698, 52.89933 ], [ -1.24751, 52.89993 ], [ -1.24512, 52.90219 ], [ -1.24662, 52.9031 ], [ -1.2465, 52.90346 ], [ -1.24713, 52.90385 ], [ -1.24411, 52.90413 ], [ -1.24112, 52.90508 ], [ -1.23856, 52.90546 ], [ -1.23696, 52.90607 ], [ -1.23594, 52.90856 ], [ -1.23579, 52.90906 ], [ -1.23674, 52.91049 ], [ -1.23774, 52.91329 ], [ -1.23774, 52.91353 ], [ -1.23478, 52.91482 ], [ -1.23509, 52.91583 ], [ -1.23544, 52.91603 ], [ -1.23612, 52.9162 ], [ -1.23611, 52.91791 ], [ -1.23613, 52.91805 ], [ -1.23625, 52.91875 ], [ -1.23631, 52.9191 ], [ -1.2366, 52.92061 ], [ -1.23668, 52.92117 ], [ -1.23673, 52.92148 ], [ -1.23719, 52.92264 ], [ -1.23753, 52.92336 ], [ -1.23799, 52.92511 ], [ -1.23893, 52.92573 ], [ -1.2412, 52.92692 ], [ -1.23726, 52.92867 ], [ -1.23576, 52.92656 ], [ -1.23468, 52.92671 ], [ -1.23068, 52.92754 ], [ -1.22998, 52.92762 ], [ -1.22779, 52.9259 ], [ -1.22754, 52.92572 ], [ -1.23028, 52.92432 ], [ -1.22974, 52.92387 ], [ -1.2303, 52.9235 ], [ -1.22913, 52.92277 ], [ -1.22691, 52.9228 ], [ -1.22495, 52.92196 ], [ -1.2242, 52.92107 ], [ -1.22384, 52.92083 ], [ -1.22181, 52.92188 ], [ -1.22131, 52.92152 ], [ -1.22074, 52.92087 ], [ -1.21955, 52.91986 ], [ -1.21776, 52.92009 ], [ -1.21388, 52.91686 ], [ -1.21336, 52.91645 ], [ -1.21065, 52.91407 ], [ -1.21137, 52.91339 ], [ -1.21051, 52.91227 ], [ -1.21304, 52.91071 ], [ -1.21355, 52.90884 ], [ -1.21383, 52.90564 ], [ -1.21442, 52.90462 ], [ -1.21392, 52.90441 ], [ -1.21603, 52.90335 ], [ -1.22, 52.90252 ], [ -1.22081, 52.90053 ], [ -1.22037, 52.89937 ], [ -1.21922, 52.89691 ], [ -1.22049, 52.89556 ], [ -1.22255, 52.89531 ], [ -1.22775, 52.89556 ], [ -1.23025, 52.89471 ], [ -1.23082, 52.89405 ], [ -1.23346, 52.89292 ], [ -1.23574, 52.89235 ], [ -1.23971, 52.89229 ], [ -1.23968, 52.89297 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Beeston (Broxtowe)", "bua_code": "E35001323", "msoa_code": "E02005864", "population": 8403, "outputarea_code": "E00143359", "lsoa_code": "E01028139", "la_name": "Broxtowe", "bua_name": "Beeston (Broxtowe) BUASD", "constituency_name": "Broxtowe", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.26302, "latitude": 52.9115, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.23959, 52.91126 ], [ -1.23859, 52.90927 ], [ -1.23696, 52.90607 ], [ -1.23856, 52.90546 ], [ -1.24112, 52.90508 ], [ -1.24411, 52.90413 ], [ -1.24713, 52.90385 ], [ -1.2465, 52.90346 ], [ -1.24662, 52.9031 ], [ -1.2491, 52.90293 ], [ -1.25082, 52.90262 ], [ -1.25133, 52.90204 ], [ -1.25342, 52.90242 ], [ -1.25402, 52.90194 ], [ -1.2567, 52.90185 ], [ -1.25964, 52.90349 ], [ -1.26233, 52.90419 ], [ -1.26317, 52.90445 ], [ -1.26551, 52.9051 ], [ -1.26586, 52.90516 ], [ -1.26883, 52.90523 ], [ -1.26949, 52.90516 ], [ -1.26981, 52.90514 ], [ -1.27309, 52.90516 ], [ -1.27498, 52.90546 ], [ -1.28048, 52.90895 ], [ -1.28179, 52.91028 ], [ -1.28205, 52.91116 ], [ -1.28221, 52.91161 ], [ -1.28266, 52.91292 ], [ -1.28354, 52.9168 ], [ -1.28352, 52.91863 ], [ -1.28282, 52.91929 ], [ -1.27922, 52.91948 ], [ -1.27887, 52.91896 ], [ -1.27831, 52.91909 ], [ -1.27859, 52.91953 ], [ -1.27657, 52.91962 ], [ -1.271, 52.91995 ], [ -1.26523, 52.92029 ], [ -1.26488, 52.92052 ], [ -1.26272, 52.92237 ], [ -1.26045, 52.9249 ], [ -1.25762, 52.9285 ], [ -1.25701, 52.92822 ], [ -1.25827, 52.92683 ], [ -1.25857, 52.92452 ], [ -1.25846, 52.9206 ], [ -1.25845, 52.92039 ], [ -1.25873, 52.91979 ], [ -1.25829, 52.91788 ], [ -1.26018, 52.9177 ], [ -1.25921, 52.91577 ], [ -1.25808, 52.91542 ], [ -1.25849, 52.91462 ], [ -1.25814, 52.91326 ], [ -1.26022, 52.91303 ], [ -1.26008, 52.91263 ], [ -1.25873, 52.90885 ], [ -1.25628, 52.90949 ], [ -1.25291, 52.91032 ], [ -1.25137, 52.9106 ], [ -1.25093, 52.91094 ], [ -1.24835, 52.91133 ], [ -1.24646, 52.91158 ], [ -1.24588, 52.91165 ], [ -1.24045, 52.91285 ], [ -1.24014, 52.91222 ], [ -1.23959, 52.91126 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Belper", "bua_code": "E34004193", "msoa_code": "E02004035", "population": 1165, "outputarea_code": "E00098196", "lsoa_code": "E01019414", "la_name": "Amber Valley", "bua_name": "Belper BUA", "constituency_name": "Mid Derbyshire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.49416, "latitude": 53.03225, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.48869, 53.03268 ], [ -1.48764, 53.03265 ], [ -1.48773, 53.03201 ], [ -1.48685, 53.03175 ], [ -1.48767, 53.03153 ], [ -1.48741, 53.03118 ], [ -1.48793, 53.03094 ], [ -1.48801, 53.03038 ], [ -1.48897, 53.03016 ], [ -1.48835, 53.02855 ], [ -1.48976, 53.02707 ], [ -1.49206, 53.02705 ], [ -1.49408, 53.02764 ], [ -1.49492, 53.02766 ], [ -1.49546, 53.02946 ], [ -1.4965, 53.02948 ], [ -1.49806, 53.02904 ], [ -1.50008, 53.02718 ], [ -1.50061, 53.02828 ], [ -1.49938, 53.02994 ], [ -1.49845, 53.03043 ], [ -1.49813, 53.0312 ], [ -1.49963, 53.03392 ], [ -1.49798, 53.03565 ], [ -1.49904, 53.03841 ], [ -1.49774, 53.03927 ], [ -1.49549, 53.03759 ], [ -1.49489, 53.03765 ], [ -1.49344, 53.0368 ], [ -1.49289, 53.03694 ], [ -1.49219, 53.03619 ], [ -1.49253, 53.03587 ], [ -1.49214, 53.03566 ], [ -1.49261, 53.03533 ], [ -1.49245, 53.03496 ], [ -1.49011, 53.03406 ], [ -1.49067, 53.0333 ], [ -1.48999, 53.03294 ], [ -1.48926, 53.03339 ], [ -1.48869, 53.03268 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Belper", "bua_code": "E34004193", "msoa_code": "E02004037", "population": 8063, "outputarea_code": "E00098148", "lsoa_code": "E01019409", "la_name": "Amber Valley", "bua_name": "Belper BUA", "constituency_name": "Mid Derbyshire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.46381, "latitude": 53.03366, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.46581, 53.02194 ], [ -1.46584, 53.02217 ], [ -1.46765, 53.02201 ], [ -1.46704, 53.02265 ], [ -1.4687, 53.02307 ], [ -1.47088, 53.02331 ], [ -1.47244, 53.02338 ], [ -1.47157, 53.02404 ], [ -1.47248, 53.02405 ], [ -1.47227, 53.02482 ], [ -1.47297, 53.02446 ], [ -1.47349, 53.02474 ], [ -1.47358, 53.02556 ], [ -1.4738, 53.02591 ], [ -1.4727, 53.02632 ], [ -1.47281, 53.02754 ], [ -1.47535, 53.02809 ], [ -1.47599, 53.0278 ], [ -1.47613, 53.02744 ], [ -1.47654, 53.02753 ], [ -1.47703, 53.02841 ], [ -1.47738, 53.02847 ], [ -1.47672, 53.02888 ], [ -1.4772, 53.02973 ], [ -1.4778, 53.03016 ], [ -1.47844, 53.03011 ], [ -1.479, 53.03072 ], [ -1.48047, 53.03098 ], [ -1.48203, 53.03143 ], [ -1.48288, 53.03098 ], [ -1.48199, 53.03203 ], [ -1.4801, 53.03331 ], [ -1.47856, 53.03337 ], [ -1.47929, 53.03625 ], [ -1.47722, 53.03583 ], [ -1.47691, 53.03637 ], [ -1.47497, 53.036 ], [ -1.47427, 53.03488 ], [ -1.47351, 53.03637 ], [ -1.47344, 53.0365 ], [ -1.47301, 53.03752 ], [ -1.47333, 53.04014 ], [ -1.47433, 53.04295 ], [ -1.47394, 53.04462 ], [ -1.46608, 53.04288 ], [ -1.4558, 53.04064 ], [ -1.45433, 53.04038 ], [ -1.45351, 53.04054 ], [ -1.45268, 53.03995 ], [ -1.45093, 53.03922 ], [ -1.44985, 53.03799 ], [ -1.45038, 53.03644 ], [ -1.4468, 53.03721 ], [ -1.44303, 53.03658 ], [ -1.44498, 53.03431 ], [ -1.44597, 53.03117 ], [ -1.44705, 53.02956 ], [ -1.44751, 53.02738 ], [ -1.44812, 53.02738 ], [ -1.44788, 53.02829 ], [ -1.44882, 53.02841 ], [ -1.44873, 53.02901 ], [ -1.45178, 53.02965 ], [ -1.45155, 53.02996 ], [ -1.45194, 53.03014 ], [ -1.45171, 53.03038 ], [ -1.4513, 53.03023 ], [ -1.45095, 53.03065 ], [ -1.45137, 53.03077 ], [ -1.45077, 53.03094 ], [ -1.45082, 53.03151 ], [ -1.44805, 53.0321 ], [ -1.45075, 53.03354 ], [ -1.45234, 53.03247 ], [ -1.45272, 53.0315 ], [ -1.45172, 53.03122 ], [ -1.45278, 53.02993 ], [ -1.45461, 53.03039 ], [ -1.45507, 53.03081 ], [ -1.45596, 53.03036 ], [ -1.45751, 53.0294 ], [ -1.45878, 53.02957 ], [ -1.45846, 53.03004 ], [ -1.45909, 53.03064 ], [ -1.45992, 53.03067 ], [ -1.46035, 53.03036 ], [ -1.46041, 53.03106 ], [ -1.46101, 53.03095 ], [ -1.46164, 53.03152 ], [ -1.46243, 53.03118 ], [ -1.46285, 53.03147 ], [ -1.46437, 53.03202 ], [ -1.46477, 53.03171 ], [ -1.46219, 53.03053 ], [ -1.46127, 53.03042 ], [ -1.46086, 53.0277 ], [ -1.46008, 53.02676 ], [ -1.46058, 53.02662 ], [ -1.46083, 53.02619 ], [ -1.46001, 53.02386 ], [ -1.46285, 53.02426 ], [ -1.4639, 53.02184 ], [ -1.46581, 53.02194 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Belper", "bua_code": "E34004193", "msoa_code": "E02004038", "population": 7938, "outputarea_code": "E00098155", "lsoa_code": "E01019407", "la_name": "Amber Valley", "bua_name": "Belper BUA", "constituency_name": "Mid Derbyshire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.48342, "latitude": 53.01295, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.48813, 52.994 ], [ -1.48859, 52.99395 ], [ -1.48836, 52.99644 ], [ -1.48811, 52.99792 ], [ -1.48901, 52.99754 ], [ -1.4915, 52.99822 ], [ -1.4938, 52.99936 ], [ -1.49504, 53.00042 ], [ -1.49429, 53.00187 ], [ -1.49672, 53.00282 ], [ -1.49624, 53.00351 ], [ -1.49418, 53.00295 ], [ -1.49268, 53.00435 ], [ -1.49625, 53.00791 ], [ -1.49656, 53.00866 ], [ -1.49664, 53.00905 ], [ -1.49902, 53.00906 ], [ -1.49916, 53.01306 ], [ -1.49963, 53.01299 ], [ -1.49977, 53.0147 ], [ -1.49864, 53.0158 ], [ -1.49932, 53.01727 ], [ -1.49474, 53.018 ], [ -1.49483, 53.01819 ], [ -1.4942, 53.01828 ], [ -1.49403, 53.01803 ], [ -1.49357, 53.01791 ], [ -1.4931, 53.01807 ], [ -1.49288, 53.01809 ], [ -1.49277, 53.018 ], [ -1.49232, 53.01798 ], [ -1.49233, 53.01812 ], [ -1.49237, 53.01853 ], [ -1.49066, 53.01877 ], [ -1.49012, 53.01818 ], [ -1.48916, 53.01846 ], [ -1.48861, 53.02016 ], [ -1.48876, 53.02077 ], [ -1.48963, 53.02137 ], [ -1.49127, 53.02194 ], [ -1.49213, 53.02268 ], [ -1.49169, 53.02532 ], [ -1.48811, 53.02482 ], [ -1.48976, 53.02707 ], [ -1.48835, 53.02855 ], [ -1.48897, 53.03016 ], [ -1.48801, 53.03038 ], [ -1.48793, 53.03094 ], [ -1.48741, 53.03118 ], [ -1.48767, 53.03153 ], [ -1.48685, 53.03175 ], [ -1.48773, 53.03201 ], [ -1.48764, 53.03265 ], [ -1.48869, 53.03268 ], [ -1.48926, 53.03339 ], [ -1.48999, 53.03294 ], [ -1.49067, 53.0333 ], [ -1.49011, 53.03406 ], [ -1.49245, 53.03496 ], [ -1.49261, 53.03533 ], [ -1.49214, 53.03566 ], [ -1.49253, 53.03587 ], [ -1.49219, 53.03619 ], [ -1.48941, 53.03873 ], [ -1.48858, 53.03848 ], [ -1.48769, 53.03876 ], [ -1.4886, 53.03961 ], [ -1.48714, 53.04312 ], [ -1.48568, 53.04365 ], [ -1.48437, 53.04325 ], [ -1.48273, 53.03934 ], [ -1.48228, 53.0366 ], [ -1.48249, 53.03421 ], [ -1.48288, 53.03098 ], [ -1.48203, 53.03143 ], [ -1.48047, 53.03098 ], [ -1.479, 53.03072 ], [ -1.47844, 53.03011 ], [ -1.4778, 53.03016 ], [ -1.4772, 53.02973 ], [ -1.47672, 53.02888 ], [ -1.47738, 53.02847 ], [ -1.47703, 53.02841 ], [ -1.47654, 53.02753 ], [ -1.47613, 53.02744 ], [ -1.47599, 53.0278 ], [ -1.47535, 53.02809 ], [ -1.47281, 53.02754 ], [ -1.4727, 53.02632 ], [ -1.4738, 53.02591 ], [ -1.47358, 53.02556 ], [ -1.47349, 53.02474 ], [ -1.47297, 53.02446 ], [ -1.47227, 53.02482 ], [ -1.47248, 53.02405 ], [ -1.47157, 53.02404 ], [ -1.47244, 53.02338 ], [ -1.47088, 53.02331 ], [ -1.4687, 53.02307 ], [ -1.46952, 53.02205 ], [ -1.47158, 53.02114 ], [ -1.4708, 53.0204 ], [ -1.47223, 53.01962 ], [ -1.47272, 53.01783 ], [ -1.47122, 53.01729 ], [ -1.47036, 53.01819 ], [ -1.46979, 53.01797 ], [ -1.47036, 53.01685 ], [ -1.47054, 53.01567 ], [ -1.47174, 53.01587 ], [ -1.47269, 53.01563 ], [ -1.47318, 53.014 ], [ -1.47415, 53.01306 ], [ -1.47523, 53.01309 ], [ -1.47682, 53.01255 ], [ -1.47662, 53.01026 ], [ -1.47907, 53.00967 ], [ -1.47992, 53.00982 ], [ -1.47755, 53.00839 ], [ -1.4758, 53.00878 ], [ -1.47217, 53.00795 ], [ -1.47257, 53.00673 ], [ -1.47523, 53.00593 ], [ -1.47314, 53.00483 ], [ -1.47092, 53.00478 ], [ -1.47142, 53.00226 ], [ -1.47091, 53.00166 ], [ -1.47017, 53.00175 ], [ -1.46956, 53.00097 ], [ -1.46962, 52.99987 ], [ -1.47056, 52.99973 ], [ -1.47039, 52.99925 ], [ -1.46926, 52.99928 ], [ -1.46876, 52.99872 ], [ -1.465, 52.99921 ], [ -1.46512, 52.99847 ], [ -1.46791, 52.99744 ], [ -1.47023, 52.99722 ], [ -1.47011, 52.99673 ], [ -1.47129, 52.99658 ], [ -1.47145, 52.99581 ], [ -1.47067, 52.99349 ], [ -1.47817, 52.99374 ], [ -1.47845, 52.99193 ], [ -1.48163, 52.99016 ], [ -1.48343, 52.98948 ], [ -1.48603, 52.98981 ], [ -1.487, 52.99174 ], [ -1.48749, 52.99185 ], [ -1.48775, 52.99382 ], [ -1.48784, 52.99409 ], [ -1.48813, 52.994 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Belper", "bua_code": "E34004193", "msoa_code": "E02004039", "population": 6813, "outputarea_code": "E00098166", "lsoa_code": "E01019411", "la_name": "Amber Valley", "bua_name": "Belper BUA", "constituency_name": "Mid Derbyshire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.45888, "latitude": 53.00697, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.4513, 53.00666 ], [ -1.45075, 53.00595 ], [ -1.44869, 53.00516 ], [ -1.44639, 53.00476 ], [ -1.44517, 53.0049 ], [ -1.44505, 53.0037 ], [ -1.444, 53.00352 ], [ -1.44389, 53.0019 ], [ -1.44404, 53.00129 ], [ -1.44848, 52.99714 ], [ -1.45084, 52.99553 ], [ -1.45155, 52.99543 ], [ -1.45223, 52.99375 ], [ -1.45188, 52.99308 ], [ -1.45034, 52.99006 ], [ -1.4481, 52.9878 ], [ -1.44923, 52.98651 ], [ -1.44982, 52.98341 ], [ -1.45121, 52.98213 ], [ -1.45374, 52.98098 ], [ -1.45594, 52.9826 ], [ -1.45628, 52.98231 ], [ -1.45786, 52.98245 ], [ -1.4602, 52.98388 ], [ -1.46342, 52.98289 ], [ -1.46409, 52.98571 ], [ -1.46392, 52.98676 ], [ -1.46349, 52.98686 ], [ -1.46447, 52.98987 ], [ -1.46401, 52.99191 ], [ -1.46668, 52.9917 ], [ -1.46708, 52.99398 ], [ -1.47067, 52.99349 ], [ -1.47145, 52.99581 ], [ -1.47129, 52.99658 ], [ -1.47011, 52.99673 ], [ -1.47023, 52.99722 ], [ -1.46791, 52.99744 ], [ -1.46512, 52.99847 ], [ -1.465, 52.99921 ], [ -1.46876, 52.99872 ], [ -1.46926, 52.99928 ], [ -1.47039, 52.99925 ], [ -1.47056, 52.99973 ], [ -1.46962, 52.99987 ], [ -1.46956, 53.00097 ], [ -1.47017, 53.00175 ], [ -1.47091, 53.00166 ], [ -1.47142, 53.00226 ], [ -1.47092, 53.00478 ], [ -1.47314, 53.00483 ], [ -1.47523, 53.00593 ], [ -1.47257, 53.00673 ], [ -1.47217, 53.00795 ], [ -1.4758, 53.00878 ], [ -1.47755, 53.00839 ], [ -1.47992, 53.00982 ], [ -1.47907, 53.00967 ], [ -1.47662, 53.01026 ], [ -1.47682, 53.01255 ], [ -1.47523, 53.01309 ], [ -1.47415, 53.01306 ], [ -1.47318, 53.014 ], [ -1.47269, 53.01563 ], [ -1.47174, 53.01587 ], [ -1.47054, 53.01567 ], [ -1.47036, 53.01685 ], [ -1.46979, 53.01797 ], [ -1.47036, 53.01819 ], [ -1.47122, 53.01729 ], [ -1.47272, 53.01783 ], [ -1.47223, 53.01962 ], [ -1.4708, 53.0204 ], [ -1.47158, 53.02114 ], [ -1.46952, 53.02205 ], [ -1.4687, 53.02307 ], [ -1.46704, 53.02265 ], [ -1.46765, 53.02201 ], [ -1.46584, 53.02217 ], [ -1.46581, 53.02194 ], [ -1.4639, 53.02184 ], [ -1.46285, 53.02426 ], [ -1.46001, 53.02386 ], [ -1.46083, 53.02619 ], [ -1.46058, 53.02662 ], [ -1.46008, 53.02676 ], [ -1.46086, 53.0277 ], [ -1.46127, 53.03042 ], [ -1.46219, 53.03053 ], [ -1.46477, 53.03171 ], [ -1.46437, 53.03202 ], [ -1.46285, 53.03147 ], [ -1.46243, 53.03118 ], [ -1.46164, 53.03152 ], [ -1.46101, 53.03095 ], [ -1.46041, 53.03106 ], [ -1.46035, 53.03036 ], [ -1.45992, 53.03067 ], [ -1.45909, 53.03064 ], [ -1.45846, 53.03004 ], [ -1.45878, 53.02957 ], [ -1.45751, 53.0294 ], [ -1.45596, 53.03036 ], [ -1.45507, 53.03081 ], [ -1.45461, 53.03039 ], [ -1.45278, 53.02993 ], [ -1.45172, 53.03122 ], [ -1.45272, 53.0315 ], [ -1.45234, 53.03247 ], [ -1.45075, 53.03354 ], [ -1.44805, 53.0321 ], [ -1.45082, 53.03151 ], [ -1.45077, 53.03094 ], [ -1.45137, 53.03077 ], [ -1.45095, 53.03065 ], [ -1.4513, 53.03023 ], [ -1.45171, 53.03038 ], [ -1.45194, 53.03014 ], [ -1.45155, 53.02996 ], [ -1.45178, 53.02965 ], [ -1.44873, 53.02901 ], [ -1.44882, 53.02841 ], [ -1.44788, 53.02829 ], [ -1.44812, 53.02738 ], [ -1.44751, 53.02738 ], [ -1.44671, 53.027 ], [ -1.44573, 53.02755 ], [ -1.44252, 53.0283 ], [ -1.44293, 53.02414 ], [ -1.44204, 53.02083 ], [ -1.44194, 53.0176 ], [ -1.44431, 53.0178 ], [ -1.44467, 53.01737 ], [ -1.44512, 53.01739 ], [ -1.44703, 53.0183 ], [ -1.44739, 53.01705 ], [ -1.44843, 53.01759 ], [ -1.44901, 53.01785 ], [ -1.44929, 53.01798 ], [ -1.45057, 53.01824 ], [ -1.45043, 53.019 ], [ -1.45203, 53.01996 ], [ -1.45321, 53.02142 ], [ -1.45368, 53.02126 ], [ -1.45355, 53.02102 ], [ -1.45553, 53.02047 ], [ -1.45715, 53.01867 ], [ -1.4587, 53.01792 ], [ -1.45877, 53.01786 ], [ -1.46121, 53.01571 ], [ -1.46148, 53.01327 ], [ -1.46148, 53.01302 ], [ -1.45985, 53.01258 ], [ -1.46026, 53.01147 ], [ -1.45989, 53.01138 ], [ -1.4604, 53.01075 ], [ -1.45905, 53.00978 ], [ -1.45657, 53.00946 ], [ -1.45325, 53.00815 ], [ -1.4513, 53.00666 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Bingham", "bua_code": "E34003218", "msoa_code": "E02005907", "population": 10043, "outputarea_code": "E00144491", "lsoa_code": "E01028359", "la_name": "Rushcliffe", "bua_name": "Bingham BUA", "constituency_name": "Newark", "citytownclassification": "Small Town", "urban": "Y", "longitude": -0.95523, "latitude": 52.94762, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.9541, 52.93153 ], [ -0.95714, 52.93108 ], [ -0.95953, 52.93119 ], [ -0.95984, 52.93075 ], [ -0.9605, 52.93062 ], [ -0.96289, 52.93073 ], [ -0.96761, 52.92936 ], [ -0.96904, 52.92888 ], [ -0.97126, 52.92879 ], [ -0.97242, 52.92838 ], [ -0.97522, 52.93114 ], [ -0.97663, 52.93401 ], [ -0.97889, 52.93639 ], [ -0.98197, 52.93999 ], [ -0.98217, 52.94022 ], [ -0.98227, 52.94028 ], [ -0.98591, 52.94257 ], [ -0.98371, 52.9451 ], [ -0.97834, 52.94995 ], [ -0.9829, 52.95082 ], [ -0.99516, 52.95116 ], [ -1.00257, 52.95186 ], [ -1.00319, 52.952 ], [ -1.00454, 52.95343 ], [ -1.00531, 52.95426 ], [ -1.0054, 52.95504 ], [ -1.00535, 52.95505 ], [ -0.99433, 52.95607 ], [ -0.98987, 52.95591 ], [ -0.98951, 52.95867 ], [ -0.98501, 52.95869 ], [ -0.98427, 52.95929 ], [ -0.98417, 52.95996 ], [ -0.97889, 52.95995 ], [ -0.97918, 52.96091 ], [ -0.97764, 52.96133 ], [ -0.96877, 52.95817 ], [ -0.96222, 52.96371 ], [ -0.95928, 52.96641 ], [ -0.95891, 52.96675 ], [ -0.95873, 52.96689 ], [ -0.95692, 52.9667 ], [ -0.95246, 52.96536 ], [ -0.9506, 52.96427 ], [ -0.94699, 52.96343 ], [ -0.94522, 52.96233 ], [ -0.93974, 52.9609 ], [ -0.9374, 52.96121 ], [ -0.93535, 52.96211 ], [ -0.93369, 52.9624 ], [ -0.93252, 52.96245 ], [ -0.92922, 52.96181 ], [ -0.93293, 52.95807 ], [ -0.92928, 52.95624 ], [ -0.91604, 52.95012 ], [ -0.91839, 52.94828 ], [ -0.91783, 52.94636 ], [ -0.92222, 52.94629 ], [ -0.92193, 52.94495 ], [ -0.92055, 52.94285 ], [ -0.91938, 52.94149 ], [ -0.91832, 52.94101 ], [ -0.91723, 52.94072 ], [ -0.91795, 52.9401 ], [ -0.92029, 52.93546 ], [ -0.9214, 52.93457 ], [ -0.93032, 52.9342 ], [ -0.93245, 52.93736 ], [ -0.93528, 52.93693 ], [ -0.94144, 52.93539 ], [ -0.94913, 52.93252 ], [ -0.9541, 52.93153 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Bircotes", "bua_code": "E34003597", "msoa_code": "E02005835", "population": 7911, "outputarea_code": "E00142785", "lsoa_code": "E01028028", "la_name": "Bassetlaw", "bua_name": "Bircotes BUA", "constituency_name": "Bassetlaw", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.05674, "latitude": 53.41971, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.05201, 53.42617 ], [ -1.04402, 53.42835 ], [ -1.03992, 53.42992 ], [ -1.03593, 53.43066 ], [ -1.03095, 53.43101 ], [ -1.03071, 53.42992 ], [ -1.02879, 53.42928 ], [ -1.03046, 53.42518 ], [ -1.02779, 53.4254 ], [ -1.0271, 53.425 ], [ -1.0231, 53.4245 ], [ -1.02323, 53.42234 ], [ -1.02575, 53.41949 ], [ -1.02798, 53.41841 ], [ -1.02981, 53.41556 ], [ -1.03125, 53.41531 ], [ -1.03104, 53.41455 ], [ -1.032, 53.41373 ], [ -1.03387, 53.4138 ], [ -1.03463, 53.41244 ], [ -1.03641, 53.41248 ], [ -1.03628, 53.41197 ], [ -1.03782, 53.41127 ], [ -1.03774, 53.41042 ], [ -1.03912, 53.41052 ], [ -1.04014, 53.41059 ], [ -1.04053, 53.40962 ], [ -1.04453, 53.40978 ], [ -1.04509, 53.40944 ], [ -1.0541, 53.41044 ], [ -1.06325, 53.41107 ], [ -1.06971, 53.41182 ], [ -1.07533, 53.41249 ], [ -1.07603, 53.41261 ], [ -1.07599, 53.41322 ], [ -1.07965, 53.41382 ], [ -1.08583, 53.41536 ], [ -1.08922, 53.41569 ], [ -1.09543, 53.41793 ], [ -1.09633, 53.41851 ], [ -1.09874, 53.41873 ], [ -1.09492, 53.42059 ], [ -1.09143, 53.42254 ], [ -1.08704, 53.42553 ], [ -1.08497, 53.42489 ], [ -1.08409, 53.4234 ], [ -1.08338, 53.42295 ], [ -1.08131, 53.42254 ], [ -1.08014, 53.42281 ], [ -1.07916, 53.42277 ], [ -1.079, 53.42366 ], [ -1.08001, 53.42517 ], [ -1.08036, 53.42688 ], [ -1.0744, 53.42746 ], [ -1.07304, 53.42809 ], [ -1.06937, 53.42782 ], [ -1.06825, 53.42744 ], [ -1.06794, 53.42737 ], [ -1.06784, 53.42774 ], [ -1.05726, 53.42536 ], [ -1.05704, 53.4254 ], [ -1.0555, 53.42543 ], [ -1.05201, 53.42617 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Birstall", "bua_code": "E35000043", "msoa_code": "E02005363", "population": 8164, "outputarea_code": "E00130294", "lsoa_code": "E01025679", "la_name": "Charnwood", "bua_name": "Birstall BUASD", "constituency_name": "Charnwood", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.12436, "latitude": 52.68785, "pgroup": "10k" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.1292, 52.66539 ], [ -1.12941, 52.66702 ], [ -1.12936, 52.66915 ], [ -1.12785, 52.67291 ], [ -1.12699, 52.67401 ], [ -1.12686, 52.67416 ], [ -1.12644, 52.67497 ], [ -1.12455, 52.67539 ], [ -1.12508, 52.67591 ], [ -1.12124, 52.67603 ], [ -1.12086, 52.67655 ], [ -1.12008, 52.67614 ], [ -1.1193, 52.67626 ], [ -1.11921, 52.67649 ], [ -1.11825, 52.67641 ], [ -1.11797, 52.67727 ], [ -1.11727, 52.67745 ], [ -1.11783, 52.67848 ], [ -1.11832, 52.67853 ], [ -1.11815, 52.6789 ], [ -1.11804, 52.67948 ], [ -1.11794, 52.68011 ], [ -1.11741, 52.68009 ], [ -1.11721, 52.68044 ], [ -1.117, 52.68192 ], [ -1.11686, 52.68437 ], [ -1.11649, 52.6855 ], [ -1.10618, 52.68609 ], [ -1.10512, 52.68502 ], [ -1.10301, 52.68467 ], [ -1.10095, 52.68354 ], [ -1.10058, 52.68295 ], [ -1.10071, 52.68144 ], [ -1.10255, 52.6787 ], [ -1.10241, 52.67824 ], [ -1.10316, 52.67789 ], [ -1.10468, 52.67743 ], [ -1.10653, 52.67809 ], [ -1.10716, 52.67868 ], [ -1.10925, 52.67888 ], [ -1.11061, 52.6785 ], [ -1.11163, 52.67901 ], [ -1.11376, 52.67758 ], [ -1.11641, 52.6753 ], [ -1.11661, 52.67431 ], [ -1.11495, 52.67279 ], [ -1.11887, 52.67316 ], [ -1.11972, 52.67178 ], [ -1.12099, 52.67181 ], [ -1.12091, 52.671 ], [ -1.12092, 52.67019 ], [ -1.12161, 52.6695 ], [ -1.12514, 52.66793 ], [ -1.1266, 52.66701 ], [ -1.12819, 52.66516 ], [ -1.12909, 52.66539 ], [ -1.1292, 52.66539 ] ] ], [ [ [ -1.12905, 52.67762 ], [ -1.13015, 52.67745 ], [ -1.13048, 52.67787 ], [ -1.13261, 52.67754 ], [ -1.1331, 52.67793 ], [ -1.13347, 52.6778 ], [ -1.13338, 52.67809 ], [ -1.13489, 52.67748 ], [ -1.13736, 52.67707 ], [ -1.13679, 52.6799 ], [ -1.13705, 52.68022 ], [ -1.14078, 52.68438 ], [ -1.1399, 52.68446 ], [ -1.14059, 52.68548 ], [ -1.1421, 52.68654 ], [ -1.14272, 52.68796 ], [ -1.14373, 52.6886 ], [ -1.14107, 52.68973 ], [ -1.14156, 52.69074 ], [ -1.14102, 52.69278 ], [ -1.14041, 52.69468 ], [ -1.13841, 52.69707 ], [ -1.138, 52.69737 ], [ -1.1368, 52.69719 ], [ -1.13466, 52.69825 ], [ -1.13336, 52.70077 ], [ -1.13213, 52.70189 ], [ -1.12844, 52.70284 ], [ -1.12432, 52.70343 ], [ -1.12096, 52.70579 ], [ -1.12019, 52.70587 ], [ -1.11943, 52.7022 ], [ -1.11756, 52.70199 ], [ -1.11536, 52.70092 ], [ -1.1141, 52.70119 ], [ -1.11254, 52.70047 ], [ -1.1117, 52.70082 ], [ -1.11015, 52.70027 ], [ -1.11074, 52.69955 ], [ -1.10967, 52.69916 ], [ -1.11007, 52.69765 ], [ -1.10826, 52.69677 ], [ -1.10931, 52.69332 ], [ -1.11231, 52.69367 ], [ -1.11261, 52.69512 ], [ -1.11761, 52.69387 ], [ -1.11776, 52.69424 ], [ -1.11829, 52.69423 ], [ -1.12517, 52.69247 ], [ -1.12591, 52.68797 ], [ -1.12763, 52.68823 ], [ -1.12865, 52.68797 ], [ -1.12844, 52.68682 ], [ -1.12798, 52.68668 ], [ -1.12764, 52.68676 ], [ -1.12728, 52.68634 ], [ -1.12752, 52.68594 ], [ -1.1258, 52.68561 ], [ -1.1258, 52.68511 ], [ -1.12591, 52.68459 ], [ -1.12576, 52.68343 ], [ -1.12571, 52.68275 ], [ -1.12589, 52.67801 ], [ -1.12905, 52.67762 ] ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Birstall", "bua_code": "E35000043", "msoa_code": "E02005364", "population": 5522, "outputarea_code": "E00130303", "lsoa_code": "E01025678", "la_name": "Charnwood", "bua_name": "Birstall BUASD", "constituency_name": "Charnwood", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.12581, "latitude": 52.67801, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.12936, 52.66915 ], [ -1.12989, 52.66922 ], [ -1.12986, 52.66953 ], [ -1.13302, 52.66973 ], [ -1.1331, 52.67311 ], [ -1.13527, 52.67335 ], [ -1.13543, 52.67536 ], [ -1.13771, 52.67537 ], [ -1.13736, 52.67707 ], [ -1.13489, 52.67748 ], [ -1.13338, 52.67809 ], [ -1.13347, 52.6778 ], [ -1.1331, 52.67793 ], [ -1.13261, 52.67754 ], [ -1.13048, 52.67787 ], [ -1.13015, 52.67745 ], [ -1.12905, 52.67762 ], [ -1.12589, 52.67801 ], [ -1.12571, 52.68275 ], [ -1.12576, 52.68343 ], [ -1.12591, 52.68459 ], [ -1.1258, 52.68511 ], [ -1.12351, 52.6852 ], [ -1.12108, 52.68527 ], [ -1.11916, 52.68541 ], [ -1.11649, 52.6855 ], [ -1.11686, 52.68437 ], [ -1.117, 52.68192 ], [ -1.11721, 52.68044 ], [ -1.11741, 52.68009 ], [ -1.11794, 52.68011 ], [ -1.11804, 52.67948 ], [ -1.11815, 52.6789 ], [ -1.11832, 52.67853 ], [ -1.11783, 52.67848 ], [ -1.11727, 52.67745 ], [ -1.11797, 52.67727 ], [ -1.11825, 52.67641 ], [ -1.11921, 52.67649 ], [ -1.1193, 52.67626 ], [ -1.12008, 52.67614 ], [ -1.12086, 52.67655 ], [ -1.12124, 52.67603 ], [ -1.12508, 52.67591 ], [ -1.12455, 52.67539 ], [ -1.12644, 52.67497 ], [ -1.12686, 52.67416 ], [ -1.12699, 52.67401 ], [ -1.12785, 52.67291 ], [ -1.12936, 52.66915 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Bolsover", "bua_code": "E34000048", "msoa_code": "E02004048", "population": 6242, "outputarea_code": "E00098533", "lsoa_code": "E01019484", "la_name": "Bolsover", "bua_name": "Bolsover BUA", "constituency_name": "Bolsover", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.28398, "latitude": 53.23912, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.30641, 53.22171 ], [ -1.31084, 53.22202 ], [ -1.31192, 53.22197 ], [ -1.31254, 53.22227 ], [ -1.31303, 53.22383 ], [ -1.31475, 53.22391 ], [ -1.31373, 53.22499 ], [ -1.31409, 53.22584 ], [ -1.31348, 53.22914 ], [ -1.31246, 53.23045 ], [ -1.31134, 53.23172 ], [ -1.31152, 53.23238 ], [ -1.31574, 53.23663 ], [ -1.31653, 53.23763 ], [ -1.3192, 53.23958 ], [ -1.32264, 53.24122 ], [ -1.32301, 53.24471 ], [ -1.3236, 53.25031 ], [ -1.31648, 53.24977 ], [ -1.31027, 53.24445 ], [ -1.31022, 53.24358 ], [ -1.30915, 53.24407 ], [ -1.30866, 53.24378 ], [ -1.30737, 53.24421 ], [ -1.30628, 53.24384 ], [ -1.30497, 53.24442 ], [ -1.30718, 53.24574 ], [ -1.30635, 53.24643 ], [ -1.30793, 53.24698 ], [ -1.30462, 53.24907 ], [ -1.3052, 53.25006 ], [ -1.30905, 53.25147 ], [ -1.30674, 53.25281 ], [ -1.30588, 53.25351 ], [ -1.30633, 53.25506 ], [ -1.30319, 53.25528 ], [ -1.30252, 53.2545 ], [ -1.29957, 53.2546 ], [ -1.29869, 53.25509 ], [ -1.2978, 53.25744 ], [ -1.29104, 53.25531 ], [ -1.29013, 53.25302 ], [ -1.28856, 53.25192 ], [ -1.28863, 53.24999 ], [ -1.28683, 53.24709 ], [ -1.28331, 53.24472 ], [ -1.28237, 53.24885 ], [ -1.28179, 53.24922 ], [ -1.27487, 53.24818 ], [ -1.27534, 53.24795 ], [ -1.27153, 53.24766 ], [ -1.27351, 53.24277 ], [ -1.27009, 53.2423 ], [ -1.26732, 53.2423 ], [ -1.2673, 53.24197 ], [ -1.25422, 53.24197 ], [ -1.24971, 53.24242 ], [ -1.24414, 53.2418 ], [ -1.23704, 53.24227 ], [ -1.23686, 53.24209 ], [ -1.23452, 53.24262 ], [ -1.23344, 53.24256 ], [ -1.23213, 53.24202 ], [ -1.22914, 53.24369 ], [ -1.22617, 53.24378 ], [ -1.22464, 53.24444 ], [ -1.22232, 53.24483 ], [ -1.22099, 53.24472 ], [ -1.22065, 53.2427 ], [ -1.22034, 53.24092 ], [ -1.22252, 53.2409 ], [ -1.22591, 53.23908 ], [ -1.22527, 53.23821 ], [ -1.22866, 53.23759 ], [ -1.23422, 53.23573 ], [ -1.23542, 53.23595 ], [ -1.23829, 53.23533 ], [ -1.24037, 53.23555 ], [ -1.24326, 53.23537 ], [ -1.24352, 53.23581 ], [ -1.24501, 53.23585 ], [ -1.24964, 53.23505 ], [ -1.25298, 53.23391 ], [ -1.2558, 53.23339 ], [ -1.25826, 53.23246 ], [ -1.26069, 53.22967 ], [ -1.26516, 53.22925 ], [ -1.26491, 53.22745 ], [ -1.26716, 53.22836 ], [ -1.26773, 53.2272 ], [ -1.27461, 53.22737 ], [ -1.2731, 53.2294 ], [ -1.27174, 53.2302 ], [ -1.2718, 53.23147 ], [ -1.27873, 53.23358 ], [ -1.28091, 53.23531 ], [ -1.28418, 53.2314 ], [ -1.28504, 53.23108 ], [ -1.2843, 53.23027 ], [ -1.2856, 53.22969 ], [ -1.28764, 53.23 ], [ -1.28872, 53.22936 ], [ -1.28931, 53.22869 ], [ -1.28928, 53.2286 ], [ -1.29034, 53.2272 ], [ -1.29069, 53.22716 ], [ -1.29466, 53.22936 ], [ -1.29522, 53.22918 ], [ -1.29696, 53.22993 ], [ -1.30035, 53.22943 ], [ -1.30116, 53.22813 ], [ -1.30056, 53.22737 ], [ -1.30259, 53.22708 ], [ -1.30222, 53.22591 ], [ -1.30265, 53.22527 ], [ -1.30197, 53.2251 ], [ -1.30076, 53.22549 ], [ -1.29956, 53.22447 ], [ -1.29602, 53.22283 ], [ -1.29837, 53.22314 ], [ -1.30195, 53.22278 ], [ -1.30641, 53.22171 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Bolsover", "bua_code": "E34000048", "msoa_code": "E02004049", "population": 5809, "outputarea_code": "E00098544", "lsoa_code": "E01019486", "la_name": "Bolsover", "bua_name": "Bolsover BUA", "constituency_name": "Bolsover", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.28785, "latitude": 53.2232, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.28206, 53.22148 ], [ -1.28245, 53.221 ], [ -1.28182, 53.2203 ], [ -1.27838, 53.21833 ], [ -1.276, 53.21607 ], [ -1.27865, 53.21368 ], [ -1.28517, 53.21505 ], [ -1.28881, 53.21578 ], [ -1.28782, 53.21953 ], [ -1.28969, 53.22074 ], [ -1.29372, 53.21662 ], [ -1.2913, 53.21606 ], [ -1.29197, 53.21256 ], [ -1.29763, 53.21481 ], [ -1.29798, 53.21566 ], [ -1.29902, 53.21601 ], [ -1.30565, 53.21716 ], [ -1.31113, 53.21728 ], [ -1.31433, 53.21925 ], [ -1.31258, 53.22164 ], [ -1.31254, 53.22227 ], [ -1.31192, 53.22197 ], [ -1.31084, 53.22202 ], [ -1.30641, 53.22171 ], [ -1.30195, 53.22278 ], [ -1.29837, 53.22314 ], [ -1.29602, 53.22283 ], [ -1.29956, 53.22447 ], [ -1.30076, 53.22549 ], [ -1.30197, 53.2251 ], [ -1.30265, 53.22527 ], [ -1.30222, 53.22591 ], [ -1.30259, 53.22708 ], [ -1.30056, 53.22737 ], [ -1.30116, 53.22813 ], [ -1.30035, 53.22943 ], [ -1.29696, 53.22993 ], [ -1.29522, 53.22918 ], [ -1.29466, 53.22936 ], [ -1.29069, 53.22716 ], [ -1.29034, 53.2272 ], [ -1.28928, 53.2286 ], [ -1.28931, 53.22869 ], [ -1.28872, 53.22936 ], [ -1.28764, 53.23 ], [ -1.2856, 53.22969 ], [ -1.2843, 53.23027 ], [ -1.28504, 53.23108 ], [ -1.28418, 53.2314 ], [ -1.28091, 53.23531 ], [ -1.27873, 53.23358 ], [ -1.2718, 53.23147 ], [ -1.27174, 53.2302 ], [ -1.2731, 53.2294 ], [ -1.27461, 53.22737 ], [ -1.26773, 53.2272 ], [ -1.26716, 53.22836 ], [ -1.26491, 53.22745 ], [ -1.26397, 53.22392 ], [ -1.26315, 53.22256 ], [ -1.26653, 53.22296 ], [ -1.27037, 53.2227 ], [ -1.27455, 53.2228 ], [ -1.2748, 53.22184 ], [ -1.28007, 53.2219 ], [ -1.28043, 53.22163 ], [ -1.2818, 53.22169 ], [ -1.28206, 53.22148 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Boston", "bua_code": "E34004383", "msoa_code": "E02005418", "population": 10880, "outputarea_code": "E00131979", "lsoa_code": "E01026010", "la_name": "Boston", "bua_name": "Boston BUA", "constituency_name": "Boston and Skegness", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.04259, "latitude": 52.98378, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.03112, 52.97599 ], [ -0.02998, 52.97507 ], [ -0.0298, 52.97456 ], [ -0.0301, 52.9731 ], [ -0.0305, 52.97177 ], [ -0.03105, 52.9729 ], [ -0.03073, 52.97163 ], [ -0.03117, 52.9706 ], [ -0.03162, 52.97016 ], [ -0.03434, 52.97075 ], [ -0.03451, 52.97112 ], [ -0.03556, 52.97171 ], [ -0.03599, 52.97033 ], [ -0.03641, 52.96985 ], [ -0.03707, 52.9699 ], [ -0.03917, 52.97066 ], [ -0.04005, 52.96982 ], [ -0.0406, 52.96999 ], [ -0.03954, 52.97063 ], [ -0.03855, 52.97223 ], [ -0.03911, 52.97253 ], [ -0.03868, 52.97349 ], [ -0.03772, 52.97382 ], [ -0.03829, 52.97439 ], [ -0.03864, 52.97447 ], [ -0.0378, 52.97496 ], [ -0.03904, 52.97505 ], [ -0.03908, 52.97561 ], [ -0.03945, 52.97705 ], [ -0.0389, 52.97714 ], [ -0.0391, 52.97745 ], [ -0.04165, 52.97706 ], [ -0.04415, 52.97654 ], [ -0.04401, 52.97828 ], [ -0.04367, 52.98202 ], [ -0.04825, 52.982 ], [ -0.05759, 52.98278 ], [ -0.05756, 52.9849 ], [ -0.06025, 52.9851 ], [ -0.05938, 52.99225 ], [ -0.0585, 52.99217 ], [ -0.04883, 52.99503 ], [ -0.047, 52.99349 ], [ -0.04207, 52.99002 ], [ -0.04149, 52.98961 ], [ -0.03614, 52.98593 ], [ -0.03582, 52.98572 ], [ -0.03464, 52.9849 ], [ -0.03252, 52.98546 ], [ -0.03324, 52.98702 ], [ -0.03406, 52.98712 ], [ -0.03412, 52.98784 ], [ -0.03157, 52.9878 ], [ -0.03143, 52.98729 ], [ -0.03076, 52.98696 ], [ -0.02976, 52.98735 ], [ -0.0284, 52.98685 ], [ -0.02854, 52.98648 ], [ -0.02802, 52.98624 ], [ -0.02773, 52.98648 ], [ -0.02698, 52.98639 ], [ -0.02586, 52.98591 ], [ -0.02447, 52.98632 ], [ -0.02477, 52.98571 ], [ -0.02439, 52.98485 ], [ -0.02552, 52.98434 ], [ -0.02475, 52.98382 ], [ -0.02524, 52.9832 ], [ -0.02628, 52.98291 ], [ -0.02581, 52.98252 ], [ -0.02645, 52.98233 ], [ -0.02697, 52.98169 ], [ -0.02637, 52.98182 ], [ -0.02637, 52.9808 ], [ -0.02693, 52.98072 ], [ -0.02741, 52.98118 ], [ -0.02832, 52.98073 ], [ -0.02939, 52.98168 ], [ -0.0297, 52.98151 ], [ -0.03014, 52.98181 ], [ -0.03015, 52.9814 ], [ -0.03147, 52.97781 ], [ -0.03189, 52.9767 ], [ -0.03112, 52.97599 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Boston", "bua_code": "E34004383", "msoa_code": "E02005419", "population": 9119, "outputarea_code": "E00131960", "lsoa_code": "E01026006", "la_name": "Boston", "bua_name": "Boston BUA", "constituency_name": "Boston and Skegness", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.02049, "latitude": 52.98039, "pgroup": "10k" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.02372, 52.96614 ], [ -0.02317, 52.96483 ], [ -0.02372, 52.96475 ], [ -0.02677, 52.96385 ], [ -0.02743, 52.96546 ], [ -0.02953, 52.96467 ], [ -0.0299, 52.96498 ], [ -0.03087, 52.96594 ], [ -0.02934, 52.96651 ], [ -0.02932, 52.96751 ], [ -0.035, 52.96832 ], [ -0.03659, 52.96852 ], [ -0.03646, 52.96885 ], [ -0.0333, 52.96921 ], [ -0.03162, 52.97016 ], [ -0.03117, 52.9706 ], [ -0.03073, 52.97163 ], [ -0.03105, 52.9729 ], [ -0.0305, 52.97177 ], [ -0.0301, 52.9731 ], [ -0.0298, 52.97456 ], [ -0.02998, 52.97507 ], [ -0.03112, 52.97599 ], [ -0.03189, 52.9767 ], [ -0.03147, 52.97781 ], [ -0.03015, 52.9814 ], [ -0.03014, 52.98181 ], [ -0.0297, 52.98151 ], [ -0.02585, 52.97788 ], [ -0.02389, 52.97667 ], [ -0.02448, 52.97515 ], [ -0.02342, 52.97407 ], [ -0.02216, 52.97301 ], [ -0.02267, 52.97238 ], [ -0.02432, 52.97153 ], [ -0.02578, 52.97064 ], [ -0.026, 52.97008 ], [ -0.0259, 52.9678 ], [ -0.02562, 52.96699 ], [ -0.02594, 52.96705 ], [ -0.02608, 52.96658 ], [ -0.02372, 52.96614 ] ] ], [ [ [ -0.01415, 52.97287 ], [ -0.0138, 52.97062 ], [ -0.01304, 52.96842 ], [ -0.01301, 52.96837 ], [ -0.01347, 52.9681 ], [ -0.01316, 52.96798 ], [ -0.01479, 52.96812 ], [ -0.01475, 52.96783 ], [ -0.01825, 52.96777 ], [ -0.01986, 52.96735 ], [ -0.02264, 52.96652 ], [ -0.0241, 52.96672 ], [ -0.0252, 52.96772 ], [ -0.02542, 52.97031 ], [ -0.02225, 52.97227 ], [ -0.02174, 52.97302 ], [ -0.02211, 52.97377 ], [ -0.02394, 52.97479 ], [ -0.02405, 52.97553 ], [ -0.0234, 52.97649 ], [ -0.02423, 52.97726 ], [ -0.02544, 52.9779 ], [ -0.02832, 52.98073 ], [ -0.02741, 52.98118 ], [ -0.02693, 52.98072 ], [ -0.02637, 52.9808 ], [ -0.02637, 52.98182 ], [ -0.02697, 52.98169 ], [ -0.02645, 52.98233 ], [ -0.02581, 52.98252 ], [ -0.02628, 52.98291 ], [ -0.02524, 52.9832 ], [ -0.02475, 52.98382 ], [ -0.02552, 52.98434 ], [ -0.02439, 52.98485 ], [ -0.02477, 52.98571 ], [ -0.02447, 52.98632 ], [ -0.02406, 52.98692 ], [ -0.0228, 52.98716 ], [ -0.02229, 52.98847 ], [ -0.02335, 52.99006 ], [ -0.02531, 52.9913 ], [ -0.02535, 52.99219 ], [ -0.02095, 52.99246 ], [ -0.02157, 52.99834 ], [ -0.02085, 52.99841 ], [ -0.0175, 52.99733 ], [ -0.01558, 52.99627 ], [ -0.01391, 52.99479 ], [ -0.01231, 52.99477 ], [ -0.01027, 52.99259 ], [ -0.00774, 52.99175 ], [ -0.00676, 52.99174 ], [ -0.00668, 52.9903 ], [ -0.00825, 52.98992 ], [ -0.00735, 52.98976 ], [ -0.00675, 52.98883 ], [ -0.00788, 52.9889 ], [ -0.00929, 52.98826 ], [ -0.00806, 52.98679 ], [ -0.01002, 52.9867 ], [ -0.00957, 52.98635 ], [ -0.00978, 52.98448 ], [ -0.01155, 52.98565 ], [ -0.0152, 52.98315 ], [ -0.01776, 52.98192 ], [ -0.0172, 52.98119 ], [ -0.01692, 52.98086 ], [ -0.0172, 52.98079 ], [ -0.01546, 52.97824 ], [ -0.01523, 52.97786 ], [ -0.01438, 52.97448 ], [ -0.01415, 52.97287 ] ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Boston", "bua_code": "E34004383", "msoa_code": "E02005420", "population": 8505, "outputarea_code": "E00131991", "lsoa_code": "E01026012", "la_name": "Boston", "bua_name": "Boston BUA", "constituency_name": "Boston and Skegness", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.00104, "latitude": 52.97307, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.00029, 52.96715 ], [ -0.00013, 52.96579 ], [ -0.00091, 52.96517 ], [ -0.00094, 52.96415 ], [ -0.0018, 52.96445 ], [ -0.00228, 52.96425 ], [ -0.0043, 52.96449 ], [ -0.00495, 52.96392 ], [ -0.0091, 52.96705 ], [ -0.01301, 52.96837 ], [ -0.01304, 52.96842 ], [ -0.0138, 52.97062 ], [ -0.01415, 52.97287 ], [ -0.01438, 52.97448 ], [ -0.01523, 52.97786 ], [ -0.01546, 52.97824 ], [ -0.0172, 52.98079 ], [ -0.01692, 52.98086 ], [ -0.01563, 52.98075 ], [ -0.01015, 52.9811 ], [ -0.00971, 52.9811 ], [ -0.00944, 52.9811 ], [ -0.00543, 52.98 ], [ -0.00587, 52.97976 ], [ -0.00535, 52.97931 ], [ -0.00528, 52.97922 ], [ -0.00435, 52.97662 ], [ -0.00426, 52.97617 ], [ -0.00413, 52.97655 ], [ -0.00342, 52.97651 ], [ -0.00266, 52.97609 ], [ -0.00239, 52.97544 ], [ -0.00008, 52.97587 ], [ 0.00081, 52.97634 ], [ 0.00208, 52.97639 ], [ 0.00272, 52.97577 ], [ 0.00293, 52.97607 ], [ 0.00327, 52.97586 ], [ 0.00405, 52.97599 ], [ 0.00453, 52.97662 ], [ 0.00533, 52.97673 ], [ 0.00525, 52.97979 ], [ 0.00584, 52.9802 ], [ 0.00979, 52.97816 ], [ 0.01028, 52.97793 ], [ 0.01324, 52.97693 ], [ 0.01323, 52.97625 ], [ 0.0149, 52.97568 ], [ 0.01588, 52.97572 ], [ 0.01545, 52.97531 ], [ 0.01663, 52.97479 ], [ 0.01708, 52.97407 ], [ 0.01743, 52.97195 ], [ 0.01464, 52.97019 ], [ 0.01487, 52.96965 ], [ 0.01383, 52.9696 ], [ 0.01304, 52.96846 ], [ 0.01258, 52.96858 ], [ 0.01113, 52.96904 ], [ 0.00508, 52.96833 ], [ 0.00291, 52.9694 ], [ 0.00089, 52.96966 ], [ 0.00023, 52.96956 ], [ 0.00088, 52.96842 ], [ 0.00202, 52.96785 ], [ 0.0014, 52.9677 ], [ 0.00081, 52.96758 ], [ 0.00023, 52.96787 ], [ -0.00029, 52.96715 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Boston", "bua_code": "E34004383", "msoa_code": "E02005423", "population": 1341, "outputarea_code": "E00132142", "lsoa_code": "E01026041", "la_name": "Boston", "bua_name": "Boston BUA", "constituency_name": "Boston and Skegness", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.02776, "latitude": 52.94545, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.03536, 52.95046 ], [ -0.03387, 52.95043 ], [ -0.03126, 52.94844 ], [ -0.03132, 52.94765 ], [ -0.02993, 52.94523 ], [ -0.02455, 52.94397 ], [ -0.01934, 52.94402 ], [ -0.01451, 52.94498 ], [ -0.01095, 52.94401 ], [ -0.00747, 52.94362 ], [ -0.00471, 52.94278 ], [ -0.00858, 52.93649 ], [ -0.01204, 52.93758 ], [ -0.0121, 52.93798 ], [ -0.01548, 52.93938 ], [ -0.01919, 52.93948 ], [ -0.02283, 52.94095 ], [ -0.02615, 52.94162 ], [ -0.02867, 52.94177 ], [ -0.03099, 52.94257 ], [ -0.03122, 52.94341 ], [ -0.03552, 52.94486 ], [ -0.03867, 52.94534 ], [ -0.04017, 52.946 ], [ -0.04247, 52.9472 ], [ -0.04226, 52.94766 ], [ -0.04503, 52.94859 ], [ -0.04637, 52.9486 ], [ -0.04672, 52.94956 ], [ -0.05353, 52.95357 ], [ -0.04235, 52.95304 ], [ -0.04199, 52.95274 ], [ -0.04077, 52.95344 ], [ -0.04101, 52.95371 ], [ -0.03903, 52.95405 ], [ -0.03976, 52.9531 ], [ -0.03955, 52.95271 ], [ -0.03785, 52.95249 ], [ -0.03827, 52.95215 ], [ -0.0375, 52.95199 ], [ -0.03738, 52.95232 ], [ -0.03441, 52.95236 ], [ -0.03445, 52.95163 ], [ -0.03536, 52.95046 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Boston", "bua_code": "E34004383", "msoa_code": "E02006864", "population": 6446, "outputarea_code": "E00131994", "lsoa_code": "E01026013", "la_name": "Boston", "bua_name": "Boston BUA", "constituency_name": "Boston and Skegness", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.01873, "latitude": 52.98888, "pgroup": "10k" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.04104, 52.95548 ], [ -0.03744, 52.95484 ], [ -0.03596, 52.95551 ], [ -0.0389, 52.95778 ], [ -0.0372, 52.96052 ], [ -0.03599, 52.96136 ], [ -0.03542, 52.96133 ], [ -0.03253, 52.96104 ], [ -0.03171, 52.96129 ], [ -0.03104, 52.96076 ], [ -0.02984, 52.96099 ], [ -0.02971, 52.95966 ], [ -0.0282, 52.95977 ], [ -0.02561, 52.95989 ], [ -0.02466, 52.95961 ], [ -0.02411, 52.96 ], [ -0.02271, 52.95988 ], [ -0.02186, 52.96033 ], [ -0.01993, 52.96003 ], [ -0.01894, 52.95702 ], [ -0.01888, 52.9557 ], [ -0.01951, 52.95527 ], [ -0.02131, 52.95611 ], [ -0.02081, 52.95756 ], [ -0.01972, 52.95855 ], [ -0.02465, 52.95804 ], [ -0.02728, 52.95475 ], [ -0.02837, 52.95416 ], [ -0.03007, 52.95421 ], [ -0.03207, 52.95468 ], [ -0.03445, 52.95163 ], [ -0.03441, 52.95236 ], [ -0.03738, 52.95232 ], [ -0.0375, 52.95199 ], [ -0.03827, 52.95215 ], [ -0.03785, 52.95249 ], [ -0.03955, 52.95271 ], [ -0.03976, 52.9531 ], [ -0.03903, 52.95405 ], [ -0.04101, 52.95371 ], [ -0.04225, 52.95401 ], [ -0.04143, 52.95491 ], [ -0.04251, 52.95489 ], [ -0.04267, 52.95537 ], [ -0.04104, 52.95548 ] ] ], [ [ [ -0.00029, 52.96715 ], [ 0.00023, 52.96787 ], [ 0.00081, 52.96758 ], [ 0.0014, 52.9677 ], [ 0.00202, 52.96785 ], [ 0.00088, 52.96842 ], [ 0.00023, 52.96956 ], [ 0.00089, 52.96966 ], [ 0.00291, 52.9694 ], [ 0.00508, 52.96833 ], [ 0.01113, 52.96904 ], [ 0.01258, 52.96858 ], [ 0.01092, 52.96612 ], [ 0.0086, 52.96449 ], [ 0.00584, 52.96386 ], [ 0.0056, 52.96271 ], [ 0.00464, 52.96331 ], [ 0.00213, 52.96295 ], [ 0.0006, 52.96374 ], [ -0.00094, 52.96415 ], [ -0.00091, 52.96517 ], [ -0.00013, 52.96579 ], [ -0.00029, 52.96715 ] ] ], [ [ [ -0.00426, 52.97617 ], [ -0.00435, 52.97662 ], [ -0.00528, 52.97922 ], [ -0.00535, 52.97931 ], [ -0.00587, 52.97976 ], [ -0.00543, 52.98 ], [ -0.00944, 52.9811 ], [ -0.00971, 52.9811 ], [ -0.01015, 52.9811 ], [ -0.01563, 52.98075 ], [ -0.01692, 52.98086 ], [ -0.0172, 52.98119 ], [ -0.01776, 52.98192 ], [ -0.0152, 52.98315 ], [ -0.01155, 52.98565 ], [ -0.00978, 52.98448 ], [ -0.00957, 52.98635 ], [ -0.01002, 52.9867 ], [ -0.00806, 52.98679 ], [ -0.00929, 52.98826 ], [ -0.00788, 52.9889 ], [ -0.00675, 52.98883 ], [ -0.00735, 52.98976 ], [ -0.00825, 52.98992 ], [ -0.00668, 52.9903 ], [ -0.00676, 52.99174 ], [ -0.00774, 52.99175 ], [ -0.01027, 52.99259 ], [ -0.01231, 52.99477 ], [ -0.01391, 52.99479 ], [ -0.01558, 52.99627 ], [ -0.0175, 52.99733 ], [ -0.02085, 52.99841 ], [ -0.02157, 52.99834 ], [ -0.02095, 52.99246 ], [ -0.02535, 52.99219 ], [ -0.02531, 52.9913 ], [ -0.02335, 52.99006 ], [ -0.02229, 52.98847 ], [ -0.0228, 52.98716 ], [ -0.02406, 52.98692 ], [ -0.02447, 52.98632 ], [ -0.02586, 52.98591 ], [ -0.02698, 52.98639 ], [ -0.02773, 52.98648 ], [ -0.02802, 52.98624 ], [ -0.02854, 52.98648 ], [ -0.0284, 52.98685 ], [ -0.02976, 52.98735 ], [ -0.03076, 52.98696 ], [ -0.03143, 52.98729 ], [ -0.03157, 52.9878 ], [ -0.03412, 52.98784 ], [ -0.03406, 52.98712 ], [ -0.03324, 52.98702 ], [ -0.03252, 52.98546 ], [ -0.03464, 52.9849 ], [ -0.03582, 52.98572 ], [ -0.03614, 52.98593 ], [ -0.04149, 52.98961 ], [ -0.04207, 52.99002 ], [ -0.047, 52.99349 ], [ -0.04883, 52.99503 ], [ -0.06123, 53.00687 ], [ -0.06255, 53.00781 ], [ -0.06392, 53.00823 ], [ -0.06329, 53.00892 ], [ -0.05543, 53.00676 ], [ -0.0515, 53.0049 ], [ -0.03261, 53.00482 ], [ -0.02391, 53.00569 ], [ -0.0218, 53.00533 ], [ -0.01917, 53.0043 ], [ -0.01499, 53.00473 ], [ -0.01075, 53.00202 ], [ -0.00706, 53.00112 ], [ -0.00493, 53.00066 ], [ 0.00692, 52.99807 ], [ 0.00875, 52.98924 ], [ 0.00868, 52.98724 ], [ 0.0081, 52.98642 ], [ 0.00798, 52.98608 ], [ 0.00846, 52.98587 ], [ 0.00953, 52.98591 ], [ 0.0097, 52.98624 ], [ 0.01245, 52.98599 ], [ 0.0125, 52.98391 ], [ 0.01515, 52.98289 ], [ 0.01902, 52.9811 ], [ 0.01697, 52.97945 ], [ 0.01687, 52.97758 ], [ 0.01861, 52.97735 ], [ 0.01932, 52.97804 ], [ 0.01917, 52.97739 ], [ 0.01997, 52.9772 ], [ 0.01976, 52.97633 ], [ 0.01828, 52.97694 ], [ 0.01785, 52.97657 ], [ 0.01706, 52.97656 ], [ 0.0155, 52.97689 ], [ 0.01435, 52.97689 ], [ 0.01403, 52.97658 ], [ 0.01324, 52.97693 ], [ 0.01028, 52.97793 ], [ 0.00979, 52.97816 ], [ 0.00584, 52.9802 ], [ 0.00525, 52.97979 ], [ 0.00533, 52.97673 ], [ 0.00453, 52.97662 ], [ 0.00405, 52.97599 ], [ 0.00327, 52.97586 ], [ 0.00293, 52.97607 ], [ 0.00272, 52.97577 ], [ 0.00208, 52.97639 ], [ 0.00081, 52.97634 ], [ -0.00008, 52.97587 ], [ -0.00239, 52.97544 ], [ -0.00266, 52.97609 ], [ -0.00342, 52.97651 ], [ -0.00413, 52.97655 ], [ -0.00426, 52.97617 ] ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Boston", "bua_code": "E34004383", "msoa_code": "E02006865", "population": 7895, "outputarea_code": "E00132086", "lsoa_code": "E01026029", "la_name": "Boston", "bua_name": "Boston BUA", "constituency_name": "Boston and Skegness", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.05002, "latitude": 52.96864, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.05448, 52.95414 ], [ -0.05686, 52.95553 ], [ -0.05881, 52.95674 ], [ -0.06378, 52.96098 ], [ -0.06583, 52.96217 ], [ -0.07215, 52.96824 ], [ -0.08067, 52.96758 ], [ -0.08082, 52.96782 ], [ -0.08459, 52.96755 ], [ -0.08237, 52.98462 ], [ -0.05765, 52.98261 ], [ -0.05759, 52.98278 ], [ -0.04825, 52.982 ], [ -0.04367, 52.98202 ], [ -0.04401, 52.97828 ], [ -0.04415, 52.97654 ], [ -0.04165, 52.97706 ], [ -0.0391, 52.97745 ], [ -0.0389, 52.97714 ], [ -0.03945, 52.97705 ], [ -0.03908, 52.97561 ], [ -0.03904, 52.97505 ], [ -0.0378, 52.97496 ], [ -0.03864, 52.97447 ], [ -0.03829, 52.97439 ], [ -0.03772, 52.97382 ], [ -0.03868, 52.97349 ], [ -0.03911, 52.97253 ], [ -0.03855, 52.97223 ], [ -0.03954, 52.97063 ], [ -0.0406, 52.96999 ], [ -0.04005, 52.96982 ], [ -0.03917, 52.97066 ], [ -0.03707, 52.9699 ], [ -0.03641, 52.96985 ], [ -0.03599, 52.97033 ], [ -0.03556, 52.97171 ], [ -0.03451, 52.97112 ], [ -0.03434, 52.97075 ], [ -0.03162, 52.97016 ], [ -0.0333, 52.96921 ], [ -0.03646, 52.96885 ], [ -0.03659, 52.96852 ], [ -0.035, 52.96832 ], [ -0.02932, 52.96751 ], [ -0.02934, 52.96651 ], [ -0.03087, 52.96594 ], [ -0.0299, 52.96498 ], [ -0.02953, 52.96467 ], [ -0.02743, 52.96546 ], [ -0.02677, 52.96385 ], [ -0.02372, 52.96475 ], [ -0.02317, 52.96483 ], [ -0.02372, 52.96614 ], [ -0.02208, 52.9662 ], [ -0.01857, 52.96738 ], [ -0.01494, 52.96712 ], [ -0.01257, 52.96733 ], [ -0.01022, 52.9668 ], [ 0.00265, 52.95611 ], [ -0.00611, 52.95613 ], [ -0.00643, 52.95733 ], [ -0.00722, 52.95739 ], [ -0.00988, 52.95714 ], [ -0.01145, 52.95649 ], [ -0.01384, 52.95695 ], [ -0.01549, 52.9567 ], [ -0.01736, 52.95711 ], [ -0.01894, 52.95702 ], [ -0.01993, 52.96003 ], [ -0.02186, 52.96033 ], [ -0.02271, 52.95988 ], [ -0.02411, 52.96 ], [ -0.02466, 52.95961 ], [ -0.02561, 52.95989 ], [ -0.0282, 52.95977 ], [ -0.02971, 52.95966 ], [ -0.02984, 52.96099 ], [ -0.03104, 52.96076 ], [ -0.03171, 52.96129 ], [ -0.03253, 52.96104 ], [ -0.03542, 52.96133 ], [ -0.03599, 52.96136 ], [ -0.0372, 52.96052 ], [ -0.0389, 52.95778 ], [ -0.03596, 52.95551 ], [ -0.03744, 52.95484 ], [ -0.04104, 52.95548 ], [ -0.04267, 52.95537 ], [ -0.04251, 52.95489 ], [ -0.04143, 52.95491 ], [ -0.04225, 52.95401 ], [ -0.04101, 52.95371 ], [ -0.04077, 52.95344 ], [ -0.04199, 52.95274 ], [ -0.04235, 52.95304 ], [ -0.05353, 52.95357 ], [ -0.05448, 52.95414 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Bourne", "bua_code": "E34003418", "msoa_code": "E02005485", "population": 6587, "outputarea_code": "E00133579", "lsoa_code": "E01026301", "la_name": "South Kesteven", "bua_name": "Bourne BUA", "constituency_name": "Grantham and Stamford", "citytownclassification": "Small Town", "urban": "Y", "longitude": -0.39146, "latitude": 52.7752, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.37939, 52.76141 ], [ -0.37927, 52.75993 ], [ -0.37966, 52.7575 ], [ -0.38022, 52.75624 ], [ -0.38356, 52.75562 ], [ -0.3896, 52.75548 ], [ -0.3994, 52.75469 ], [ -0.3996, 52.75577 ], [ -0.40217, 52.75852 ], [ -0.40302, 52.76 ], [ -0.40383, 52.76026 ], [ -0.40511, 52.76137 ], [ -0.40729, 52.76135 ], [ -0.40727, 52.76442 ], [ -0.40556, 52.7666 ], [ -0.4071, 52.7677 ], [ -0.40797, 52.76933 ], [ -0.40761, 52.77206 ], [ -0.40707, 52.77294 ], [ -0.40681, 52.77792 ], [ -0.40519, 52.78029 ], [ -0.40429, 52.78092 ], [ -0.40412, 52.78161 ], [ -0.40446, 52.78318 ], [ -0.40659, 52.7861 ], [ -0.40642, 52.788 ], [ -0.40774, 52.78984 ], [ -0.40827, 52.79142 ], [ -0.40302, 52.79256 ], [ -0.39946, 52.79295 ], [ -0.39471, 52.79481 ], [ -0.3938, 52.79379 ], [ -0.39103, 52.79367 ], [ -0.38233, 52.79436 ], [ -0.37896, 52.79437 ], [ -0.37619, 52.79404 ], [ -0.37628, 52.78901 ], [ -0.37729, 52.78408 ], [ -0.3769, 52.78127 ], [ -0.37614, 52.77819 ], [ -0.37617, 52.77729 ], [ -0.37629, 52.77648 ], [ -0.37651, 52.77487 ], [ -0.37665, 52.77182 ], [ -0.37686, 52.77108 ], [ -0.37699, 52.76985 ], [ -0.37726, 52.76839 ], [ -0.37661, 52.766 ], [ -0.3747, 52.76516 ], [ -0.37444, 52.76451 ], [ -0.37866, 52.76311 ], [ -0.37936, 52.76228 ], [ -0.37939, 52.76141 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Bourne", "bua_code": "E34003418", "msoa_code": "E02005486", "population": 9117, "outputarea_code": "E00133558", "lsoa_code": "E01032999", "la_name": "South Kesteven", "bua_name": "Bourne BUA", "constituency_name": "Grantham and Stamford", "citytownclassification": "Small Town", "urban": "Y", "longitude": -0.35984, "latitude": 52.76963, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.36684, 52.75569 ], [ -0.36734, 52.75532 ], [ -0.36932, 52.75571 ], [ -0.36998, 52.755 ], [ -0.36993, 52.75435 ], [ -0.37296, 52.75398 ], [ -0.37554, 52.75378 ], [ -0.37577, 52.75454 ], [ -0.37629, 52.75578 ], [ -0.37942, 52.75521 ], [ -0.38022, 52.75624 ], [ -0.37966, 52.7575 ], [ -0.37927, 52.75993 ], [ -0.37939, 52.76141 ], [ -0.37936, 52.76228 ], [ -0.37866, 52.76311 ], [ -0.37444, 52.76451 ], [ -0.3747, 52.76516 ], [ -0.37661, 52.766 ], [ -0.37726, 52.76839 ], [ -0.37699, 52.76985 ], [ -0.37686, 52.77108 ], [ -0.37665, 52.77182 ], [ -0.37651, 52.77487 ], [ -0.37629, 52.77648 ], [ -0.37617, 52.77729 ], [ -0.37614, 52.77819 ], [ -0.3769, 52.78127 ], [ -0.37241, 52.78199 ], [ -0.3685, 52.7838 ], [ -0.36699, 52.78384 ], [ -0.36311, 52.78256 ], [ -0.36289, 52.78134 ], [ -0.36736, 52.78076 ], [ -0.36746, 52.77865 ], [ -0.36327, 52.77864 ], [ -0.36341, 52.7767 ], [ -0.36344, 52.77494 ], [ -0.36558, 52.77304 ], [ -0.36282, 52.77201 ], [ -0.36291, 52.7713 ], [ -0.36074, 52.77046 ], [ -0.36004, 52.76971 ], [ -0.35784, 52.77087 ], [ -0.35586, 52.77115 ], [ -0.35521, 52.77472 ], [ -0.35222, 52.77493 ], [ -0.34466, 52.77789 ], [ -0.34342, 52.77907 ], [ -0.34726, 52.78148 ], [ -0.34769, 52.78562 ], [ -0.34485, 52.78591 ], [ -0.34191, 52.78559 ], [ -0.33258, 52.78585 ], [ -0.33127, 52.78637 ], [ -0.33016, 52.78631 ], [ -0.33453, 52.77966 ], [ -0.34124, 52.77241 ], [ -0.34134, 52.77222 ], [ -0.34063, 52.77214 ], [ -0.3428, 52.76887 ], [ -0.3448, 52.76745 ], [ -0.3453, 52.7665 ], [ -0.34898, 52.76688 ], [ -0.35662, 52.76608 ], [ -0.35854, 52.76578 ], [ -0.35893, 52.76443 ], [ -0.35851, 52.76405 ], [ -0.35536, 52.76308 ], [ -0.35648, 52.75976 ], [ -0.35303, 52.75757 ], [ -0.34916, 52.75328 ], [ -0.35887, 52.75483 ], [ -0.36684, 52.75569 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Brackley", "bua_code": "E34000857", "msoa_code": "E02005689", "population": 8138, "outputarea_code": "E00138692", "lsoa_code": "E01027265", "la_name": "South Northamptonshire", "bua_name": "Brackley BUA", "constituency_name": "South Northamptonshire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.15361, "latitude": 52.04089, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.14239, 52.02863 ], [ -1.14282, 52.02879 ], [ -1.14183, 52.02962 ], [ -1.14248, 52.03017 ], [ -1.14165, 52.03006 ], [ -1.1401, 52.03078 ], [ -1.14063, 52.03133 ], [ -1.1399, 52.03203 ], [ -1.13947, 52.03234 ], [ -1.13991, 52.0329 ], [ -1.14219, 52.03347 ], [ -1.1433, 52.03237 ], [ -1.14374, 52.03261 ], [ -1.14366, 52.03269 ], [ -1.14332, 52.03311 ], [ -1.14401, 52.03333 ], [ -1.1452, 52.03378 ], [ -1.14537, 52.03447 ], [ -1.14649, 52.03426 ], [ -1.14738, 52.03454 ], [ -1.14906, 52.03514 ], [ -1.14957, 52.03531 ], [ -1.15092, 52.03426 ], [ -1.15177, 52.03473 ], [ -1.15303, 52.03447 ], [ -1.15414, 52.03456 ], [ -1.15557, 52.0352 ], [ -1.15776, 52.03435 ], [ -1.15859, 52.03399 ], [ -1.15909, 52.03368 ], [ -1.1601, 52.03294 ], [ -1.16026, 52.03144 ], [ -1.16076, 52.03091 ], [ -1.16237, 52.03151 ], [ -1.16324, 52.02976 ], [ -1.16635, 52.03205 ], [ -1.17086, 52.03522 ], [ -1.17398, 52.03642 ], [ -1.17292, 52.03833 ], [ -1.17311, 52.03889 ], [ -1.17212, 52.04111 ], [ -1.16918, 52.04533 ], [ -1.16834, 52.04828 ], [ -1.1657, 52.05113 ], [ -1.16455, 52.05156 ], [ -1.16417, 52.05193 ], [ -1.1646, 52.05404 ], [ -1.16302, 52.05441 ], [ -1.16225, 52.05361 ], [ -1.16037, 52.05397 ], [ -1.16003, 52.05329 ], [ -1.15776, 52.05392 ], [ -1.15608, 52.05388 ], [ -1.15717, 52.05207 ], [ -1.1498, 52.05004 ], [ -1.14859, 52.04902 ], [ -1.14806, 52.0486 ], [ -1.14523, 52.04874 ], [ -1.14459, 52.04827 ], [ -1.1441, 52.04633 ], [ -1.14328, 52.04576 ], [ -1.13539, 52.04309 ], [ -1.13412, 52.04242 ], [ -1.13392, 52.04089 ], [ -1.13427, 52.03969 ], [ -1.13375, 52.03854 ], [ -1.13403, 52.0358 ], [ -1.13466, 52.03536 ], [ -1.1344, 52.03452 ], [ -1.13375, 52.03348 ], [ -1.13223, 52.03228 ], [ -1.13126, 52.03287 ], [ -1.13143, 52.03223 ], [ -1.13294, 52.03174 ], [ -1.13278, 52.03142 ], [ -1.13254, 52.0306 ], [ -1.13269, 52.02902 ], [ -1.1351, 52.02904 ], [ -1.13475, 52.02952 ], [ -1.13541, 52.03009 ], [ -1.13655, 52.02946 ], [ -1.13701, 52.02968 ], [ -1.13724, 52.02938 ], [ -1.13776, 52.02965 ], [ -1.13851, 52.02958 ], [ -1.1391, 52.02866 ], [ -1.13862, 52.02845 ], [ -1.13882, 52.02774 ], [ -1.14239, 52.02863 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Brackley", "bua_code": "E34000857", "msoa_code": "E02005690", "population": 5695, "outputarea_code": "E00138699", "lsoa_code": "E01027264", "la_name": "South Northamptonshire", "bua_name": "Brackley BUA", "constituency_name": "South Northamptonshire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.14794, "latitude": 52.02786, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.14239, 52.02863 ], [ -1.13882, 52.02774 ], [ -1.13862, 52.02845 ], [ -1.1391, 52.02866 ], [ -1.13851, 52.02958 ], [ -1.13776, 52.02965 ], [ -1.13724, 52.02938 ], [ -1.13701, 52.02968 ], [ -1.13655, 52.02946 ], [ -1.13541, 52.03009 ], [ -1.13475, 52.02952 ], [ -1.1351, 52.02904 ], [ -1.13269, 52.02902 ], [ -1.13368, 52.0266 ], [ -1.13353, 52.02604 ], [ -1.13429, 52.0257 ], [ -1.13545, 52.02427 ], [ -1.13528, 52.02373 ], [ -1.13577, 52.02293 ], [ -1.13627, 52.02298 ], [ -1.13606, 52.02247 ], [ -1.13666, 52.02223 ], [ -1.13598, 52.02112 ], [ -1.13616, 52.02003 ], [ -1.14216, 52.01998 ], [ -1.14371, 52.02056 ], [ -1.1467, 52.02271 ], [ -1.15012, 52.02306 ], [ -1.15351, 52.02286 ], [ -1.15458, 52.02324 ], [ -1.15508, 52.02388 ], [ -1.15667, 52.02532 ], [ -1.16119, 52.02603 ], [ -1.1623, 52.02754 ], [ -1.16246, 52.02937 ], [ -1.16324, 52.02976 ], [ -1.16237, 52.03151 ], [ -1.16076, 52.03091 ], [ -1.16026, 52.03144 ], [ -1.1601, 52.03294 ], [ -1.15909, 52.03368 ], [ -1.15859, 52.03399 ], [ -1.15776, 52.03435 ], [ -1.15557, 52.0352 ], [ -1.15414, 52.03456 ], [ -1.15303, 52.03447 ], [ -1.15177, 52.03473 ], [ -1.15092, 52.03426 ], [ -1.14957, 52.03531 ], [ -1.14906, 52.03514 ], [ -1.14738, 52.03454 ], [ -1.14649, 52.03426 ], [ -1.14537, 52.03447 ], [ -1.1452, 52.03378 ], [ -1.14401, 52.03333 ], [ -1.14332, 52.03311 ], [ -1.14366, 52.03269 ], [ -1.14374, 52.03261 ], [ -1.1433, 52.03237 ], [ -1.14219, 52.03347 ], [ -1.13991, 52.0329 ], [ -1.13947, 52.03234 ], [ -1.1399, 52.03203 ], [ -1.14063, 52.03133 ], [ -1.1401, 52.03078 ], [ -1.14165, 52.03006 ], [ -1.14248, 52.03017 ], [ -1.14183, 52.02962 ], [ -1.14282, 52.02879 ], [ -1.14239, 52.02863 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Breaston", "bua_code": "E35000850", "msoa_code": "E02004088", "population": 1439, "outputarea_code": "E00099373", "lsoa_code": "E01019641", "la_name": "Erewash", "bua_name": "Breaston BUASD", "constituency_name": "Erewash", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.3057, "latitude": 52.90487, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.299, 52.89781 ], [ -1.29949, 52.89617 ], [ -1.30103, 52.8956 ], [ -1.30486, 52.89578 ], [ -1.30583, 52.89403 ], [ -1.30793, 52.89456 ], [ -1.31106, 52.89435 ], [ -1.3107, 52.89662 ], [ -1.31017, 52.89693 ], [ -1.3094, 52.89677 ], [ -1.30921, 52.89768 ], [ -1.30863, 52.89805 ], [ -1.30877, 52.89806 ], [ -1.30873, 52.89836 ], [ -1.31017, 52.89854 ], [ -1.31026, 52.89904 ], [ -1.31122, 52.89945 ], [ -1.31227, 52.90138 ], [ -1.31158, 52.90162 ], [ -1.31099, 52.90147 ], [ -1.31038, 52.90092 ], [ -1.30843, 52.90142 ], [ -1.30877, 52.90196 ], [ -1.30835, 52.90256 ], [ -1.31076, 52.90465 ], [ -1.30919, 52.90823 ], [ -1.31082, 52.90861 ], [ -1.31343, 52.91072 ], [ -1.31436, 52.91327 ], [ -1.31381, 52.91381 ], [ -1.31273, 52.91387 ], [ -1.30489, 52.91431 ], [ -1.30115, 52.91486 ], [ -1.30053, 52.91406 ], [ -1.30084, 52.91166 ], [ -1.30043, 52.91112 ], [ -1.30083, 52.91095 ], [ -1.30103, 52.9076 ], [ -1.30072, 52.90521 ], [ -1.29987, 52.90321 ], [ -1.29922, 52.9016 ], [ -1.29896, 52.89868 ], [ -1.299, 52.89781 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Breaston", "bua_code": "E35000850", "msoa_code": "E02004090", "population": 6361, "outputarea_code": "E00099368", "lsoa_code": "E01019642", "la_name": "Erewash", "bua_name": "Breaston BUASD", "constituency_name": "Erewash", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.33261, "latitude": 52.8949, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.3091, 52.88505 ], [ -1.31005, 52.88318 ], [ -1.31095, 52.88089 ], [ -1.3106, 52.88083 ], [ -1.31094, 52.87787 ], [ -1.31041, 52.87564 ], [ -1.30933, 52.87335 ], [ -1.31068, 52.87318 ], [ -1.31616, 52.87347 ], [ -1.31931, 52.87287 ], [ -1.32261, 52.87236 ], [ -1.32371, 52.87281 ], [ -1.32375, 52.87372 ], [ -1.32135, 52.87335 ], [ -1.32037, 52.87377 ], [ -1.32028, 52.87466 ], [ -1.31955, 52.8753 ], [ -1.32017, 52.87593 ], [ -1.32197, 52.8764 ], [ -1.32573, 52.87538 ], [ -1.32691, 52.87432 ], [ -1.32754, 52.87452 ], [ -1.32867, 52.87472 ], [ -1.33017, 52.8757 ], [ -1.32997, 52.87816 ], [ -1.33282, 52.87672 ], [ -1.33522, 52.87632 ], [ -1.3362, 52.87853 ], [ -1.34007, 52.87931 ], [ -1.34263, 52.87942 ], [ -1.34347, 52.88073 ], [ -1.34497, 52.88063 ], [ -1.34669, 52.87983 ], [ -1.34817, 52.87989 ], [ -1.34948, 52.88042 ], [ -1.34992, 52.88118 ], [ -1.34749, 52.88216 ], [ -1.34684, 52.8829 ], [ -1.34811, 52.88582 ], [ -1.3472, 52.88592 ], [ -1.34402, 52.88507 ], [ -1.34179, 52.88533 ], [ -1.34098, 52.88637 ], [ -1.34164, 52.88757 ], [ -1.33905, 52.88865 ], [ -1.33882, 52.88925 ], [ -1.3393, 52.88969 ], [ -1.34108, 52.8901 ], [ -1.34276, 52.88962 ], [ -1.3446, 52.89001 ], [ -1.34477, 52.89068 ], [ -1.3457, 52.89075 ], [ -1.34654, 52.89026 ], [ -1.34539, 52.88875 ], [ -1.34645, 52.88797 ], [ -1.34828, 52.88784 ], [ -1.3487, 52.88862 ], [ -1.3503, 52.88911 ], [ -1.35432, 52.88879 ], [ -1.35483, 52.88933 ], [ -1.35704, 52.88982 ], [ -1.35678, 52.89045 ], [ -1.35599, 52.89045 ], [ -1.35544, 52.89097 ], [ -1.35548, 52.89154 ], [ -1.35634, 52.89172 ], [ -1.35533, 52.89302 ], [ -1.35618, 52.89435 ], [ -1.3576, 52.89514 ], [ -1.35854, 52.89528 ], [ -1.35927, 52.89451 ], [ -1.35929, 52.89369 ], [ -1.36142, 52.89236 ], [ -1.3628, 52.89281 ], [ -1.36152, 52.89465 ], [ -1.36176, 52.89597 ], [ -1.36239, 52.89639 ], [ -1.36474, 52.89667 ], [ -1.36628, 52.89717 ], [ -1.36761, 52.8956 ], [ -1.37083, 52.89475 ], [ -1.36893, 52.89976 ], [ -1.3676, 52.90254 ], [ -1.36529, 52.9049 ], [ -1.36217, 52.90713 ], [ -1.35823, 52.90766 ], [ -1.35039, 52.91158 ], [ -1.34052, 52.91413 ], [ -1.33858, 52.90865 ], [ -1.33773, 52.9074 ], [ -1.33306, 52.90848 ], [ -1.32652, 52.91046 ], [ -1.32618, 52.91026 ], [ -1.31936, 52.91227 ], [ -1.31738, 52.91313 ], [ -1.31481, 52.9128 ], [ -1.31436, 52.91327 ], [ -1.31343, 52.91072 ], [ -1.31082, 52.90861 ], [ -1.30919, 52.90823 ], [ -1.31076, 52.90465 ], [ -1.30835, 52.90256 ], [ -1.30877, 52.90196 ], [ -1.30843, 52.90142 ], [ -1.31038, 52.90092 ], [ -1.31099, 52.90147 ], [ -1.31158, 52.90162 ], [ -1.31227, 52.90138 ], [ -1.31122, 52.89945 ], [ -1.31026, 52.89904 ], [ -1.31017, 52.89854 ], [ -1.30873, 52.89836 ], [ -1.30877, 52.89806 ], [ -1.30863, 52.89805 ], [ -1.30921, 52.89768 ], [ -1.3094, 52.89677 ], [ -1.31017, 52.89693 ], [ -1.3107, 52.89662 ], [ -1.31106, 52.89435 ], [ -1.30793, 52.89456 ], [ -1.30583, 52.89403 ], [ -1.30486, 52.89578 ], [ -1.30103, 52.8956 ], [ -1.29949, 52.89617 ], [ -1.30027, 52.89443 ], [ -1.30212, 52.8918 ], [ -1.30413, 52.89002 ], [ -1.30594, 52.8885 ], [ -1.3091, 52.88505 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Broughton Astley", "bua_code": "E34003376", "msoa_code": "E02005370", "population": 8963, "outputarea_code": "E00130759", "lsoa_code": "E01025772", "la_name": "Harborough", "bua_name": "Broughton Astley BUA", "constituency_name": "South Leicestershire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.22878, "latitude": 52.53387, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.20221, 52.52794 ], [ -1.20213, 52.52744 ], [ -1.20212, 52.52714 ], [ -1.20382, 52.52719 ], [ -1.204, 52.52342 ], [ -1.20492, 52.52234 ], [ -1.2062, 52.52207 ], [ -1.20632, 52.52153 ], [ -1.20882, 52.52131 ], [ -1.20919, 52.51989 ], [ -1.20902, 52.51929 ], [ -1.21149, 52.51697 ], [ -1.21213, 52.51585 ], [ -1.21952, 52.51726 ], [ -1.21929, 52.51795 ], [ -1.21972, 52.51802 ], [ -1.22033, 52.51812 ], [ -1.22095, 52.5169 ], [ -1.22556, 52.5184 ], [ -1.23017, 52.51997 ], [ -1.23317, 52.5201 ], [ -1.23389, 52.52093 ], [ -1.23808, 52.5212 ], [ -1.24025, 52.52099 ], [ -1.2441, 52.52355 ], [ -1.24497, 52.52292 ], [ -1.25086, 52.52553 ], [ -1.25545, 52.52824 ], [ -1.25935, 52.53001 ], [ -1.2601, 52.52976 ], [ -1.26117, 52.53032 ], [ -1.25741, 52.53349 ], [ -1.25645, 52.53422 ], [ -1.25127, 52.53874 ], [ -1.25135, 52.5391 ], [ -1.24911, 52.54064 ], [ -1.24797, 52.54203 ], [ -1.24596, 52.54329 ], [ -1.24283, 52.54608 ], [ -1.23617, 52.55168 ], [ -1.23184, 52.55538 ], [ -1.22889, 52.55431 ], [ -1.22666, 52.55342 ], [ -1.22413, 52.55168 ], [ -1.22436, 52.55146 ], [ -1.22114, 52.55017 ], [ -1.21782, 52.54827 ], [ -1.21773, 52.54769 ], [ -1.21298, 52.54427 ], [ -1.21379, 52.54368 ], [ -1.21177, 52.54288 ], [ -1.21075, 52.54103 ], [ -1.209, 52.5392 ], [ -1.2066, 52.53516 ], [ -1.20546, 52.53519 ], [ -1.20532, 52.53493 ], [ -1.20442, 52.5316 ], [ -1.20325, 52.53037 ], [ -1.20221, 52.52794 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Burton Latimer", "bua_code": "E35000603", "msoa_code": "E02005649", "population": 9123, "outputarea_code": "E00137806", "lsoa_code": "E01027092", "la_name": "Kettering", "bua_name": "Burton Latimer BUASD", "constituency_name": "Kettering", "citytownclassification": "Small Town", "urban": "Y", "longitude": -0.66776, "latitude": 52.36361, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.68782, 52.35324 ], [ -0.68887, 52.35393 ], [ -0.69109, 52.35393 ], [ -0.69062, 52.35454 ], [ -0.69107, 52.35579 ], [ -0.69042, 52.35617 ], [ -0.691, 52.35636 ], [ -0.69239, 52.3561 ], [ -0.69117, 52.35693 ], [ -0.69186, 52.35782 ], [ -0.69232, 52.3576 ], [ -0.69298, 52.35812 ], [ -0.69295, 52.35875 ], [ -0.69366, 52.35906 ], [ -0.69454, 52.35883 ], [ -0.69566, 52.35949 ], [ -0.69638, 52.36103 ], [ -0.69675, 52.36162 ], [ -0.69584, 52.36255 ], [ -0.69613, 52.36371 ], [ -0.6965, 52.36397 ], [ -0.69893, 52.36261 ], [ -0.70006, 52.36423 ], [ -0.69849, 52.36458 ], [ -0.69989, 52.36688 ], [ -0.70259, 52.36686 ], [ -0.70452, 52.3679 ], [ -0.70426, 52.36966 ], [ -0.70282, 52.37052 ], [ -0.70215, 52.37048 ], [ -0.70323, 52.37124 ], [ -0.70259, 52.37303 ], [ -0.69965, 52.37338 ], [ -0.69613, 52.37378 ], [ -0.69497, 52.37217 ], [ -0.69553, 52.37191 ], [ -0.69455, 52.37061 ], [ -0.69456, 52.3712 ], [ -0.69376, 52.3715 ], [ -0.69402, 52.37392 ], [ -0.69053, 52.37418 ], [ -0.68654, 52.37483 ], [ -0.6852, 52.37516 ], [ -0.68299, 52.37571 ], [ -0.6806, 52.37628 ], [ -0.67991, 52.3784 ], [ -0.66861, 52.37824 ], [ -0.66719, 52.37855 ], [ -0.66528, 52.37971 ], [ -0.66309, 52.37978 ], [ -0.65828, 52.38022 ], [ -0.65796, 52.37935 ], [ -0.65502, 52.3796 ], [ -0.65559, 52.37856 ], [ -0.65744, 52.37839 ], [ -0.65714, 52.37752 ], [ -0.65562, 52.37777 ], [ -0.65546, 52.37731 ], [ -0.65476, 52.37735 ], [ -0.65452, 52.37595 ], [ -0.65503, 52.37597 ], [ -0.65511, 52.37553 ], [ -0.65602, 52.37558 ], [ -0.6567, 52.37443 ], [ -0.65742, 52.37409 ], [ -0.65819, 52.37386 ], [ -0.66042, 52.37416 ], [ -0.66055, 52.3733 ], [ -0.65924, 52.37312 ], [ -0.65981, 52.37198 ], [ -0.65819, 52.37153 ], [ -0.65758, 52.37217 ], [ -0.65638, 52.37167 ], [ -0.65617, 52.37189 ], [ -0.65384, 52.37127 ], [ -0.65258, 52.37124 ], [ -0.64907, 52.37255 ], [ -0.648, 52.37164 ], [ -0.64784, 52.37088 ], [ -0.64562, 52.36891 ], [ -0.64267, 52.36921 ], [ -0.64097, 52.36903 ], [ -0.63898, 52.36942 ], [ -0.63295, 52.36805 ], [ -0.63224, 52.36767 ], [ -0.63115, 52.36767 ], [ -0.63065, 52.36617 ], [ -0.62881, 52.36448 ], [ -0.62845, 52.36418 ], [ -0.62798, 52.36377 ], [ -0.62977, 52.36334 ], [ -0.63236, 52.36157 ], [ -0.6342, 52.36045 ], [ -0.63635, 52.35796 ], [ -0.64118, 52.3556 ], [ -0.64537, 52.35387 ], [ -0.64563, 52.35401 ], [ -0.64751, 52.35284 ], [ -0.64832, 52.35281 ], [ -0.6487, 52.35177 ], [ -0.65044, 52.35098 ], [ -0.65036, 52.35044 ], [ -0.65326, 52.34962 ], [ -0.6535, 52.34823 ], [ -0.65504, 52.34802 ], [ -0.65778, 52.34789 ], [ -0.65907, 52.34922 ], [ -0.65978, 52.34937 ], [ -0.66063, 52.34902 ], [ -0.6611, 52.35009 ], [ -0.6633, 52.34988 ], [ -0.66332, 52.34917 ], [ -0.66442, 52.34889 ], [ -0.66456, 52.34922 ], [ -0.66745, 52.34902 ], [ -0.66803, 52.34961 ], [ -0.6748, 52.34899 ], [ -0.67489, 52.34848 ], [ -0.67713, 52.3486 ], [ -0.67776, 52.35048 ], [ -0.68033, 52.35015 ], [ -0.68059, 52.35042 ], [ -0.68235, 52.35002 ], [ -0.68274, 52.34958 ], [ -0.68347, 52.3498 ], [ -0.68436, 52.34963 ], [ -0.68643, 52.35052 ], [ -0.68593, 52.35134 ], [ -0.68642, 52.35199 ], [ -0.68612, 52.35259 ], [ -0.68782, 52.35324 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Burton upon Trent", "bua_code": "E35001216", "msoa_code": "E02004122", "population": 348, "outputarea_code": "E00100531", "lsoa_code": "E01019867", "la_name": "South Derbyshire", "bua_name": "Burton upon Trent BUASD", "constituency_name": "South Derbyshire", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.58958, "latitude": 52.79481, "pgroup": "rural" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.61181, 52.78525 ], [ -1.61351, 52.78603 ], [ -1.61239, 52.78752 ], [ -1.61435, 52.78827 ], [ -1.61172, 52.78986 ], [ -1.60942, 52.79021 ], [ -1.60844, 52.79033 ], [ -1.60375, 52.79141 ], [ -1.60147, 52.79284 ], [ -1.60172, 52.79321 ], [ -1.60085, 52.79419 ], [ -1.60354, 52.79546 ], [ -1.60116, 52.79662 ], [ -1.59775, 52.79832 ], [ -1.59679, 52.79804 ], [ -1.5957, 52.79711 ], [ -1.59358, 52.79798 ], [ -1.59351, 52.79693 ], [ -1.59286, 52.79739 ], [ -1.5927, 52.79828 ], [ -1.58895, 52.79982 ], [ -1.58906, 52.80042 ], [ -1.59003, 52.80078 ], [ -1.58929, 52.80139 ], [ -1.58973, 52.80171 ], [ -1.58931, 52.80211 ], [ -1.5885, 52.80171 ], [ -1.58798, 52.80214 ], [ -1.58834, 52.80238 ], [ -1.5909, 52.80252 ], [ -1.58994, 52.80616 ], [ -1.58639, 52.80622 ], [ -1.58421, 52.80484 ], [ -1.58426, 52.80233 ], [ -1.58296, 52.80221 ], [ -1.5788, 52.80086 ], [ -1.58046, 52.79977 ], [ -1.57629, 52.79782 ], [ -1.57467, 52.79743 ], [ -1.57547, 52.79626 ], [ -1.57307, 52.7958 ], [ -1.57109, 52.79622 ], [ -1.5693, 52.79254 ], [ -1.56926, 52.7921 ], [ -1.56991, 52.79134 ], [ -1.57488, 52.79115 ], [ -1.57619, 52.7913 ], [ -1.58428, 52.79108 ], [ -1.58605, 52.79039 ], [ -1.59089, 52.79151 ], [ -1.59148, 52.79054 ], [ -1.5926, 52.7906 ], [ -1.59353, 52.7894 ], [ -1.598, 52.78979 ], [ -1.59932, 52.79013 ], [ -1.60082, 52.7911 ], [ -1.60469, 52.78902 ], [ -1.60554, 52.78822 ], [ -1.60513, 52.78744 ], [ -1.6063, 52.78608 ], [ -1.60734, 52.78618 ], [ -1.60856, 52.78514 ], [ -1.60888, 52.78487 ], [ -1.60941, 52.78445 ], [ -1.61181, 52.78525 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Burton upon Trent", "bua_code": "E35001216", "msoa_code": "E02004125", "population": 581, "outputarea_code": "E00100514", "lsoa_code": "E01019862", "la_name": "South Derbyshire", "bua_name": "Burton upon Trent BUASD", "constituency_name": "South Derbyshire", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.60307, "latitude": 52.77479, "pgroup": "rural" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.60647, 52.7837 ], [ -1.60559, 52.78355 ], [ -1.60597, 52.78175 ], [ -1.60222, 52.78155 ], [ -1.59889, 52.78085 ], [ -1.59538, 52.77937 ], [ -1.59547, 52.77874 ], [ -1.59428, 52.7773 ], [ -1.59291, 52.77526 ], [ -1.59055, 52.77587 ], [ -1.58694, 52.77598 ], [ -1.58683, 52.77268 ], [ -1.58514, 52.77143 ], [ -1.58378, 52.77167 ], [ -1.58347, 52.76959 ], [ -1.5906, 52.76738 ], [ -1.59197, 52.767 ], [ -1.59274, 52.76824 ], [ -1.59533, 52.77045 ], [ -1.59758, 52.76923 ], [ -1.60077, 52.76857 ], [ -1.6027, 52.7692 ], [ -1.60481, 52.76923 ], [ -1.60611, 52.77015 ], [ -1.6076, 52.76981 ], [ -1.60872, 52.76981 ], [ -1.60877, 52.76983 ], [ -1.61366, 52.77047 ], [ -1.61845, 52.77067 ], [ -1.61958, 52.77339 ], [ -1.62166, 52.77479 ], [ -1.61776, 52.7763 ], [ -1.61692, 52.77698 ], [ -1.61528, 52.78014 ], [ -1.61246, 52.78122 ], [ -1.61172, 52.78163 ], [ -1.61113, 52.7814 ], [ -1.6103, 52.78226 ], [ -1.61127, 52.78278 ], [ -1.61087, 52.78314 ], [ -1.60943, 52.78443 ], [ -1.60871, 52.78428 ], [ -1.60846, 52.78421 ], [ -1.60647, 52.7837 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Buxton (High Peak)", "bua_code": "E34004138", "msoa_code": "E02004102", "population": 8652, "outputarea_code": "E00099722", "lsoa_code": "E01019710", "la_name": "High Peak", "bua_name": "Buxton (High Peak) BUA", "constituency_name": "High Peak", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.91652, "latitude": 53.27093, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.91203, 53.25423 ], [ -1.91136, 53.25404 ], [ -1.91101, 53.25454 ], [ -1.91021, 53.25272 ], [ -1.91054, 53.25272 ], [ -1.91343, 53.25264 ], [ -1.91473, 53.25334 ], [ -1.91713, 53.25322 ], [ -1.91741, 53.25323 ], [ -1.91947, 53.25323 ], [ -1.92, 53.25328 ], [ -1.92465, 53.25387 ], [ -1.92642, 53.2541 ], [ -1.92769, 53.25447 ], [ -1.92798, 53.25535 ], [ -1.92746, 53.25549 ], [ -1.92793, 53.25639 ], [ -1.92882, 53.25608 ], [ -1.92941, 53.25732 ], [ -1.93064, 53.25718 ], [ -1.93146, 53.25747 ], [ -1.93361, 53.25721 ], [ -1.93451, 53.25679 ], [ -1.93525, 53.25643 ], [ -1.93809, 53.25688 ], [ -1.93865, 53.25769 ], [ -1.93963, 53.25822 ], [ -1.93841, 53.25974 ], [ -1.93928, 53.26143 ], [ -1.94111, 53.26238 ], [ -1.94308, 53.26294 ], [ -1.94364, 53.26377 ], [ -1.94562, 53.26501 ], [ -1.94581, 53.26571 ], [ -1.94695, 53.26565 ], [ -1.94667, 53.26704 ], [ -1.94825, 53.26853 ], [ -1.94926, 53.27027 ], [ -1.9509, 53.27128 ], [ -1.95067, 53.27254 ], [ -1.95204, 53.27352 ], [ -1.95058, 53.27321 ], [ -1.95017, 53.27337 ], [ -1.94968, 53.27508 ], [ -1.94854, 53.2761 ], [ -1.94705, 53.27635 ], [ -1.94372, 53.2757 ], [ -1.94326, 53.27592 ], [ -1.94283, 53.27718 ], [ -1.94183, 53.27771 ], [ -1.9402, 53.27797 ], [ -1.93776, 53.27782 ], [ -1.93641, 53.27811 ], [ -1.93488, 53.28021 ], [ -1.932, 53.28219 ], [ -1.92829, 53.28397 ], [ -1.92173, 53.28578 ], [ -1.91494, 53.28591 ], [ -1.91187, 53.28471 ], [ -1.91093, 53.28463 ], [ -1.90798, 53.28911 ], [ -1.89205, 53.2886 ], [ -1.89529, 53.28184 ], [ -1.89812, 53.27819 ], [ -1.89158, 53.27619 ], [ -1.88935, 53.27446 ], [ -1.88844, 53.27375 ], [ -1.88464, 53.27066 ], [ -1.88085, 53.27268 ], [ -1.88059, 53.27109 ], [ -1.88164, 53.26985 ], [ -1.88183, 53.26896 ], [ -1.88058, 53.26696 ], [ -1.88091, 53.26679 ], [ -1.88419, 53.2657 ], [ -1.88944, 53.26502 ], [ -1.89137, 53.26431 ], [ -1.89094, 53.2639 ], [ -1.89583, 53.26248 ], [ -1.89678, 53.26239 ], [ -1.89829, 53.26217 ], [ -1.89926, 53.26196 ], [ -1.90091, 53.26159 ], [ -1.9011, 53.26118 ], [ -1.90141, 53.26114 ], [ -1.90465, 53.26081 ], [ -1.90454, 53.26055 ], [ -1.90503, 53.26045 ], [ -1.90476, 53.25997 ], [ -1.90463, 53.25937 ], [ -1.90368, 53.2579 ], [ -1.90351, 53.25706 ], [ -1.90532, 53.25666 ], [ -1.90591, 53.25714 ], [ -1.90671, 53.25712 ], [ -1.90763, 53.25703 ], [ -1.90752, 53.25724 ], [ -1.90902, 53.25755 ], [ -1.90934, 53.25839 ], [ -1.90854, 53.25865 ], [ -1.90914, 53.25893 ], [ -1.90973, 53.25884 ], [ -1.90962, 53.25865 ], [ -1.91012, 53.25877 ], [ -1.91002, 53.25818 ], [ -1.91071, 53.25795 ], [ -1.91, 53.25775 ], [ -1.90973, 53.25712 ], [ -1.91079, 53.25672 ], [ -1.91143, 53.25633 ], [ -1.91116, 53.25582 ], [ -1.91168, 53.25603 ], [ -1.91167, 53.25559 ], [ -1.91308, 53.25541 ], [ -1.91324, 53.25518 ], [ -1.91203, 53.25423 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Buxton (High Peak)", "bua_code": "E34004138", "msoa_code": "E02004103", "population": 7151, "outputarea_code": "E00099751", "lsoa_code": "E01019716", "la_name": "High Peak", "bua_name": "Buxton (High Peak) BUA", "constituency_name": "High Peak", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.89199, "latitude": 53.25584, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.89523, 53.25187 ], [ -1.89449, 53.25138 ], [ -1.89538, 53.2508 ], [ -1.89348, 53.24784 ], [ -1.89238, 53.24775 ], [ -1.89781, 53.24549 ], [ -1.89931, 53.24849 ], [ -1.90155, 53.24953 ], [ -1.90683, 53.24802 ], [ -1.90686, 53.2478 ], [ -1.90505, 53.24762 ], [ -1.90472, 53.24738 ], [ -1.90505, 53.2467 ], [ -1.90429, 53.24623 ], [ -1.90461, 53.24566 ], [ -1.9051, 53.24571 ], [ -1.90515, 53.24611 ], [ -1.90579, 53.246 ], [ -1.90591, 53.24542 ], [ -1.90626, 53.24561 ], [ -1.90685, 53.24542 ], [ -1.90811, 53.2471 ], [ -1.90841, 53.24773 ], [ -1.91017, 53.24879 ], [ -1.91219, 53.25193 ], [ -1.91343, 53.25264 ], [ -1.91054, 53.25272 ], [ -1.91021, 53.25272 ], [ -1.91101, 53.25454 ], [ -1.91136, 53.25404 ], [ -1.91203, 53.25423 ], [ -1.91324, 53.25518 ], [ -1.91308, 53.25541 ], [ -1.91167, 53.25559 ], [ -1.91168, 53.25603 ], [ -1.91116, 53.25582 ], [ -1.91143, 53.25633 ], [ -1.91079, 53.25672 ], [ -1.90973, 53.25712 ], [ -1.91, 53.25775 ], [ -1.91071, 53.25795 ], [ -1.91002, 53.25818 ], [ -1.91012, 53.25877 ], [ -1.90962, 53.25865 ], [ -1.90973, 53.25884 ], [ -1.90914, 53.25893 ], [ -1.90854, 53.25865 ], [ -1.90934, 53.25839 ], [ -1.90902, 53.25755 ], [ -1.90752, 53.25724 ], [ -1.90763, 53.25703 ], [ -1.90671, 53.25712 ], [ -1.90591, 53.25714 ], [ -1.90532, 53.25666 ], [ -1.90351, 53.25706 ], [ -1.90368, 53.2579 ], [ -1.90463, 53.25937 ], [ -1.90476, 53.25997 ], [ -1.90503, 53.26045 ], [ -1.90454, 53.26055 ], [ -1.90465, 53.26081 ], [ -1.90141, 53.26114 ], [ -1.9011, 53.26118 ], [ -1.90091, 53.26159 ], [ -1.89926, 53.26196 ], [ -1.89829, 53.26217 ], [ -1.89678, 53.26239 ], [ -1.89583, 53.26248 ], [ -1.89094, 53.2639 ], [ -1.89137, 53.26431 ], [ -1.88944, 53.26502 ], [ -1.88419, 53.2657 ], [ -1.88091, 53.26679 ], [ -1.87581, 53.25857 ], [ -1.87573, 53.25774 ], [ -1.87462, 53.25708 ], [ -1.87246, 53.2545 ], [ -1.8747, 53.25129 ], [ -1.87489, 53.24967 ], [ -1.88075, 53.24935 ], [ -1.88438, 53.2499 ], [ -1.88629, 53.2507 ], [ -1.88879, 53.25137 ], [ -1.89137, 53.25152 ], [ -1.89512, 53.25219 ], [ -1.89812, 53.25274 ], [ -1.89523, 53.25187 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Buxton (High Peak)", "bua_code": "E34004138", "msoa_code": "E02004104", "population": 6789, "outputarea_code": "E00099743", "lsoa_code": "E01019714", "la_name": "High Peak", "bua_name": "Buxton (High Peak) BUA", "constituency_name": "High Peak", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.9253, "latitude": 53.24305, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.89326, 53.23341 ], [ -1.89267, 53.23166 ], [ -1.88844, 53.2286 ], [ -1.88699, 53.22709 ], [ -1.88955, 53.22817 ], [ -1.89732, 53.22977 ], [ -1.898, 53.23019 ], [ -1.90154, 53.22961 ], [ -1.90366, 53.22724 ], [ -1.90562, 53.22617 ], [ -1.91034, 53.22709 ], [ -1.91124, 53.22728 ], [ -1.91021, 53.23043 ], [ -1.91728, 53.23217 ], [ -1.91997, 53.23134 ], [ -1.92275, 53.22875 ], [ -1.92566, 53.22807 ], [ -1.92906, 53.22883 ], [ -1.93074, 53.22743 ], [ -1.93382, 53.22679 ], [ -1.9351, 53.22545 ], [ -1.93563, 53.22534 ], [ -1.93671, 53.22523 ], [ -1.93804, 53.22628 ], [ -1.94116, 53.22728 ], [ -1.94316, 53.22831 ], [ -1.94423, 53.22852 ], [ -1.9466, 53.22828 ], [ -1.94455, 53.23007 ], [ -1.94355, 53.23192 ], [ -1.94337, 53.23412 ], [ -1.94436, 53.23593 ], [ -1.94447, 53.23764 ], [ -1.94416, 53.24064 ], [ -1.94314, 53.24157 ], [ -1.94389, 53.24301 ], [ -1.94285, 53.2432 ], [ -1.94309, 53.24455 ], [ -1.94445, 53.24542 ], [ -1.9447, 53.24574 ], [ -1.94728, 53.24644 ], [ -1.9483, 53.24645 ], [ -1.94907, 53.24699 ], [ -1.94905, 53.24816 ], [ -1.95134, 53.24709 ], [ -1.95355, 53.25072 ], [ -1.95772, 53.25064 ], [ -1.95807, 53.25248 ], [ -1.95888, 53.25375 ], [ -1.95676, 53.2569 ], [ -1.95639, 53.26107 ], [ -1.95553, 53.26156 ], [ -1.9542, 53.26104 ], [ -1.95304, 53.26112 ], [ -1.95155, 53.26197 ], [ -1.95022, 53.26349 ], [ -1.94789, 53.2642 ], [ -1.94695, 53.26565 ], [ -1.94581, 53.26571 ], [ -1.94562, 53.26501 ], [ -1.94364, 53.26377 ], [ -1.94308, 53.26294 ], [ -1.94111, 53.26238 ], [ -1.93928, 53.26143 ], [ -1.93841, 53.25974 ], [ -1.93963, 53.25822 ], [ -1.93865, 53.25769 ], [ -1.93809, 53.25688 ], [ -1.93525, 53.25643 ], [ -1.93451, 53.25679 ], [ -1.93361, 53.25721 ], [ -1.93146, 53.25747 ], [ -1.93064, 53.25718 ], [ -1.92941, 53.25732 ], [ -1.92882, 53.25608 ], [ -1.92793, 53.25639 ], [ -1.92746, 53.25549 ], [ -1.92798, 53.25535 ], [ -1.92769, 53.25447 ], [ -1.92642, 53.2541 ], [ -1.92465, 53.25387 ], [ -1.92, 53.25328 ], [ -1.91947, 53.25323 ], [ -1.91741, 53.25323 ], [ -1.91713, 53.25322 ], [ -1.91473, 53.25334 ], [ -1.91343, 53.25264 ], [ -1.91219, 53.25193 ], [ -1.91017, 53.24879 ], [ -1.90841, 53.24773 ], [ -1.90811, 53.2471 ], [ -1.90685, 53.24542 ], [ -1.90626, 53.24561 ], [ -1.90591, 53.24542 ], [ -1.90579, 53.246 ], [ -1.90515, 53.24611 ], [ -1.9051, 53.24571 ], [ -1.90461, 53.24566 ], [ -1.90429, 53.24623 ], [ -1.90505, 53.2467 ], [ -1.90472, 53.24738 ], [ -1.90505, 53.24762 ], [ -1.90686, 53.2478 ], [ -1.90683, 53.24802 ], [ -1.90155, 53.24953 ], [ -1.89931, 53.24849 ], [ -1.89781, 53.24549 ], [ -1.89238, 53.24775 ], [ -1.89079, 53.24718 ], [ -1.89132, 53.24651 ], [ -1.89258, 53.24604 ], [ -1.89252, 53.244 ], [ -1.89466, 53.24272 ], [ -1.89278, 53.24045 ], [ -1.89233, 53.23846 ], [ -1.89236, 53.23735 ], [ -1.89248, 53.23644 ], [ -1.89366, 53.23516 ], [ -1.8931, 53.23459 ], [ -1.89326, 53.23341 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Carlton (Gedling)", "bua_code": "E35000652", "msoa_code": "E02002883", "population": 196, "outputarea_code": "E00070345", "lsoa_code": "E01013939", "la_name": "Nottingham", "bua_name": "Carlton (Gedling) BUASD", "constituency_name": "Nottingham East", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.11952, "latitude": 52.96648, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.11986, 52.96556 ], [ -1.12124, 52.96581 ], [ -1.12144, 52.96625 ], [ -1.12079, 52.96777 ], [ -1.11996, 52.96839 ], [ -1.12011, 52.96782 ], [ -1.11879, 52.96709 ], [ -1.11757, 52.96622 ], [ -1.11707, 52.96592 ], [ -1.11677, 52.96571 ], [ -1.11723, 52.96548 ], [ -1.11986, 52.96556 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Carlton (Gedling)", "bua_code": "E35000652", "msoa_code": "E02002891", "population": 290, "outputarea_code": "E00070196", "lsoa_code": "E01013915", "la_name": "Nottingham", "bua_name": "Carlton (Gedling) BUASD", "constituency_name": "Nottingham East", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.09524, "latitude": 52.95242, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.10179, 52.95266 ], [ -1.09858, 52.95417 ], [ -1.0961, 52.9549 ], [ -1.09577, 52.9544 ], [ -1.09652, 52.95395 ], [ -1.09647, 52.95338 ], [ -1.09918, 52.95219 ], [ -1.09636, 52.95312 ], [ -1.09537, 52.95357 ], [ -1.09555, 52.95392 ], [ -1.09428, 52.95427 ], [ -1.09489, 52.95506 ], [ -1.09216, 52.95484 ], [ -1.09204, 52.95454 ], [ -1.09285, 52.95441 ], [ -1.09187, 52.95316 ], [ -1.08916, 52.95226 ], [ -1.08813, 52.9516 ], [ -1.09195, 52.95072 ], [ -1.0936, 52.94981 ], [ -1.0954, 52.95186 ], [ -1.0974, 52.95013 ], [ -1.09924, 52.9509 ], [ -1.10179, 52.95266 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Carlton (Gedling)", "bua_code": "E35000652", "msoa_code": "E02005874", "population": 8733, "outputarea_code": "E00143651", "lsoa_code": "E01028193", "la_name": "Gedling", "bua_name": "Carlton (Gedling) BUASD", "constituency_name": "Gedling", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.11087, "latitude": 52.98272, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.11539, 52.9754 ], [ -1.11546, 52.97532 ], [ -1.11553, 52.97524 ], [ -1.11641, 52.97448 ], [ -1.1168, 52.97413 ], [ -1.11889, 52.97494 ], [ -1.11913, 52.97471 ], [ -1.1195, 52.97484 ], [ -1.11928, 52.97438 ], [ -1.12046, 52.97377 ], [ -1.1205, 52.97457 ], [ -1.12125, 52.97488 ], [ -1.12132, 52.97491 ], [ -1.12277, 52.97669 ], [ -1.12283, 52.97676 ], [ -1.12354, 52.97768 ], [ -1.12426, 52.97861 ], [ -1.12432, 52.97869 ], [ -1.12487, 52.97938 ], [ -1.12584, 52.98061 ], [ -1.12546, 52.98119 ], [ -1.12527, 52.98148 ], [ -1.12567, 52.98161 ], [ -1.12344, 52.98304 ], [ -1.1228, 52.98347 ], [ -1.12035, 52.98501 ], [ -1.11737, 52.98678 ], [ -1.11542, 52.98811 ], [ -1.11385, 52.98913 ], [ -1.10896, 52.9919 ], [ -1.10298, 52.98936 ], [ -1.09773, 52.98704 ], [ -1.09804, 52.98677 ], [ -1.09674, 52.98603 ], [ -1.09671, 52.98544 ], [ -1.09613, 52.98509 ], [ -1.09667, 52.98469 ], [ -1.09738, 52.9852 ], [ -1.09809, 52.98489 ], [ -1.09899, 52.98512 ], [ -1.09922, 52.98467 ], [ -1.09813, 52.98351 ], [ -1.09707, 52.98411 ], [ -1.09711, 52.98307 ], [ -1.09644, 52.98265 ], [ -1.09676, 52.98227 ], [ -1.09517, 52.98233 ], [ -1.0956, 52.98184 ], [ -1.0971, 52.98183 ], [ -1.09726, 52.98157 ], [ -1.09679, 52.9815 ], [ -1.097, 52.98094 ], [ -1.09777, 52.98083 ], [ -1.0955, 52.9803 ], [ -1.09698, 52.97923 ], [ -1.099, 52.97948 ], [ -1.09903, 52.98009 ], [ -1.09948, 52.98024 ], [ -1.09918, 52.98052 ], [ -1.09964, 52.98052 ], [ -1.10054, 52.97956 ], [ -1.10229, 52.97998 ], [ -1.10224, 52.97975 ], [ -1.10289, 52.97967 ], [ -1.103, 52.97976 ], [ -1.10384, 52.97927 ], [ -1.10651, 52.97741 ], [ -1.10746, 52.97693 ], [ -1.10785, 52.9767 ], [ -1.109, 52.97593 ], [ -1.11239, 52.97692 ], [ -1.11345, 52.97723 ], [ -1.11539, 52.9754 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Carlton (Gedling)", "bua_code": "E35000652", "msoa_code": "E02005875", "population": 7425, "outputarea_code": "E00143523", "lsoa_code": "E01028172", "la_name": "Gedling", "bua_name": "Carlton (Gedling) BUASD", "constituency_name": "Gedling", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.0876, "latitude": 52.98503, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.09036, 52.97202 ], [ -1.09376, 52.97439 ], [ -1.09411, 52.97452 ], [ -1.09455, 52.97473 ], [ -1.09595, 52.9731 ], [ -1.09643, 52.97254 ], [ -1.09732, 52.97277 ], [ -1.09757, 52.97257 ], [ -1.09947, 52.97375 ], [ -1.09989, 52.97382 ], [ -1.10195, 52.97217 ], [ -1.10429, 52.97301 ], [ -1.1064, 52.97429 ], [ -1.10765, 52.97341 ], [ -1.10985, 52.97404 ], [ -1.1093, 52.97497 ], [ -1.109, 52.97593 ], [ -1.10785, 52.9767 ], [ -1.10746, 52.97693 ], [ -1.10651, 52.97741 ], [ -1.10384, 52.97927 ], [ -1.103, 52.97976 ], [ -1.10289, 52.97967 ], [ -1.10224, 52.97975 ], [ -1.10229, 52.97998 ], [ -1.10054, 52.97956 ], [ -1.09964, 52.98052 ], [ -1.09918, 52.98052 ], [ -1.09948, 52.98024 ], [ -1.09903, 52.98009 ], [ -1.099, 52.97948 ], [ -1.09698, 52.97923 ], [ -1.0955, 52.9803 ], [ -1.09777, 52.98083 ], [ -1.097, 52.98094 ], [ -1.09679, 52.9815 ], [ -1.09726, 52.98157 ], [ -1.0971, 52.98183 ], [ -1.0956, 52.98184 ], [ -1.09517, 52.98233 ], [ -1.09676, 52.98227 ], [ -1.09644, 52.98265 ], [ -1.09711, 52.98307 ], [ -1.09707, 52.98411 ], [ -1.09813, 52.98351 ], [ -1.09922, 52.98467 ], [ -1.09899, 52.98512 ], [ -1.09809, 52.98489 ], [ -1.09738, 52.9852 ], [ -1.09667, 52.98469 ], [ -1.09613, 52.98509 ], [ -1.09671, 52.98544 ], [ -1.09674, 52.98603 ], [ -1.09804, 52.98677 ], [ -1.09773, 52.98704 ], [ -1.10298, 52.98936 ], [ -1.10896, 52.9919 ], [ -1.10644, 52.99315 ], [ -1.10552, 52.99272 ], [ -1.10473, 52.99314 ], [ -1.10315, 52.9928 ], [ -1.10103, 52.99286 ], [ -1.09751, 52.99436 ], [ -1.09679, 52.99474 ], [ -1.09677, 52.99533 ], [ -1.0926, 52.99426 ], [ -1.09178, 52.99518 ], [ -1.09026, 52.99505 ], [ -1.07929, 52.99372 ], [ -1.07731, 52.99386 ], [ -1.07255, 52.99333 ], [ -1.0718, 52.99338 ], [ -1.06993, 52.98887 ], [ -1.06836, 52.98799 ], [ -1.06739, 52.98603 ], [ -1.06524, 52.98549 ], [ -1.0632, 52.98444 ], [ -1.06302, 52.98421 ], [ -1.06375, 52.98381 ], [ -1.0665, 52.98223 ], [ -1.06777, 52.98166 ], [ -1.06811, 52.98178 ], [ -1.06852, 52.98033 ], [ -1.0694, 52.98056 ], [ -1.07305, 52.98133 ], [ -1.07412, 52.98022 ], [ -1.07655, 52.9811 ], [ -1.07767, 52.98008 ], [ -1.07847, 52.98033 ], [ -1.07859, 52.98069 ], [ -1.07756, 52.98148 ], [ -1.07864, 52.98198 ], [ -1.07962, 52.98125 ], [ -1.08004, 52.9815 ], [ -1.08001, 52.98105 ], [ -1.07851, 52.97993 ], [ -1.07881, 52.9797 ], [ -1.07941, 52.98028 ], [ -1.08145, 52.97935 ], [ -1.08231, 52.9784 ], [ -1.08153, 52.97796 ], [ -1.0818, 52.97756 ], [ -1.08613, 52.98025 ], [ -1.08636, 52.98039 ], [ -1.08809, 52.98152 ], [ -1.08878, 52.98199 ], [ -1.0897, 52.98084 ], [ -1.08997, 52.98045 ], [ -1.09222, 52.98084 ], [ -1.09206, 52.98041 ], [ -1.08922, 52.97986 ], [ -1.08975, 52.97902 ], [ -1.09011, 52.97891 ], [ -1.09071, 52.97947 ], [ -1.09153, 52.97851 ], [ -1.0906, 52.97821 ], [ -1.08994, 52.97845 ], [ -1.09012, 52.97804 ], [ -1.08909, 52.97763 ], [ -1.08656, 52.97699 ], [ -1.08697, 52.97669 ], [ -1.0866, 52.97637 ], [ -1.08581, 52.97673 ], [ -1.08558, 52.97635 ], [ -1.08612, 52.97561 ], [ -1.08644, 52.97589 ], [ -1.08771, 52.97583 ], [ -1.08881, 52.97632 ], [ -1.08994, 52.97571 ], [ -1.08953, 52.97511 ], [ -1.08987, 52.97477 ], [ -1.0885, 52.97421 ], [ -1.08894, 52.97389 ], [ -1.08839, 52.97365 ], [ -1.09036, 52.97202 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Carlton (Gedling)", "bua_code": "E35000652", "msoa_code": "E02005876", "population": 8960, "outputarea_code": "E00143522", "lsoa_code": "E01028171", "la_name": "Gedling", "bua_name": "Carlton (Gedling) BUASD", "constituency_name": "Gedling", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.07483, "latitude": 52.97508, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.07876, 52.96544 ], [ -1.07918, 52.96647 ], [ -1.08078, 52.96691 ], [ -1.0809, 52.96754 ], [ -1.08151, 52.96863 ], [ -1.08192, 52.96861 ], [ -1.08275, 52.96888 ], [ -1.08282, 52.96943 ], [ -1.08296, 52.97 ], [ -1.08571, 52.97047 ], [ -1.08674, 52.97064 ], [ -1.08756, 52.97081 ], [ -1.08908, 52.9711 ], [ -1.08978, 52.9716 ], [ -1.09036, 52.97202 ], [ -1.08839, 52.97365 ], [ -1.08894, 52.97389 ], [ -1.0885, 52.97421 ], [ -1.08987, 52.97477 ], [ -1.08953, 52.97511 ], [ -1.08994, 52.97571 ], [ -1.08881, 52.97632 ], [ -1.08771, 52.97583 ], [ -1.08644, 52.97589 ], [ -1.08612, 52.97561 ], [ -1.08558, 52.97635 ], [ -1.08581, 52.97673 ], [ -1.0866, 52.97637 ], [ -1.08697, 52.97669 ], [ -1.08656, 52.97699 ], [ -1.08909, 52.97763 ], [ -1.09012, 52.97804 ], [ -1.08994, 52.97845 ], [ -1.0906, 52.97821 ], [ -1.09153, 52.97851 ], [ -1.09071, 52.97947 ], [ -1.09011, 52.97891 ], [ -1.08975, 52.97902 ], [ -1.08922, 52.97986 ], [ -1.09206, 52.98041 ], [ -1.09222, 52.98084 ], [ -1.08997, 52.98045 ], [ -1.0897, 52.98084 ], [ -1.08878, 52.98199 ], [ -1.08809, 52.98152 ], [ -1.08636, 52.98039 ], [ -1.08613, 52.98025 ], [ -1.0818, 52.97756 ], [ -1.08153, 52.97796 ], [ -1.08231, 52.9784 ], [ -1.08145, 52.97935 ], [ -1.07941, 52.98028 ], [ -1.07881, 52.9797 ], [ -1.07851, 52.97993 ], [ -1.08001, 52.98105 ], [ -1.08004, 52.9815 ], [ -1.07962, 52.98125 ], [ -1.07864, 52.98198 ], [ -1.07756, 52.98148 ], [ -1.07859, 52.98069 ], [ -1.07847, 52.98033 ], [ -1.07767, 52.98008 ], [ -1.07655, 52.9811 ], [ -1.07412, 52.98022 ], [ -1.07305, 52.98133 ], [ -1.0694, 52.98056 ], [ -1.06852, 52.98033 ], [ -1.06811, 52.98178 ], [ -1.06777, 52.98166 ], [ -1.0665, 52.98223 ], [ -1.06375, 52.98381 ], [ -1.06355, 52.98291 ], [ -1.06176, 52.98169 ], [ -1.06091, 52.9805 ], [ -1.06113, 52.97925 ], [ -1.06269, 52.97848 ], [ -1.06066, 52.97707 ], [ -1.05923, 52.97777 ], [ -1.05662, 52.97676 ], [ -1.0582, 52.97517 ], [ -1.06293, 52.97291 ], [ -1.06557, 52.97164 ], [ -1.06942, 52.96981 ], [ -1.07218, 52.9685 ], [ -1.07556, 52.96681 ], [ -1.07631, 52.96641 ], [ -1.07751, 52.96578 ], [ -1.0786, 52.96517 ], [ -1.07876, 52.96544 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Carlton (Gedling)", "bua_code": "E35000652", "msoa_code": "E02005877", "population": 7123, "outputarea_code": "E00143479", "lsoa_code": "E01028160", "la_name": "Gedling", "bua_name": "Carlton (Gedling) BUASD", "constituency_name": "Gedling", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.10888, "latitude": 52.97087, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.11544, 52.96498 ], [ -1.11677, 52.96571 ], [ -1.11707, 52.96592 ], [ -1.11757, 52.96622 ], [ -1.11879, 52.96709 ], [ -1.12011, 52.96782 ], [ -1.11996, 52.96839 ], [ -1.1198, 52.97004 ], [ -1.11993, 52.97129 ], [ -1.11999, 52.97177 ], [ -1.12001, 52.97186 ], [ -1.12046, 52.97377 ], [ -1.11928, 52.97438 ], [ -1.1195, 52.97484 ], [ -1.11913, 52.97471 ], [ -1.11889, 52.97494 ], [ -1.1168, 52.97413 ], [ -1.11641, 52.97448 ], [ -1.11553, 52.97524 ], [ -1.11546, 52.97532 ], [ -1.11539, 52.9754 ], [ -1.11345, 52.97723 ], [ -1.11239, 52.97692 ], [ -1.109, 52.97593 ], [ -1.1093, 52.97497 ], [ -1.10985, 52.97404 ], [ -1.10765, 52.97341 ], [ -1.1064, 52.97429 ], [ -1.10429, 52.97301 ], [ -1.10195, 52.97217 ], [ -1.09989, 52.97382 ], [ -1.09947, 52.97375 ], [ -1.09757, 52.97257 ], [ -1.09732, 52.97277 ], [ -1.09643, 52.97254 ], [ -1.09595, 52.9731 ], [ -1.09455, 52.97473 ], [ -1.09411, 52.97452 ], [ -1.09376, 52.97439 ], [ -1.09036, 52.97202 ], [ -1.08978, 52.9716 ], [ -1.0906, 52.97088 ], [ -1.09403, 52.9708 ], [ -1.09489, 52.97013 ], [ -1.09543, 52.97027 ], [ -1.09545, 52.97091 ], [ -1.09776, 52.96919 ], [ -1.09836, 52.96942 ], [ -1.10208, 52.97022 ], [ -1.10202, 52.96977 ], [ -1.10295, 52.96874 ], [ -1.10355, 52.96855 ], [ -1.10377, 52.96836 ], [ -1.10457, 52.9677 ], [ -1.1064, 52.96733 ], [ -1.10619, 52.96678 ], [ -1.10479, 52.96669 ], [ -1.10472, 52.96638 ], [ -1.1067, 52.96621 ], [ -1.10869, 52.96603 ], [ -1.11131, 52.96578 ], [ -1.11384, 52.96554 ], [ -1.11525, 52.96489 ], [ -1.11544, 52.96498 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Carlton (Gedling)", "bua_code": "E35000652", "msoa_code": "E02005878", "population": 9897, "outputarea_code": "E00143454", "lsoa_code": "E01028156", "la_name": "Gedling", "bua_name": "Carlton (Gedling) BUASD", "constituency_name": "Gedling", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.09351, "latitude": 52.96485, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.09983, 52.95858 ], [ -1.1015, 52.95898 ], [ -1.10163, 52.95975 ], [ -1.10171, 52.96024 ], [ -1.10177, 52.96066 ], [ -1.1019, 52.96142 ], [ -1.10208, 52.96249 ], [ -1.10386, 52.96213 ], [ -1.1039, 52.96303 ], [ -1.10155, 52.96335 ], [ -1.10178, 52.96375 ], [ -1.1013, 52.96377 ], [ -1.1013, 52.96404 ], [ -1.10175, 52.96403 ], [ -1.10191, 52.96471 ], [ -1.10333, 52.96463 ], [ -1.10306, 52.96519 ], [ -1.10356, 52.96577 ], [ -1.10479, 52.96611 ], [ -1.10518, 52.96595 ], [ -1.10477, 52.96494 ], [ -1.10578, 52.9648 ], [ -1.10592, 52.96408 ], [ -1.10689, 52.9641 ], [ -1.10739, 52.96411 ], [ -1.10852, 52.96409 ], [ -1.11021, 52.96429 ], [ -1.1122, 52.96528 ], [ -1.11481, 52.96465 ], [ -1.11525, 52.96489 ], [ -1.11384, 52.96554 ], [ -1.11131, 52.96578 ], [ -1.10869, 52.96603 ], [ -1.1067, 52.96621 ], [ -1.10472, 52.96638 ], [ -1.10479, 52.96669 ], [ -1.10619, 52.96678 ], [ -1.1064, 52.96733 ], [ -1.10457, 52.9677 ], [ -1.10377, 52.96836 ], [ -1.10355, 52.96855 ], [ -1.10295, 52.96874 ], [ -1.10202, 52.96977 ], [ -1.10208, 52.97022 ], [ -1.09836, 52.96942 ], [ -1.09776, 52.96919 ], [ -1.09545, 52.97091 ], [ -1.09543, 52.97027 ], [ -1.09489, 52.97013 ], [ -1.09403, 52.9708 ], [ -1.0906, 52.97088 ], [ -1.08978, 52.9716 ], [ -1.08908, 52.9711 ], [ -1.08756, 52.97081 ], [ -1.08674, 52.97064 ], [ -1.08571, 52.97047 ], [ -1.08296, 52.97 ], [ -1.08282, 52.96943 ], [ -1.08275, 52.96888 ], [ -1.08192, 52.96861 ], [ -1.08151, 52.96863 ], [ -1.0809, 52.96754 ], [ -1.08078, 52.96691 ], [ -1.07918, 52.96647 ], [ -1.07876, 52.96544 ], [ -1.0786, 52.96517 ], [ -1.08055, 52.96412 ], [ -1.08322, 52.96269 ], [ -1.08377, 52.96238 ], [ -1.08734, 52.96047 ], [ -1.08742, 52.96043 ], [ -1.09016, 52.95896 ], [ -1.0913, 52.95834 ], [ -1.09353, 52.95714 ], [ -1.09458, 52.95672 ], [ -1.09596, 52.95758 ], [ -1.09694, 52.95804 ], [ -1.09983, 52.95858 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Carlton (Gedling)", "bua_code": "E35000652", "msoa_code": "E02005879", "population": 7599, "outputarea_code": "E00143600", "lsoa_code": "E01028185", "la_name": "Gedling", "bua_name": "Carlton (Gedling) BUASD", "constituency_name": "Gedling", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.07426, "latitude": 52.95898, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.08175, 52.94963 ], [ -1.08406, 52.94829 ], [ -1.08515, 52.94821 ], [ -1.08612, 52.94857 ], [ -1.08813, 52.9516 ], [ -1.08916, 52.95226 ], [ -1.09187, 52.95316 ], [ -1.09285, 52.95441 ], [ -1.09204, 52.95454 ], [ -1.09216, 52.95484 ], [ -1.09489, 52.95506 ], [ -1.09688, 52.95552 ], [ -1.09458, 52.95672 ], [ -1.09353, 52.95714 ], [ -1.0913, 52.95834 ], [ -1.09016, 52.95896 ], [ -1.08742, 52.96043 ], [ -1.08734, 52.96047 ], [ -1.08377, 52.96238 ], [ -1.08322, 52.96269 ], [ -1.08055, 52.96412 ], [ -1.0786, 52.96517 ], [ -1.07751, 52.96578 ], [ -1.07631, 52.96641 ], [ -1.07556, 52.96681 ], [ -1.07218, 52.9685 ], [ -1.06942, 52.96981 ], [ -1.06557, 52.97164 ], [ -1.06084, 52.97007 ], [ -1.06259, 52.96813 ], [ -1.0634, 52.96557 ], [ -1.06456, 52.96313 ], [ -1.05765, 52.95978 ], [ -1.06027, 52.95877 ], [ -1.06122, 52.95768 ], [ -1.05912, 52.95627 ], [ -1.05809, 52.95511 ], [ -1.05855, 52.9545 ], [ -1.05848, 52.9535 ], [ -1.05637, 52.95182 ], [ -1.05668, 52.95072 ], [ -1.06235, 52.95032 ], [ -1.06371, 52.95059 ], [ -1.06462, 52.95113 ], [ -1.06567, 52.95276 ], [ -1.06765, 52.95448 ], [ -1.07181, 52.95581 ], [ -1.07441, 52.95576 ], [ -1.07826, 52.95306 ], [ -1.08014, 52.95095 ], [ -1.08175, 52.94963 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Chesterfield", "bua_code": "E35001230", "msoa_code": "E02004055", "population": 7122, "outputarea_code": "E00098751", "lsoa_code": "E01019528", "la_name": "Chesterfield", "bua_name": "Chesterfield BUASD", "constituency_name": "North East Derbyshire", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.42863, "latitude": 53.27346, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.41302, 53.26354 ], [ -1.41278, 53.26316 ], [ -1.41359, 53.26135 ], [ -1.41458, 53.25884 ], [ -1.41604, 53.25861 ], [ -1.41505, 53.25789 ], [ -1.41685, 53.25737 ], [ -1.41633, 53.25702 ], [ -1.41653, 53.25632 ], [ -1.41803, 53.25658 ], [ -1.41793, 53.25606 ], [ -1.41877, 53.25602 ], [ -1.41857, 53.25544 ], [ -1.41895, 53.25511 ], [ -1.41953, 53.25541 ], [ -1.42031, 53.25514 ], [ -1.42242, 53.25347 ], [ -1.42422, 53.25696 ], [ -1.42584, 53.25873 ], [ -1.42842, 53.26035 ], [ -1.42977, 53.26091 ], [ -1.43237, 53.26229 ], [ -1.43435, 53.26446 ], [ -1.43664, 53.26739 ], [ -1.44103, 53.26842 ], [ -1.44318, 53.26894 ], [ -1.44308, 53.26999 ], [ -1.44969, 53.27112 ], [ -1.45319, 53.27311 ], [ -1.45511, 53.27353 ], [ -1.45778, 53.27339 ], [ -1.45847, 53.27365 ], [ -1.46138, 53.2721 ], [ -1.46273, 53.27035 ], [ -1.46542, 53.27031 ], [ -1.46508, 53.27223 ], [ -1.46563, 53.27276 ], [ -1.46689, 53.27396 ], [ -1.46694, 53.27464 ], [ -1.4649, 53.27494 ], [ -1.46525, 53.276 ], [ -1.46491, 53.27721 ], [ -1.4658, 53.27808 ], [ -1.4644, 53.27846 ], [ -1.46081, 53.27806 ], [ -1.45979, 53.27994 ], [ -1.45851, 53.28309 ], [ -1.45707, 53.28374 ], [ -1.45582, 53.2825 ], [ -1.45445, 53.28138 ], [ -1.45159, 53.28193 ], [ -1.44791, 53.28315 ], [ -1.44712, 53.28285 ], [ -1.44394, 53.2827 ], [ -1.44163, 53.28195 ], [ -1.43908, 53.28022 ], [ -1.43866, 53.28062 ], [ -1.4374, 53.28069 ], [ -1.43595, 53.28092 ], [ -1.43219, 53.28187 ], [ -1.4279, 53.28213 ], [ -1.42761, 53.28216 ], [ -1.42682, 53.28227 ], [ -1.42324, 53.28271 ], [ -1.42313, 53.28346 ], [ -1.42149, 53.28343 ], [ -1.41891, 53.2849 ], [ -1.41797, 53.28627 ], [ -1.41544, 53.28764 ], [ -1.41464, 53.28681 ], [ -1.40981, 53.28674 ], [ -1.40795, 53.28627 ], [ -1.40393, 53.28402 ], [ -1.40235, 53.28256 ], [ -1.40174, 53.28157 ], [ -1.4006, 53.2786 ], [ -1.40206, 53.27808 ], [ -1.40082, 53.27656 ], [ -1.40155, 53.27647 ], [ -1.40198, 53.27702 ], [ -1.40236, 53.27693 ], [ -1.40253, 53.27719 ], [ -1.40214, 53.27728 ], [ -1.40263, 53.27796 ], [ -1.40354, 53.27815 ], [ -1.40408, 53.27751 ], [ -1.40478, 53.27749 ], [ -1.40496, 53.27727 ], [ -1.40538, 53.27759 ], [ -1.40582, 53.27748 ], [ -1.4091, 53.27903 ], [ -1.41218, 53.27922 ], [ -1.4111, 53.27798 ], [ -1.41055, 53.27646 ], [ -1.41165, 53.2755 ], [ -1.4131, 53.27522 ], [ -1.41249, 53.27487 ], [ -1.4131, 53.2744 ], [ -1.41226, 53.27446 ], [ -1.41209, 53.27417 ], [ -1.41074, 53.27198 ], [ -1.40991, 53.27219 ], [ -1.41004, 53.27293 ], [ -1.40793, 53.27263 ], [ -1.40707, 53.2722 ], [ -1.4057, 53.27322 ], [ -1.40547, 53.273 ], [ -1.40469, 53.27356 ], [ -1.40425, 53.27317 ], [ -1.40385, 53.27326 ], [ -1.40304, 53.27287 ], [ -1.40218, 53.27242 ], [ -1.40076, 53.27265 ], [ -1.40013, 53.27238 ], [ -1.39947, 53.27263 ], [ -1.39839, 53.27167 ], [ -1.39752, 53.26915 ], [ -1.39803, 53.26909 ], [ -1.40127, 53.26953 ], [ -1.40203, 53.26998 ], [ -1.40379, 53.26951 ], [ -1.40932, 53.26713 ], [ -1.40984, 53.26685 ], [ -1.41364, 53.26426 ], [ -1.41302, 53.26354 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Chesterfield", "bua_code": "E35001230", "msoa_code": "E02004057", "population": 4884, "outputarea_code": "E00098752", "lsoa_code": "E01019527", "la_name": "Chesterfield", "bua_name": "Chesterfield BUASD", "constituency_name": "North East Derbyshire", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.39685, "latitude": 53.26716, "pgroup": "50k" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.3986, 53.25772 ], [ -1.39836, 53.25829 ], [ -1.39845, 53.25935 ], [ -1.39793, 53.25967 ], [ -1.39685, 53.25972 ], [ -1.39685, 53.26048 ], [ -1.39714, 53.26073 ], [ -1.39788, 53.26069 ], [ -1.39803, 53.26031 ], [ -1.39902, 53.26073 ], [ -1.40024, 53.26308 ], [ -1.40015, 53.26424 ], [ -1.39936, 53.26526 ], [ -1.39933, 53.26637 ], [ -1.39836, 53.26722 ], [ -1.39803, 53.26909 ], [ -1.39752, 53.26915 ], [ -1.39731, 53.27028 ], [ -1.39233, 53.2708 ], [ -1.38873, 53.27059 ], [ -1.38782, 53.26938 ], [ -1.38647, 53.26921 ], [ -1.38578, 53.26865 ], [ -1.38643, 53.26824 ], [ -1.38795, 53.26803 ], [ -1.38821, 53.26695 ], [ -1.38753, 53.26628 ], [ -1.38836, 53.26435 ], [ -1.38822, 53.26325 ], [ -1.38809, 53.26248 ], [ -1.38749, 53.26204 ], [ -1.38694, 53.26155 ], [ -1.38604, 53.26029 ], [ -1.3846, 53.25831 ], [ -1.3854, 53.25804 ], [ -1.38587, 53.25796 ], [ -1.38953, 53.25756 ], [ -1.39343, 53.25753 ], [ -1.39388, 53.25722 ], [ -1.39381, 53.25652 ], [ -1.39535, 53.25629 ], [ -1.39693, 53.25683 ], [ -1.39691, 53.25691 ], [ -1.39811, 53.25723 ], [ -1.3986, 53.25772 ] ] ], [ [ [ -1.39956, 53.27502 ], [ -1.39999, 53.27368 ], [ -1.39947, 53.27263 ], [ -1.40013, 53.27238 ], [ -1.40076, 53.27265 ], [ -1.40218, 53.27242 ], [ -1.40304, 53.27287 ], [ -1.40385, 53.27326 ], [ -1.40425, 53.27317 ], [ -1.40469, 53.27356 ], [ -1.40547, 53.273 ], [ -1.4057, 53.27322 ], [ -1.40707, 53.2722 ], [ -1.40793, 53.27263 ], [ -1.41004, 53.27293 ], [ -1.40991, 53.27219 ], [ -1.41074, 53.27198 ], [ -1.41209, 53.27417 ], [ -1.41226, 53.27446 ], [ -1.4131, 53.2744 ], [ -1.41249, 53.27487 ], [ -1.4131, 53.27522 ], [ -1.41165, 53.2755 ], [ -1.41055, 53.27646 ], [ -1.4111, 53.27798 ], [ -1.41218, 53.27922 ], [ -1.4091, 53.27903 ], [ -1.40582, 53.27748 ], [ -1.40538, 53.27759 ], [ -1.40496, 53.27727 ], [ -1.40478, 53.27749 ], [ -1.40408, 53.27751 ], [ -1.40354, 53.27815 ], [ -1.40263, 53.27796 ], [ -1.40214, 53.27728 ], [ -1.40253, 53.27719 ], [ -1.40236, 53.27693 ], [ -1.40198, 53.27702 ], [ -1.40155, 53.27647 ], [ -1.40082, 53.27656 ], [ -1.40206, 53.27808 ], [ -1.4006, 53.2786 ], [ -1.39916, 53.27726 ], [ -1.39956, 53.27502 ] ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Chesterfield", "bua_code": "E35001230", "msoa_code": "E02004058", "population": 7702, "outputarea_code": "E00098828", "lsoa_code": "E01019542", "la_name": "Chesterfield", "bua_name": "Chesterfield BUASD", "constituency_name": "Chesterfield", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.45269, "latitude": 53.2622, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.45306, 53.25304 ], [ -1.45492, 53.25362 ], [ -1.45753, 53.2542 ], [ -1.46151, 53.2546 ], [ -1.46518, 53.25569 ], [ -1.46648, 53.25602 ], [ -1.46693, 53.25613 ], [ -1.46875, 53.25647 ], [ -1.47069, 53.25727 ], [ -1.47251, 53.25829 ], [ -1.47113, 53.25941 ], [ -1.4723, 53.26001 ], [ -1.47274, 53.25979 ], [ -1.47321, 53.26006 ], [ -1.47376, 53.25969 ], [ -1.47438, 53.26001 ], [ -1.47442, 53.25944 ], [ -1.47505, 53.25945 ], [ -1.47643, 53.26023 ], [ -1.47678, 53.26058 ], [ -1.47866, 53.26282 ], [ -1.47975, 53.26333 ], [ -1.4806, 53.26335 ], [ -1.47904, 53.26351 ], [ -1.47673, 53.26451 ], [ -1.47657, 53.26457 ], [ -1.47543, 53.26515 ], [ -1.47485, 53.2651 ], [ -1.47329, 53.26618 ], [ -1.47227, 53.26638 ], [ -1.47011, 53.26763 ], [ -1.46787, 53.26749 ], [ -1.46653, 53.26758 ], [ -1.46637, 53.26793 ], [ -1.4642, 53.268 ], [ -1.46273, 53.27035 ], [ -1.46138, 53.2721 ], [ -1.45847, 53.27365 ], [ -1.45778, 53.27339 ], [ -1.45511, 53.27353 ], [ -1.45319, 53.27311 ], [ -1.44969, 53.27112 ], [ -1.44308, 53.26999 ], [ -1.44318, 53.26894 ], [ -1.44103, 53.26842 ], [ -1.43664, 53.26739 ], [ -1.43435, 53.26446 ], [ -1.43237, 53.26229 ], [ -1.42977, 53.26091 ], [ -1.42842, 53.26035 ], [ -1.42584, 53.25873 ], [ -1.42806, 53.25861 ], [ -1.42892, 53.25822 ], [ -1.42872, 53.25771 ], [ -1.42917, 53.25744 ], [ -1.42808, 53.25619 ], [ -1.4277, 53.2562 ], [ -1.42792, 53.25572 ], [ -1.42813, 53.25567 ], [ -1.42905, 53.25546 ], [ -1.4295, 53.25608 ], [ -1.4302, 53.25627 ], [ -1.43137, 53.25559 ], [ -1.43057, 53.25512 ], [ -1.43125, 53.25438 ], [ -1.43346, 53.25568 ], [ -1.43307, 53.25573 ], [ -1.43327, 53.25621 ], [ -1.4342, 53.25624 ], [ -1.43416, 53.25572 ], [ -1.43473, 53.25567 ], [ -1.43432, 53.25506 ], [ -1.43475, 53.25496 ], [ -1.43665, 53.25575 ], [ -1.43673, 53.25575 ], [ -1.43763, 53.25502 ], [ -1.43891, 53.25474 ], [ -1.43883, 53.25429 ], [ -1.43845, 53.25431 ], [ -1.43975, 53.25278 ], [ -1.44113, 53.25278 ], [ -1.44156, 53.25385 ], [ -1.4409, 53.25427 ], [ -1.44158, 53.25459 ], [ -1.44113, 53.25499 ], [ -1.4434, 53.25476 ], [ -1.44469, 53.25495 ], [ -1.4452, 53.25458 ], [ -1.44561, 53.25575 ], [ -1.44654, 53.25571 ], [ -1.44679, 53.25608 ], [ -1.44693, 53.25588 ], [ -1.44707, 53.25323 ], [ -1.44774, 53.25258 ], [ -1.44834, 53.25212 ], [ -1.44881, 53.25236 ], [ -1.45154, 53.25259 ], [ -1.45306, 53.25304 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Chesterfield", "bua_code": "E35001230", "msoa_code": "E02004059", "population": 7088, "outputarea_code": "E00098776", "lsoa_code": "E01019532", "la_name": "Chesterfield", "bua_name": "Chesterfield BUASD", "constituency_name": "Chesterfield", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.4012, "latitude": 53.2512, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.39027, 53.23886 ], [ -1.39326, 53.24103 ], [ -1.39473, 53.24101 ], [ -1.40389, 53.23893 ], [ -1.40446, 53.23851 ], [ -1.40697, 53.23882 ], [ -1.4116, 53.23885 ], [ -1.41539, 53.23924 ], [ -1.41607, 53.23862 ], [ -1.41806, 53.23845 ], [ -1.41951, 53.23856 ], [ -1.41925, 53.23975 ], [ -1.41848, 53.24327 ], [ -1.41834, 53.24771 ], [ -1.41851, 53.2488 ], [ -1.41887, 53.25043 ], [ -1.41924, 53.25461 ], [ -1.42031, 53.25514 ], [ -1.41953, 53.25541 ], [ -1.41895, 53.25511 ], [ -1.41857, 53.25544 ], [ -1.41877, 53.25602 ], [ -1.41793, 53.25606 ], [ -1.41803, 53.25658 ], [ -1.41653, 53.25632 ], [ -1.41633, 53.25702 ], [ -1.41685, 53.25737 ], [ -1.41505, 53.25789 ], [ -1.41604, 53.25861 ], [ -1.41458, 53.25884 ], [ -1.41359, 53.26135 ], [ -1.41278, 53.26316 ], [ -1.41302, 53.26354 ], [ -1.41364, 53.26426 ], [ -1.40984, 53.26685 ], [ -1.40932, 53.26713 ], [ -1.40379, 53.26951 ], [ -1.40203, 53.26998 ], [ -1.40127, 53.26953 ], [ -1.39803, 53.26909 ], [ -1.39836, 53.26722 ], [ -1.39933, 53.26637 ], [ -1.39936, 53.26526 ], [ -1.40015, 53.26424 ], [ -1.40024, 53.26308 ], [ -1.39902, 53.26073 ], [ -1.39803, 53.26031 ], [ -1.39788, 53.26069 ], [ -1.39714, 53.26073 ], [ -1.39685, 53.26048 ], [ -1.39685, 53.25972 ], [ -1.39793, 53.25967 ], [ -1.39845, 53.25935 ], [ -1.39836, 53.25829 ], [ -1.3986, 53.25772 ], [ -1.39811, 53.25723 ], [ -1.39691, 53.25691 ], [ -1.39693, 53.25683 ], [ -1.39535, 53.25629 ], [ -1.39381, 53.25652 ], [ -1.39388, 53.25722 ], [ -1.39343, 53.25753 ], [ -1.38953, 53.25756 ], [ -1.38587, 53.25796 ], [ -1.3854, 53.25804 ], [ -1.3846, 53.25831 ], [ -1.38089, 53.25605 ], [ -1.3818, 53.25464 ], [ -1.38067, 53.25233 ], [ -1.37904, 53.25133 ], [ -1.37966, 53.24962 ], [ -1.37967, 53.24835 ], [ -1.38004, 53.24621 ], [ -1.38034, 53.2438 ], [ -1.38297, 53.24266 ], [ -1.38326, 53.24202 ], [ -1.38565, 53.24062 ], [ -1.3877, 53.23946 ], [ -1.38842, 53.23962 ], [ -1.38941, 53.23895 ], [ -1.39027, 53.23886 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Chesterfield", "bua_code": "E35001230", "msoa_code": "E02004061", "population": 7386, "outputarea_code": "E00098807", "lsoa_code": "E01019537", "la_name": "Chesterfield", "bua_name": "Chesterfield BUASD", "constituency_name": "Chesterfield", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.4343, "latitude": 53.25025, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.43426, 53.24239 ], [ -1.43727, 53.24378 ], [ -1.43875, 53.2442 ], [ -1.43995, 53.24475 ], [ -1.44024, 53.2449 ], [ -1.44076, 53.24458 ], [ -1.44162, 53.24533 ], [ -1.4414, 53.24554 ], [ -1.44223, 53.24589 ], [ -1.44214, 53.2456 ], [ -1.44282, 53.24535 ], [ -1.44274, 53.24483 ], [ -1.44349, 53.24473 ], [ -1.44537, 53.24532 ], [ -1.44669, 53.24623 ], [ -1.44776, 53.24631 ], [ -1.44886, 53.24761 ], [ -1.45008, 53.24747 ], [ -1.45111, 53.24885 ], [ -1.45082, 53.24917 ], [ -1.4481, 53.25198 ], [ -1.44834, 53.25212 ], [ -1.44774, 53.25258 ], [ -1.44707, 53.25323 ], [ -1.44693, 53.25588 ], [ -1.44679, 53.25608 ], [ -1.44654, 53.25571 ], [ -1.44561, 53.25575 ], [ -1.4452, 53.25458 ], [ -1.44469, 53.25495 ], [ -1.4434, 53.25476 ], [ -1.44113, 53.25499 ], [ -1.44158, 53.25459 ], [ -1.4409, 53.25427 ], [ -1.44156, 53.25385 ], [ -1.44113, 53.25278 ], [ -1.43975, 53.25278 ], [ -1.43845, 53.25431 ], [ -1.43883, 53.25429 ], [ -1.43891, 53.25474 ], [ -1.43763, 53.25502 ], [ -1.43673, 53.25575 ], [ -1.43665, 53.25575 ], [ -1.43475, 53.25496 ], [ -1.43432, 53.25506 ], [ -1.43473, 53.25567 ], [ -1.43416, 53.25572 ], [ -1.4342, 53.25624 ], [ -1.43327, 53.25621 ], [ -1.43307, 53.25573 ], [ -1.43346, 53.25568 ], [ -1.43125, 53.25438 ], [ -1.43057, 53.25512 ], [ -1.43137, 53.25559 ], [ -1.4302, 53.25627 ], [ -1.4295, 53.25608 ], [ -1.42905, 53.25546 ], [ -1.42813, 53.25567 ], [ -1.42792, 53.25572 ], [ -1.4277, 53.2562 ], [ -1.42808, 53.25619 ], [ -1.42917, 53.25744 ], [ -1.42872, 53.25771 ], [ -1.42892, 53.25822 ], [ -1.42806, 53.25861 ], [ -1.42584, 53.25873 ], [ -1.42422, 53.25696 ], [ -1.42242, 53.25347 ], [ -1.42031, 53.25514 ], [ -1.41924, 53.25461 ], [ -1.41887, 53.25043 ], [ -1.41851, 53.2488 ], [ -1.41941, 53.24857 ], [ -1.41973, 53.249 ], [ -1.4228, 53.24866 ], [ -1.4229, 53.24904 ], [ -1.42711, 53.24862 ], [ -1.42602, 53.24643 ], [ -1.42573, 53.24558 ], [ -1.42635, 53.24405 ], [ -1.42679, 53.24327 ], [ -1.4273, 53.24335 ], [ -1.42798, 53.24272 ], [ -1.42916, 53.24277 ], [ -1.42955, 53.24416 ], [ -1.43138, 53.24407 ], [ -1.43387, 53.24493 ], [ -1.43413, 53.24491 ], [ -1.43433, 53.2439 ], [ -1.43463, 53.24395 ], [ -1.43487, 53.24337 ], [ -1.43396, 53.24337 ], [ -1.43371, 53.24371 ], [ -1.43321, 53.2435 ], [ -1.43369, 53.24312 ], [ -1.43338, 53.24225 ], [ -1.4329, 53.24211 ], [ -1.43308, 53.24179 ], [ -1.43426, 53.24239 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Chesterfield", "bua_code": "E35001230", "msoa_code": "E02004062", "population": 7776, "outputarea_code": "E00098910", "lsoa_code": "E01019557", "la_name": "Chesterfield", "bua_name": "Chesterfield BUASD", "constituency_name": "Chesterfield", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.46512, "latitude": 53.24777, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.45473, 53.23976 ], [ -1.45608, 53.24259 ], [ -1.45799, 53.24326 ], [ -1.4612, 53.24305 ], [ -1.4627, 53.24278 ], [ -1.46433, 53.24172 ], [ -1.4662, 53.24162 ], [ -1.46625, 53.23969 ], [ -1.46664, 53.23946 ], [ -1.47186, 53.23949 ], [ -1.47509, 53.23982 ], [ -1.47755, 53.23972 ], [ -1.47897, 53.2425 ], [ -1.47855, 53.24341 ], [ -1.47909, 53.24351 ], [ -1.4809, 53.24513 ], [ -1.48171, 53.24648 ], [ -1.48098, 53.24665 ], [ -1.48131, 53.24786 ], [ -1.48075, 53.2485 ], [ -1.47979, 53.24865 ], [ -1.47914, 53.24827 ], [ -1.47853, 53.24852 ], [ -1.4779, 53.24822 ], [ -1.47693, 53.24857 ], [ -1.47683, 53.24859 ], [ -1.47478, 53.24875 ], [ -1.47394, 53.24915 ], [ -1.47385, 53.24983 ], [ -1.47494, 53.25007 ], [ -1.4759, 53.25081 ], [ -1.47816, 53.25099 ], [ -1.47879, 53.25229 ], [ -1.47702, 53.25289 ], [ -1.47687, 53.25292 ], [ -1.47507, 53.25348 ], [ -1.47627, 53.2547 ], [ -1.47352, 53.25724 ], [ -1.47221, 53.25653 ], [ -1.47069, 53.25727 ], [ -1.46875, 53.25647 ], [ -1.46693, 53.25613 ], [ -1.46648, 53.25602 ], [ -1.46518, 53.25569 ], [ -1.46151, 53.2546 ], [ -1.45753, 53.2542 ], [ -1.45492, 53.25362 ], [ -1.45306, 53.25304 ], [ -1.45154, 53.25259 ], [ -1.44881, 53.25236 ], [ -1.44834, 53.25212 ], [ -1.4481, 53.25198 ], [ -1.45082, 53.24917 ], [ -1.45111, 53.24885 ], [ -1.45008, 53.24747 ], [ -1.44997, 53.24695 ], [ -1.44995, 53.24677 ], [ -1.45018, 53.2447 ], [ -1.44873, 53.24381 ], [ -1.4489, 53.24313 ], [ -1.44826, 53.24276 ], [ -1.44979, 53.24108 ], [ -1.44993, 53.24089 ], [ -1.45084, 53.24059 ], [ -1.45137, 53.24126 ], [ -1.45271, 53.24154 ], [ -1.45243, 53.24033 ], [ -1.45279, 53.23971 ], [ -1.45473, 53.23976 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Chesterfield", "bua_code": "E35001230", "msoa_code": "E02004063", "population": 7895, "outputarea_code": "E00098808", "lsoa_code": "E01019539", "la_name": "Chesterfield", "bua_name": "Chesterfield BUASD", "constituency_name": "Chesterfield", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.45342, "latitude": 53.23835, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.46027, 53.22897 ], [ -1.46067, 53.23017 ], [ -1.46138, 53.23081 ], [ -1.46209, 53.23084 ], [ -1.46205, 53.23051 ], [ -1.46333, 53.23031 ], [ -1.46385, 53.23019 ], [ -1.46469, 53.23065 ], [ -1.46566, 53.23043 ], [ -1.46744, 53.23044 ], [ -1.46761, 53.23097 ], [ -1.46665, 53.23141 ], [ -1.46732, 53.23172 ], [ -1.46732, 53.23272 ], [ -1.46709, 53.23238 ], [ -1.4666, 53.23251 ], [ -1.46568, 53.23339 ], [ -1.46603, 53.23381 ], [ -1.46504, 53.23432 ], [ -1.46538, 53.23448 ], [ -1.46489, 53.23525 ], [ -1.4651, 53.23609 ], [ -1.46658, 53.2369 ], [ -1.46619, 53.23817 ], [ -1.46323, 53.2382 ], [ -1.4629, 53.23896 ], [ -1.46461, 53.23887 ], [ -1.46475, 53.23933 ], [ -1.46638, 53.23923 ], [ -1.46664, 53.23946 ], [ -1.46625, 53.23969 ], [ -1.4662, 53.24162 ], [ -1.46433, 53.24172 ], [ -1.4627, 53.24278 ], [ -1.4612, 53.24305 ], [ -1.45799, 53.24326 ], [ -1.45608, 53.24259 ], [ -1.45473, 53.23976 ], [ -1.45279, 53.23971 ], [ -1.45243, 53.24033 ], [ -1.45271, 53.24154 ], [ -1.45137, 53.24126 ], [ -1.45084, 53.24059 ], [ -1.44993, 53.24089 ], [ -1.44979, 53.24108 ], [ -1.44826, 53.24276 ], [ -1.4489, 53.24313 ], [ -1.44873, 53.24381 ], [ -1.45018, 53.2447 ], [ -1.44995, 53.24677 ], [ -1.44997, 53.24695 ], [ -1.45008, 53.24747 ], [ -1.44886, 53.24761 ], [ -1.44776, 53.24631 ], [ -1.44669, 53.24623 ], [ -1.44537, 53.24532 ], [ -1.44349, 53.24473 ], [ -1.44274, 53.24483 ], [ -1.44282, 53.24535 ], [ -1.44214, 53.2456 ], [ -1.44223, 53.24589 ], [ -1.4414, 53.24554 ], [ -1.44162, 53.24533 ], [ -1.44076, 53.24458 ], [ -1.44024, 53.2449 ], [ -1.43995, 53.24475 ], [ -1.43875, 53.2442 ], [ -1.43727, 53.24378 ], [ -1.43426, 53.24239 ], [ -1.43654, 53.24039 ], [ -1.43757, 53.24067 ], [ -1.43879, 53.24219 ], [ -1.43917, 53.24291 ], [ -1.4399, 53.24244 ], [ -1.4391, 53.24118 ], [ -1.43812, 53.24069 ], [ -1.43901, 53.23899 ], [ -1.4398, 53.23977 ], [ -1.44043, 53.23938 ], [ -1.43996, 53.23911 ], [ -1.4409, 53.23806 ], [ -1.44128, 53.23794 ], [ -1.44261, 53.23845 ], [ -1.44297, 53.23809 ], [ -1.44352, 53.23841 ], [ -1.44377, 53.23822 ], [ -1.44348, 53.23784 ], [ -1.4453, 53.23646 ], [ -1.44595, 53.23614 ], [ -1.44592, 53.23575 ], [ -1.44665, 53.23563 ], [ -1.44715, 53.23637 ], [ -1.44833, 53.2362 ], [ -1.44805, 53.23546 ], [ -1.44894, 53.23498 ], [ -1.4492, 53.2355 ], [ -1.44964, 53.23539 ], [ -1.44989, 53.2348 ], [ -1.45091, 53.23519 ], [ -1.45025, 53.23594 ], [ -1.45057, 53.23607 ], [ -1.45165, 53.23545 ], [ -1.45187, 53.23505 ], [ -1.45133, 53.2345 ], [ -1.45183, 53.23395 ], [ -1.45124, 53.23343 ], [ -1.45181, 53.23341 ], [ -1.4543, 53.23338 ], [ -1.45451, 53.23301 ], [ -1.45503, 53.23325 ], [ -1.45489, 53.23214 ], [ -1.45538, 53.23228 ], [ -1.4573, 53.23198 ], [ -1.45751, 53.23159 ], [ -1.45426, 53.23214 ], [ -1.45425, 53.23117 ], [ -1.45545, 53.23116 ], [ -1.45787, 53.23049 ], [ -1.45826, 53.23024 ], [ -1.45863, 53.22931 ], [ -1.46027, 53.22897 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Chesterfield", "bua_code": "E35001230", "msoa_code": "E02004064", "population": 9480, "outputarea_code": "E00098817", "lsoa_code": "E01019538", "la_name": "Chesterfield", "bua_name": "Chesterfield BUASD", "constituency_name": "Chesterfield", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.43092, "latitude": 53.23578, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.44666, 53.2271 ], [ -1.44692, 53.22749 ], [ -1.44767, 53.22919 ], [ -1.44908, 53.23179 ], [ -1.44953, 53.2318 ], [ -1.44986, 53.23315 ], [ -1.45426, 53.23214 ], [ -1.45751, 53.23159 ], [ -1.4573, 53.23198 ], [ -1.45538, 53.23228 ], [ -1.45489, 53.23214 ], [ -1.45503, 53.23325 ], [ -1.45451, 53.23301 ], [ -1.4543, 53.23338 ], [ -1.45181, 53.23341 ], [ -1.45124, 53.23343 ], [ -1.45183, 53.23395 ], [ -1.45133, 53.2345 ], [ -1.45187, 53.23505 ], [ -1.45165, 53.23545 ], [ -1.45057, 53.23607 ], [ -1.45025, 53.23594 ], [ -1.45091, 53.23519 ], [ -1.44989, 53.2348 ], [ -1.44964, 53.23539 ], [ -1.4492, 53.2355 ], [ -1.44894, 53.23498 ], [ -1.44805, 53.23546 ], [ -1.44833, 53.2362 ], [ -1.44715, 53.23637 ], [ -1.44665, 53.23563 ], [ -1.44592, 53.23575 ], [ -1.44595, 53.23614 ], [ -1.4453, 53.23646 ], [ -1.44348, 53.23784 ], [ -1.44377, 53.23822 ], [ -1.44352, 53.23841 ], [ -1.44297, 53.23809 ], [ -1.44261, 53.23845 ], [ -1.44128, 53.23794 ], [ -1.4409, 53.23806 ], [ -1.43996, 53.23911 ], [ -1.44043, 53.23938 ], [ -1.4398, 53.23977 ], [ -1.43901, 53.23899 ], [ -1.43812, 53.24069 ], [ -1.4391, 53.24118 ], [ -1.4399, 53.24244 ], [ -1.43917, 53.24291 ], [ -1.43879, 53.24219 ], [ -1.43757, 53.24067 ], [ -1.43654, 53.24039 ], [ -1.43426, 53.24239 ], [ -1.43308, 53.24179 ], [ -1.4329, 53.24211 ], [ -1.43338, 53.24225 ], [ -1.43369, 53.24312 ], [ -1.43321, 53.2435 ], [ -1.43371, 53.24371 ], [ -1.43396, 53.24337 ], [ -1.43487, 53.24337 ], [ -1.43463, 53.24395 ], [ -1.43433, 53.2439 ], [ -1.43413, 53.24491 ], [ -1.43387, 53.24493 ], [ -1.43138, 53.24407 ], [ -1.42955, 53.24416 ], [ -1.42916, 53.24277 ], [ -1.42798, 53.24272 ], [ -1.4273, 53.24335 ], [ -1.42679, 53.24327 ], [ -1.42635, 53.24405 ], [ -1.42573, 53.24558 ], [ -1.42602, 53.24643 ], [ -1.42711, 53.24862 ], [ -1.4229, 53.24904 ], [ -1.4228, 53.24866 ], [ -1.41973, 53.249 ], [ -1.41941, 53.24857 ], [ -1.41851, 53.2488 ], [ -1.41834, 53.24771 ], [ -1.41848, 53.24327 ], [ -1.41925, 53.23975 ], [ -1.41951, 53.23856 ], [ -1.41806, 53.23845 ], [ -1.41607, 53.23862 ], [ -1.41592, 53.23663 ], [ -1.41729, 53.23624 ], [ -1.41837, 53.23657 ], [ -1.41879, 53.23669 ], [ -1.42003, 53.23662 ], [ -1.42073, 53.23399 ], [ -1.41952, 53.23374 ], [ -1.41852, 53.23354 ], [ -1.4182, 53.23235 ], [ -1.41723, 53.23234 ], [ -1.41765, 53.23119 ], [ -1.41647, 53.23086 ], [ -1.41492, 53.23092 ], [ -1.41478, 53.23074 ], [ -1.41575, 53.23066 ], [ -1.41601, 53.23004 ], [ -1.4167, 53.23036 ], [ -1.41653, 53.22965 ], [ -1.41652, 53.22929 ], [ -1.41849, 53.22937 ], [ -1.41964, 53.22988 ], [ -1.41933, 53.22891 ], [ -1.41858, 53.22831 ], [ -1.41929, 53.22797 ], [ -1.4192, 53.22728 ], [ -1.42037, 53.2265 ], [ -1.42095, 53.22692 ], [ -1.4216, 53.22694 ], [ -1.42159, 53.22791 ], [ -1.42237, 53.22767 ], [ -1.42385, 53.22725 ], [ -1.42386, 53.22691 ], [ -1.42478, 53.22654 ], [ -1.42332, 53.22618 ], [ -1.42381, 53.22567 ], [ -1.42462, 53.22549 ], [ -1.42473, 53.226 ], [ -1.42556, 53.22602 ], [ -1.42523, 53.22545 ], [ -1.42573, 53.2252 ], [ -1.42582, 53.22429 ], [ -1.42657, 53.2243 ], [ -1.42676, 53.22453 ], [ -1.42774, 53.22485 ], [ -1.42693, 53.22564 ], [ -1.42735, 53.22584 ], [ -1.42764, 53.22607 ], [ -1.42881, 53.22682 ], [ -1.42948, 53.22781 ], [ -1.43089, 53.22738 ], [ -1.43177, 53.22732 ], [ -1.43226, 53.22767 ], [ -1.43254, 53.22722 ], [ -1.43319, 53.22744 ], [ -1.43364, 53.22761 ], [ -1.43449, 53.22707 ], [ -1.43532, 53.22868 ], [ -1.43614, 53.23017 ], [ -1.43716, 53.23002 ], [ -1.43704, 53.22965 ], [ -1.43976, 53.22931 ], [ -1.44023, 53.22924 ], [ -1.44164, 53.22945 ], [ -1.44372, 53.22893 ], [ -1.44526, 53.2291 ], [ -1.44612, 53.22797 ], [ -1.44591, 53.22763 ], [ -1.44666, 53.2271 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Chesterfield", "bua_code": "E35001230", "msoa_code": "E02004065", "population": 8385, "outputarea_code": "E00099058", "lsoa_code": "E01019589", "la_name": "Chesterfield", "bua_name": "Chesterfield BUASD", "constituency_name": "Chesterfield", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.46342, "latitude": 53.2273, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.46065, 53.22075 ], [ -1.46132, 53.22133 ], [ -1.46168, 53.22165 ], [ -1.46447, 53.22057 ], [ -1.46565, 53.22017 ], [ -1.4676, 53.21952 ], [ -1.4677, 53.2197 ], [ -1.47005, 53.22123 ], [ -1.47326, 53.22162 ], [ -1.47546, 53.22163 ], [ -1.47715, 53.22199 ], [ -1.47725, 53.22202 ], [ -1.47772, 53.22217 ], [ -1.47955, 53.22227 ], [ -1.47967, 53.22271 ], [ -1.47813, 53.22291 ], [ -1.47841, 53.22372 ], [ -1.4778, 53.22431 ], [ -1.47698, 53.22437 ], [ -1.47584, 53.22508 ], [ -1.47714, 53.22608 ], [ -1.47855, 53.22629 ], [ -1.48196, 53.22625 ], [ -1.48307, 53.22899 ], [ -1.48416, 53.22898 ], [ -1.48408, 53.23073 ], [ -1.48256, 53.23102 ], [ -1.48397, 53.23248 ], [ -1.48299, 53.23264 ], [ -1.48316, 53.23331 ], [ -1.48082, 53.23348 ], [ -1.48069, 53.23323 ], [ -1.47807, 53.23373 ], [ -1.47204, 53.23341 ], [ -1.47178, 53.23452 ], [ -1.47186, 53.23611 ], [ -1.47136, 53.23618 ], [ -1.47149, 53.23887 ], [ -1.47217, 53.239 ], [ -1.47155, 53.23939 ], [ -1.47186, 53.23949 ], [ -1.46664, 53.23946 ], [ -1.46638, 53.23923 ], [ -1.46475, 53.23933 ], [ -1.46461, 53.23887 ], [ -1.4629, 53.23896 ], [ -1.46323, 53.2382 ], [ -1.46619, 53.23817 ], [ -1.46658, 53.2369 ], [ -1.4651, 53.23609 ], [ -1.46489, 53.23525 ], [ -1.46538, 53.23448 ], [ -1.46504, 53.23432 ], [ -1.46603, 53.23381 ], [ -1.46568, 53.23339 ], [ -1.4666, 53.23251 ], [ -1.46709, 53.23238 ], [ -1.46732, 53.23272 ], [ -1.46732, 53.23172 ], [ -1.46665, 53.23141 ], [ -1.46761, 53.23097 ], [ -1.46744, 53.23044 ], [ -1.46566, 53.23043 ], [ -1.46469, 53.23065 ], [ -1.46385, 53.23019 ], [ -1.46333, 53.23031 ], [ -1.46205, 53.23051 ], [ -1.46209, 53.23084 ], [ -1.46138, 53.23081 ], [ -1.46067, 53.23017 ], [ -1.46027, 53.22897 ], [ -1.45863, 53.22931 ], [ -1.45826, 53.23024 ], [ -1.45787, 53.23049 ], [ -1.45545, 53.23116 ], [ -1.45425, 53.23117 ], [ -1.45426, 53.23214 ], [ -1.44986, 53.23315 ], [ -1.44953, 53.2318 ], [ -1.44908, 53.23179 ], [ -1.44767, 53.22919 ], [ -1.44692, 53.22749 ], [ -1.44666, 53.2271 ], [ -1.44796, 53.22684 ], [ -1.44686, 53.22657 ], [ -1.44477, 53.22676 ], [ -1.44422, 53.22595 ], [ -1.44322, 53.22602 ], [ -1.44313, 53.22455 ], [ -1.44443, 53.22432 ], [ -1.44415, 53.22325 ], [ -1.44055, 53.22346 ], [ -1.44046, 53.22301 ], [ -1.44156, 53.22288 ], [ -1.43898, 53.22077 ], [ -1.43817, 53.2202 ], [ -1.43929, 53.21878 ], [ -1.4412, 53.22063 ], [ -1.44298, 53.2198 ], [ -1.44417, 53.22075 ], [ -1.44527, 53.22 ], [ -1.44753, 53.22141 ], [ -1.44941, 53.22102 ], [ -1.45029, 53.22083 ], [ -1.45243, 53.22073 ], [ -1.45738, 53.21964 ], [ -1.45804, 53.22014 ], [ -1.45912, 53.22065 ], [ -1.46017, 53.22032 ], [ -1.46065, 53.22075 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Chesterfield", "bua_code": "E35001230", "msoa_code": "E02004066", "population": 11867, "outputarea_code": "E00098851", "lsoa_code": "E01019547", "la_name": "Chesterfield", "bua_name": "Chesterfield BUASD", "constituency_name": "Chesterfield", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.40988, "latitude": 53.22641, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.40019, 53.21686 ], [ -1.3996, 53.21517 ], [ -1.40101, 53.21396 ], [ -1.4014, 53.21375 ], [ -1.40392, 53.21407 ], [ -1.40535, 53.21432 ], [ -1.40513, 53.21464 ], [ -1.40836, 53.21556 ], [ -1.40917, 53.21564 ], [ -1.40912, 53.21543 ], [ -1.40989, 53.21515 ], [ -1.41169, 53.21556 ], [ -1.41346, 53.21509 ], [ -1.41639, 53.21428 ], [ -1.42084, 53.21244 ], [ -1.42193, 53.2134 ], [ -1.42261, 53.2135 ], [ -1.42256, 53.21387 ], [ -1.42307, 53.21384 ], [ -1.42238, 53.21412 ], [ -1.42269, 53.21438 ], [ -1.42743, 53.21535 ], [ -1.4281, 53.21696 ], [ -1.42819, 53.21733 ], [ -1.42745, 53.21986 ], [ -1.42666, 53.2221 ], [ -1.42657, 53.2243 ], [ -1.42582, 53.22429 ], [ -1.42573, 53.2252 ], [ -1.42523, 53.22545 ], [ -1.42556, 53.22602 ], [ -1.42473, 53.226 ], [ -1.42462, 53.22549 ], [ -1.42381, 53.22567 ], [ -1.42332, 53.22618 ], [ -1.42478, 53.22654 ], [ -1.42386, 53.22691 ], [ -1.42385, 53.22725 ], [ -1.42237, 53.22767 ], [ -1.42159, 53.22791 ], [ -1.4216, 53.22694 ], [ -1.42095, 53.22692 ], [ -1.42037, 53.2265 ], [ -1.4192, 53.22728 ], [ -1.41929, 53.22797 ], [ -1.41858, 53.22831 ], [ -1.41933, 53.22891 ], [ -1.41964, 53.22988 ], [ -1.41849, 53.22937 ], [ -1.41652, 53.22929 ], [ -1.41653, 53.22965 ], [ -1.4167, 53.23036 ], [ -1.41601, 53.23004 ], [ -1.41575, 53.23066 ], [ -1.41478, 53.23074 ], [ -1.41492, 53.23092 ], [ -1.41647, 53.23086 ], [ -1.41765, 53.23119 ], [ -1.41723, 53.23234 ], [ -1.4182, 53.23235 ], [ -1.41852, 53.23354 ], [ -1.41952, 53.23374 ], [ -1.42073, 53.23399 ], [ -1.42003, 53.23662 ], [ -1.41879, 53.23669 ], [ -1.41837, 53.23657 ], [ -1.41729, 53.23624 ], [ -1.41592, 53.23663 ], [ -1.41607, 53.23862 ], [ -1.41539, 53.23924 ], [ -1.4116, 53.23885 ], [ -1.40697, 53.23882 ], [ -1.40446, 53.23851 ], [ -1.40389, 53.23893 ], [ -1.39473, 53.24101 ], [ -1.39326, 53.24103 ], [ -1.39027, 53.23886 ], [ -1.39008, 53.23788 ], [ -1.39119, 53.23763 ], [ -1.39082, 53.23724 ], [ -1.39158, 53.23719 ], [ -1.39158, 53.23676 ], [ -1.39164, 53.23561 ], [ -1.39304, 53.23532 ], [ -1.39405, 53.23499 ], [ -1.39362, 53.23401 ], [ -1.39864, 53.23387 ], [ -1.40082, 53.23415 ], [ -1.40097, 53.23264 ], [ -1.40035, 53.23109 ], [ -1.39918, 53.23045 ], [ -1.39885, 53.23006 ], [ -1.39636, 53.22668 ], [ -1.39709, 53.22544 ], [ -1.39852, 53.22523 ], [ -1.39558, 53.22272 ], [ -1.3991, 53.21985 ], [ -1.40141, 53.21777 ], [ -1.40004, 53.21708 ], [ -1.40019, 53.21686 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Chesterfield", "bua_code": "E35001230", "msoa_code": "E02004067", "population": 6502, "outputarea_code": "E00098999", "lsoa_code": "E01019577", "la_name": "Chesterfield", "bua_name": "Chesterfield BUASD", "constituency_name": "Chesterfield", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.43528, "latitude": 53.22196, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.44, 53.21359 ], [ -1.44051, 53.2165 ], [ -1.44071, 53.21711 ], [ -1.43992, 53.21806 ], [ -1.43929, 53.21878 ], [ -1.43817, 53.2202 ], [ -1.43898, 53.22077 ], [ -1.44156, 53.22288 ], [ -1.44046, 53.22301 ], [ -1.44055, 53.22346 ], [ -1.44415, 53.22325 ], [ -1.44443, 53.22432 ], [ -1.44313, 53.22455 ], [ -1.44322, 53.22602 ], [ -1.44422, 53.22595 ], [ -1.44477, 53.22676 ], [ -1.44686, 53.22657 ], [ -1.44796, 53.22684 ], [ -1.44666, 53.2271 ], [ -1.44591, 53.22763 ], [ -1.44612, 53.22797 ], [ -1.44526, 53.2291 ], [ -1.44372, 53.22893 ], [ -1.44164, 53.22945 ], [ -1.44023, 53.22924 ], [ -1.43976, 53.22931 ], [ -1.43704, 53.22965 ], [ -1.43716, 53.23002 ], [ -1.43614, 53.23017 ], [ -1.43532, 53.22868 ], [ -1.43449, 53.22707 ], [ -1.43364, 53.22761 ], [ -1.43319, 53.22744 ], [ -1.43254, 53.22722 ], [ -1.43226, 53.22767 ], [ -1.43177, 53.22732 ], [ -1.43089, 53.22738 ], [ -1.42948, 53.22781 ], [ -1.42881, 53.22682 ], [ -1.42764, 53.22607 ], [ -1.42735, 53.22584 ], [ -1.42693, 53.22564 ], [ -1.42774, 53.22485 ], [ -1.42676, 53.22453 ], [ -1.42657, 53.2243 ], [ -1.42666, 53.2221 ], [ -1.42745, 53.21986 ], [ -1.42819, 53.21733 ], [ -1.4281, 53.21696 ], [ -1.42743, 53.21535 ], [ -1.42857, 53.21537 ], [ -1.42872, 53.21535 ], [ -1.4297, 53.21532 ], [ -1.43345, 53.21382 ], [ -1.43502, 53.21356 ], [ -1.43614, 53.21332 ], [ -1.43728, 53.21315 ], [ -1.43994, 53.21358 ], [ -1.44, 53.21359 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Chesterfield", "bua_code": "E35001230", "msoa_code": "E02004111", "population": 2201, "outputarea_code": "E00100307", "lsoa_code": "E01019823", "la_name": "North East Derbyshire", "bua_name": "Chesterfield BUASD", "constituency_name": "Bolsover", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.38574, "latitude": 53.23508, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.3818, 53.23059 ], [ -1.38387, 53.23104 ], [ -1.38636, 53.22955 ], [ -1.38743, 53.22991 ], [ -1.3872, 53.23055 ], [ -1.38919, 53.23192 ], [ -1.38858, 53.23243 ], [ -1.39011, 53.23341 ], [ -1.39011, 53.23266 ], [ -1.39116, 53.23168 ], [ -1.39303, 53.23122 ], [ -1.39387, 53.23143 ], [ -1.39636, 53.23124 ], [ -1.39918, 53.23045 ], [ -1.40035, 53.23109 ], [ -1.40097, 53.23264 ], [ -1.40082, 53.23415 ], [ -1.39864, 53.23387 ], [ -1.39362, 53.23401 ], [ -1.39405, 53.23499 ], [ -1.39304, 53.23532 ], [ -1.39164, 53.23561 ], [ -1.39158, 53.23676 ], [ -1.39158, 53.23719 ], [ -1.39082, 53.23724 ], [ -1.39119, 53.23763 ], [ -1.39008, 53.23788 ], [ -1.39027, 53.23886 ], [ -1.38941, 53.23895 ], [ -1.38842, 53.23962 ], [ -1.3877, 53.23946 ], [ -1.38565, 53.24062 ], [ -1.38326, 53.24202 ], [ -1.38297, 53.24266 ], [ -1.38034, 53.2438 ], [ -1.37961, 53.24318 ], [ -1.37866, 53.24216 ], [ -1.37966, 53.24084 ], [ -1.38037, 53.23727 ], [ -1.37709, 53.23399 ], [ -1.37578, 53.23375 ], [ -1.37149, 53.23195 ], [ -1.37432, 53.23105 ], [ -1.37657, 53.2311 ], [ -1.3818, 53.23059 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Chesterfield", "bua_code": "E35001230", "msoa_code": "E02004112", "population": 708, "outputarea_code": "E00100049", "lsoa_code": "E01019772", "la_name": "North East Derbyshire", "bua_name": "Chesterfield BUASD", "constituency_name": "North East Derbyshire", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.46175, "latitude": 53.21572, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.46565, 53.22017 ], [ -1.46447, 53.22057 ], [ -1.46168, 53.22165 ], [ -1.46132, 53.22133 ], [ -1.46065, 53.22075 ], [ -1.46017, 53.22032 ], [ -1.45912, 53.22065 ], [ -1.45804, 53.22014 ], [ -1.45738, 53.21964 ], [ -1.45243, 53.22073 ], [ -1.45029, 53.22083 ], [ -1.44941, 53.22102 ], [ -1.44753, 53.22141 ], [ -1.44527, 53.22 ], [ -1.44417, 53.22075 ], [ -1.44298, 53.2198 ], [ -1.4412, 53.22063 ], [ -1.43929, 53.21878 ], [ -1.43992, 53.21806 ], [ -1.44071, 53.21711 ], [ -1.44051, 53.2165 ], [ -1.44, 53.21359 ], [ -1.44191, 53.21415 ], [ -1.44974, 53.21384 ], [ -1.45233, 53.21282 ], [ -1.45363, 53.21267 ], [ -1.45468, 53.21146 ], [ -1.45565, 53.21109 ], [ -1.4561, 53.21099 ], [ -1.45941, 53.21022 ], [ -1.46482, 53.211 ], [ -1.46637, 53.21055 ], [ -1.46677, 53.21004 ], [ -1.47117, 53.20962 ], [ -1.47234, 53.2089 ], [ -1.47425, 53.20868 ], [ -1.47466, 53.20827 ], [ -1.47667, 53.2081 ], [ -1.48299, 53.2066 ], [ -1.48354, 53.20691 ], [ -1.48103, 53.20801 ], [ -1.48197, 53.20944 ], [ -1.48141, 53.21028 ], [ -1.47965, 53.21092 ], [ -1.47897, 53.21441 ], [ -1.47438, 53.21304 ], [ -1.47552, 53.21103 ], [ -1.4749, 53.21033 ], [ -1.47211, 53.21171 ], [ -1.47331, 53.2132 ], [ -1.47254, 53.21354 ], [ -1.47078, 53.21661 ], [ -1.47235, 53.21808 ], [ -1.47513, 53.21843 ], [ -1.4791, 53.21802 ], [ -1.48133, 53.22188 ], [ -1.47955, 53.22227 ], [ -1.47772, 53.22217 ], [ -1.47725, 53.22202 ], [ -1.47715, 53.22199 ], [ -1.47546, 53.22163 ], [ -1.47326, 53.22162 ], [ -1.47005, 53.22123 ], [ -1.4677, 53.2197 ], [ -1.4676, 53.21952 ], [ -1.46565, 53.22017 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Clay Cross", "bua_code": "E35001303", "msoa_code": "E02004113", "population": 1462, "outputarea_code": "E00100321", "lsoa_code": "E01019826", "la_name": "North East Derbyshire", "bua_name": "Clay Cross BUASD", "constituency_name": "North East Derbyshire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.40867, "latitude": 53.18989, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.40739, 53.18318 ], [ -1.4123, 53.18399 ], [ -1.41541, 53.18421 ], [ -1.41497, 53.18558 ], [ -1.4137, 53.18682 ], [ -1.41302, 53.18718 ], [ -1.41231, 53.18663 ], [ -1.41141, 53.18649 ], [ -1.40889, 53.18722 ], [ -1.40965, 53.1877 ], [ -1.40966, 53.18849 ], [ -1.41085, 53.18837 ], [ -1.41082, 53.18985 ], [ -1.40948, 53.19056 ], [ -1.40892, 53.19048 ], [ -1.40893, 53.19078 ], [ -1.40944, 53.19083 ], [ -1.41131, 53.19101 ], [ -1.41089, 53.19101 ], [ -1.41138, 53.19185 ], [ -1.4129, 53.19162 ], [ -1.41259, 53.19444 ], [ -1.41155, 53.19427 ], [ -1.40956, 53.19455 ], [ -1.40822, 53.19594 ], [ -1.40619, 53.1965 ], [ -1.40584, 53.197 ], [ -1.4048, 53.19696 ], [ -1.40444, 53.19588 ], [ -1.40417, 53.1954 ], [ -1.40509, 53.19526 ], [ -1.40455, 53.19475 ], [ -1.40471, 53.19415 ], [ -1.4025, 53.19418 ], [ -1.40479, 53.19154 ], [ -1.4047, 53.19033 ], [ -1.40657, 53.19051 ], [ -1.40657, 53.18963 ], [ -1.40469, 53.18997 ], [ -1.40465, 53.18949 ], [ -1.40543, 53.18941 ], [ -1.40658, 53.189 ], [ -1.4068, 53.1885 ], [ -1.40601, 53.18806 ], [ -1.40798, 53.18774 ], [ -1.40818, 53.18749 ], [ -1.4076, 53.18722 ], [ -1.40691, 53.18556 ], [ -1.40519, 53.18469 ], [ -1.4056, 53.18403 ], [ -1.40737, 53.18324 ], [ -1.40739, 53.18318 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Clay Cross", "bua_code": "E35001303", "msoa_code": "E02004114", "population": 1938, "outputarea_code": "E00100057", "lsoa_code": "E01019774", "la_name": "North East Derbyshire", "bua_name": "Clay Cross BUASD", "constituency_name": "North East Derbyshire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.43264, "latitude": 53.16852, "pgroup": "10k" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.44396, 53.174 ], [ -1.44125, 53.17433 ], [ -1.43997, 53.17396 ], [ -1.4391, 53.17415 ], [ -1.43835, 53.17352 ], [ -1.43757, 53.17363 ], [ -1.43705, 53.17316 ], [ -1.43527, 53.17258 ], [ -1.43494, 53.1721 ], [ -1.43417, 53.17225 ], [ -1.4329, 53.17136 ], [ -1.43275, 53.17156 ], [ -1.43188, 53.17256 ], [ -1.43275, 53.17352 ], [ -1.43002, 53.17436 ], [ -1.43088, 53.17515 ], [ -1.43232, 53.17783 ], [ -1.43315, 53.18066 ], [ -1.42976, 53.18079 ], [ -1.42935, 53.18066 ], [ -1.4274, 53.18122 ], [ -1.42225, 53.1838 ], [ -1.41959, 53.184 ], [ -1.41937, 53.18368 ], [ -1.41847, 53.18375 ], [ -1.4185, 53.18356 ], [ -1.41903, 53.1809 ], [ -1.419, 53.18055 ], [ -1.41891, 53.17943 ], [ -1.41786, 53.17737 ], [ -1.41939, 53.17633 ], [ -1.42048, 53.1748 ], [ -1.42364, 53.17531 ], [ -1.42306, 53.17458 ], [ -1.42572, 53.17418 ], [ -1.42648, 53.17562 ], [ -1.42712, 53.17562 ], [ -1.42737, 53.17515 ], [ -1.42698, 53.17481 ], [ -1.42916, 53.17302 ], [ -1.42965, 53.17256 ], [ -1.43033, 53.17261 ], [ -1.43193, 53.17132 ], [ -1.43209, 53.17118 ], [ -1.43162, 53.17035 ], [ -1.43285, 53.16933 ], [ -1.42878, 53.16897 ], [ -1.42769, 53.16919 ], [ -1.42679, 53.17049 ], [ -1.42626, 53.17042 ], [ -1.42689, 53.16937 ], [ -1.4255, 53.16894 ], [ -1.42501, 53.16873 ], [ -1.42524, 53.16835 ], [ -1.42444, 53.16818 ], [ -1.42093, 53.16755 ], [ -1.41739, 53.16747 ], [ -1.41664, 53.16703 ], [ -1.41594, 53.16703 ], [ -1.41544, 53.16403 ], [ -1.41538, 53.16343 ], [ -1.41749, 53.16304 ], [ -1.41918, 53.16199 ], [ -1.41982, 53.16374 ], [ -1.42031, 53.164 ], [ -1.42121, 53.16357 ], [ -1.42263, 53.1632 ], [ -1.42217, 53.16264 ], [ -1.42282, 53.16251 ], [ -1.42254, 53.16175 ], [ -1.42422, 53.16149 ], [ -1.42363, 53.16061 ], [ -1.42899, 53.15543 ], [ -1.43083, 53.15558 ], [ -1.43351, 53.15521 ], [ -1.43455, 53.15557 ], [ -1.43711, 53.15542 ], [ -1.4375, 53.15457 ], [ -1.44092, 53.1565 ], [ -1.4443, 53.15914 ], [ -1.44891, 53.15897 ], [ -1.45068, 53.16183 ], [ -1.45267, 53.1639 ], [ -1.44786, 53.17038 ], [ -1.44396, 53.174 ] ], [ [ -1.42364, 53.17531 ], [ -1.42374, 53.17543 ], [ -1.42415, 53.17539 ], [ -1.42364, 53.17531 ] ], [ [ -1.42415, 53.17539 ], [ -1.42443, 53.17543 ], [ -1.42498, 53.17531 ], [ -1.42415, 53.17539 ] ] ], [ [ [ -1.41461, 53.18865 ], [ -1.41539, 53.18835 ], [ -1.41633, 53.18983 ], [ -1.41669, 53.19142 ], [ -1.41714, 53.1916 ], [ -1.41649, 53.19474 ], [ -1.41527, 53.19485 ], [ -1.41389, 53.19441 ], [ -1.41259, 53.19444 ], [ -1.4129, 53.19162 ], [ -1.41138, 53.19185 ], [ -1.41089, 53.19101 ], [ -1.41131, 53.19101 ], [ -1.40944, 53.19083 ], [ -1.40893, 53.19078 ], [ -1.40892, 53.19048 ], [ -1.40948, 53.19056 ], [ -1.41082, 53.18985 ], [ -1.41085, 53.18837 ], [ -1.41112, 53.18855 ], [ -1.41325, 53.18827 ], [ -1.41461, 53.18865 ] ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Clay Cross", "bua_code": "E35001303", "msoa_code": "E02004115", "population": 1411, "outputarea_code": "E00100322", "lsoa_code": "E01019825", "la_name": "North East Derbyshire", "bua_name": "Clay Cross BUASD", "constituency_name": "North East Derbyshire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.40569, "latitude": 53.18572, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.41541, 53.18421 ], [ -1.4123, 53.18399 ], [ -1.40739, 53.18318 ], [ -1.40737, 53.18324 ], [ -1.4056, 53.18403 ], [ -1.40519, 53.18469 ], [ -1.40691, 53.18556 ], [ -1.4076, 53.18722 ], [ -1.40818, 53.18749 ], [ -1.40798, 53.18774 ], [ -1.40601, 53.18806 ], [ -1.4068, 53.1885 ], [ -1.40658, 53.189 ], [ -1.40543, 53.18941 ], [ -1.40465, 53.18949 ], [ -1.40469, 53.18997 ], [ -1.40657, 53.18963 ], [ -1.40657, 53.19051 ], [ -1.4047, 53.19033 ], [ -1.40479, 53.19154 ], [ -1.4025, 53.19418 ], [ -1.40082, 53.19402 ], [ -1.40065, 53.19395 ], [ -1.40019, 53.19391 ], [ -1.39616, 53.19325 ], [ -1.39477, 53.19199 ], [ -1.39374, 53.19144 ], [ -1.39258, 53.19003 ], [ -1.39518, 53.18919 ], [ -1.39402, 53.18793 ], [ -1.39422, 53.18732 ], [ -1.39527, 53.18705 ], [ -1.39632, 53.18726 ], [ -1.39732, 53.18652 ], [ -1.40046, 53.18578 ], [ -1.4006, 53.18483 ], [ -1.40002, 53.18482 ], [ -1.39984, 53.18399 ], [ -1.3991, 53.18409 ], [ -1.39881, 53.18378 ], [ -1.39984, 53.18206 ], [ -1.40114, 53.18092 ], [ -1.40082, 53.18014 ], [ -1.4018, 53.17897 ], [ -1.40132, 53.17856 ], [ -1.40173, 53.1782 ], [ -1.40131, 53.17814 ], [ -1.40201, 53.17734 ], [ -1.40245, 53.17864 ], [ -1.40341, 53.17761 ], [ -1.40425, 53.17787 ], [ -1.40534, 53.18002 ], [ -1.40582, 53.18023 ], [ -1.41109, 53.17813 ], [ -1.4127, 53.17935 ], [ -1.41379, 53.18097 ], [ -1.41562, 53.18043 ], [ -1.41535, 53.1801 ], [ -1.41657, 53.17958 ], [ -1.41639, 53.17934 ], [ -1.41725, 53.17951 ], [ -1.41778, 53.18052 ], [ -1.419, 53.18055 ], [ -1.41903, 53.1809 ], [ -1.4185, 53.18356 ], [ -1.41847, 53.18375 ], [ -1.41694, 53.18747 ], [ -1.41705, 53.18968 ], [ -1.41714, 53.1916 ], [ -1.41669, 53.19142 ], [ -1.41633, 53.18983 ], [ -1.41539, 53.18835 ], [ -1.41461, 53.18865 ], [ -1.41325, 53.18827 ], [ -1.41112, 53.18855 ], [ -1.41085, 53.18837 ], [ -1.40966, 53.18849 ], [ -1.40965, 53.1877 ], [ -1.40889, 53.18722 ], [ -1.41141, 53.18649 ], [ -1.41231, 53.18663 ], [ -1.41302, 53.18718 ], [ -1.4137, 53.18682 ], [ -1.41497, 53.18558 ], [ -1.41541, 53.18421 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Clay Cross", "bua_code": "E35001303", "msoa_code": "E02004116", "population": 8238, "outputarea_code": "E00100052", "lsoa_code": "E01019775", "la_name": "North East Derbyshire", "bua_name": "Clay Cross BUASD", "constituency_name": "North East Derbyshire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.4108, "latitude": 53.16562, "pgroup": "10k" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.40025, 53.15777 ], [ -1.40075, 53.15545 ], [ -1.40075, 53.15542 ], [ -1.40121, 53.15225 ], [ -1.40363, 53.15202 ], [ -1.40605, 53.15179 ], [ -1.40603, 53.15213 ], [ -1.40643, 53.15212 ], [ -1.40908, 53.15172 ], [ -1.40963, 53.15241 ], [ -1.40908, 53.15256 ], [ -1.41, 53.1539 ], [ -1.40937, 53.15405 ], [ -1.4104, 53.15528 ], [ -1.41369, 53.15479 ], [ -1.41406, 53.15582 ], [ -1.4161, 53.15535 ], [ -1.41579, 53.15343 ], [ -1.41697, 53.15329 ], [ -1.41876, 53.15306 ], [ -1.41856, 53.15243 ], [ -1.42203, 53.15232 ], [ -1.42226, 53.15094 ], [ -1.42408, 53.15109 ], [ -1.42848, 53.15421 ], [ -1.42899, 53.15543 ], [ -1.42363, 53.16061 ], [ -1.42422, 53.16149 ], [ -1.42254, 53.16175 ], [ -1.42282, 53.16251 ], [ -1.42217, 53.16264 ], [ -1.42263, 53.1632 ], [ -1.42121, 53.16357 ], [ -1.42031, 53.164 ], [ -1.41982, 53.16374 ], [ -1.41918, 53.16199 ], [ -1.41749, 53.16304 ], [ -1.41538, 53.16343 ], [ -1.41544, 53.16403 ], [ -1.41594, 53.16703 ], [ -1.41664, 53.16703 ], [ -1.41739, 53.16747 ], [ -1.42093, 53.16755 ], [ -1.42444, 53.16818 ], [ -1.42524, 53.16835 ], [ -1.42501, 53.16873 ], [ -1.4255, 53.16894 ], [ -1.42689, 53.16937 ], [ -1.42626, 53.17042 ], [ -1.42679, 53.17049 ], [ -1.42769, 53.16919 ], [ -1.42878, 53.16897 ], [ -1.43285, 53.16933 ], [ -1.43162, 53.17035 ], [ -1.43209, 53.17118 ], [ -1.43193, 53.17132 ], [ -1.43033, 53.17261 ], [ -1.42965, 53.17256 ], [ -1.42916, 53.17302 ], [ -1.42698, 53.17481 ], [ -1.42737, 53.17515 ], [ -1.42712, 53.17562 ], [ -1.42648, 53.17562 ], [ -1.42572, 53.17418 ], [ -1.42306, 53.17458 ], [ -1.42364, 53.17531 ], [ -1.42048, 53.1748 ], [ -1.41939, 53.17633 ], [ -1.41786, 53.17737 ], [ -1.41891, 53.17943 ], [ -1.419, 53.18055 ], [ -1.41778, 53.18052 ], [ -1.41725, 53.17951 ], [ -1.41639, 53.17934 ], [ -1.41657, 53.17958 ], [ -1.41535, 53.1801 ], [ -1.41562, 53.18043 ], [ -1.41379, 53.18097 ], [ -1.4127, 53.17935 ], [ -1.41109, 53.17813 ], [ -1.40582, 53.18023 ], [ -1.40534, 53.18002 ], [ -1.40425, 53.17787 ], [ -1.40341, 53.17761 ], [ -1.40245, 53.17864 ], [ -1.40201, 53.17734 ], [ -1.40209, 53.17627 ], [ -1.40116, 53.17635 ], [ -1.40096, 53.17605 ], [ -1.40155, 53.17565 ], [ -1.40069, 53.17493 ], [ -1.4006, 53.17459 ], [ -1.39968, 53.17484 ], [ -1.39942, 53.17427 ], [ -1.39781, 53.17369 ], [ -1.39585, 53.17228 ], [ -1.39502, 53.17231 ], [ -1.39359, 53.171 ], [ -1.39226, 53.16978 ], [ -1.39216, 53.16913 ], [ -1.39291, 53.16916 ], [ -1.3956, 53.16747 ], [ -1.39636, 53.16656 ], [ -1.39579, 53.16624 ], [ -1.39625, 53.16558 ], [ -1.3959, 53.16468 ], [ -1.39253, 53.16516 ], [ -1.39224, 53.16493 ], [ -1.39441, 53.16317 ], [ -1.39268, 53.16287 ], [ -1.39176, 53.16235 ], [ -1.39248, 53.16162 ], [ -1.39224, 53.16093 ], [ -1.39279, 53.16051 ], [ -1.39328, 53.15823 ], [ -1.39729, 53.15911 ], [ -1.39895, 53.15764 ], [ -1.40025, 53.15777 ] ] ], [ [ [ -1.42415, 53.17539 ], [ -1.42498, 53.17531 ], [ -1.42443, 53.17543 ], [ -1.42415, 53.17539 ] ] ], [ [ [ -1.42364, 53.17531 ], [ -1.42415, 53.17539 ], [ -1.42374, 53.17543 ], [ -1.42364, 53.17531 ] ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Clay Cross", "bua_code": "E35001303", "msoa_code": "E02004117", "population": 292, "outputarea_code": "E00100274", "lsoa_code": "E01019814", "la_name": "North East Derbyshire", "bua_name": "Clay Cross BUASD", "constituency_name": "Bolsover", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.42443, "latitude": 53.14941, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.40313, 53.14374 ], [ -1.40763, 53.1441 ], [ -1.41543, 53.14627 ], [ -1.41588, 53.14788 ], [ -1.41671, 53.14816 ], [ -1.42136, 53.14723 ], [ -1.42078, 53.14613 ], [ -1.42084, 53.1453 ], [ -1.42128, 53.14515 ], [ -1.42051, 53.14472 ], [ -1.42036, 53.14417 ], [ -1.42125, 53.14341 ], [ -1.42103, 53.14221 ], [ -1.42146, 53.14214 ], [ -1.42182, 53.14124 ], [ -1.42401, 53.1415 ], [ -1.4311, 53.13957 ], [ -1.43094, 53.14182 ], [ -1.43163, 53.14257 ], [ -1.43246, 53.14503 ], [ -1.43201, 53.14759 ], [ -1.43547, 53.14706 ], [ -1.43638, 53.14745 ], [ -1.43831, 53.14928 ], [ -1.43961, 53.14864 ], [ -1.44614, 53.15013 ], [ -1.44607, 53.1505 ], [ -1.44735, 53.15101 ], [ -1.45151, 53.15468 ], [ -1.44295, 53.15552 ], [ -1.44092, 53.1565 ], [ -1.4375, 53.15457 ], [ -1.43711, 53.15542 ], [ -1.43455, 53.15557 ], [ -1.43351, 53.15521 ], [ -1.43083, 53.15558 ], [ -1.42899, 53.15543 ], [ -1.42848, 53.15421 ], [ -1.42408, 53.15109 ], [ -1.42226, 53.15094 ], [ -1.42203, 53.15232 ], [ -1.41856, 53.15243 ], [ -1.41876, 53.15306 ], [ -1.41697, 53.15329 ], [ -1.41579, 53.15343 ], [ -1.4161, 53.15535 ], [ -1.41406, 53.15582 ], [ -1.41369, 53.15479 ], [ -1.4104, 53.15528 ], [ -1.40937, 53.15405 ], [ -1.41, 53.1539 ], [ -1.40908, 53.15256 ], [ -1.40963, 53.15241 ], [ -1.40908, 53.15172 ], [ -1.40643, 53.15212 ], [ -1.40603, 53.15213 ], [ -1.40605, 53.15179 ], [ -1.40363, 53.15202 ], [ -1.40121, 53.15225 ], [ -1.40138, 53.15125 ], [ -1.40193, 53.14701 ], [ -1.40165, 53.14567 ], [ -1.40123, 53.14492 ], [ -1.40313, 53.14374 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Clifton (City of Nottingham)", "bua_code": "E35000158", "msoa_code": "E02002901", "population": 1333, "outputarea_code": "E00070106", "lsoa_code": "E01013896", "la_name": "Nottingham", "bua_name": "Clifton (City of Nottingham) BUASD", "constituency_name": "Nottingham South", "citytownclassification": "Small Town in Conurbation", "urban": "Y", "longitude": -1.17055, "latitude": 52.91499, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.17151, 52.91208 ], [ -1.17089, 52.9121 ], [ -1.17557, 52.91474 ], [ -1.17689, 52.91548 ], [ -1.17579, 52.91626 ], [ -1.1771, 52.91701 ], [ -1.17599, 52.91778 ], [ -1.17459, 52.91713 ], [ -1.16745, 52.92014 ], [ -1.16752, 52.92035 ], [ -1.16688, 52.92038 ], [ -1.16686, 52.91996 ], [ -1.16638, 52.91986 ], [ -1.16688, 52.91744 ], [ -1.16664, 52.91718 ], [ -1.16538, 52.91708 ], [ -1.16617, 52.91612 ], [ -1.16625, 52.91465 ], [ -1.16625, 52.91459 ], [ -1.16625, 52.91446 ], [ -1.1661, 52.91274 ], [ -1.16744, 52.91254 ], [ -1.16669, 52.91124 ], [ -1.16714, 52.91059 ], [ -1.16866, 52.91056 ], [ -1.16976, 52.91118 ], [ -1.17083, 52.91054 ], [ -1.17106, 52.91044 ], [ -1.17177, 52.91011 ], [ -1.17286, 52.91011 ], [ -1.17321, 52.91066 ], [ -1.17407, 52.9097 ], [ -1.17408, 52.91103 ], [ -1.17309, 52.91101 ], [ -1.17314, 52.91193 ], [ -1.17363, 52.91266 ], [ -1.17387, 52.912 ], [ -1.17415, 52.91303 ], [ -1.17477, 52.91294 ], [ -1.17568, 52.91355 ], [ -1.17539, 52.91375 ], [ -1.17572, 52.91398 ], [ -1.17517, 52.91401 ], [ -1.17151, 52.91208 ] ], [ [ -1.17417, 52.91306 ], [ -1.17419, 52.91311 ], [ -1.17446, 52.91327 ], [ -1.17417, 52.91306 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Clifton (City of Nottingham)", "bua_code": "E35000158", "msoa_code": "E02002902", "population": 9364, "outputarea_code": "E00070104", "lsoa_code": "E01013903", "la_name": "Nottingham", "bua_name": "Clifton (City of Nottingham) BUASD", "constituency_name": "Nottingham South", "citytownclassification": "Small Town in Conurbation", "urban": "Y", "longitude": -1.17444, "latitude": 52.90943, "pgroup": "10k" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.16909, 52.90188 ], [ -1.17338, 52.90337 ], [ -1.17434, 52.90367 ], [ -1.17453, 52.90372 ], [ -1.17434, 52.90309 ], [ -1.17508, 52.90287 ], [ -1.17553, 52.90197 ], [ -1.17508, 52.9015 ], [ -1.17706, 52.90191 ], [ -1.17759, 52.90141 ], [ -1.17803, 52.90145 ], [ -1.17889, 52.90019 ], [ -1.1797, 52.90002 ], [ -1.17844, 52.90169 ], [ -1.179, 52.90172 ], [ -1.17973, 52.90076 ], [ -1.18027, 52.9008 ], [ -1.18019, 52.90161 ], [ -1.18193, 52.90215 ], [ -1.18303, 52.90153 ], [ -1.18251, 52.90101 ], [ -1.18275, 52.90059 ], [ -1.18343, 52.90043 ], [ -1.18384, 52.9006 ], [ -1.18391, 52.90159 ], [ -1.18261, 52.9027 ], [ -1.18305, 52.90279 ], [ -1.18389, 52.90261 ], [ -1.18275, 52.90356 ], [ -1.18391, 52.90441 ], [ -1.18356, 52.90492 ], [ -1.18423, 52.90526 ], [ -1.18451, 52.90735 ], [ -1.18754, 52.90833 ], [ -1.18842, 52.90864 ], [ -1.18828, 52.90932 ], [ -1.18802, 52.90956 ], [ -1.19339, 52.91244 ], [ -1.18516, 52.91599 ], [ -1.1823, 52.91734 ], [ -1.17771, 52.91929 ], [ -1.17401, 52.92135 ], [ -1.16724, 52.92407 ], [ -1.16574, 52.92521 ], [ -1.16477, 52.92403 ], [ -1.16746, 52.92097 ], [ -1.16752, 52.92035 ], [ -1.16745, 52.92014 ], [ -1.17459, 52.91713 ], [ -1.17599, 52.91778 ], [ -1.1771, 52.91701 ], [ -1.17579, 52.91626 ], [ -1.17689, 52.91548 ], [ -1.17557, 52.91474 ], [ -1.17089, 52.9121 ], [ -1.17151, 52.91208 ], [ -1.17517, 52.91401 ], [ -1.17572, 52.91398 ], [ -1.17539, 52.91375 ], [ -1.17568, 52.91355 ], [ -1.17477, 52.91294 ], [ -1.17415, 52.91303 ], [ -1.17387, 52.912 ], [ -1.17363, 52.91266 ], [ -1.17314, 52.91193 ], [ -1.17309, 52.91101 ], [ -1.17408, 52.91103 ], [ -1.17407, 52.9097 ], [ -1.17321, 52.91066 ], [ -1.17286, 52.91011 ], [ -1.17177, 52.91011 ], [ -1.17106, 52.91044 ], [ -1.17083, 52.91054 ], [ -1.16976, 52.91118 ], [ -1.16866, 52.91056 ], [ -1.16714, 52.91059 ], [ -1.16772, 52.90978 ], [ -1.16245, 52.90984 ], [ -1.16001, 52.90969 ], [ -1.15866, 52.90551 ], [ -1.1586, 52.90006 ], [ -1.16107, 52.90028 ], [ -1.16268, 52.90027 ], [ -1.16338, 52.89958 ], [ -1.16412, 52.89982 ], [ -1.16421, 52.89929 ], [ -1.16627, 52.89894 ], [ -1.16869, 52.89987 ], [ -1.16897, 52.9 ], [ -1.16787, 52.90146 ], [ -1.16881, 52.90131 ], [ -1.16926, 52.90161 ], [ -1.16909, 52.90188 ] ] ], [ [ [ -1.17419, 52.91311 ], [ -1.17417, 52.91306 ], [ -1.17446, 52.91327 ], [ -1.17419, 52.91311 ] ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Clifton (City of Nottingham)", "bua_code": "E35000158", "msoa_code": "E02002903", "population": 6238, "outputarea_code": "E00070149", "lsoa_code": "E01013908", "la_name": "Nottingham", "bua_name": "Clifton (City of Nottingham) BUASD", "constituency_name": "Nottingham South", "citytownclassification": "Small Town in Conurbation", "urban": "Y", "longitude": -1.19854, "latitude": 52.90441, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.18771, 52.89375 ], [ -1.19205, 52.89506 ], [ -1.19168, 52.89574 ], [ -1.19121, 52.89663 ], [ -1.19396, 52.89751 ], [ -1.19438, 52.89764 ], [ -1.19546, 52.89786 ], [ -1.19588, 52.89725 ], [ -1.19923, 52.89791 ], [ -1.20281, 52.89916 ], [ -1.20431, 52.90013 ], [ -1.20499, 52.9001 ], [ -1.2113, 52.90261 ], [ -1.21323, 52.90074 ], [ -1.21657, 52.90017 ], [ -1.2175, 52.90065 ], [ -1.21415, 52.90331 ], [ -1.21392, 52.90441 ], [ -1.21442, 52.90462 ], [ -1.21383, 52.90564 ], [ -1.21355, 52.90884 ], [ -1.21304, 52.91071 ], [ -1.21051, 52.91227 ], [ -1.2083, 52.91265 ], [ -1.20571, 52.91244 ], [ -1.19901, 52.90948 ], [ -1.19756, 52.90996 ], [ -1.19499, 52.91154 ], [ -1.19339, 52.91244 ], [ -1.18802, 52.90956 ], [ -1.18828, 52.90932 ], [ -1.18842, 52.90864 ], [ -1.18754, 52.90833 ], [ -1.18451, 52.90735 ], [ -1.18423, 52.90526 ], [ -1.18356, 52.90492 ], [ -1.18391, 52.90441 ], [ -1.18275, 52.90356 ], [ -1.18389, 52.90261 ], [ -1.18441, 52.90236 ], [ -1.18498, 52.90176 ], [ -1.18483, 52.90133 ], [ -1.18551, 52.90008 ], [ -1.18646, 52.89998 ], [ -1.18828, 52.89835 ], [ -1.18769, 52.89781 ], [ -1.18576, 52.89772 ], [ -1.18611, 52.89685 ], [ -1.18847, 52.89705 ], [ -1.1887, 52.89707 ], [ -1.1888, 52.89592 ], [ -1.18836, 52.89573 ], [ -1.18825, 52.89661 ], [ -1.18623, 52.89647 ], [ -1.18616, 52.89474 ], [ -1.18567, 52.89466 ], [ -1.18541, 52.89502 ], [ -1.18353, 52.89523 ], [ -1.18339, 52.89448 ], [ -1.18567, 52.89372 ], [ -1.18575, 52.89328 ], [ -1.18771, 52.89375 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Clifton (City of Nottingham)", "bua_code": "E35000158", "msoa_code": "E02002904", "population": 6155, "outputarea_code": "E00070146", "lsoa_code": "E01013911", "la_name": "Nottingham", "bua_name": "Clifton (City of Nottingham) BUASD", "constituency_name": "Nottingham South", "citytownclassification": "Small Town in Conurbation", "urban": "Y", "longitude": -1.17747, "latitude": 52.89705, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.16883, 52.89772 ], [ -1.17023, 52.89679 ], [ -1.17006, 52.89589 ], [ -1.17111, 52.89552 ], [ -1.17087, 52.89503 ], [ -1.17128, 52.89445 ], [ -1.17194, 52.89338 ], [ -1.17384, 52.89215 ], [ -1.17356, 52.89173 ], [ -1.17493, 52.88966 ], [ -1.17607, 52.88955 ], [ -1.17681, 52.88903 ], [ -1.17881, 52.88989 ], [ -1.1782, 52.89131 ], [ -1.18247, 52.89252 ], [ -1.18575, 52.89328 ], [ -1.18567, 52.89372 ], [ -1.18339, 52.89448 ], [ -1.18353, 52.89523 ], [ -1.18541, 52.89502 ], [ -1.18567, 52.89466 ], [ -1.18616, 52.89474 ], [ -1.18623, 52.89647 ], [ -1.18825, 52.89661 ], [ -1.18836, 52.89573 ], [ -1.1888, 52.89592 ], [ -1.1887, 52.89707 ], [ -1.18847, 52.89705 ], [ -1.18611, 52.89685 ], [ -1.18576, 52.89772 ], [ -1.18769, 52.89781 ], [ -1.18828, 52.89835 ], [ -1.18646, 52.89998 ], [ -1.18551, 52.90008 ], [ -1.18483, 52.90133 ], [ -1.18498, 52.90176 ], [ -1.18441, 52.90236 ], [ -1.18389, 52.90261 ], [ -1.18305, 52.90279 ], [ -1.18261, 52.9027 ], [ -1.18391, 52.90159 ], [ -1.18384, 52.9006 ], [ -1.18343, 52.90043 ], [ -1.18275, 52.90059 ], [ -1.18251, 52.90101 ], [ -1.18303, 52.90153 ], [ -1.18193, 52.90215 ], [ -1.18019, 52.90161 ], [ -1.18027, 52.9008 ], [ -1.17973, 52.90076 ], [ -1.179, 52.90172 ], [ -1.17844, 52.90169 ], [ -1.1797, 52.90002 ], [ -1.17889, 52.90019 ], [ -1.17803, 52.90145 ], [ -1.17759, 52.90141 ], [ -1.17706, 52.90191 ], [ -1.17508, 52.9015 ], [ -1.17553, 52.90197 ], [ -1.17508, 52.90287 ], [ -1.17434, 52.90309 ], [ -1.17453, 52.90372 ], [ -1.17434, 52.90367 ], [ -1.17338, 52.90337 ], [ -1.16909, 52.90188 ], [ -1.16926, 52.90161 ], [ -1.16881, 52.90131 ], [ -1.16787, 52.90146 ], [ -1.16897, 52.9 ], [ -1.16869, 52.89987 ], [ -1.16627, 52.89894 ], [ -1.16704, 52.89814 ], [ -1.16883, 52.89772 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Clowne", "bua_code": "E34003098", "msoa_code": "E02004045", "population": 5991, "outputarea_code": "E00098571", "lsoa_code": "E01019491", "la_name": "Bolsover", "bua_name": "Clowne BUA", "constituency_name": "Bolsover", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.2717, "latitude": 53.27306, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.25709, 53.26495 ], [ -1.25813, 53.26236 ], [ -1.26003, 53.25955 ], [ -1.26362, 53.25776 ], [ -1.26476, 53.25662 ], [ -1.2702, 53.25699 ], [ -1.27523, 53.25799 ], [ -1.27476, 53.25915 ], [ -1.27897, 53.26133 ], [ -1.27978, 53.26237 ], [ -1.27954, 53.26312 ], [ -1.28198, 53.26421 ], [ -1.28285, 53.26591 ], [ -1.28445, 53.26677 ], [ -1.28773, 53.26627 ], [ -1.28925, 53.26619 ], [ -1.29034, 53.26541 ], [ -1.29212, 53.26503 ], [ -1.29353, 53.26486 ], [ -1.29389, 53.2652 ], [ -1.29697, 53.26467 ], [ -1.29851, 53.26476 ], [ -1.30131, 53.2639 ], [ -1.30209, 53.26535 ], [ -1.30218, 53.26662 ], [ -1.30162, 53.26698 ], [ -1.30348, 53.26949 ], [ -1.30471, 53.26998 ], [ -1.30539, 53.27158 ], [ -1.30598, 53.27262 ], [ -1.30593, 53.27363 ], [ -1.30726, 53.27546 ], [ -1.30257, 53.27694 ], [ -1.29925, 53.27679 ], [ -1.29424, 53.27604 ], [ -1.29441, 53.27438 ], [ -1.29203, 53.27219 ], [ -1.29197, 53.27028 ], [ -1.29176, 53.27122 ], [ -1.29017, 53.27333 ], [ -1.2892, 53.27649 ], [ -1.28724, 53.27608 ], [ -1.28454, 53.27793 ], [ -1.28183, 53.27847 ], [ -1.27758, 53.27834 ], [ -1.27693, 53.27892 ], [ -1.27698, 53.27951 ], [ -1.2777, 53.28057 ], [ -1.27768, 53.28217 ], [ -1.2757, 53.28276 ], [ -1.27428, 53.28348 ], [ -1.27384, 53.28325 ], [ -1.27235, 53.28452 ], [ -1.27069, 53.28479 ], [ -1.27132, 53.28426 ], [ -1.26945, 53.28344 ], [ -1.26894, 53.284 ], [ -1.26634, 53.28318 ], [ -1.26612, 53.28383 ], [ -1.26404, 53.28532 ], [ -1.26328, 53.28534 ], [ -1.2634, 53.28704 ], [ -1.26101, 53.28721 ], [ -1.2575, 53.28778 ], [ -1.25894, 53.29263 ], [ -1.25815, 53.29262 ], [ -1.25561, 53.29263 ], [ -1.25511, 53.2911 ], [ -1.25217, 53.29222 ], [ -1.25019, 53.28796 ], [ -1.24943, 53.28816 ], [ -1.24896, 53.2873 ], [ -1.24726, 53.28783 ], [ -1.24557, 53.28614 ], [ -1.24603, 53.28512 ], [ -1.24543, 53.28328 ], [ -1.245, 53.28305 ], [ -1.24396, 53.28358 ], [ -1.24173, 53.28382 ], [ -1.24244, 53.28215 ], [ -1.24218, 53.28151 ], [ -1.245, 53.281 ], [ -1.24855, 53.28133 ], [ -1.25006, 53.28151 ], [ -1.25311, 53.28108 ], [ -1.25563, 53.27971 ], [ -1.25529, 53.2795 ], [ -1.25662, 53.27869 ], [ -1.25585, 53.27851 ], [ -1.25594, 53.27816 ], [ -1.25851, 53.27848 ], [ -1.25644, 53.27755 ], [ -1.25616, 53.27695 ], [ -1.25341, 53.2773 ], [ -1.25402, 53.27687 ], [ -1.25294, 53.27653 ], [ -1.25281, 53.27608 ], [ -1.25361, 53.27578 ], [ -1.25276, 53.27587 ], [ -1.25254, 53.27517 ], [ -1.25195, 53.27531 ], [ -1.24973, 53.27536 ], [ -1.2491, 53.27526 ], [ -1.24912, 53.27486 ], [ -1.24879, 53.27528 ], [ -1.24635, 53.27534 ], [ -1.24785, 53.2742 ], [ -1.24999, 53.27351 ], [ -1.25035, 53.27301 ], [ -1.2499, 53.27289 ], [ -1.25099, 53.27143 ], [ -1.25165, 53.27093 ], [ -1.25338, 53.26913 ], [ -1.25709, 53.26495 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Clowne", "bua_code": "E34003098", "msoa_code": "E02004046", "population": 1818, "outputarea_code": "E00098572", "lsoa_code": "E01019492", "la_name": "Bolsover", "bua_name": "Clowne BUA", "constituency_name": "Bolsover", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.24835, "latitude": 53.27867, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.24499, 53.2761 ], [ -1.24635, 53.27534 ], [ -1.24879, 53.27528 ], [ -1.24912, 53.27486 ], [ -1.2491, 53.27526 ], [ -1.24973, 53.27536 ], [ -1.25195, 53.27531 ], [ -1.25254, 53.27517 ], [ -1.25276, 53.27587 ], [ -1.25361, 53.27578 ], [ -1.25281, 53.27608 ], [ -1.25294, 53.27653 ], [ -1.25402, 53.27687 ], [ -1.25341, 53.2773 ], [ -1.25616, 53.27695 ], [ -1.25644, 53.27755 ], [ -1.25851, 53.27848 ], [ -1.25594, 53.27816 ], [ -1.25585, 53.27851 ], [ -1.25662, 53.27869 ], [ -1.25529, 53.2795 ], [ -1.25563, 53.27971 ], [ -1.25311, 53.28108 ], [ -1.25006, 53.28151 ], [ -1.24855, 53.28133 ], [ -1.245, 53.281 ], [ -1.24218, 53.28151 ], [ -1.23919, 53.28174 ], [ -1.2391, 53.28103 ], [ -1.24086, 53.27918 ], [ -1.24436, 53.27665 ], [ -1.24499, 53.2761 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Coalville", "bua_code": "E35000934", "msoa_code": "E02005400", "population": 4453, "outputarea_code": "E00131736", "lsoa_code": "E01025961", "la_name": "North West Leicestershire", "bua_name": "Coalville BUASD", "constituency_name": "North West Leicestershire", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.3671, "latitude": 52.74732, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.36933, 52.73952 ], [ -1.36948, 52.73916 ], [ -1.37086, 52.7386 ], [ -1.37046, 52.73823 ], [ -1.36763, 52.73751 ], [ -1.36794, 52.73704 ], [ -1.36814, 52.73681 ], [ -1.3716, 52.73761 ], [ -1.37221, 52.73678 ], [ -1.37142, 52.73658 ], [ -1.373, 52.73427 ], [ -1.37346, 52.73253 ], [ -1.37404, 52.73254 ], [ -1.38138, 52.73262 ], [ -1.38408, 52.73246 ], [ -1.38407, 52.73253 ], [ -1.38494, 52.73285 ], [ -1.3837, 52.73437 ], [ -1.38366, 52.73541 ], [ -1.3821, 52.73531 ], [ -1.37924, 52.73764 ], [ -1.37868, 52.7381 ], [ -1.37688, 52.73782 ], [ -1.37609, 52.73931 ], [ -1.37694, 52.7395 ], [ -1.37617, 52.74053 ], [ -1.37458, 52.74239 ], [ -1.37423, 52.74263 ], [ -1.37378, 52.74236 ], [ -1.37197, 52.74344 ], [ -1.37057, 52.74537 ], [ -1.37093, 52.74552 ], [ -1.3706, 52.74616 ], [ -1.37033, 52.74661 ], [ -1.36965, 52.74824 ], [ -1.37129, 52.74932 ], [ -1.37175, 52.74911 ], [ -1.37261, 52.74957 ], [ -1.37049, 52.75055 ], [ -1.371, 52.7511 ], [ -1.37206, 52.75142 ], [ -1.37303, 52.75263 ], [ -1.37556, 52.75329 ], [ -1.37545, 52.75381 ], [ -1.37601, 52.7538 ], [ -1.37522, 52.7548 ], [ -1.375, 52.75456 ], [ -1.37459, 52.75499 ], [ -1.37517, 52.75628 ], [ -1.37594, 52.7571 ], [ -1.3757, 52.75899 ], [ -1.3728, 52.76029 ], [ -1.37177, 52.76015 ], [ -1.36906, 52.75898 ], [ -1.36687, 52.75894 ], [ -1.36428, 52.75939 ], [ -1.36318, 52.75905 ], [ -1.36249, 52.75925 ], [ -1.36172, 52.7584 ], [ -1.36254, 52.75761 ], [ -1.36119, 52.75694 ], [ -1.36223, 52.75539 ], [ -1.3629, 52.75419 ], [ -1.36221, 52.75397 ], [ -1.36027, 52.7516 ], [ -1.35874, 52.75206 ], [ -1.3551, 52.75028 ], [ -1.35148, 52.75163 ], [ -1.34988, 52.7494 ], [ -1.34923, 52.74873 ], [ -1.34443, 52.74865 ], [ -1.3427, 52.75024 ], [ -1.34132, 52.75038 ], [ -1.34517, 52.74697 ], [ -1.35219, 52.74692 ], [ -1.35224, 52.74652 ], [ -1.35568, 52.7465 ], [ -1.35718, 52.74702 ], [ -1.35762, 52.74639 ], [ -1.35974, 52.74634 ], [ -1.36105, 52.74502 ], [ -1.36195, 52.74472 ], [ -1.36305, 52.74436 ], [ -1.36272, 52.74424 ], [ -1.36323, 52.7439 ], [ -1.36286, 52.74364 ], [ -1.36381, 52.74317 ], [ -1.36553, 52.7425 ], [ -1.36584, 52.74228 ], [ -1.36704, 52.74093 ], [ -1.36841, 52.73945 ], [ -1.36933, 52.73952 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Coalville", "bua_code": "E35000934", "msoa_code": "E02005403", "population": 6898, "outputarea_code": "E00131763", "lsoa_code": "E01025968", "la_name": "North West Leicestershire", "bua_name": "Coalville BUASD", "constituency_name": "North West Leicestershire", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.34982, "latitude": 52.73744, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.34212, 52.72877 ], [ -1.34355, 52.72837 ], [ -1.34488, 52.72809 ], [ -1.34597, 52.7274 ], [ -1.34799, 52.72592 ], [ -1.34967, 52.7254 ], [ -1.35453, 52.72587 ], [ -1.35708, 52.72499 ], [ -1.358, 52.72567 ], [ -1.36168, 52.72822 ], [ -1.36264, 52.72888 ], [ -1.36459, 52.73016 ], [ -1.36663, 52.73092 ], [ -1.37346, 52.73253 ], [ -1.373, 52.73427 ], [ -1.37142, 52.73658 ], [ -1.37221, 52.73678 ], [ -1.3716, 52.73761 ], [ -1.36814, 52.73681 ], [ -1.36794, 52.73704 ], [ -1.36763, 52.73751 ], [ -1.37046, 52.73823 ], [ -1.37086, 52.7386 ], [ -1.36948, 52.73916 ], [ -1.36933, 52.73952 ], [ -1.36841, 52.73945 ], [ -1.36704, 52.74093 ], [ -1.36584, 52.74228 ], [ -1.36553, 52.7425 ], [ -1.36381, 52.74317 ], [ -1.36286, 52.74364 ], [ -1.36323, 52.7439 ], [ -1.36272, 52.74424 ], [ -1.36305, 52.74436 ], [ -1.36195, 52.74472 ], [ -1.36105, 52.74502 ], [ -1.35974, 52.74634 ], [ -1.35762, 52.74639 ], [ -1.35718, 52.74702 ], [ -1.35568, 52.7465 ], [ -1.35224, 52.74652 ], [ -1.35219, 52.74692 ], [ -1.34517, 52.74697 ], [ -1.34132, 52.75038 ], [ -1.33612, 52.75089 ], [ -1.33489, 52.75073 ], [ -1.33474, 52.75101 ], [ -1.33418, 52.75086 ], [ -1.33433, 52.75055 ], [ -1.33026, 52.75037 ], [ -1.33092, 52.74907 ], [ -1.33164, 52.74896 ], [ -1.33213, 52.74809 ], [ -1.33314, 52.74746 ], [ -1.33396, 52.74741 ], [ -1.33499, 52.74444 ], [ -1.33548, 52.74463 ], [ -1.3357, 52.7428 ], [ -1.3365, 52.74146 ], [ -1.33536, 52.7409 ], [ -1.33229, 52.73918 ], [ -1.3318, 52.73782 ], [ -1.33069, 52.73713 ], [ -1.3316, 52.73656 ], [ -1.32679, 52.73332 ], [ -1.32611, 52.73369 ], [ -1.32551, 52.73319 ], [ -1.32917, 52.7315 ], [ -1.33257, 52.73028 ], [ -1.33747, 52.73274 ], [ -1.33902, 52.73097 ], [ -1.34204, 52.73188 ], [ -1.34164, 52.7313 ], [ -1.34035, 52.72969 ], [ -1.34212, 52.72877 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Coalville", "bua_code": "E35000934", "msoa_code": "E02005405", "population": 6681, "outputarea_code": "E00131597", "lsoa_code": "E01025935", "la_name": "North West Leicestershire", "bua_name": "Coalville BUASD", "constituency_name": "North West Leicestershire", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.33025, "latitude": 52.72487, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.33236, 52.71829 ], [ -1.33363, 52.71765 ], [ -1.33376, 52.71688 ], [ -1.33625, 52.71718 ], [ -1.33706, 52.71688 ], [ -1.33921, 52.71611 ], [ -1.33972, 52.71617 ], [ -1.34097, 52.71744 ], [ -1.34142, 52.71811 ], [ -1.34166, 52.71846 ], [ -1.34222, 52.71932 ], [ -1.34169, 52.71945 ], [ -1.34246, 52.71973 ], [ -1.34329, 52.72059 ], [ -1.34439, 52.72275 ], [ -1.34544, 52.72302 ], [ -1.34721, 52.72331 ], [ -1.35017, 52.7226 ], [ -1.35522, 52.72202 ], [ -1.35586, 52.72363 ], [ -1.35708, 52.72499 ], [ -1.35453, 52.72587 ], [ -1.34967, 52.7254 ], [ -1.34799, 52.72592 ], [ -1.34597, 52.7274 ], [ -1.34488, 52.72809 ], [ -1.34355, 52.72837 ], [ -1.34212, 52.72877 ], [ -1.34035, 52.72969 ], [ -1.34164, 52.7313 ], [ -1.34204, 52.73188 ], [ -1.33902, 52.73097 ], [ -1.33747, 52.73274 ], [ -1.33257, 52.73028 ], [ -1.32917, 52.7315 ], [ -1.32551, 52.73319 ], [ -1.32486, 52.73212 ], [ -1.32308, 52.73174 ], [ -1.32155, 52.73089 ], [ -1.32017, 52.73096 ], [ -1.31523, 52.72779 ], [ -1.3141, 52.72766 ], [ -1.31324, 52.72853 ], [ -1.31051, 52.72714 ], [ -1.31071, 52.72627 ], [ -1.30957, 52.72529 ], [ -1.31148, 52.7246 ], [ -1.3054, 52.72137 ], [ -1.30003, 52.71918 ], [ -1.30044, 52.71858 ], [ -1.30661, 52.71991 ], [ -1.30925, 52.71994 ], [ -1.31298, 52.72132 ], [ -1.31634, 52.72162 ], [ -1.3164, 52.72162 ], [ -1.32304, 52.72223 ], [ -1.32625, 52.72131 ], [ -1.32832, 52.72046 ], [ -1.33236, 52.71829 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Coalville", "bua_code": "E35000934", "msoa_code": "E02005406", "population": 8093, "outputarea_code": "E00131582", "lsoa_code": "E01025929", "la_name": "North West Leicestershire", "bua_name": "Coalville BUASD", "constituency_name": "North West Leicestershire", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.37051, "latitude": 52.72416, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.37003, 52.71533 ], [ -1.37113, 52.71327 ], [ -1.37157, 52.71487 ], [ -1.37168, 52.71474 ], [ -1.37237, 52.71481 ], [ -1.37255, 52.71531 ], [ -1.37351, 52.71586 ], [ -1.37478, 52.71626 ], [ -1.37556, 52.71697 ], [ -1.37648, 52.71668 ], [ -1.37678, 52.71684 ], [ -1.37651, 52.71746 ], [ -1.37734, 52.71726 ], [ -1.37895, 52.71766 ], [ -1.37771, 52.71847 ], [ -1.37651, 52.71878 ], [ -1.37616, 52.71969 ], [ -1.37539, 52.71998 ], [ -1.37514, 52.72073 ], [ -1.37697, 52.72054 ], [ -1.3768, 52.72147 ], [ -1.38074, 52.72249 ], [ -1.38596, 52.72123 ], [ -1.38733, 52.72194 ], [ -1.38633, 52.72396 ], [ -1.38393, 52.72548 ], [ -1.38404, 52.72737 ], [ -1.38138, 52.73262 ], [ -1.37404, 52.73254 ], [ -1.37346, 52.73253 ], [ -1.36663, 52.73092 ], [ -1.36459, 52.73016 ], [ -1.36264, 52.72888 ], [ -1.36168, 52.72822 ], [ -1.358, 52.72567 ], [ -1.35708, 52.72499 ], [ -1.35586, 52.72363 ], [ -1.35522, 52.72202 ], [ -1.35499, 52.72112 ], [ -1.35475, 52.72014 ], [ -1.3548, 52.71848 ], [ -1.35443, 52.71819 ], [ -1.35538, 52.71698 ], [ -1.35703, 52.71638 ], [ -1.36343, 52.71956 ], [ -1.36606, 52.71827 ], [ -1.36703, 52.71714 ], [ -1.3674, 52.7166 ], [ -1.36985, 52.71546 ], [ -1.37003, 52.71533 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Coalville", "bua_code": "E35000934", "msoa_code": "E02005407", "population": 9090, "outputarea_code": "E00131546", "lsoa_code": "E01033103", "la_name": "North West Leicestershire", "bua_name": "Coalville BUASD", "constituency_name": "North West Leicestershire", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.34696, "latitude": 52.71434, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.34566, 52.70942 ], [ -1.35408, 52.70891 ], [ -1.35633, 52.7083 ], [ -1.35688, 52.70685 ], [ -1.35726, 52.70695 ], [ -1.3574, 52.70666 ], [ -1.3593, 52.70698 ], [ -1.35963, 52.70668 ], [ -1.36485, 52.70633 ], [ -1.36552, 52.70577 ], [ -1.36513, 52.70468 ], [ -1.36546, 52.70476 ], [ -1.36964, 52.70589 ], [ -1.37249, 52.70538 ], [ -1.37292, 52.70671 ], [ -1.3747, 52.70748 ], [ -1.37616, 52.70687 ], [ -1.37768, 52.7082 ], [ -1.37776, 52.70881 ], [ -1.3783, 52.70914 ], [ -1.37633, 52.7097 ], [ -1.37784, 52.71091 ], [ -1.37965, 52.71116 ], [ -1.38073, 52.71329 ], [ -1.38155, 52.71376 ], [ -1.38251, 52.71314 ], [ -1.38019, 52.71007 ], [ -1.38272, 52.70957 ], [ -1.38321, 52.71009 ], [ -1.3845, 52.70964 ], [ -1.38472, 52.70982 ], [ -1.38507, 52.70942 ], [ -1.3853, 52.70962 ], [ -1.38576, 52.70945 ], [ -1.38506, 52.70874 ], [ -1.39014, 52.70748 ], [ -1.39034, 52.70787 ], [ -1.39446, 52.70744 ], [ -1.39811, 52.70833 ], [ -1.40089, 52.70796 ], [ -1.39997, 52.71261 ], [ -1.39838, 52.71545 ], [ -1.39865, 52.71709 ], [ -1.3979, 52.71707 ], [ -1.39739, 52.71817 ], [ -1.39361, 52.71762 ], [ -1.3934, 52.71817 ], [ -1.39267, 52.72067 ], [ -1.39305, 52.72225 ], [ -1.39367, 52.72527 ], [ -1.39654, 52.72544 ], [ -1.39636, 52.72786 ], [ -1.3956, 52.73008 ], [ -1.39464, 52.73003 ], [ -1.39448, 52.73039 ], [ -1.39416, 52.73097 ], [ -1.3935, 52.73211 ], [ -1.38928, 52.73102 ], [ -1.38903, 52.7312 ], [ -1.38564, 52.73004 ], [ -1.38408, 52.73246 ], [ -1.38138, 52.73262 ], [ -1.38404, 52.72737 ], [ -1.38393, 52.72548 ], [ -1.38633, 52.72396 ], [ -1.38733, 52.72194 ], [ -1.38596, 52.72123 ], [ -1.38074, 52.72249 ], [ -1.3768, 52.72147 ], [ -1.37697, 52.72054 ], [ -1.37514, 52.72073 ], [ -1.37539, 52.71998 ], [ -1.37616, 52.71969 ], [ -1.37651, 52.71878 ], [ -1.37771, 52.71847 ], [ -1.37895, 52.71766 ], [ -1.37734, 52.71726 ], [ -1.37651, 52.71746 ], [ -1.37678, 52.71684 ], [ -1.37648, 52.71668 ], [ -1.37556, 52.71697 ], [ -1.37478, 52.71626 ], [ -1.37351, 52.71586 ], [ -1.37255, 52.71531 ], [ -1.37237, 52.71481 ], [ -1.37168, 52.71474 ], [ -1.37157, 52.71487 ], [ -1.37113, 52.71327 ], [ -1.37003, 52.71533 ], [ -1.36985, 52.71546 ], [ -1.3674, 52.7166 ], [ -1.36703, 52.71714 ], [ -1.36606, 52.71827 ], [ -1.36343, 52.71956 ], [ -1.35703, 52.71638 ], [ -1.35538, 52.71698 ], [ -1.35443, 52.71819 ], [ -1.3548, 52.71848 ], [ -1.35475, 52.72014 ], [ -1.35499, 52.72112 ], [ -1.35522, 52.72202 ], [ -1.35017, 52.7226 ], [ -1.34721, 52.72331 ], [ -1.34544, 52.72302 ], [ -1.34439, 52.72275 ], [ -1.34329, 52.72059 ], [ -1.34246, 52.71973 ], [ -1.34169, 52.71945 ], [ -1.34222, 52.71932 ], [ -1.34166, 52.71846 ], [ -1.34142, 52.71811 ], [ -1.34097, 52.71744 ], [ -1.33972, 52.71617 ], [ -1.33921, 52.71611 ], [ -1.33706, 52.71688 ], [ -1.33625, 52.71718 ], [ -1.33376, 52.71688 ], [ -1.33363, 52.71765 ], [ -1.33236, 52.71829 ], [ -1.32832, 52.72046 ], [ -1.32625, 52.72131 ], [ -1.32304, 52.72223 ], [ -1.3164, 52.72162 ], [ -1.31634, 52.72162 ], [ -1.31298, 52.72132 ], [ -1.30925, 52.71994 ], [ -1.30661, 52.71991 ], [ -1.30044, 52.71858 ], [ -1.29281, 52.71527 ], [ -1.28915, 52.7129 ], [ -1.28958, 52.71184 ], [ -1.29174, 52.70944 ], [ -1.29923, 52.70743 ], [ -1.3088, 52.70643 ], [ -1.311, 52.70574 ], [ -1.31812, 52.70198 ], [ -1.32329, 52.70267 ], [ -1.33266, 52.70794 ], [ -1.33767, 52.70911 ], [ -1.34039, 52.70891 ], [ -1.34152, 52.70878 ], [ -1.34368, 52.70948 ], [ -1.34566, 52.70942 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Coalville", "bua_code": "E35000934", "msoa_code": "E02005409", "population": 580, "outputarea_code": "E00131624", "lsoa_code": "E01025938", "la_name": "North West Leicestershire", "bua_name": "Coalville BUASD", "constituency_name": "North West Leicestershire", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.38853, "latitude": 52.70514, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.40133, 52.69937 ], [ -1.40097, 52.70223 ], [ -1.40089, 52.70796 ], [ -1.39811, 52.70833 ], [ -1.39446, 52.70744 ], [ -1.39034, 52.70787 ], [ -1.39014, 52.70748 ], [ -1.38506, 52.70874 ], [ -1.38576, 52.70945 ], [ -1.3853, 52.70962 ], [ -1.38507, 52.70942 ], [ -1.38472, 52.70982 ], [ -1.3845, 52.70964 ], [ -1.38321, 52.71009 ], [ -1.38272, 52.70957 ], [ -1.38019, 52.71007 ], [ -1.38251, 52.71314 ], [ -1.38155, 52.71376 ], [ -1.38073, 52.71329 ], [ -1.37965, 52.71116 ], [ -1.37784, 52.71091 ], [ -1.37633, 52.7097 ], [ -1.3783, 52.70914 ], [ -1.37776, 52.70881 ], [ -1.37768, 52.7082 ], [ -1.37616, 52.70687 ], [ -1.3747, 52.70748 ], [ -1.37292, 52.70671 ], [ -1.37249, 52.70538 ], [ -1.37959, 52.70412 ], [ -1.38319, 52.70175 ], [ -1.38654, 52.70064 ], [ -1.38778, 52.70105 ], [ -1.39341, 52.70051 ], [ -1.40133, 52.69937 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Corby", "bua_code": "E35001263", "msoa_code": "E02005612", "population": 4097, "outputarea_code": "E00137165", "lsoa_code": "E01026971", "la_name": "Corby", "bua_name": "Corby BUASD", "constituency_name": "Corby", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.69508, "latitude": 52.50653, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.69244, 52.49755 ], [ -0.69502, 52.49654 ], [ -0.6961, 52.49612 ], [ -0.69688, 52.49581 ], [ -0.69877, 52.49731 ], [ -0.69793, 52.4977 ], [ -0.69704, 52.49707 ], [ -0.69629, 52.49738 ], [ -0.69685, 52.49807 ], [ -0.6962, 52.49875 ], [ -0.69653, 52.49906 ], [ -0.69934, 52.49788 ], [ -0.69984, 52.49843 ], [ -0.69963, 52.49867 ], [ -0.70011, 52.49899 ], [ -0.69939, 52.49941 ], [ -0.69988, 52.49978 ], [ -0.6982, 52.50128 ], [ -0.69797, 52.50158 ], [ -0.69914, 52.50319 ], [ -0.70014, 52.50285 ], [ -0.70128, 52.50245 ], [ -0.70364, 52.50183 ], [ -0.70723, 52.50183 ], [ -0.70773, 52.50192 ], [ -0.70921, 52.50249 ], [ -0.70864, 52.50252 ], [ -0.70821, 52.50307 ], [ -0.70837, 52.50341 ], [ -0.70722, 52.50389 ], [ -0.70671, 52.50416 ], [ -0.70752, 52.50467 ], [ -0.70654, 52.5053 ], [ -0.70635, 52.50637 ], [ -0.70483, 52.50601 ], [ -0.70413, 52.50537 ], [ -0.70348, 52.50611 ], [ -0.70623, 52.5071 ], [ -0.70873, 52.50726 ], [ -0.71108, 52.50792 ], [ -0.71063, 52.50851 ], [ -0.70886, 52.50799 ], [ -0.70747, 52.51144 ], [ -0.70585, 52.5124 ], [ -0.7026, 52.5141 ], [ -0.69319, 52.51518 ], [ -0.69073, 52.51401 ], [ -0.69128, 52.51122 ], [ -0.68736, 52.51112 ], [ -0.68373, 52.51171 ], [ -0.68143, 52.50683 ], [ -0.68084, 52.50327 ], [ -0.68096, 52.50201 ], [ -0.68387, 52.50183 ], [ -0.68611, 52.50182 ], [ -0.68769, 52.50186 ], [ -0.68984, 52.50053 ], [ -0.68993, 52.50036 ], [ -0.69014, 52.49997 ], [ -0.68931, 52.49879 ], [ -0.69037, 52.49837 ], [ -0.69189, 52.49777 ], [ -0.69244, 52.49755 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Corby", "bua_code": "E35001263", "msoa_code": "E02005613", "population": 9215, "outputarea_code": "E00137164", "lsoa_code": "E01026970", "la_name": "Corby", "bua_name": "Corby BUASD", "constituency_name": "Corby", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.71048, "latitude": 52.50032, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.71667, 52.4963 ], [ -0.71637, 52.49759 ], [ -0.71579, 52.49785 ], [ -0.71563, 52.49887 ], [ -0.71637, 52.49876 ], [ -0.71687, 52.49777 ], [ -0.71853, 52.49812 ], [ -0.71751, 52.49944 ], [ -0.71874, 52.49887 ], [ -0.71881, 52.4994 ], [ -0.72013, 52.49921 ], [ -0.72067, 52.49943 ], [ -0.72066, 52.49985 ], [ -0.72148, 52.49989 ], [ -0.72128, 52.50039 ], [ -0.72063, 52.50046 ], [ -0.72064, 52.50151 ], [ -0.71979, 52.5018 ], [ -0.7201, 52.5021 ], [ -0.72108, 52.50305 ], [ -0.72314, 52.50373 ], [ -0.72196, 52.50503 ], [ -0.71948, 52.50783 ], [ -0.71753, 52.51006 ], [ -0.71779, 52.5106 ], [ -0.71511, 52.51116 ], [ -0.71575, 52.51001 ], [ -0.71063, 52.50851 ], [ -0.71108, 52.50792 ], [ -0.70873, 52.50726 ], [ -0.70623, 52.5071 ], [ -0.70348, 52.50611 ], [ -0.70413, 52.50537 ], [ -0.70483, 52.50601 ], [ -0.70635, 52.50637 ], [ -0.70654, 52.5053 ], [ -0.70752, 52.50467 ], [ -0.70671, 52.50416 ], [ -0.70722, 52.50389 ], [ -0.70837, 52.50341 ], [ -0.70821, 52.50307 ], [ -0.70864, 52.50252 ], [ -0.70921, 52.50249 ], [ -0.70773, 52.50192 ], [ -0.70723, 52.50183 ], [ -0.70364, 52.50183 ], [ -0.70128, 52.50245 ], [ -0.70014, 52.50285 ], [ -0.69914, 52.50319 ], [ -0.69797, 52.50158 ], [ -0.6982, 52.50128 ], [ -0.69988, 52.49978 ], [ -0.69939, 52.49941 ], [ -0.70011, 52.49899 ], [ -0.69963, 52.49867 ], [ -0.69984, 52.49843 ], [ -0.69934, 52.49788 ], [ -0.69653, 52.49906 ], [ -0.6962, 52.49875 ], [ -0.69685, 52.49807 ], [ -0.69629, 52.49738 ], [ -0.69704, 52.49707 ], [ -0.69793, 52.4977 ], [ -0.69877, 52.49731 ], [ -0.69688, 52.49581 ], [ -0.69816, 52.49531 ], [ -0.69966, 52.49472 ], [ -0.70119, 52.49411 ], [ -0.70316, 52.49344 ], [ -0.70597, 52.49292 ], [ -0.7055, 52.49137 ], [ -0.70558, 52.491 ], [ -0.70925, 52.49117 ], [ -0.71204, 52.49276 ], [ -0.71652, 52.49276 ], [ -0.71654, 52.49302 ], [ -0.71667, 52.4963 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Corby", "bua_code": "E35001263", "msoa_code": "E02005614", "population": 3645, "outputarea_code": "E00137107", "lsoa_code": "E01026957", "la_name": "Corby", "bua_name": "Corby BUASD", "constituency_name": "Corby", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.67054, "latitude": 52.49676, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.65911, 52.49424 ], [ -0.66267, 52.49325 ], [ -0.66463, 52.48994 ], [ -0.66666, 52.48967 ], [ -0.67038, 52.49009 ], [ -0.67026, 52.48981 ], [ -0.67077, 52.48969 ], [ -0.67092, 52.48996 ], [ -0.67329, 52.48914 ], [ -0.67398, 52.48854 ], [ -0.67389, 52.48785 ], [ -0.67597, 52.48658 ], [ -0.67394, 52.48422 ], [ -0.67283, 52.48421 ], [ -0.67267, 52.4827 ], [ -0.67191, 52.48129 ], [ -0.67221, 52.48003 ], [ -0.67175, 52.47896 ], [ -0.67311, 52.47807 ], [ -0.67671, 52.47765 ], [ -0.67873, 52.47641 ], [ -0.68481, 52.47827 ], [ -0.68556, 52.47725 ], [ -0.68663, 52.4768 ], [ -0.68818, 52.47678 ], [ -0.68956, 52.47556 ], [ -0.69288, 52.47657 ], [ -0.69267, 52.47714 ], [ -0.69197, 52.47906 ], [ -0.69147, 52.48045 ], [ -0.69073, 52.48248 ], [ -0.68916, 52.48677 ], [ -0.68767, 52.49029 ], [ -0.68671, 52.49176 ], [ -0.68569, 52.49304 ], [ -0.68641, 52.49305 ], [ -0.68715, 52.49413 ], [ -0.68789, 52.495 ], [ -0.68936, 52.49456 ], [ -0.68953, 52.49473 ], [ -0.68923, 52.49503 ], [ -0.68961, 52.49549 ], [ -0.68879, 52.49676 ], [ -0.68952, 52.49663 ], [ -0.69043, 52.49771 ], [ -0.69005, 52.498 ], [ -0.69037, 52.49837 ], [ -0.68931, 52.49879 ], [ -0.69014, 52.49997 ], [ -0.68993, 52.50036 ], [ -0.68984, 52.50053 ], [ -0.68769, 52.50186 ], [ -0.68611, 52.50182 ], [ -0.68387, 52.50183 ], [ -0.68096, 52.50201 ], [ -0.68084, 52.50327 ], [ -0.68143, 52.50683 ], [ -0.68373, 52.51171 ], [ -0.67991, 52.51267 ], [ -0.67467, 52.51322 ], [ -0.67375, 52.50933 ], [ -0.67197, 52.50683 ], [ -0.67143, 52.50671 ], [ -0.66978, 52.50753 ], [ -0.66781, 52.50787 ], [ -0.66416, 52.50826 ], [ -0.66313, 52.50805 ], [ -0.6628, 52.50814 ], [ -0.6606, 52.50859 ], [ -0.65818, 52.50964 ], [ -0.65797, 52.51043 ], [ -0.65689, 52.5115 ], [ -0.65383, 52.51226 ], [ -0.65153, 52.51348 ], [ -0.64993, 52.51393 ], [ -0.6492, 52.51158 ], [ -0.64942, 52.511 ], [ -0.64825, 52.50892 ], [ -0.64557, 52.50708 ], [ -0.64336, 52.50615 ], [ -0.64398, 52.50331 ], [ -0.64168, 52.49898 ], [ -0.64502, 52.49914 ], [ -0.64591, 52.49711 ], [ -0.64705, 52.49726 ], [ -0.64922, 52.49748 ], [ -0.65186, 52.49646 ], [ -0.6516, 52.49593 ], [ -0.65395, 52.49571 ], [ -0.65911, 52.49424 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Corby", "bua_code": "E35001263", "msoa_code": "E02005615", "population": 8691, "outputarea_code": "E00137129", "lsoa_code": "E01026962", "la_name": "Corby", "bua_name": "Corby BUASD", "constituency_name": "Corby", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.72527, "latitude": 52.48996, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.73501, 52.4757 ], [ -0.73912, 52.47665 ], [ -0.73485, 52.48215 ], [ -0.73407, 52.484 ], [ -0.73277, 52.48711 ], [ -0.73282, 52.48876 ], [ -0.73258, 52.49051 ], [ -0.73106, 52.49362 ], [ -0.73075, 52.49422 ], [ -0.72902, 52.49714 ], [ -0.72672, 52.49976 ], [ -0.72314, 52.50373 ], [ -0.72108, 52.50305 ], [ -0.7201, 52.5021 ], [ -0.71979, 52.5018 ], [ -0.72064, 52.50151 ], [ -0.72063, 52.50046 ], [ -0.72128, 52.50039 ], [ -0.72148, 52.49989 ], [ -0.72066, 52.49985 ], [ -0.72067, 52.49943 ], [ -0.72013, 52.49921 ], [ -0.71881, 52.4994 ], [ -0.71874, 52.49887 ], [ -0.71751, 52.49944 ], [ -0.71853, 52.49812 ], [ -0.71687, 52.49777 ], [ -0.71637, 52.49876 ], [ -0.71563, 52.49887 ], [ -0.71579, 52.49785 ], [ -0.71637, 52.49759 ], [ -0.71667, 52.4963 ], [ -0.71654, 52.49302 ], [ -0.71652, 52.49276 ], [ -0.71204, 52.49276 ], [ -0.70925, 52.49117 ], [ -0.71115, 52.4908 ], [ -0.71382, 52.48856 ], [ -0.71666, 52.48939 ], [ -0.71668, 52.4876 ], [ -0.71663, 52.486 ], [ -0.71718, 52.48583 ], [ -0.71767, 52.48503 ], [ -0.71792, 52.48544 ], [ -0.71885, 52.48548 ], [ -0.71929, 52.48563 ], [ -0.71906, 52.48593 ], [ -0.7183, 52.48591 ], [ -0.71792, 52.4867 ], [ -0.71834, 52.48688 ], [ -0.71904, 52.48657 ], [ -0.71958, 52.48692 ], [ -0.72051, 52.48632 ], [ -0.72099, 52.48694 ], [ -0.72222, 52.48657 ], [ -0.72277, 52.48676 ], [ -0.72361, 52.48639 ], [ -0.72537, 52.48644 ], [ -0.72618, 52.4862 ], [ -0.72597, 52.48504 ], [ -0.72764, 52.48486 ], [ -0.72718, 52.48338 ], [ -0.72701, 52.48286 ], [ -0.72685, 52.48236 ], [ -0.7261, 52.48162 ], [ -0.72474, 52.4815 ], [ -0.7244, 52.48084 ], [ -0.72532, 52.48061 ], [ -0.72882, 52.47993 ], [ -0.73028, 52.47992 ], [ -0.73099, 52.47954 ], [ -0.73305, 52.4752 ], [ -0.73501, 52.4757 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Corby", "bua_code": "E35001263", "msoa_code": "E02005616", "population": 5692, "outputarea_code": "E00137070", "lsoa_code": "E01026952", "la_name": "Corby", "bua_name": "Corby BUASD", "constituency_name": "Corby", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.69712, "latitude": 52.48858, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.69841, 52.47924 ], [ -0.69927, 52.47938 ], [ -0.70398, 52.48064 ], [ -0.704, 52.48068 ], [ -0.70264, 52.48184 ], [ -0.70091, 52.48279 ], [ -0.69937, 52.48361 ], [ -0.69858, 52.48415 ], [ -0.69842, 52.48429 ], [ -0.69801, 52.48477 ], [ -0.6979, 52.48494 ], [ -0.70494, 52.48646 ], [ -0.71382, 52.48856 ], [ -0.71115, 52.4908 ], [ -0.70925, 52.49117 ], [ -0.70558, 52.491 ], [ -0.7055, 52.49137 ], [ -0.70597, 52.49292 ], [ -0.70316, 52.49344 ], [ -0.70119, 52.49411 ], [ -0.69966, 52.49472 ], [ -0.69816, 52.49531 ], [ -0.69688, 52.49581 ], [ -0.6961, 52.49612 ], [ -0.69502, 52.49654 ], [ -0.69244, 52.49755 ], [ -0.69189, 52.49777 ], [ -0.69037, 52.49837 ], [ -0.69005, 52.498 ], [ -0.69043, 52.49771 ], [ -0.68952, 52.49663 ], [ -0.68879, 52.49676 ], [ -0.68961, 52.49549 ], [ -0.68923, 52.49503 ], [ -0.68953, 52.49473 ], [ -0.68936, 52.49456 ], [ -0.68789, 52.495 ], [ -0.68715, 52.49413 ], [ -0.68641, 52.49305 ], [ -0.68569, 52.49304 ], [ -0.68671, 52.49176 ], [ -0.68767, 52.49029 ], [ -0.68916, 52.48677 ], [ -0.69073, 52.48248 ], [ -0.69147, 52.48045 ], [ -0.69197, 52.47906 ], [ -0.69408, 52.47891 ], [ -0.69841, 52.47924 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Corby", "bua_code": "E35001263", "msoa_code": "E02005617", "population": 10648, "outputarea_code": "E00137119", "lsoa_code": "E01026959", "la_name": "Corby", "bua_name": "Corby BUASD", "constituency_name": "Corby", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.71723, "latitude": 52.48046, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.71629, 52.47396 ], [ -0.71772, 52.47301 ], [ -0.72025, 52.47225 ], [ -0.72319, 52.47065 ], [ -0.72344, 52.47077 ], [ -0.72573, 52.47192 ], [ -0.72615, 52.47212 ], [ -0.72767, 52.47288 ], [ -0.72949, 52.47371 ], [ -0.73021, 52.47402 ], [ -0.73305, 52.4752 ], [ -0.73099, 52.47954 ], [ -0.73028, 52.47992 ], [ -0.72882, 52.47993 ], [ -0.72532, 52.48061 ], [ -0.7244, 52.48084 ], [ -0.72474, 52.4815 ], [ -0.7261, 52.48162 ], [ -0.72685, 52.48236 ], [ -0.72701, 52.48286 ], [ -0.72718, 52.48338 ], [ -0.72764, 52.48486 ], [ -0.72597, 52.48504 ], [ -0.72618, 52.4862 ], [ -0.72537, 52.48644 ], [ -0.72361, 52.48639 ], [ -0.72277, 52.48676 ], [ -0.72222, 52.48657 ], [ -0.72099, 52.48694 ], [ -0.72051, 52.48632 ], [ -0.71958, 52.48692 ], [ -0.71904, 52.48657 ], [ -0.71834, 52.48688 ], [ -0.71792, 52.4867 ], [ -0.7183, 52.48591 ], [ -0.71906, 52.48593 ], [ -0.71929, 52.48563 ], [ -0.71885, 52.48548 ], [ -0.71792, 52.48544 ], [ -0.71767, 52.48503 ], [ -0.71718, 52.48583 ], [ -0.71663, 52.486 ], [ -0.71668, 52.4876 ], [ -0.71666, 52.48939 ], [ -0.71382, 52.48856 ], [ -0.70494, 52.48646 ], [ -0.6979, 52.48494 ], [ -0.69801, 52.48477 ], [ -0.69842, 52.48429 ], [ -0.69858, 52.48415 ], [ -0.69937, 52.48361 ], [ -0.70091, 52.48279 ], [ -0.70264, 52.48184 ], [ -0.704, 52.48068 ], [ -0.70611, 52.47919 ], [ -0.70998, 52.47768 ], [ -0.71067, 52.47739 ], [ -0.71375, 52.47557 ], [ -0.71458, 52.47503 ], [ -0.71539, 52.47452 ], [ -0.71629, 52.47396 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Corby", "bua_code": "E35001263", "msoa_code": "E02006862", "population": 6461, "outputarea_code": "E00137088", "lsoa_code": "E01026953", "la_name": "Corby", "bua_name": "Corby BUASD", "constituency_name": "Corby", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.72754, "latitude": 52.46549, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.71672, 52.46696 ], [ -0.71584, 52.46592 ], [ -0.71511, 52.46568 ], [ -0.71402, 52.46577 ], [ -0.71362, 52.46544 ], [ -0.71125, 52.4635 ], [ -0.70989, 52.46291 ], [ -0.70921, 52.46187 ], [ -0.7048, 52.46238 ], [ -0.70572, 52.46224 ], [ -0.70791, 52.46044 ], [ -0.70938, 52.45986 ], [ -0.71676, 52.45741 ], [ -0.72022, 52.45678 ], [ -0.72268, 52.45949 ], [ -0.72279, 52.45978 ], [ -0.72608, 52.4589 ], [ -0.73181, 52.45824 ], [ -0.73294, 52.45856 ], [ -0.73447, 52.45792 ], [ -0.73803, 52.45809 ], [ -0.73797, 52.45952 ], [ -0.73855, 52.46295 ], [ -0.73978, 52.46425 ], [ -0.73978, 52.46556 ], [ -0.74157, 52.47013 ], [ -0.7407, 52.47259 ], [ -0.74116, 52.47409 ], [ -0.74014, 52.4754 ], [ -0.73912, 52.47665 ], [ -0.73501, 52.4757 ], [ -0.73305, 52.4752 ], [ -0.73021, 52.47402 ], [ -0.72949, 52.47371 ], [ -0.72767, 52.47288 ], [ -0.72615, 52.47212 ], [ -0.72573, 52.47192 ], [ -0.72344, 52.47077 ], [ -0.72319, 52.47065 ], [ -0.72108, 52.46947 ], [ -0.71937, 52.46845 ], [ -0.71807, 52.46745 ], [ -0.71672, 52.46696 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Corby", "bua_code": "E35001263", "msoa_code": "E02006863", "population": 11453, "outputarea_code": "E00137138", "lsoa_code": "E01032964", "la_name": "Corby", "bua_name": "Corby BUASD", "constituency_name": "Corby", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.70639, "latitude": 52.47163, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.70135, 52.46497 ], [ -0.70469, 52.46299 ], [ -0.7048, 52.46238 ], [ -0.70921, 52.46187 ], [ -0.70989, 52.46291 ], [ -0.71125, 52.4635 ], [ -0.71362, 52.46544 ], [ -0.71402, 52.46577 ], [ -0.71511, 52.46568 ], [ -0.71584, 52.46592 ], [ -0.71672, 52.46696 ], [ -0.71807, 52.46745 ], [ -0.71937, 52.46845 ], [ -0.72108, 52.46947 ], [ -0.72319, 52.47065 ], [ -0.72025, 52.47225 ], [ -0.71772, 52.47301 ], [ -0.71629, 52.47396 ], [ -0.71539, 52.47452 ], [ -0.71458, 52.47503 ], [ -0.71375, 52.47557 ], [ -0.71067, 52.47739 ], [ -0.70998, 52.47768 ], [ -0.70611, 52.47919 ], [ -0.704, 52.48068 ], [ -0.70398, 52.48064 ], [ -0.69927, 52.47938 ], [ -0.69841, 52.47924 ], [ -0.69408, 52.47891 ], [ -0.69197, 52.47906 ], [ -0.69267, 52.47714 ], [ -0.69288, 52.47657 ], [ -0.69326, 52.47662 ], [ -0.69404, 52.47471 ], [ -0.69491, 52.47288 ], [ -0.69697, 52.46964 ], [ -0.70135, 52.46497 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Daventry", "bua_code": "E34000473", "msoa_code": "E02005624", "population": 8702, "outputarea_code": "E00137248", "lsoa_code": "E01026990", "la_name": "Daventry", "bua_name": "Daventry BUA", "constituency_name": "Daventry", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.16069, "latitude": 52.27131, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.14624, 52.25566 ], [ -1.14676, 52.25578 ], [ -1.14664, 52.25658 ], [ -1.14723, 52.25717 ], [ -1.14673, 52.25725 ], [ -1.14691, 52.258 ], [ -1.14801, 52.25809 ], [ -1.14967, 52.25771 ], [ -1.15035, 52.25926 ], [ -1.14941, 52.26015 ], [ -1.14948, 52.26075 ], [ -1.15379, 52.26004 ], [ -1.15602, 52.25955 ], [ -1.15614, 52.25992 ], [ -1.15658, 52.26104 ], [ -1.1575, 52.26101 ], [ -1.15789, 52.2613 ], [ -1.16192, 52.26054 ], [ -1.16424, 52.26004 ], [ -1.16502, 52.2603 ], [ -1.1644, 52.26104 ], [ -1.1653, 52.2609 ], [ -1.16572, 52.26227 ], [ -1.16649, 52.26308 ], [ -1.16687, 52.26383 ], [ -1.16835, 52.265 ], [ -1.16984, 52.2655 ], [ -1.1683, 52.26596 ], [ -1.16733, 52.26576 ], [ -1.1679, 52.26607 ], [ -1.16785, 52.26651 ], [ -1.16574, 52.26692 ], [ -1.1659, 52.26725 ], [ -1.16633, 52.26816 ], [ -1.16691, 52.26808 ], [ -1.16752, 52.26909 ], [ -1.16833, 52.2691 ], [ -1.16824, 52.2697 ], [ -1.16961, 52.26959 ], [ -1.17095, 52.26958 ], [ -1.16992, 52.27069 ], [ -1.16854, 52.27092 ], [ -1.16886, 52.27134 ], [ -1.17202, 52.27197 ], [ -1.17213, 52.27277 ], [ -1.1735, 52.2735 ], [ -1.17953, 52.27124 ], [ -1.18397, 52.26882 ], [ -1.18394, 52.26852 ], [ -1.18789, 52.27031 ], [ -1.19286, 52.2734 ], [ -1.1907, 52.27473 ], [ -1.18886, 52.27714 ], [ -1.18743, 52.27689 ], [ -1.18658, 52.27797 ], [ -1.18168, 52.27746 ], [ -1.1767, 52.28004 ], [ -1.17609, 52.27989 ], [ -1.17564, 52.28023 ], [ -1.17407, 52.2792 ], [ -1.17491, 52.27825 ], [ -1.17655, 52.27745 ], [ -1.17361, 52.27713 ], [ -1.1725, 52.27712 ], [ -1.16925, 52.27803 ], [ -1.17009, 52.27944 ], [ -1.16769, 52.28038 ], [ -1.16801, 52.28119 ], [ -1.16867, 52.28262 ], [ -1.16963, 52.2848 ], [ -1.16576, 52.28497 ], [ -1.16452, 52.28385 ], [ -1.16342, 52.28373 ], [ -1.16226, 52.28304 ], [ -1.16104, 52.28168 ], [ -1.15954, 52.28126 ], [ -1.15561, 52.28164 ], [ -1.15271, 52.2815 ], [ -1.15203, 52.28128 ], [ -1.15207, 52.28088 ], [ -1.15116, 52.28073 ], [ -1.15095, 52.28096 ], [ -1.15007, 52.28035 ], [ -1.14887, 52.28063 ], [ -1.14554, 52.28045 ], [ -1.14539, 52.28012 ], [ -1.14423, 52.27979 ], [ -1.14121, 52.28041 ], [ -1.14366, 52.27868 ], [ -1.14369, 52.27814 ], [ -1.14534, 52.27642 ], [ -1.14633, 52.27598 ], [ -1.14683, 52.27467 ], [ -1.14853, 52.27276 ], [ -1.14933, 52.27175 ], [ -1.14916, 52.27096 ], [ -1.14232, 52.26847 ], [ -1.1423, 52.26802 ], [ -1.13739, 52.26565 ], [ -1.13651, 52.2648 ], [ -1.13609, 52.2632 ], [ -1.13544, 52.26252 ], [ -1.13675, 52.26279 ], [ -1.13905, 52.26207 ], [ -1.14074, 52.26087 ], [ -1.14198, 52.25942 ], [ -1.14241, 52.25891 ], [ -1.14232, 52.25794 ], [ -1.14557, 52.25826 ], [ -1.14634, 52.25783 ], [ -1.14624, 52.25566 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Daventry", "bua_code": "E34000473", "msoa_code": "E02005625", "population": 9381, "outputarea_code": "E00137250", "lsoa_code": "E01026986", "la_name": "Daventry", "bua_name": "Daventry BUA", "constituency_name": "Daventry", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.16839, "latitude": 52.26037, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.16093, 52.24972 ], [ -1.16358, 52.25043 ], [ -1.16391, 52.25051 ], [ -1.16651, 52.25158 ], [ -1.16702, 52.25194 ], [ -1.16752, 52.25238 ], [ -1.16793, 52.25286 ], [ -1.16838, 52.25268 ], [ -1.17065, 52.25403 ], [ -1.17089, 52.25307 ], [ -1.17199, 52.25244 ], [ -1.17317, 52.25405 ], [ -1.17557, 52.25365 ], [ -1.17574, 52.25399 ], [ -1.17631, 52.25382 ], [ -1.17654, 52.25409 ], [ -1.17581, 52.2546 ], [ -1.17265, 52.25533 ], [ -1.17399, 52.25631 ], [ -1.17307, 52.25727 ], [ -1.17472, 52.25678 ], [ -1.17761, 52.25829 ], [ -1.17849, 52.25901 ], [ -1.17845, 52.25935 ], [ -1.17841, 52.25944 ], [ -1.17583, 52.26133 ], [ -1.17995, 52.26321 ], [ -1.18169, 52.26219 ], [ -1.18258, 52.26302 ], [ -1.18061, 52.26393 ], [ -1.1818, 52.2649 ], [ -1.18047, 52.26563 ], [ -1.18008, 52.26643 ], [ -1.18394, 52.26852 ], [ -1.18397, 52.26882 ], [ -1.17953, 52.27124 ], [ -1.1735, 52.2735 ], [ -1.17213, 52.27277 ], [ -1.17202, 52.27197 ], [ -1.16886, 52.27134 ], [ -1.16854, 52.27092 ], [ -1.16992, 52.27069 ], [ -1.17095, 52.26958 ], [ -1.16961, 52.26959 ], [ -1.16824, 52.2697 ], [ -1.16833, 52.2691 ], [ -1.16752, 52.26909 ], [ -1.16691, 52.26808 ], [ -1.16633, 52.26816 ], [ -1.1659, 52.26725 ], [ -1.16574, 52.26692 ], [ -1.16785, 52.26651 ], [ -1.1679, 52.26607 ], [ -1.16733, 52.26576 ], [ -1.1683, 52.26596 ], [ -1.16984, 52.2655 ], [ -1.16835, 52.265 ], [ -1.16687, 52.26383 ], [ -1.16649, 52.26308 ], [ -1.16572, 52.26227 ], [ -1.1653, 52.2609 ], [ -1.1644, 52.26104 ], [ -1.16502, 52.2603 ], [ -1.16424, 52.26004 ], [ -1.16192, 52.26054 ], [ -1.15789, 52.2613 ], [ -1.1575, 52.26101 ], [ -1.15658, 52.26104 ], [ -1.15614, 52.25992 ], [ -1.15602, 52.25955 ], [ -1.15443, 52.25556 ], [ -1.15442, 52.25552 ], [ -1.15345, 52.25342 ], [ -1.15254, 52.25177 ], [ -1.15229, 52.25143 ], [ -1.15402, 52.25063 ], [ -1.15675, 52.2494 ], [ -1.15527, 52.24815 ], [ -1.16093, 52.24972 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Daventry", "bua_code": "E34000473", "msoa_code": "E02005626", "population": 6830, "outputarea_code": "E00137354", "lsoa_code": "E01027007", "la_name": "Daventry", "bua_name": "Daventry BUA", "constituency_name": "Daventry", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.16913, "latitude": 52.25442, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.16319, 52.24543 ], [ -1.16467, 52.24612 ], [ -1.17002, 52.24508 ], [ -1.17051, 52.24579 ], [ -1.17312, 52.24557 ], [ -1.17411, 52.24646 ], [ -1.17357, 52.24672 ], [ -1.17372, 52.24697 ], [ -1.17493, 52.24674 ], [ -1.18002, 52.24598 ], [ -1.18837, 52.24586 ], [ -1.18973, 52.24559 ], [ -1.19439, 52.24588 ], [ -1.19501, 52.24603 ], [ -1.19503, 52.24663 ], [ -1.19478, 52.24759 ], [ -1.19412, 52.24809 ], [ -1.19421, 52.24904 ], [ -1.19356, 52.2498 ], [ -1.19287, 52.25002 ], [ -1.19316, 52.25071 ], [ -1.19137, 52.25193 ], [ -1.19136, 52.25354 ], [ -1.19079, 52.25445 ], [ -1.19088, 52.25641 ], [ -1.1908, 52.2584 ], [ -1.19134, 52.25923 ], [ -1.19179, 52.25969 ], [ -1.19052, 52.26101 ], [ -1.1914, 52.26157 ], [ -1.19193, 52.26257 ], [ -1.19142, 52.2648 ], [ -1.19358, 52.26499 ], [ -1.19328, 52.26799 ], [ -1.19516, 52.26791 ], [ -1.19544, 52.2679 ], [ -1.19664, 52.26783 ], [ -1.19934, 52.26865 ], [ -1.196, 52.27024 ], [ -1.19735, 52.27181 ], [ -1.19638, 52.27261 ], [ -1.19535, 52.2729 ], [ -1.19521, 52.27296 ], [ -1.19333, 52.27359 ], [ -1.19286, 52.2734 ], [ -1.18789, 52.27031 ], [ -1.18394, 52.26852 ], [ -1.18008, 52.26643 ], [ -1.18047, 52.26563 ], [ -1.1818, 52.2649 ], [ -1.18061, 52.26393 ], [ -1.18258, 52.26302 ], [ -1.18169, 52.26219 ], [ -1.17995, 52.26321 ], [ -1.17583, 52.26133 ], [ -1.17841, 52.25944 ], [ -1.17845, 52.25935 ], [ -1.17849, 52.25901 ], [ -1.17761, 52.25829 ], [ -1.17472, 52.25678 ], [ -1.17307, 52.25727 ], [ -1.17399, 52.25631 ], [ -1.17265, 52.25533 ], [ -1.17581, 52.2546 ], [ -1.17654, 52.25409 ], [ -1.17631, 52.25382 ], [ -1.17574, 52.25399 ], [ -1.17557, 52.25365 ], [ -1.17317, 52.25405 ], [ -1.17199, 52.25244 ], [ -1.17089, 52.25307 ], [ -1.17065, 52.25403 ], [ -1.16838, 52.25268 ], [ -1.16793, 52.25286 ], [ -1.16752, 52.25238 ], [ -1.16702, 52.25194 ], [ -1.16651, 52.25158 ], [ -1.16391, 52.25051 ], [ -1.16358, 52.25043 ], [ -1.16093, 52.24972 ], [ -1.15527, 52.24815 ], [ -1.15675, 52.2494 ], [ -1.15402, 52.25063 ], [ -1.15229, 52.25143 ], [ -1.15254, 52.25177 ], [ -1.15345, 52.25342 ], [ -1.15442, 52.25552 ], [ -1.15443, 52.25556 ], [ -1.15602, 52.25955 ], [ -1.15379, 52.26004 ], [ -1.14948, 52.26075 ], [ -1.14941, 52.26015 ], [ -1.15035, 52.25926 ], [ -1.14967, 52.25771 ], [ -1.14801, 52.25809 ], [ -1.14691, 52.258 ], [ -1.14673, 52.25725 ], [ -1.14723, 52.25717 ], [ -1.14664, 52.25658 ], [ -1.14676, 52.25578 ], [ -1.14624, 52.25566 ], [ -1.14634, 52.25783 ], [ -1.14557, 52.25826 ], [ -1.14232, 52.25794 ], [ -1.14241, 52.25891 ], [ -1.14198, 52.25942 ], [ -1.14074, 52.26087 ], [ -1.13905, 52.26207 ], [ -1.13675, 52.26279 ], [ -1.13544, 52.26252 ], [ -1.13539, 52.26022 ], [ -1.13464, 52.25902 ], [ -1.13493, 52.25793 ], [ -1.1365, 52.25624 ], [ -1.13604, 52.25404 ], [ -1.13638, 52.25293 ], [ -1.13704, 52.25222 ], [ -1.138, 52.25199 ], [ -1.14, 52.25237 ], [ -1.14204, 52.2481 ], [ -1.14212, 52.24612 ], [ -1.14544, 52.24526 ], [ -1.14693, 52.24535 ], [ -1.14652, 52.24279 ], [ -1.14804, 52.24289 ], [ -1.15093, 52.24194 ], [ -1.15383, 52.24178 ], [ -1.15584, 52.24248 ], [ -1.15822, 52.24437 ], [ -1.15955, 52.2448 ], [ -1.16254, 52.24499 ], [ -1.16319, 52.24543 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002796", "population": 6065, "outputarea_code": "E00067965", "lsoa_code": "E01013462", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Mid Derbyshire", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.48354, "latitude": 52.95802, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.49747, 52.94886 ], [ -1.49641, 52.94961 ], [ -1.49638, 52.95003 ], [ -1.49965, 52.95087 ], [ -1.49982, 52.95128 ], [ -1.49919, 52.95229 ], [ -1.49978, 52.95242 ], [ -1.49973, 52.95269 ], [ -1.49886, 52.95302 ], [ -1.49954, 52.95353 ], [ -1.4957, 52.95345 ], [ -1.497, 52.95362 ], [ -1.4965, 52.95382 ], [ -1.49714, 52.95386 ], [ -1.49731, 52.95414 ], [ -1.49767, 52.95588 ], [ -1.49776, 52.95605 ], [ -1.49797, 52.95683 ], [ -1.49704, 52.95796 ], [ -1.49628, 52.95923 ], [ -1.49492, 52.96021 ], [ -1.49447, 52.96019 ], [ -1.49643, 52.96322 ], [ -1.49656, 52.96394 ], [ -1.49605, 52.96408 ], [ -1.49647, 52.96497 ], [ -1.4954, 52.96506 ], [ -1.49541, 52.96588 ], [ -1.4944, 52.96609 ], [ -1.49227, 52.96638 ], [ -1.49197, 52.96592 ], [ -1.49069, 52.96619 ], [ -1.48531, 52.96621 ], [ -1.48333, 52.96679 ], [ -1.48362, 52.96727 ], [ -1.48116, 52.96815 ], [ -1.48031, 52.96807 ], [ -1.48009, 52.96812 ], [ -1.47966, 52.96754 ], [ -1.48032, 52.96737 ], [ -1.48024, 52.9672 ], [ -1.47849, 52.96464 ], [ -1.47763, 52.96441 ], [ -1.47664, 52.96435 ], [ -1.47463, 52.96593 ], [ -1.47346, 52.96526 ], [ -1.47164, 52.96481 ], [ -1.46774, 52.96494 ], [ -1.46651, 52.96227 ], [ -1.46784, 52.96066 ], [ -1.46783, 52.95978 ], [ -1.4662, 52.95761 ], [ -1.46759, 52.95569 ], [ -1.47024, 52.95492 ], [ -1.47499, 52.95242 ], [ -1.47755, 52.95114 ], [ -1.48088, 52.95004 ], [ -1.48401, 52.94829 ], [ -1.48522, 52.94631 ], [ -1.48599, 52.94636 ], [ -1.48551, 52.9482 ], [ -1.48669, 52.94837 ], [ -1.48704, 52.94872 ], [ -1.48778, 52.95056 ], [ -1.48838, 52.95066 ], [ -1.48936, 52.95 ], [ -1.4897, 52.94989 ], [ -1.48988, 52.95017 ], [ -1.4903, 52.94993 ], [ -1.49066, 52.94979 ], [ -1.49092, 52.9501 ], [ -1.49028, 52.9514 ], [ -1.49056, 52.95251 ], [ -1.4909, 52.95243 ], [ -1.49086, 52.9517 ], [ -1.49148, 52.95168 ], [ -1.49147, 52.95144 ], [ -1.49254, 52.94928 ], [ -1.49312, 52.94943 ], [ -1.49369, 52.94888 ], [ -1.49346, 52.9485 ], [ -1.49685, 52.94799 ], [ -1.49705, 52.94822 ], [ -1.4974, 52.94797 ], [ -1.49783, 52.94821 ], [ -1.49708, 52.9486 ], [ -1.49747, 52.94886 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002797", "population": 7501, "outputarea_code": "E00067960", "lsoa_code": "E01013467", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Mid Derbyshire", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.50147, "latitude": 52.94183, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.48555, 52.94571 ], [ -1.48722, 52.94369 ], [ -1.48883, 52.94241 ], [ -1.4894, 52.94205 ], [ -1.49224, 52.94025 ], [ -1.4936, 52.93893 ], [ -1.49386, 52.9386 ], [ -1.49805, 52.93436 ], [ -1.49869, 52.93254 ], [ -1.50048, 52.93056 ], [ -1.50406, 52.92909 ], [ -1.50449, 52.92917 ], [ -1.50986, 52.92991 ], [ -1.51218, 52.93033 ], [ -1.5141, 52.93071 ], [ -1.52085, 52.93204 ], [ -1.52147, 52.93217 ], [ -1.52126, 52.93239 ], [ -1.51987, 52.9333 ], [ -1.51189, 52.93524 ], [ -1.51097, 52.93815 ], [ -1.50803, 52.93745 ], [ -1.5066, 52.93987 ], [ -1.50777, 52.94085 ], [ -1.50778, 52.94182 ], [ -1.50777, 52.94373 ], [ -1.50822, 52.94419 ], [ -1.50791, 52.94444 ], [ -1.50883, 52.94474 ], [ -1.50915, 52.94571 ], [ -1.51067, 52.94633 ], [ -1.50792, 52.94698 ], [ -1.50833, 52.94782 ], [ -1.50766, 52.94794 ], [ -1.5059, 52.94833 ], [ -1.50697, 52.94966 ], [ -1.50764, 52.95219 ], [ -1.50764, 52.95433 ], [ -1.50661, 52.9542 ], [ -1.50343, 52.95564 ], [ -1.49776, 52.95605 ], [ -1.49767, 52.95588 ], [ -1.49731, 52.95414 ], [ -1.49714, 52.95386 ], [ -1.4965, 52.95382 ], [ -1.497, 52.95362 ], [ -1.4957, 52.95345 ], [ -1.49954, 52.95353 ], [ -1.49886, 52.95302 ], [ -1.49973, 52.95269 ], [ -1.49978, 52.95242 ], [ -1.49919, 52.95229 ], [ -1.49982, 52.95128 ], [ -1.49965, 52.95087 ], [ -1.49638, 52.95003 ], [ -1.49641, 52.94961 ], [ -1.49747, 52.94886 ], [ -1.49708, 52.9486 ], [ -1.49783, 52.94821 ], [ -1.4974, 52.94797 ], [ -1.49705, 52.94822 ], [ -1.49685, 52.94799 ], [ -1.49346, 52.9485 ], [ -1.49369, 52.94888 ], [ -1.49312, 52.94943 ], [ -1.49254, 52.94928 ], [ -1.49147, 52.95144 ], [ -1.49148, 52.95168 ], [ -1.49086, 52.9517 ], [ -1.4909, 52.95243 ], [ -1.49056, 52.95251 ], [ -1.49028, 52.9514 ], [ -1.49092, 52.9501 ], [ -1.49066, 52.94979 ], [ -1.4903, 52.94993 ], [ -1.48988, 52.95017 ], [ -1.4897, 52.94989 ], [ -1.48936, 52.95 ], [ -1.48838, 52.95066 ], [ -1.48778, 52.95056 ], [ -1.48704, 52.94872 ], [ -1.48669, 52.94837 ], [ -1.48551, 52.9482 ], [ -1.48599, 52.94636 ], [ -1.48522, 52.94631 ], [ -1.48555, 52.94571 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002798", "population": 9948, "outputarea_code": "E00068530", "lsoa_code": "E01013578", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Mid Derbyshire", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.43079, "latitude": 52.94565, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.42396, 52.93565 ], [ -1.42568, 52.93577 ], [ -1.42572, 52.93606 ], [ -1.42739, 52.93677 ], [ -1.42611, 52.93719 ], [ -1.42633, 52.93745 ], [ -1.42776, 52.93756 ], [ -1.42667, 52.93807 ], [ -1.42656, 52.93863 ], [ -1.42746, 52.93895 ], [ -1.42844, 52.93886 ], [ -1.42877, 52.93915 ], [ -1.42901, 52.93883 ], [ -1.43003, 52.93919 ], [ -1.42975, 52.93939 ], [ -1.43038, 52.93976 ], [ -1.43074, 52.93957 ], [ -1.4319, 52.94033 ], [ -1.43107, 52.94087 ], [ -1.43162, 52.94096 ], [ -1.43247, 52.94184 ], [ -1.43344, 52.94179 ], [ -1.43345, 52.94208 ], [ -1.4349, 52.94132 ], [ -1.43456, 52.94159 ], [ -1.43501, 52.94179 ], [ -1.43568, 52.94194 ], [ -1.43603, 52.9417 ], [ -1.43682, 52.94217 ], [ -1.43881, 52.94336 ], [ -1.43981, 52.94322 ], [ -1.4406, 52.94274 ], [ -1.44169, 52.94314 ], [ -1.44233, 52.94284 ], [ -1.44212, 52.9427 ], [ -1.44276, 52.94265 ], [ -1.44247, 52.94246 ], [ -1.44394, 52.94224 ], [ -1.444, 52.94217 ], [ -1.445, 52.94205 ], [ -1.44613, 52.94294 ], [ -1.44597, 52.94373 ], [ -1.44581, 52.94452 ], [ -1.44872, 52.94465 ], [ -1.44877, 52.94492 ], [ -1.45124, 52.94493 ], [ -1.45152, 52.94495 ], [ -1.45359, 52.94529 ], [ -1.45264, 52.94623 ], [ -1.45275, 52.94746 ], [ -1.45047, 52.94888 ], [ -1.44994, 52.94812 ], [ -1.44745, 52.94873 ], [ -1.44094, 52.94954 ], [ -1.43403, 52.95131 ], [ -1.4317, 52.95064 ], [ -1.42843, 52.95031 ], [ -1.4237, 52.95033 ], [ -1.42025, 52.95072 ], [ -1.41812, 52.95064 ], [ -1.41697, 52.9506 ], [ -1.41689, 52.9506 ], [ -1.40928, 52.95032 ], [ -1.41024, 52.94971 ], [ -1.41518, 52.94657 ], [ -1.41643, 52.94576 ], [ -1.41776, 52.9441 ], [ -1.4223, 52.93932 ], [ -1.42347, 52.93774 ], [ -1.42389, 52.93577 ], [ -1.42396, 52.93565 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002799", "population": 6068, "outputarea_code": "E00068315", "lsoa_code": "E01013532", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby North", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.45506, "latitude": 52.94092, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.44773, 52.93719 ], [ -1.44755, 52.93673 ], [ -1.44832, 52.93655 ], [ -1.44807, 52.93611 ], [ -1.44907, 52.93559 ], [ -1.44868, 52.93564 ], [ -1.44848, 52.93529 ], [ -1.44935, 52.93521 ], [ -1.44962, 52.93488 ], [ -1.45023, 52.93494 ], [ -1.45036, 52.93527 ], [ -1.45136, 52.9354 ], [ -1.45059, 52.93583 ], [ -1.45071, 52.93618 ], [ -1.45133, 52.93632 ], [ -1.45382, 52.93496 ], [ -1.45425, 52.93537 ], [ -1.45507, 52.93513 ], [ -1.45511, 52.93505 ], [ -1.4552, 52.93719 ], [ -1.45586, 52.93744 ], [ -1.45646, 52.93716 ], [ -1.45601, 52.93639 ], [ -1.45668, 52.93641 ], [ -1.45723, 52.93601 ], [ -1.45691, 52.93588 ], [ -1.45757, 52.93571 ], [ -1.45788, 52.93614 ], [ -1.45847, 52.93593 ], [ -1.45903, 52.93625 ], [ -1.45984, 52.93624 ], [ -1.46301, 52.93573 ], [ -1.46394, 52.93596 ], [ -1.46562, 52.93188 ], [ -1.46877, 52.93187 ], [ -1.46802, 52.9372 ], [ -1.46574, 52.94181 ], [ -1.46359, 52.94607 ], [ -1.46257, 52.94984 ], [ -1.45935, 52.94943 ], [ -1.45976, 52.94879 ], [ -1.45861, 52.94848 ], [ -1.45779, 52.94825 ], [ -1.45689, 52.94875 ], [ -1.45299, 52.94836 ], [ -1.45275, 52.94746 ], [ -1.45264, 52.94623 ], [ -1.45359, 52.94529 ], [ -1.45152, 52.94495 ], [ -1.45124, 52.94493 ], [ -1.44877, 52.94492 ], [ -1.44872, 52.94465 ], [ -1.44581, 52.94452 ], [ -1.44597, 52.94373 ], [ -1.44613, 52.94294 ], [ -1.445, 52.94205 ], [ -1.444, 52.94217 ], [ -1.44394, 52.94224 ], [ -1.44247, 52.94246 ], [ -1.44276, 52.94265 ], [ -1.44212, 52.9427 ], [ -1.44233, 52.94284 ], [ -1.44169, 52.94314 ], [ -1.4406, 52.94274 ], [ -1.43981, 52.94322 ], [ -1.43881, 52.94336 ], [ -1.43682, 52.94217 ], [ -1.43707, 52.94184 ], [ -1.43813, 52.94128 ], [ -1.43903, 52.94127 ], [ -1.43896, 52.94087 ], [ -1.43946, 52.94064 ], [ -1.43895, 52.93999 ], [ -1.4375, 52.94066 ], [ -1.43718, 52.94027 ], [ -1.43626, 52.94022 ], [ -1.43619, 52.93873 ], [ -1.43732, 52.9386 ], [ -1.4376, 52.93814 ], [ -1.4383, 52.93859 ], [ -1.43876, 52.93857 ], [ -1.44133, 52.9384 ], [ -1.44521, 52.93818 ], [ -1.4452, 52.93857 ], [ -1.44584, 52.93812 ], [ -1.44511, 52.93744 ], [ -1.44503, 52.93543 ], [ -1.44418, 52.93507 ], [ -1.44485, 52.9348 ], [ -1.44575, 52.93621 ], [ -1.44773, 52.93719 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002800", "population": 7217, "outputarea_code": "E00068272", "lsoa_code": "E01013526", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby North", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.48052, "latitude": 52.94142, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.487, 52.92901 ], [ -1.48795, 52.9296 ], [ -1.48781, 52.92977 ], [ -1.48839, 52.93015 ], [ -1.48737, 52.93073 ], [ -1.48713, 52.93099 ], [ -1.48907, 52.93163 ], [ -1.48972, 52.93183 ], [ -1.49207, 52.92936 ], [ -1.49242, 52.92903 ], [ -1.4939, 52.92762 ], [ -1.49396, 52.92766 ], [ -1.49788, 52.92993 ], [ -1.49788, 52.93047 ], [ -1.49904, 52.93175 ], [ -1.49869, 52.93254 ], [ -1.49805, 52.93436 ], [ -1.49386, 52.9386 ], [ -1.4936, 52.93893 ], [ -1.49224, 52.94025 ], [ -1.4894, 52.94205 ], [ -1.48883, 52.94241 ], [ -1.48722, 52.94369 ], [ -1.48555, 52.94571 ], [ -1.48522, 52.94631 ], [ -1.48401, 52.94829 ], [ -1.48088, 52.95004 ], [ -1.47755, 52.95114 ], [ -1.47499, 52.95242 ], [ -1.47024, 52.95492 ], [ -1.46759, 52.95569 ], [ -1.46717, 52.95494 ], [ -1.46608, 52.95433 ], [ -1.46619, 52.95367 ], [ -1.46735, 52.95303 ], [ -1.46855, 52.95066 ], [ -1.46257, 52.94984 ], [ -1.46359, 52.94607 ], [ -1.46574, 52.94181 ], [ -1.46652, 52.942 ], [ -1.46703, 52.94128 ], [ -1.46945, 52.94198 ], [ -1.46996, 52.94019 ], [ -1.47293, 52.9403 ], [ -1.47581, 52.93822 ], [ -1.47641, 52.93874 ], [ -1.47829, 52.93936 ], [ -1.47914, 52.94 ], [ -1.4811, 52.93853 ], [ -1.4807, 52.93585 ], [ -1.48011, 52.93504 ], [ -1.47948, 52.9339 ], [ -1.47988, 52.9336 ], [ -1.47986, 52.9304 ], [ -1.48174, 52.93033 ], [ -1.48179, 52.93063 ], [ -1.48297, 52.93007 ], [ -1.48299, 52.92962 ], [ -1.48348, 52.92942 ], [ -1.48329, 52.92975 ], [ -1.48376, 52.92985 ], [ -1.48401, 52.92951 ], [ -1.48582, 52.92985 ], [ -1.48602, 52.93036 ], [ -1.48708, 52.92965 ], [ -1.4864, 52.92929 ], [ -1.48656, 52.92898 ], [ -1.487, 52.92901 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002801", "population": 7633, "outputarea_code": "E00068193", "lsoa_code": "E01013505", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby North", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.43341, "latitude": 52.9341, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.43171, 52.92647 ], [ -1.43411, 52.92805 ], [ -1.43532, 52.92806 ], [ -1.43622, 52.9275 ], [ -1.43792, 52.92808 ], [ -1.43788, 52.92903 ], [ -1.43835, 52.92951 ], [ -1.4388, 52.92965 ], [ -1.4395, 52.92921 ], [ -1.4394, 52.92869 ], [ -1.43996, 52.92831 ], [ -1.44105, 52.92911 ], [ -1.44171, 52.92891 ], [ -1.44155, 52.92929 ], [ -1.44206, 52.9295 ], [ -1.44052, 52.93127 ], [ -1.43982, 52.93213 ], [ -1.43974, 52.93223 ], [ -1.4403, 52.93239 ], [ -1.44015, 52.93286 ], [ -1.44076, 52.93289 ], [ -1.44113, 52.93342 ], [ -1.4424, 52.93366 ], [ -1.44338, 52.93438 ], [ -1.4448, 52.93451 ], [ -1.44485, 52.9348 ], [ -1.44418, 52.93507 ], [ -1.44503, 52.93543 ], [ -1.44511, 52.93744 ], [ -1.44584, 52.93812 ], [ -1.4452, 52.93857 ], [ -1.44521, 52.93818 ], [ -1.44133, 52.9384 ], [ -1.43876, 52.93857 ], [ -1.4383, 52.93859 ], [ -1.4376, 52.93814 ], [ -1.43732, 52.9386 ], [ -1.43619, 52.93873 ], [ -1.43626, 52.94022 ], [ -1.43718, 52.94027 ], [ -1.4375, 52.94066 ], [ -1.43895, 52.93999 ], [ -1.43946, 52.94064 ], [ -1.43896, 52.94087 ], [ -1.43903, 52.94127 ], [ -1.43813, 52.94128 ], [ -1.43707, 52.94184 ], [ -1.43682, 52.94217 ], [ -1.43603, 52.9417 ], [ -1.43568, 52.94194 ], [ -1.43501, 52.94179 ], [ -1.43456, 52.94159 ], [ -1.4349, 52.94132 ], [ -1.43345, 52.94208 ], [ -1.43344, 52.94179 ], [ -1.43247, 52.94184 ], [ -1.43162, 52.94096 ], [ -1.43107, 52.94087 ], [ -1.4319, 52.94033 ], [ -1.43074, 52.93957 ], [ -1.43038, 52.93976 ], [ -1.42975, 52.93939 ], [ -1.43003, 52.93919 ], [ -1.42901, 52.93883 ], [ -1.42877, 52.93915 ], [ -1.42844, 52.93886 ], [ -1.42746, 52.93895 ], [ -1.42656, 52.93863 ], [ -1.42667, 52.93807 ], [ -1.42776, 52.93756 ], [ -1.42633, 52.93745 ], [ -1.42611, 52.93719 ], [ -1.42739, 52.93677 ], [ -1.42572, 52.93606 ], [ -1.42568, 52.93577 ], [ -1.42396, 52.93565 ], [ -1.42357, 52.93569 ], [ -1.4199, 52.93178 ], [ -1.42053, 52.93156 ], [ -1.42226, 52.93173 ], [ -1.42669, 52.9315 ], [ -1.42589, 52.93086 ], [ -1.42514, 52.93078 ], [ -1.42554, 52.92891 ], [ -1.42643, 52.92867 ], [ -1.42701, 52.92884 ], [ -1.42724, 52.9284 ], [ -1.42805, 52.92766 ], [ -1.42979, 52.9274 ], [ -1.43171, 52.92647 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002802", "population": 8143, "outputarea_code": "E00068317", "lsoa_code": "E01013533", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby North", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.45465, "latitude": 52.92752, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.44531, 52.92701 ], [ -1.44555, 52.92687 ], [ -1.44216, 52.92559 ], [ -1.44085, 52.92508 ], [ -1.4415, 52.92449 ], [ -1.44104, 52.92431 ], [ -1.44323, 52.92188 ], [ -1.44334, 52.9217 ], [ -1.44406, 52.92189 ], [ -1.44542, 52.92226 ], [ -1.44594, 52.92211 ], [ -1.44747, 52.9207 ], [ -1.44739, 52.91966 ], [ -1.44802, 52.91883 ], [ -1.44699, 52.91848 ], [ -1.44727, 52.91809 ], [ -1.45246, 52.91748 ], [ -1.457, 52.91852 ], [ -1.45957, 52.91861 ], [ -1.4636, 52.9195 ], [ -1.46374, 52.91953 ], [ -1.46489, 52.92179 ], [ -1.46685, 52.92471 ], [ -1.46846, 52.92921 ], [ -1.46877, 52.93187 ], [ -1.46562, 52.93188 ], [ -1.46394, 52.93596 ], [ -1.46301, 52.93573 ], [ -1.45984, 52.93624 ], [ -1.45903, 52.93625 ], [ -1.45847, 52.93593 ], [ -1.45788, 52.93614 ], [ -1.45757, 52.93571 ], [ -1.45691, 52.93588 ], [ -1.45723, 52.93601 ], [ -1.45668, 52.93641 ], [ -1.45601, 52.93639 ], [ -1.45646, 52.93716 ], [ -1.45586, 52.93744 ], [ -1.4552, 52.93719 ], [ -1.45511, 52.93505 ], [ -1.45507, 52.93513 ], [ -1.45425, 52.93537 ], [ -1.45382, 52.93496 ], [ -1.45133, 52.93632 ], [ -1.45071, 52.93618 ], [ -1.45059, 52.93583 ], [ -1.45136, 52.9354 ], [ -1.45036, 52.93527 ], [ -1.45023, 52.93494 ], [ -1.44962, 52.93488 ], [ -1.44935, 52.93521 ], [ -1.44848, 52.93529 ], [ -1.44868, 52.93564 ], [ -1.44907, 52.93559 ], [ -1.44807, 52.93611 ], [ -1.44832, 52.93655 ], [ -1.44755, 52.93673 ], [ -1.44773, 52.93719 ], [ -1.44575, 52.93621 ], [ -1.44485, 52.9348 ], [ -1.4448, 52.93451 ], [ -1.44338, 52.93438 ], [ -1.4424, 52.93366 ], [ -1.44113, 52.93342 ], [ -1.44076, 52.93289 ], [ -1.44015, 52.93286 ], [ -1.4403, 52.93239 ], [ -1.43974, 52.93223 ], [ -1.43982, 52.93213 ], [ -1.44052, 52.93127 ], [ -1.44206, 52.9295 ], [ -1.44496, 52.9272 ], [ -1.44531, 52.92701 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002803", "population": 8002, "outputarea_code": "E00068277", "lsoa_code": "E01013525", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby North", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.47929, "latitude": 52.93139, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.46846, 52.92921 ], [ -1.46685, 52.92471 ], [ -1.46895, 52.92469 ], [ -1.47102, 52.92556 ], [ -1.47641, 52.927 ], [ -1.47825, 52.92707 ], [ -1.48069, 52.92642 ], [ -1.48075, 52.9264 ], [ -1.48242, 52.92601 ], [ -1.48318, 52.92588 ], [ -1.48396, 52.92461 ], [ -1.48445, 52.9237 ], [ -1.48526, 52.92392 ], [ -1.48599, 52.92414 ], [ -1.48805, 52.92472 ], [ -1.48872, 52.92486 ], [ -1.49105, 52.92531 ], [ -1.4944, 52.92613 ], [ -1.49591, 52.92656 ], [ -1.49643, 52.9267 ], [ -1.49676, 52.9268 ], [ -1.49974, 52.92767 ], [ -1.50406, 52.92909 ], [ -1.50048, 52.93056 ], [ -1.49869, 52.93254 ], [ -1.49904, 52.93175 ], [ -1.49788, 52.93047 ], [ -1.49788, 52.92993 ], [ -1.49396, 52.92766 ], [ -1.4939, 52.92762 ], [ -1.49242, 52.92903 ], [ -1.49207, 52.92936 ], [ -1.48972, 52.93183 ], [ -1.48907, 52.93163 ], [ -1.48713, 52.93099 ], [ -1.48737, 52.93073 ], [ -1.48839, 52.93015 ], [ -1.48781, 52.92977 ], [ -1.48795, 52.9296 ], [ -1.487, 52.92901 ], [ -1.48656, 52.92898 ], [ -1.4864, 52.92929 ], [ -1.48708, 52.92965 ], [ -1.48602, 52.93036 ], [ -1.48582, 52.92985 ], [ -1.48401, 52.92951 ], [ -1.48376, 52.92985 ], [ -1.48329, 52.92975 ], [ -1.48348, 52.92942 ], [ -1.48299, 52.92962 ], [ -1.48297, 52.93007 ], [ -1.48179, 52.93063 ], [ -1.48174, 52.93033 ], [ -1.47986, 52.9304 ], [ -1.47988, 52.9336 ], [ -1.47948, 52.9339 ], [ -1.48011, 52.93504 ], [ -1.4807, 52.93585 ], [ -1.4811, 52.93853 ], [ -1.47914, 52.94 ], [ -1.47829, 52.93936 ], [ -1.47641, 52.93874 ], [ -1.47581, 52.93822 ], [ -1.47293, 52.9403 ], [ -1.46996, 52.94019 ], [ -1.46945, 52.94198 ], [ -1.46703, 52.94128 ], [ -1.46652, 52.942 ], [ -1.46574, 52.94181 ], [ -1.46802, 52.9372 ], [ -1.46877, 52.93187 ], [ -1.46846, 52.92921 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002804", "population": 8289, "outputarea_code": "E00068398", "lsoa_code": "E01013548", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby North", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.52161, "latitude": 52.92611, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.51659, 52.92098 ], [ -1.51777, 52.92103 ], [ -1.51874, 52.9207 ], [ -1.52303, 52.92041 ], [ -1.52652, 52.92056 ], [ -1.52948, 52.92092 ], [ -1.53193, 52.92117 ], [ -1.53304, 52.92103 ], [ -1.53971, 52.92443 ], [ -1.5378, 52.92491 ], [ -1.53501, 52.92675 ], [ -1.53118, 52.92953 ], [ -1.52701, 52.93242 ], [ -1.52546, 52.93299 ], [ -1.52126, 52.93239 ], [ -1.52147, 52.93217 ], [ -1.52085, 52.93204 ], [ -1.5141, 52.93071 ], [ -1.51218, 52.93033 ], [ -1.50986, 52.92991 ], [ -1.50449, 52.92917 ], [ -1.50521, 52.92837 ], [ -1.50317, 52.92776 ], [ -1.50138, 52.92779 ], [ -1.50163, 52.92748 ], [ -1.50402, 52.92711 ], [ -1.50414, 52.92668 ], [ -1.5086, 52.92636 ], [ -1.50906, 52.92618 ], [ -1.50828, 52.92572 ], [ -1.50822, 52.92446 ], [ -1.5095, 52.92437 ], [ -1.50923, 52.92498 ], [ -1.50969, 52.92515 ], [ -1.50988, 52.92584 ], [ -1.51129, 52.92483 ], [ -1.51206, 52.92396 ], [ -1.51107, 52.92378 ], [ -1.5109, 52.92318 ], [ -1.50975, 52.92384 ], [ -1.50836, 52.92177 ], [ -1.51265, 52.92139 ], [ -1.51437, 52.92121 ], [ -1.51659, 52.92098 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002805", "population": 5681, "outputarea_code": "E00068616", "lsoa_code": "E01013599", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Mid Derbyshire", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.40393, "latitude": 52.92528, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.39418, 52.92023 ], [ -1.39573, 52.92092 ], [ -1.39822, 52.9211 ], [ -1.39872, 52.92013 ], [ -1.39821, 52.92019 ], [ -1.39875, 52.91944 ], [ -1.39961, 52.91968 ], [ -1.40008, 52.92061 ], [ -1.40148, 52.92114 ], [ -1.40221, 52.92046 ], [ -1.40319, 52.92049 ], [ -1.40424, 52.9199 ], [ -1.40504, 52.91878 ], [ -1.40476, 52.91816 ], [ -1.40597, 52.91782 ], [ -1.40644, 52.91733 ], [ -1.40875, 52.9172 ], [ -1.4094, 52.9172 ], [ -1.40845, 52.9182 ], [ -1.40846, 52.91883 ], [ -1.4102, 52.9189 ], [ -1.41051, 52.9194 ], [ -1.41156, 52.91959 ], [ -1.41129, 52.92008 ], [ -1.41196, 52.92082 ], [ -1.41513, 52.92062 ], [ -1.4167, 52.9209 ], [ -1.41788, 52.9216 ], [ -1.41765, 52.9228 ], [ -1.41849, 52.92306 ], [ -1.41782, 52.92489 ], [ -1.41747, 52.92853 ], [ -1.41727, 52.92961 ], [ -1.41616, 52.93135 ], [ -1.4145, 52.93121 ], [ -1.41044, 52.93104 ], [ -1.40885, 52.93131 ], [ -1.40821, 52.93107 ], [ -1.40697, 52.93121 ], [ -1.40484, 52.93169 ], [ -1.40405, 52.93231 ], [ -1.40124, 52.93068 ], [ -1.39978, 52.93044 ], [ -1.39679, 52.92972 ], [ -1.39625, 52.92933 ], [ -1.39646, 52.92855 ], [ -1.39189, 52.92819 ], [ -1.38715, 52.92707 ], [ -1.3853, 52.92638 ], [ -1.38307, 52.92593 ], [ -1.38393, 52.92382 ], [ -1.3863, 52.92387 ], [ -1.3871, 52.92237 ], [ -1.38901, 52.92264 ], [ -1.39077, 52.92314 ], [ -1.39272, 52.92298 ], [ -1.39254, 52.92335 ], [ -1.39203, 52.92326 ], [ -1.39198, 52.92374 ], [ -1.38959, 52.92399 ], [ -1.38974, 52.92451 ], [ -1.39023, 52.92481 ], [ -1.38996, 52.92558 ], [ -1.39091, 52.92536 ], [ -1.39102, 52.92473 ], [ -1.39183, 52.92463 ], [ -1.39225, 52.92413 ], [ -1.39338, 52.92456 ], [ -1.39367, 52.9243 ], [ -1.39307, 52.9237 ], [ -1.39418, 52.92333 ], [ -1.39403, 52.9227 ], [ -1.39288, 52.92223 ], [ -1.39271, 52.92184 ], [ -1.39418, 52.92023 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002806", "population": 6560, "outputarea_code": "E00068401", "lsoa_code": "E01013551", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby North", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.49983, "latitude": 52.92441, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.4918, 52.92217 ], [ -1.49421, 52.92198 ], [ -1.49494, 52.92202 ], [ -1.49754, 52.92212 ], [ -1.49911, 52.92223 ], [ -1.4993, 52.92176 ], [ -1.50343, 52.92159 ], [ -1.50687, 52.92177 ], [ -1.50836, 52.92177 ], [ -1.50975, 52.92384 ], [ -1.5109, 52.92318 ], [ -1.51107, 52.92378 ], [ -1.51206, 52.92396 ], [ -1.51129, 52.92483 ], [ -1.50988, 52.92584 ], [ -1.50969, 52.92515 ], [ -1.50923, 52.92498 ], [ -1.5095, 52.92437 ], [ -1.50822, 52.92446 ], [ -1.50828, 52.92572 ], [ -1.50906, 52.92618 ], [ -1.5086, 52.92636 ], [ -1.50414, 52.92668 ], [ -1.50402, 52.92711 ], [ -1.50163, 52.92748 ], [ -1.50138, 52.92779 ], [ -1.50317, 52.92776 ], [ -1.50521, 52.92837 ], [ -1.50449, 52.92917 ], [ -1.50406, 52.92909 ], [ -1.49974, 52.92767 ], [ -1.49676, 52.9268 ], [ -1.49643, 52.9267 ], [ -1.49591, 52.92656 ], [ -1.4944, 52.92613 ], [ -1.49105, 52.92531 ], [ -1.48872, 52.92486 ], [ -1.48805, 52.92472 ], [ -1.48599, 52.92414 ], [ -1.48836, 52.92281 ], [ -1.48933, 52.92243 ], [ -1.48973, 52.92263 ], [ -1.49023, 52.92224 ], [ -1.4918, 52.92217 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002807", "population": 8958, "outputarea_code": "E00068188", "lsoa_code": "E01013507", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby North", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.43166, "latitude": 52.92181, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.42286, 52.9162 ], [ -1.42325, 52.91441 ], [ -1.42799, 52.91423 ], [ -1.43239, 52.91356 ], [ -1.44071, 52.91105 ], [ -1.44062, 52.91317 ], [ -1.44253, 52.91531 ], [ -1.44307, 52.91762 ], [ -1.44727, 52.91809 ], [ -1.44699, 52.91848 ], [ -1.44802, 52.91883 ], [ -1.44739, 52.91966 ], [ -1.44747, 52.9207 ], [ -1.44594, 52.92211 ], [ -1.44542, 52.92226 ], [ -1.44406, 52.92189 ], [ -1.44334, 52.9217 ], [ -1.44323, 52.92188 ], [ -1.44104, 52.92431 ], [ -1.4415, 52.92449 ], [ -1.44085, 52.92508 ], [ -1.44216, 52.92559 ], [ -1.44555, 52.92687 ], [ -1.44531, 52.92701 ], [ -1.44496, 52.9272 ], [ -1.44206, 52.9295 ], [ -1.44155, 52.92929 ], [ -1.44171, 52.92891 ], [ -1.44105, 52.92911 ], [ -1.43996, 52.92831 ], [ -1.4394, 52.92869 ], [ -1.4395, 52.92921 ], [ -1.4388, 52.92965 ], [ -1.43835, 52.92951 ], [ -1.43788, 52.92903 ], [ -1.43792, 52.92808 ], [ -1.43622, 52.9275 ], [ -1.43532, 52.92806 ], [ -1.43411, 52.92805 ], [ -1.43171, 52.92647 ], [ -1.42979, 52.9274 ], [ -1.42805, 52.92766 ], [ -1.42724, 52.9284 ], [ -1.42701, 52.92884 ], [ -1.42643, 52.92867 ], [ -1.42554, 52.92891 ], [ -1.42514, 52.93078 ], [ -1.42589, 52.93086 ], [ -1.42669, 52.9315 ], [ -1.42226, 52.93173 ], [ -1.42053, 52.93156 ], [ -1.4199, 52.93178 ], [ -1.41925, 52.93143 ], [ -1.41746, 52.93172 ], [ -1.41616, 52.93135 ], [ -1.41727, 52.92961 ], [ -1.41747, 52.92853 ], [ -1.41782, 52.92489 ], [ -1.41849, 52.92306 ], [ -1.42122, 52.9201 ], [ -1.42251, 52.91877 ], [ -1.42286, 52.9162 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002808", "population": 12156, "outputarea_code": "E00067918", "lsoa_code": "E01013460", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby North", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.48606, "latitude": 52.91945, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.4834, 52.91569 ], [ -1.48341, 52.91566 ], [ -1.48346, 52.91504 ], [ -1.48351, 52.91429 ], [ -1.48355, 52.91371 ], [ -1.48424, 52.91335 ], [ -1.48697, 52.91254 ], [ -1.48893, 52.91148 ], [ -1.48904, 52.91141 ], [ -1.49378, 52.91045 ], [ -1.49378, 52.91105 ], [ -1.49284, 52.91126 ], [ -1.49383, 52.91194 ], [ -1.49577, 52.91178 ], [ -1.49602, 52.91132 ], [ -1.49667, 52.91155 ], [ -1.49629, 52.91234 ], [ -1.49672, 52.91278 ], [ -1.4953, 52.91259 ], [ -1.49449, 52.91317 ], [ -1.49689, 52.91406 ], [ -1.49758, 52.91386 ], [ -1.49857, 52.91385 ], [ -1.49978, 52.91452 ], [ -1.50173, 52.91488 ], [ -1.50221, 52.91581 ], [ -1.50108, 52.91714 ], [ -1.50128, 52.9175 ], [ -1.50093, 52.91763 ], [ -1.50115, 52.91797 ], [ -1.50153, 52.91861 ], [ -1.50101, 52.91848 ], [ -1.50016, 52.91879 ], [ -1.50174, 52.91949 ], [ -1.5026, 52.91979 ], [ -1.5036, 52.92096 ], [ -1.50343, 52.92159 ], [ -1.4993, 52.92176 ], [ -1.49911, 52.92223 ], [ -1.49754, 52.92212 ], [ -1.49494, 52.92202 ], [ -1.49421, 52.92198 ], [ -1.4918, 52.92217 ], [ -1.49023, 52.92224 ], [ -1.48973, 52.92263 ], [ -1.48933, 52.92243 ], [ -1.48836, 52.92281 ], [ -1.48599, 52.92414 ], [ -1.48526, 52.92392 ], [ -1.48445, 52.9237 ], [ -1.48396, 52.92461 ], [ -1.48318, 52.92588 ], [ -1.48242, 52.92601 ], [ -1.48075, 52.9264 ], [ -1.48069, 52.92642 ], [ -1.47825, 52.92707 ], [ -1.47641, 52.927 ], [ -1.47102, 52.92556 ], [ -1.46895, 52.92469 ], [ -1.46685, 52.92471 ], [ -1.46489, 52.92179 ], [ -1.46606, 52.92156 ], [ -1.46745, 52.92269 ], [ -1.4697, 52.92369 ], [ -1.47112, 52.92199 ], [ -1.46978, 52.92207 ], [ -1.4696, 52.92128 ], [ -1.47092, 52.92072 ], [ -1.4707, 52.91999 ], [ -1.47191, 52.9194 ], [ -1.47276, 52.91821 ], [ -1.47436, 52.919 ], [ -1.47497, 52.91896 ], [ -1.47563, 52.91986 ], [ -1.47817, 52.9177 ], [ -1.4791, 52.91719 ], [ -1.47947, 52.91744 ], [ -1.48059, 52.91744 ], [ -1.48149, 52.91686 ], [ -1.48207, 52.91701 ], [ -1.4819, 52.91642 ], [ -1.48276, 52.91623 ], [ -1.48279, 52.91759 ], [ -1.482, 52.91774 ], [ -1.48193, 52.91897 ], [ -1.48189, 52.91931 ], [ -1.48314, 52.91931 ], [ -1.4834, 52.91569 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002809", "population": 6956, "outputarea_code": "E00068619", "lsoa_code": "E01013593", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Mid Derbyshire", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.40955, "latitude": 52.91101, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.38781, 52.91156 ], [ -1.38891, 52.9097 ], [ -1.39177, 52.90741 ], [ -1.39176, 52.90671 ], [ -1.39064, 52.90625 ], [ -1.3913, 52.90505 ], [ -1.39111, 52.90425 ], [ -1.38826, 52.90147 ], [ -1.39364, 52.90185 ], [ -1.39914, 52.90148 ], [ -1.40033, 52.90139 ], [ -1.40277, 52.90046 ], [ -1.40627, 52.90021 ], [ -1.41117, 52.90017 ], [ -1.41176, 52.90099 ], [ -1.41147, 52.90247 ], [ -1.41268, 52.90317 ], [ -1.41432, 52.90332 ], [ -1.41866, 52.90295 ], [ -1.42167, 52.90356 ], [ -1.424, 52.90318 ], [ -1.42582, 52.90411 ], [ -1.43044, 52.90467 ], [ -1.43464, 52.90538 ], [ -1.43519, 52.90724 ], [ -1.43677, 52.90853 ], [ -1.43904, 52.90966 ], [ -1.44071, 52.91105 ], [ -1.43239, 52.91356 ], [ -1.42799, 52.91423 ], [ -1.42325, 52.91441 ], [ -1.42286, 52.9162 ], [ -1.42251, 52.91877 ], [ -1.42122, 52.9201 ], [ -1.41849, 52.92306 ], [ -1.41765, 52.9228 ], [ -1.41788, 52.9216 ], [ -1.4167, 52.9209 ], [ -1.41513, 52.92062 ], [ -1.41196, 52.92082 ], [ -1.41129, 52.92008 ], [ -1.41156, 52.91959 ], [ -1.41051, 52.9194 ], [ -1.4102, 52.9189 ], [ -1.40846, 52.91883 ], [ -1.40845, 52.9182 ], [ -1.4094, 52.9172 ], [ -1.40875, 52.9172 ], [ -1.40644, 52.91733 ], [ -1.40597, 52.91782 ], [ -1.40476, 52.91816 ], [ -1.40504, 52.91878 ], [ -1.40424, 52.9199 ], [ -1.40319, 52.92049 ], [ -1.40221, 52.92046 ], [ -1.40148, 52.92114 ], [ -1.40008, 52.92061 ], [ -1.39961, 52.91968 ], [ -1.39875, 52.91944 ], [ -1.39821, 52.92019 ], [ -1.39872, 52.92013 ], [ -1.39822, 52.9211 ], [ -1.39573, 52.92092 ], [ -1.39418, 52.92023 ], [ -1.39271, 52.92184 ], [ -1.39288, 52.92223 ], [ -1.39403, 52.9227 ], [ -1.39418, 52.92333 ], [ -1.39307, 52.9237 ], [ -1.39367, 52.9243 ], [ -1.39338, 52.92456 ], [ -1.39225, 52.92413 ], [ -1.39183, 52.92463 ], [ -1.39102, 52.92473 ], [ -1.39091, 52.92536 ], [ -1.38996, 52.92558 ], [ -1.39023, 52.92481 ], [ -1.38974, 52.92451 ], [ -1.38959, 52.92399 ], [ -1.39198, 52.92374 ], [ -1.39203, 52.92326 ], [ -1.39254, 52.92335 ], [ -1.39272, 52.92298 ], [ -1.39077, 52.92314 ], [ -1.38901, 52.92264 ], [ -1.38961, 52.92274 ], [ -1.38966, 52.92214 ], [ -1.3897, 52.92195 ], [ -1.38908, 52.91935 ], [ -1.3882, 52.91779 ], [ -1.38816, 52.91697 ], [ -1.38771, 52.91477 ], [ -1.38788, 52.91281 ], [ -1.38791, 52.9126 ], [ -1.38781, 52.91156 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002810", "population": 8639, "outputarea_code": "E00068448", "lsoa_code": "E01013559", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby North", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.53841, "latitude": 52.91634, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.52557, 52.91189 ], [ -1.52597, 52.9115 ], [ -1.5274, 52.91011 ], [ -1.52857, 52.90897 ], [ -1.52905, 52.9092 ], [ -1.53148, 52.90849 ], [ -1.53213, 52.90869 ], [ -1.53418, 52.90827 ], [ -1.53455, 52.90878 ], [ -1.53543, 52.90853 ], [ -1.53513, 52.90928 ], [ -1.53545, 52.9095 ], [ -1.53448, 52.9099 ], [ -1.5345, 52.91043 ], [ -1.53532, 52.91062 ], [ -1.53492, 52.91172 ], [ -1.5353, 52.91175 ], [ -1.53506, 52.91201 ], [ -1.53548, 52.91237 ], [ -1.53489, 52.9125 ], [ -1.53504, 52.91312 ], [ -1.53406, 52.91305 ], [ -1.53352, 52.91338 ], [ -1.53378, 52.91394 ], [ -1.53503, 52.9144 ], [ -1.53533, 52.91418 ], [ -1.53708, 52.9143 ], [ -1.53757, 52.91394 ], [ -1.53732, 52.9136 ], [ -1.53768, 52.91325 ], [ -1.53846, 52.91319 ], [ -1.53895, 52.91273 ], [ -1.53865, 52.91205 ], [ -1.53898, 52.91115 ], [ -1.53911, 52.91112 ], [ -1.54082, 52.91095 ], [ -1.54089, 52.9103 ], [ -1.54163, 52.90975 ], [ -1.5429, 52.90978 ], [ -1.54349, 52.90922 ], [ -1.54496, 52.90918 ], [ -1.54567, 52.90879 ], [ -1.54612, 52.90865 ], [ -1.54685, 52.9094 ], [ -1.54867, 52.90946 ], [ -1.54899, 52.90974 ], [ -1.54948, 52.90999 ], [ -1.55133, 52.90989 ], [ -1.55179, 52.91067 ], [ -1.55227, 52.91057 ], [ -1.55254, 52.91087 ], [ -1.5537, 52.91062 ], [ -1.55335, 52.90993 ], [ -1.5539, 52.90995 ], [ -1.55321, 52.90961 ], [ -1.55338, 52.90912 ], [ -1.55282, 52.9091 ], [ -1.55336, 52.90906 ], [ -1.55341, 52.90801 ], [ -1.55426, 52.90902 ], [ -1.55404, 52.90921 ], [ -1.556, 52.91247 ], [ -1.55573, 52.91269 ], [ -1.55644, 52.91353 ], [ -1.55567, 52.91381 ], [ -1.55685, 52.91468 ], [ -1.55451, 52.91562 ], [ -1.55108, 52.91705 ], [ -1.5517, 52.91846 ], [ -1.55145, 52.919 ], [ -1.55188, 52.92054 ], [ -1.55288, 52.92258 ], [ -1.54961, 52.92282 ], [ -1.54407, 52.92421 ], [ -1.54168, 52.92434 ], [ -1.53971, 52.92443 ], [ -1.53304, 52.92103 ], [ -1.53193, 52.92117 ], [ -1.52948, 52.92092 ], [ -1.52652, 52.92056 ], [ -1.52303, 52.92041 ], [ -1.51874, 52.9207 ], [ -1.51777, 52.92103 ], [ -1.51659, 52.92098 ], [ -1.51437, 52.92121 ], [ -1.51476, 52.92079 ], [ -1.51677, 52.92011 ], [ -1.52173, 52.91549 ], [ -1.52253, 52.91475 ], [ -1.52557, 52.91189 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002811", "population": 10798, "outputarea_code": "E00068055", "lsoa_code": "E01013480", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.48187, "latitude": 52.91158, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.48665, 52.90565 ], [ -1.48663, 52.90458 ], [ -1.48707, 52.90455 ], [ -1.48881, 52.90456 ], [ -1.4889, 52.90553 ], [ -1.4889, 52.90558 ], [ -1.48891, 52.90582 ], [ -1.48896, 52.90709 ], [ -1.48997, 52.90702 ], [ -1.49066, 52.90915 ], [ -1.49081, 52.90959 ], [ -1.48904, 52.91141 ], [ -1.48893, 52.91148 ], [ -1.48697, 52.91254 ], [ -1.48424, 52.91335 ], [ -1.48355, 52.91371 ], [ -1.48351, 52.91429 ], [ -1.48346, 52.91504 ], [ -1.48341, 52.91566 ], [ -1.4834, 52.91569 ], [ -1.48314, 52.91931 ], [ -1.48189, 52.91931 ], [ -1.48193, 52.91897 ], [ -1.482, 52.91774 ], [ -1.48279, 52.91759 ], [ -1.48276, 52.91623 ], [ -1.4819, 52.91642 ], [ -1.48207, 52.91701 ], [ -1.48149, 52.91686 ], [ -1.48059, 52.91744 ], [ -1.47947, 52.91744 ], [ -1.4791, 52.91719 ], [ -1.47817, 52.9177 ], [ -1.47563, 52.91986 ], [ -1.47497, 52.91896 ], [ -1.47436, 52.919 ], [ -1.47276, 52.91821 ], [ -1.47193, 52.91775 ], [ -1.47221, 52.91725 ], [ -1.47352, 52.91672 ], [ -1.47265, 52.91531 ], [ -1.47307, 52.91517 ], [ -1.47687, 52.91403 ], [ -1.47668, 52.913 ], [ -1.47566, 52.91314 ], [ -1.47595, 52.91382 ], [ -1.47498, 52.9141 ], [ -1.47463, 52.91315 ], [ -1.47514, 52.91316 ], [ -1.47483, 52.91257 ], [ -1.47537, 52.91224 ], [ -1.47605, 52.91256 ], [ -1.47678, 52.9122 ], [ -1.4786, 52.91244 ], [ -1.47908, 52.91173 ], [ -1.47928, 52.91198 ], [ -1.48025, 52.91195 ], [ -1.48082, 52.91182 ], [ -1.48058, 52.91133 ], [ -1.47959, 52.91142 ], [ -1.48019, 52.91114 ], [ -1.47973, 52.91069 ], [ -1.4796, 52.90885 ], [ -1.479, 52.909 ], [ -1.47888, 52.90872 ], [ -1.47861, 52.90801 ], [ -1.47774, 52.90644 ], [ -1.47804, 52.90606 ], [ -1.48035, 52.90555 ], [ -1.48009, 52.90504 ], [ -1.48099, 52.9048 ], [ -1.48103, 52.90479 ], [ -1.48321, 52.90435 ], [ -1.48351, 52.9046 ], [ -1.48321, 52.90504 ], [ -1.48347, 52.90529 ], [ -1.48306, 52.90547 ], [ -1.48318, 52.90581 ], [ -1.48533, 52.90575 ], [ -1.48665, 52.90565 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002812", "population": 7296, "outputarea_code": "E00067924", "lsoa_code": "E01013458", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby North", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.50645, "latitude": 52.91209, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.51054, 52.90161 ], [ -1.51073, 52.90351 ], [ -1.50989, 52.90365 ], [ -1.50951, 52.90342 ], [ -1.508, 52.90289 ], [ -1.50645, 52.90426 ], [ -1.50727, 52.90504 ], [ -1.50686, 52.90513 ], [ -1.50674, 52.90567 ], [ -1.50718, 52.90565 ], [ -1.5095, 52.90579 ], [ -1.51055, 52.90572 ], [ -1.51038, 52.90698 ], [ -1.51102, 52.90682 ], [ -1.51134, 52.90748 ], [ -1.51199, 52.90718 ], [ -1.51157, 52.90785 ], [ -1.51423, 52.91046 ], [ -1.51408, 52.91079 ], [ -1.51444, 52.9107 ], [ -1.51415, 52.91092 ], [ -1.51469, 52.91183 ], [ -1.51356, 52.91197 ], [ -1.51374, 52.91226 ], [ -1.51463, 52.91214 ], [ -1.51457, 52.91239 ], [ -1.51593, 52.91247 ], [ -1.51647, 52.91277 ], [ -1.51629, 52.91312 ], [ -1.51763, 52.91277 ], [ -1.51895, 52.91295 ], [ -1.52124, 52.91441 ], [ -1.52253, 52.91475 ], [ -1.52173, 52.91549 ], [ -1.51677, 52.92011 ], [ -1.51476, 52.92079 ], [ -1.51437, 52.92121 ], [ -1.51265, 52.92139 ], [ -1.50836, 52.92177 ], [ -1.50687, 52.92177 ], [ -1.50343, 52.92159 ], [ -1.5036, 52.92096 ], [ -1.5026, 52.91979 ], [ -1.50174, 52.91949 ], [ -1.50016, 52.91879 ], [ -1.50101, 52.91848 ], [ -1.50153, 52.91861 ], [ -1.50115, 52.91797 ], [ -1.50093, 52.91763 ], [ -1.50128, 52.9175 ], [ -1.50108, 52.91714 ], [ -1.50221, 52.91581 ], [ -1.50173, 52.91488 ], [ -1.49978, 52.91452 ], [ -1.49857, 52.91385 ], [ -1.49758, 52.91386 ], [ -1.49689, 52.91406 ], [ -1.49449, 52.91317 ], [ -1.4953, 52.91259 ], [ -1.49672, 52.91278 ], [ -1.49629, 52.91234 ], [ -1.49667, 52.91155 ], [ -1.49602, 52.91132 ], [ -1.49577, 52.91178 ], [ -1.49383, 52.91194 ], [ -1.49284, 52.91126 ], [ -1.49378, 52.91105 ], [ -1.49378, 52.91045 ], [ -1.48904, 52.91141 ], [ -1.49081, 52.90959 ], [ -1.49066, 52.90915 ], [ -1.49138, 52.90924 ], [ -1.49218, 52.9088 ], [ -1.49268, 52.90893 ], [ -1.49372, 52.90839 ], [ -1.49445, 52.90838 ], [ -1.49448, 52.90766 ], [ -1.49473, 52.90751 ], [ -1.49468, 52.90723 ], [ -1.49649, 52.90674 ], [ -1.49585, 52.9063 ], [ -1.49651, 52.90582 ], [ -1.4942, 52.90473 ], [ -1.49464, 52.90377 ], [ -1.49502, 52.90386 ], [ -1.49534, 52.90341 ], [ -1.49831, 52.90501 ], [ -1.49857, 52.90478 ], [ -1.50219, 52.90256 ], [ -1.50238, 52.9025 ], [ -1.50456, 52.90176 ], [ -1.50571, 52.9012 ], [ -1.50665, 52.90079 ], [ -1.50684, 52.90018 ], [ -1.50765, 52.89959 ], [ -1.50812, 52.89962 ], [ -1.50849, 52.89909 ], [ -1.50912, 52.89913 ], [ -1.50916, 52.90014 ], [ -1.50999, 52.90135 ], [ -1.50968, 52.9015 ], [ -1.51007, 52.90152 ], [ -1.50982, 52.90175 ], [ -1.51054, 52.90161 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002813", "population": 11112, "outputarea_code": "E00068058", "lsoa_code": "E01013481", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.46996, "latitude": 52.91115, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.46673, 52.90276 ], [ -1.46932, 52.89998 ], [ -1.47041, 52.89922 ], [ -1.47088, 52.90018 ], [ -1.47204, 52.90235 ], [ -1.47519, 52.90154 ], [ -1.47639, 52.90413 ], [ -1.47649, 52.90435 ], [ -1.47651, 52.90439 ], [ -1.47697, 52.90559 ], [ -1.47774, 52.90644 ], [ -1.47861, 52.90801 ], [ -1.47888, 52.90872 ], [ -1.479, 52.909 ], [ -1.4796, 52.90885 ], [ -1.47973, 52.91069 ], [ -1.48019, 52.91114 ], [ -1.47959, 52.91142 ], [ -1.48058, 52.91133 ], [ -1.48082, 52.91182 ], [ -1.48025, 52.91195 ], [ -1.47928, 52.91198 ], [ -1.47908, 52.91173 ], [ -1.4786, 52.91244 ], [ -1.47678, 52.9122 ], [ -1.47605, 52.91256 ], [ -1.47537, 52.91224 ], [ -1.47483, 52.91257 ], [ -1.47514, 52.91316 ], [ -1.47463, 52.91315 ], [ -1.47498, 52.9141 ], [ -1.47595, 52.91382 ], [ -1.47566, 52.91314 ], [ -1.47668, 52.913 ], [ -1.47687, 52.91403 ], [ -1.47307, 52.91517 ], [ -1.47265, 52.91531 ], [ -1.47352, 52.91672 ], [ -1.47221, 52.91725 ], [ -1.47193, 52.91775 ], [ -1.47276, 52.91821 ], [ -1.47191, 52.9194 ], [ -1.4707, 52.91999 ], [ -1.47092, 52.92072 ], [ -1.4696, 52.92128 ], [ -1.46978, 52.92207 ], [ -1.47112, 52.92199 ], [ -1.4697, 52.92369 ], [ -1.46745, 52.92269 ], [ -1.46606, 52.92156 ], [ -1.46489, 52.92179 ], [ -1.46374, 52.91953 ], [ -1.46357, 52.91917 ], [ -1.46237, 52.9168 ], [ -1.46241, 52.91203 ], [ -1.46386, 52.90729 ], [ -1.46673, 52.90276 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002814", "population": 7210, "outputarea_code": "E00068364", "lsoa_code": "E01013540", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby North", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.54033, "latitude": 52.90363, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.53436, 52.90316 ], [ -1.53396, 52.90301 ], [ -1.5345, 52.90132 ], [ -1.5336, 52.90116 ], [ -1.53296, 52.89992 ], [ -1.52968, 52.89828 ], [ -1.52974, 52.8982 ], [ -1.52912, 52.89798 ], [ -1.52763, 52.89753 ], [ -1.52817, 52.89698 ], [ -1.5264, 52.89623 ], [ -1.52673, 52.89601 ], [ -1.52727, 52.89595 ], [ -1.52704, 52.89558 ], [ -1.52753, 52.89523 ], [ -1.52651, 52.89421 ], [ -1.52743, 52.89359 ], [ -1.5282, 52.8939 ], [ -1.52806, 52.8931 ], [ -1.52849, 52.8928 ], [ -1.5301, 52.89365 ], [ -1.5308, 52.89345 ], [ -1.53157, 52.8941 ], [ -1.53258, 52.89392 ], [ -1.53302, 52.89418 ], [ -1.53521, 52.8949 ], [ -1.53541, 52.89462 ], [ -1.5359, 52.89466 ], [ -1.53558, 52.89507 ], [ -1.53928, 52.89603 ], [ -1.53904, 52.89642 ], [ -1.53866, 52.89635 ], [ -1.53953, 52.89659 ], [ -1.54179, 52.89805 ], [ -1.54229, 52.89679 ], [ -1.54302, 52.8963 ], [ -1.54243, 52.89677 ], [ -1.54422, 52.89878 ], [ -1.54498, 52.90033 ], [ -1.54748, 52.89961 ], [ -1.54848, 52.90072 ], [ -1.54862, 52.90087 ], [ -1.54866, 52.90092 ], [ -1.54999, 52.90222 ], [ -1.55036, 52.9021 ], [ -1.55115, 52.90184 ], [ -1.55167, 52.90239 ], [ -1.55426, 52.90502 ], [ -1.55516, 52.90622 ], [ -1.55389, 52.90626 ], [ -1.55465, 52.90855 ], [ -1.55426, 52.90902 ], [ -1.55341, 52.90801 ], [ -1.55336, 52.90906 ], [ -1.55282, 52.9091 ], [ -1.55338, 52.90912 ], [ -1.55321, 52.90961 ], [ -1.5539, 52.90995 ], [ -1.55335, 52.90993 ], [ -1.5537, 52.91062 ], [ -1.55254, 52.91087 ], [ -1.55227, 52.91057 ], [ -1.55179, 52.91067 ], [ -1.55133, 52.90989 ], [ -1.54948, 52.90999 ], [ -1.54899, 52.90974 ], [ -1.54867, 52.90946 ], [ -1.54685, 52.9094 ], [ -1.54612, 52.90865 ], [ -1.54567, 52.90879 ], [ -1.54496, 52.90918 ], [ -1.54349, 52.90922 ], [ -1.5429, 52.90978 ], [ -1.54163, 52.90975 ], [ -1.54089, 52.9103 ], [ -1.54082, 52.91095 ], [ -1.53911, 52.91112 ], [ -1.53898, 52.91115 ], [ -1.53865, 52.91205 ], [ -1.53895, 52.91273 ], [ -1.53846, 52.91319 ], [ -1.53768, 52.91325 ], [ -1.53732, 52.9136 ], [ -1.53757, 52.91394 ], [ -1.53708, 52.9143 ], [ -1.53533, 52.91418 ], [ -1.53503, 52.9144 ], [ -1.53378, 52.91394 ], [ -1.53352, 52.91338 ], [ -1.53406, 52.91305 ], [ -1.53504, 52.91312 ], [ -1.53489, 52.9125 ], [ -1.53548, 52.91237 ], [ -1.53506, 52.91201 ], [ -1.5353, 52.91175 ], [ -1.53492, 52.91172 ], [ -1.53532, 52.91062 ], [ -1.5345, 52.91043 ], [ -1.53448, 52.9099 ], [ -1.53545, 52.9095 ], [ -1.53513, 52.90928 ], [ -1.53543, 52.90853 ], [ -1.53455, 52.90878 ], [ -1.53418, 52.90827 ], [ -1.53213, 52.90869 ], [ -1.53148, 52.90849 ], [ -1.52905, 52.9092 ], [ -1.52857, 52.90897 ], [ -1.53118, 52.90635 ], [ -1.53418, 52.90332 ], [ -1.53436, 52.90316 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002815", "population": 8301, "outputarea_code": "E00067925", "lsoa_code": "E01013459", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby North", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.48377, "latitude": 52.90312, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.47088, 52.90018 ], [ -1.47041, 52.89922 ], [ -1.46932, 52.89998 ], [ -1.47, 52.89939 ], [ -1.47324, 52.89693 ], [ -1.47454, 52.8974 ], [ -1.47503, 52.89733 ], [ -1.47514, 52.89691 ], [ -1.47653, 52.8975 ], [ -1.47615, 52.89814 ], [ -1.47549, 52.89824 ], [ -1.47617, 52.89834 ], [ -1.47616, 52.89884 ], [ -1.47441, 52.89887 ], [ -1.47448, 52.89914 ], [ -1.47882, 52.89905 ], [ -1.47874, 52.8993 ], [ -1.47986, 52.90069 ], [ -1.4808, 52.90028 ], [ -1.48146, 52.90056 ], [ -1.48222, 52.90018 ], [ -1.48177, 52.90092 ], [ -1.47863, 52.90091 ], [ -1.47821, 52.90205 ], [ -1.47863, 52.90241 ], [ -1.47846, 52.90281 ], [ -1.47896, 52.90327 ], [ -1.48056, 52.90282 ], [ -1.48254, 52.90285 ], [ -1.48302, 52.90243 ], [ -1.48418, 52.90221 ], [ -1.48566, 52.90228 ], [ -1.48799, 52.90183 ], [ -1.48875, 52.90112 ], [ -1.4898, 52.90077 ], [ -1.49069, 52.89942 ], [ -1.49108, 52.89948 ], [ -1.49099, 52.90039 ], [ -1.49092, 52.90176 ], [ -1.49292, 52.90234 ], [ -1.49534, 52.90341 ], [ -1.49502, 52.90386 ], [ -1.49464, 52.90377 ], [ -1.4942, 52.90473 ], [ -1.49651, 52.90582 ], [ -1.49585, 52.9063 ], [ -1.49649, 52.90674 ], [ -1.49468, 52.90723 ], [ -1.49473, 52.90751 ], [ -1.49448, 52.90766 ], [ -1.49445, 52.90838 ], [ -1.49372, 52.90839 ], [ -1.49268, 52.90893 ], [ -1.49218, 52.9088 ], [ -1.49138, 52.90924 ], [ -1.49066, 52.90915 ], [ -1.48997, 52.90702 ], [ -1.48896, 52.90709 ], [ -1.48891, 52.90582 ], [ -1.4889, 52.90558 ], [ -1.4889, 52.90553 ], [ -1.48881, 52.90456 ], [ -1.48707, 52.90455 ], [ -1.48663, 52.90458 ], [ -1.48665, 52.90565 ], [ -1.48533, 52.90575 ], [ -1.48318, 52.90581 ], [ -1.48306, 52.90547 ], [ -1.48347, 52.90529 ], [ -1.48321, 52.90504 ], [ -1.48351, 52.9046 ], [ -1.48321, 52.90435 ], [ -1.48103, 52.90479 ], [ -1.48099, 52.9048 ], [ -1.48009, 52.90504 ], [ -1.48035, 52.90555 ], [ -1.47804, 52.90606 ], [ -1.47774, 52.90644 ], [ -1.47697, 52.90559 ], [ -1.47651, 52.90439 ], [ -1.47649, 52.90435 ], [ -1.47639, 52.90413 ], [ -1.47519, 52.90154 ], [ -1.47204, 52.90235 ], [ -1.47088, 52.90018 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002816", "population": 9653, "outputarea_code": "E00068361", "lsoa_code": "E01013545", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby North", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.52434, "latitude": 52.90037, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.51678, 52.89079 ], [ -1.51813, 52.88937 ], [ -1.51946, 52.8889 ], [ -1.52137, 52.88811 ], [ -1.5232, 52.88734 ], [ -1.52494, 52.89067 ], [ -1.52517, 52.8907 ], [ -1.52727, 52.89083 ], [ -1.52846, 52.89038 ], [ -1.53083, 52.88917 ], [ -1.53066, 52.88898 ], [ -1.53395, 52.88804 ], [ -1.53435, 52.88844 ], [ -1.53589, 52.88812 ], [ -1.53626, 52.88838 ], [ -1.53691, 52.88821 ], [ -1.53712, 52.88844 ], [ -1.53867, 52.88855 ], [ -1.5399, 52.88901 ], [ -1.53966, 52.88926 ], [ -1.54037, 52.88956 ], [ -1.54169, 52.88954 ], [ -1.54167, 52.89213 ], [ -1.54206, 52.89236 ], [ -1.54158, 52.89269 ], [ -1.53964, 52.89394 ], [ -1.54175, 52.89442 ], [ -1.54302, 52.8963 ], [ -1.54229, 52.89679 ], [ -1.54179, 52.89805 ], [ -1.53953, 52.89659 ], [ -1.53866, 52.89635 ], [ -1.53904, 52.89642 ], [ -1.53928, 52.89603 ], [ -1.53558, 52.89507 ], [ -1.5359, 52.89466 ], [ -1.53541, 52.89462 ], [ -1.53521, 52.8949 ], [ -1.53302, 52.89418 ], [ -1.53258, 52.89392 ], [ -1.53157, 52.8941 ], [ -1.5308, 52.89345 ], [ -1.5301, 52.89365 ], [ -1.52849, 52.8928 ], [ -1.52806, 52.8931 ], [ -1.5282, 52.8939 ], [ -1.52743, 52.89359 ], [ -1.52651, 52.89421 ], [ -1.52753, 52.89523 ], [ -1.52704, 52.89558 ], [ -1.52727, 52.89595 ], [ -1.52673, 52.89601 ], [ -1.5264, 52.89623 ], [ -1.52817, 52.89698 ], [ -1.52763, 52.89753 ], [ -1.52912, 52.89798 ], [ -1.52974, 52.8982 ], [ -1.52968, 52.89828 ], [ -1.53296, 52.89992 ], [ -1.5336, 52.90116 ], [ -1.5345, 52.90132 ], [ -1.53396, 52.90301 ], [ -1.53436, 52.90316 ], [ -1.53418, 52.90332 ], [ -1.53118, 52.90635 ], [ -1.52857, 52.90897 ], [ -1.5274, 52.91011 ], [ -1.52597, 52.9115 ], [ -1.52557, 52.91189 ], [ -1.52253, 52.91475 ], [ -1.52124, 52.91441 ], [ -1.51895, 52.91295 ], [ -1.51763, 52.91277 ], [ -1.51629, 52.91312 ], [ -1.51647, 52.91277 ], [ -1.51593, 52.91247 ], [ -1.51457, 52.91239 ], [ -1.51463, 52.91214 ], [ -1.51374, 52.91226 ], [ -1.51356, 52.91197 ], [ -1.51469, 52.91183 ], [ -1.51415, 52.91092 ], [ -1.51444, 52.9107 ], [ -1.51408, 52.91079 ], [ -1.51423, 52.91046 ], [ -1.51157, 52.90785 ], [ -1.51199, 52.90718 ], [ -1.51134, 52.90748 ], [ -1.51102, 52.90682 ], [ -1.51038, 52.90698 ], [ -1.51055, 52.90572 ], [ -1.5095, 52.90579 ], [ -1.50718, 52.90565 ], [ -1.50674, 52.90567 ], [ -1.50686, 52.90513 ], [ -1.50727, 52.90504 ], [ -1.50645, 52.90426 ], [ -1.508, 52.90289 ], [ -1.50951, 52.90342 ], [ -1.50989, 52.90365 ], [ -1.51073, 52.90351 ], [ -1.51054, 52.90161 ], [ -1.51157, 52.90136 ], [ -1.51328, 52.90207 ], [ -1.51382, 52.90178 ], [ -1.51345, 52.90111 ], [ -1.51535, 52.90091 ], [ -1.51766, 52.89976 ], [ -1.5185, 52.89831 ], [ -1.51923, 52.89753 ], [ -1.51795, 52.89703 ], [ -1.51926, 52.89463 ], [ -1.51904, 52.89455 ], [ -1.51708, 52.89401 ], [ -1.51717, 52.89355 ], [ -1.51439, 52.89305 ], [ -1.51544, 52.89211 ], [ -1.51568, 52.89189 ], [ -1.51678, 52.89079 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002817", "population": 6343, "outputarea_code": "E00068105", "lsoa_code": "E01013489", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.50439, "latitude": 52.89776, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.49649, 52.89253 ], [ -1.49635, 52.89155 ], [ -1.49731, 52.89163 ], [ -1.49813, 52.89103 ], [ -1.49754, 52.89082 ], [ -1.49764, 52.89048 ], [ -1.49846, 52.89007 ], [ -1.499, 52.8908 ], [ -1.49874, 52.89122 ], [ -1.49909, 52.89143 ], [ -1.49844, 52.89209 ], [ -1.4995, 52.89262 ], [ -1.49977, 52.89331 ], [ -1.50131, 52.89534 ], [ -1.50346, 52.89491 ], [ -1.5043, 52.89479 ], [ -1.50593, 52.89385 ], [ -1.5071, 52.89373 ], [ -1.50816, 52.89419 ], [ -1.50859, 52.89516 ], [ -1.50936, 52.89544 ], [ -1.51054, 52.89524 ], [ -1.51007, 52.89413 ], [ -1.51102, 52.89334 ], [ -1.51057, 52.893 ], [ -1.51101, 52.89278 ], [ -1.511, 52.89104 ], [ -1.51126, 52.89063 ], [ -1.5137, 52.89126 ], [ -1.51544, 52.89211 ], [ -1.51439, 52.89305 ], [ -1.51717, 52.89355 ], [ -1.51708, 52.89401 ], [ -1.51904, 52.89455 ], [ -1.51926, 52.89463 ], [ -1.51795, 52.89703 ], [ -1.51923, 52.89753 ], [ -1.5185, 52.89831 ], [ -1.51766, 52.89976 ], [ -1.51535, 52.90091 ], [ -1.51345, 52.90111 ], [ -1.51382, 52.90178 ], [ -1.51328, 52.90207 ], [ -1.51157, 52.90136 ], [ -1.51054, 52.90161 ], [ -1.50982, 52.90175 ], [ -1.51007, 52.90152 ], [ -1.50968, 52.9015 ], [ -1.50999, 52.90135 ], [ -1.50916, 52.90014 ], [ -1.50912, 52.89913 ], [ -1.50849, 52.89909 ], [ -1.50812, 52.89962 ], [ -1.50765, 52.89959 ], [ -1.50684, 52.90018 ], [ -1.50665, 52.90079 ], [ -1.50571, 52.9012 ], [ -1.50456, 52.90176 ], [ -1.50238, 52.9025 ], [ -1.50219, 52.90256 ], [ -1.49857, 52.90478 ], [ -1.49831, 52.90501 ], [ -1.49534, 52.90341 ], [ -1.49292, 52.90234 ], [ -1.49092, 52.90176 ], [ -1.49099, 52.90039 ], [ -1.49108, 52.89948 ], [ -1.49069, 52.89942 ], [ -1.49145, 52.8985 ], [ -1.49213, 52.89757 ], [ -1.49292, 52.89638 ], [ -1.49533, 52.89335 ], [ -1.49554, 52.89284 ], [ -1.49649, 52.89253 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002818", "population": 8517, "outputarea_code": "E00068488", "lsoa_code": "E01013570", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.48524, "latitude": 52.89607, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.48613, 52.88989 ], [ -1.48895, 52.88842 ], [ -1.48974, 52.88907 ], [ -1.49058, 52.88912 ], [ -1.49217, 52.89073 ], [ -1.49533, 52.89335 ], [ -1.49292, 52.89638 ], [ -1.49213, 52.89757 ], [ -1.49145, 52.8985 ], [ -1.49069, 52.89942 ], [ -1.4898, 52.90077 ], [ -1.48875, 52.90112 ], [ -1.48799, 52.90183 ], [ -1.48566, 52.90228 ], [ -1.48418, 52.90221 ], [ -1.48302, 52.90243 ], [ -1.48254, 52.90285 ], [ -1.48056, 52.90282 ], [ -1.47896, 52.90327 ], [ -1.47846, 52.90281 ], [ -1.47863, 52.90241 ], [ -1.47821, 52.90205 ], [ -1.47863, 52.90091 ], [ -1.48177, 52.90092 ], [ -1.48222, 52.90018 ], [ -1.48146, 52.90056 ], [ -1.4808, 52.90028 ], [ -1.47986, 52.90069 ], [ -1.47874, 52.8993 ], [ -1.47882, 52.89905 ], [ -1.47448, 52.89914 ], [ -1.47441, 52.89887 ], [ -1.47616, 52.89884 ], [ -1.47617, 52.89834 ], [ -1.47549, 52.89824 ], [ -1.47615, 52.89814 ], [ -1.47653, 52.8975 ], [ -1.47514, 52.89691 ], [ -1.47503, 52.89733 ], [ -1.47454, 52.8974 ], [ -1.47324, 52.89693 ], [ -1.47512, 52.89576 ], [ -1.47978, 52.89323 ], [ -1.4843, 52.89085 ], [ -1.48613, 52.88989 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002819", "population": 7873, "outputarea_code": "E00068007", "lsoa_code": "E01013474", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.43677, "latitude": 52.90405, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.40941, 52.88908 ], [ -1.40986, 52.88829 ], [ -1.40973, 52.88644 ], [ -1.41413, 52.88816 ], [ -1.41444, 52.88829 ], [ -1.41478, 52.88843 ], [ -1.41701, 52.88938 ], [ -1.42084, 52.89077 ], [ -1.42336, 52.89224 ], [ -1.42358, 52.89233 ], [ -1.42421, 52.89261 ], [ -1.42606, 52.89434 ], [ -1.42694, 52.89523 ], [ -1.42659, 52.89578 ], [ -1.42603, 52.8964 ], [ -1.42483, 52.89663 ], [ -1.42437, 52.89609 ], [ -1.42322, 52.89606 ], [ -1.42309, 52.89632 ], [ -1.42397, 52.89665 ], [ -1.42441, 52.89707 ], [ -1.42369, 52.89843 ], [ -1.42416, 52.89863 ], [ -1.42404, 52.89886 ], [ -1.42312, 52.89867 ], [ -1.42296, 52.8989 ], [ -1.424, 52.89914 ], [ -1.42439, 52.89962 ], [ -1.42625, 52.89981 ], [ -1.42688, 52.90121 ], [ -1.42909, 52.90272 ], [ -1.43102, 52.90217 ], [ -1.43231, 52.9022 ], [ -1.43293, 52.90143 ], [ -1.43389, 52.90144 ], [ -1.43421, 52.901 ], [ -1.43534, 52.90175 ], [ -1.43471, 52.90206 ], [ -1.43463, 52.90269 ], [ -1.43415, 52.90256 ], [ -1.43374, 52.90313 ], [ -1.4346, 52.90335 ], [ -1.43536, 52.90298 ], [ -1.43744, 52.90327 ], [ -1.43833, 52.90197 ], [ -1.43863, 52.90216 ], [ -1.43931, 52.90249 ], [ -1.439, 52.90299 ], [ -1.44067, 52.90354 ], [ -1.44106, 52.90339 ], [ -1.44214, 52.90387 ], [ -1.44262, 52.90341 ], [ -1.44239, 52.90304 ], [ -1.4432, 52.90292 ], [ -1.44226, 52.90248 ], [ -1.44278, 52.90208 ], [ -1.44427, 52.90175 ], [ -1.44414, 52.90141 ], [ -1.44456, 52.90125 ], [ -1.44365, 52.90105 ], [ -1.44484, 52.90089 ], [ -1.44554, 52.9004 ], [ -1.44445, 52.90026 ], [ -1.44415, 52.89964 ], [ -1.44463, 52.89916 ], [ -1.44427, 52.89749 ], [ -1.44485, 52.8972 ], [ -1.44623, 52.89732 ], [ -1.44667, 52.89739 ], [ -1.44701, 52.89909 ], [ -1.44934, 52.89924 ], [ -1.4493, 52.89996 ], [ -1.45233, 52.90009 ], [ -1.45226, 52.90072 ], [ -1.45872, 52.9018 ], [ -1.45973, 52.90165 ], [ -1.46095, 52.90307 ], [ -1.46118, 52.90343 ], [ -1.46386, 52.90729 ], [ -1.46241, 52.91203 ], [ -1.46237, 52.9168 ], [ -1.46357, 52.91917 ], [ -1.46374, 52.91953 ], [ -1.4636, 52.9195 ], [ -1.45957, 52.91861 ], [ -1.457, 52.91852 ], [ -1.45246, 52.91748 ], [ -1.44727, 52.91809 ], [ -1.44307, 52.91762 ], [ -1.44253, 52.91531 ], [ -1.44062, 52.91317 ], [ -1.44071, 52.91105 ], [ -1.43904, 52.90966 ], [ -1.43677, 52.90853 ], [ -1.43519, 52.90724 ], [ -1.43464, 52.90538 ], [ -1.43044, 52.90467 ], [ -1.42582, 52.90411 ], [ -1.424, 52.90318 ], [ -1.42167, 52.90356 ], [ -1.41866, 52.90295 ], [ -1.41432, 52.90332 ], [ -1.41268, 52.90317 ], [ -1.41147, 52.90247 ], [ -1.41176, 52.90099 ], [ -1.41117, 52.90017 ], [ -1.40627, 52.90021 ], [ -1.40277, 52.90046 ], [ -1.40349, 52.89694 ], [ -1.40295, 52.89623 ], [ -1.40311, 52.89561 ], [ -1.40583, 52.89547 ], [ -1.40592, 52.89453 ], [ -1.4065, 52.89461 ], [ -1.40679, 52.89368 ], [ -1.4067, 52.89321 ], [ -1.4079, 52.8915 ], [ -1.40761, 52.89104 ], [ -1.40759, 52.88969 ], [ -1.40911, 52.88936 ], [ -1.40941, 52.88908 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002820", "population": 9907, "outputarea_code": "E00068012", "lsoa_code": "E01013477", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.43594, "latitude": 52.89568, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.4397, 52.88926 ], [ -1.43944, 52.88818 ], [ -1.43999, 52.8878 ], [ -1.44135, 52.88761 ], [ -1.44189, 52.88696 ], [ -1.4429, 52.88662 ], [ -1.44467, 52.88712 ], [ -1.44498, 52.88766 ], [ -1.44581, 52.88747 ], [ -1.44553, 52.88931 ], [ -1.44556, 52.89009 ], [ -1.4458, 52.89205 ], [ -1.44412, 52.8922 ], [ -1.44445, 52.89397 ], [ -1.44372, 52.89448 ], [ -1.44469, 52.8951 ], [ -1.44414, 52.89552 ], [ -1.44179, 52.89477 ], [ -1.44081, 52.89433 ], [ -1.4406, 52.89383 ], [ -1.43921, 52.89455 ], [ -1.4387, 52.89522 ], [ -1.43902, 52.89581 ], [ -1.43851, 52.89597 ], [ -1.43847, 52.8964 ], [ -1.43885, 52.8967 ], [ -1.43851, 52.89712 ], [ -1.43769, 52.89706 ], [ -1.43827, 52.89746 ], [ -1.43997, 52.89718 ], [ -1.4427, 52.8977 ], [ -1.44427, 52.89749 ], [ -1.44463, 52.89916 ], [ -1.44415, 52.89964 ], [ -1.44445, 52.90026 ], [ -1.44554, 52.9004 ], [ -1.44484, 52.90089 ], [ -1.44365, 52.90105 ], [ -1.44456, 52.90125 ], [ -1.44414, 52.90141 ], [ -1.44427, 52.90175 ], [ -1.44278, 52.90208 ], [ -1.44226, 52.90248 ], [ -1.4432, 52.90292 ], [ -1.44239, 52.90304 ], [ -1.44262, 52.90341 ], [ -1.44214, 52.90387 ], [ -1.44106, 52.90339 ], [ -1.44067, 52.90354 ], [ -1.439, 52.90299 ], [ -1.43931, 52.90249 ], [ -1.43863, 52.90216 ], [ -1.43833, 52.90197 ], [ -1.43744, 52.90327 ], [ -1.43536, 52.90298 ], [ -1.4346, 52.90335 ], [ -1.43374, 52.90313 ], [ -1.43415, 52.90256 ], [ -1.43463, 52.90269 ], [ -1.43471, 52.90206 ], [ -1.43534, 52.90175 ], [ -1.43421, 52.901 ], [ -1.43389, 52.90144 ], [ -1.43293, 52.90143 ], [ -1.43231, 52.9022 ], [ -1.43102, 52.90217 ], [ -1.42909, 52.90272 ], [ -1.42688, 52.90121 ], [ -1.42625, 52.89981 ], [ -1.42439, 52.89962 ], [ -1.424, 52.89914 ], [ -1.42296, 52.8989 ], [ -1.42312, 52.89867 ], [ -1.42404, 52.89886 ], [ -1.42416, 52.89863 ], [ -1.42369, 52.89843 ], [ -1.42441, 52.89707 ], [ -1.42397, 52.89665 ], [ -1.42309, 52.89632 ], [ -1.42322, 52.89606 ], [ -1.42437, 52.89609 ], [ -1.42483, 52.89663 ], [ -1.42603, 52.8964 ], [ -1.42659, 52.89578 ], [ -1.42694, 52.89523 ], [ -1.42748, 52.89564 ], [ -1.42791, 52.89556 ], [ -1.42766, 52.89412 ], [ -1.42885, 52.89379 ], [ -1.42904, 52.89321 ], [ -1.42977, 52.89315 ], [ -1.42956, 52.89241 ], [ -1.43039, 52.89169 ], [ -1.43083, 52.89204 ], [ -1.43307, 52.89029 ], [ -1.43276, 52.89008 ], [ -1.43151, 52.89017 ], [ -1.43142, 52.89069 ], [ -1.43006, 52.89023 ], [ -1.43016, 52.88947 ], [ -1.43168, 52.88913 ], [ -1.43263, 52.88832 ], [ -1.43338, 52.88881 ], [ -1.43391, 52.88876 ], [ -1.43337, 52.88757 ], [ -1.43421, 52.88756 ], [ -1.4354, 52.88861 ], [ -1.43629, 52.88883 ], [ -1.4365, 52.8887 ], [ -1.43674, 52.88835 ], [ -1.43816, 52.88866 ], [ -1.43894, 52.88927 ], [ -1.4397, 52.88926 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002821", "population": 11982, "outputarea_code": "E00068006", "lsoa_code": "E01013472", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.45583, "latitude": 52.89383, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.44904, 52.88451 ], [ -1.45369, 52.88528 ], [ -1.4562, 52.88513 ], [ -1.4601, 52.88439 ], [ -1.4619, 52.88438 ], [ -1.46331, 52.88753 ], [ -1.46676, 52.88936 ], [ -1.46655, 52.89045 ], [ -1.46625, 52.89039 ], [ -1.46693, 52.89086 ], [ -1.46679, 52.89199 ], [ -1.46608, 52.89287 ], [ -1.46534, 52.89273 ], [ -1.46299, 52.89227 ], [ -1.46222, 52.89265 ], [ -1.46377, 52.89383 ], [ -1.46263, 52.89545 ], [ -1.47012, 52.89641 ], [ -1.47183, 52.89653 ], [ -1.4721, 52.89623 ], [ -1.47324, 52.89693 ], [ -1.47, 52.89939 ], [ -1.46932, 52.89998 ], [ -1.46673, 52.90276 ], [ -1.46386, 52.90729 ], [ -1.46118, 52.90343 ], [ -1.46095, 52.90307 ], [ -1.45973, 52.90165 ], [ -1.45872, 52.9018 ], [ -1.45226, 52.90072 ], [ -1.45233, 52.90009 ], [ -1.4493, 52.89996 ], [ -1.44934, 52.89924 ], [ -1.44701, 52.89909 ], [ -1.44667, 52.89739 ], [ -1.44623, 52.89732 ], [ -1.44485, 52.8972 ], [ -1.44427, 52.89749 ], [ -1.4427, 52.8977 ], [ -1.43997, 52.89718 ], [ -1.43827, 52.89746 ], [ -1.43769, 52.89706 ], [ -1.43851, 52.89712 ], [ -1.43885, 52.8967 ], [ -1.43847, 52.8964 ], [ -1.43851, 52.89597 ], [ -1.43902, 52.89581 ], [ -1.4387, 52.89522 ], [ -1.43921, 52.89455 ], [ -1.4406, 52.89383 ], [ -1.44081, 52.89433 ], [ -1.44179, 52.89477 ], [ -1.44414, 52.89552 ], [ -1.44469, 52.8951 ], [ -1.44372, 52.89448 ], [ -1.44445, 52.89397 ], [ -1.44412, 52.8922 ], [ -1.4458, 52.89205 ], [ -1.44556, 52.89009 ], [ -1.44553, 52.88931 ], [ -1.44581, 52.88747 ], [ -1.44498, 52.88766 ], [ -1.44467, 52.88712 ], [ -1.4429, 52.88662 ], [ -1.44189, 52.88696 ], [ -1.44135, 52.88761 ], [ -1.43999, 52.8878 ], [ -1.43969, 52.88753 ], [ -1.43932, 52.88771 ], [ -1.43938, 52.88719 ], [ -1.43977, 52.88711 ], [ -1.439, 52.88654 ], [ -1.43967, 52.88644 ], [ -1.44101, 52.88537 ], [ -1.44192, 52.88555 ], [ -1.44494, 52.8848 ], [ -1.44446, 52.88439 ], [ -1.44559, 52.88425 ], [ -1.44647, 52.8846 ], [ -1.44785, 52.88423 ], [ -1.44835, 52.88409 ], [ -1.44904, 52.88451 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002822", "population": 6772, "outputarea_code": "E00068101", "lsoa_code": "E01013494", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.50466, "latitude": 52.8888, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.49032, 52.8877 ], [ -1.49232, 52.88665 ], [ -1.49523, 52.88513 ], [ -1.49552, 52.88498 ], [ -1.49644, 52.8845 ], [ -1.4974, 52.884 ], [ -1.49809, 52.88364 ], [ -1.49866, 52.88334 ], [ -1.50196, 52.88161 ], [ -1.50165, 52.88264 ], [ -1.50278, 52.88256 ], [ -1.50309, 52.88456 ], [ -1.50311, 52.88485 ], [ -1.50485, 52.88488 ], [ -1.50726, 52.88488 ], [ -1.51461, 52.88471 ], [ -1.51583, 52.88646 ], [ -1.5232, 52.88734 ], [ -1.52137, 52.88811 ], [ -1.51946, 52.8889 ], [ -1.51813, 52.88937 ], [ -1.51678, 52.89079 ], [ -1.51568, 52.89189 ], [ -1.51544, 52.89211 ], [ -1.5137, 52.89126 ], [ -1.51126, 52.89063 ], [ -1.511, 52.89104 ], [ -1.51101, 52.89278 ], [ -1.51057, 52.893 ], [ -1.51102, 52.89334 ], [ -1.51007, 52.89413 ], [ -1.51054, 52.89524 ], [ -1.50936, 52.89544 ], [ -1.50859, 52.89516 ], [ -1.50816, 52.89419 ], [ -1.5071, 52.89373 ], [ -1.50593, 52.89385 ], [ -1.5043, 52.89479 ], [ -1.50346, 52.89491 ], [ -1.50131, 52.89534 ], [ -1.49977, 52.89331 ], [ -1.4995, 52.89262 ], [ -1.49844, 52.89209 ], [ -1.49909, 52.89143 ], [ -1.49874, 52.89122 ], [ -1.499, 52.8908 ], [ -1.49846, 52.89007 ], [ -1.49764, 52.89048 ], [ -1.49754, 52.89082 ], [ -1.49813, 52.89103 ], [ -1.49731, 52.89163 ], [ -1.49635, 52.89155 ], [ -1.49649, 52.89253 ], [ -1.49554, 52.89284 ], [ -1.49533, 52.89335 ], [ -1.49217, 52.89073 ], [ -1.49058, 52.88912 ], [ -1.48974, 52.88907 ], [ -1.48895, 52.88842 ], [ -1.48906, 52.88836 ], [ -1.49032, 52.8877 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002823", "population": 7494, "outputarea_code": "E00068142", "lsoa_code": "E01013498", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.42804, "latitude": 52.88598, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.41478, 52.88843 ], [ -1.41444, 52.88829 ], [ -1.41413, 52.88816 ], [ -1.40973, 52.88644 ], [ -1.41038, 52.88654 ], [ -1.4108, 52.88531 ], [ -1.41166, 52.88424 ], [ -1.41403, 52.8843 ], [ -1.41484, 52.88448 ], [ -1.41511, 52.88453 ], [ -1.41725, 52.88476 ], [ -1.41891, 52.88455 ], [ -1.42038, 52.88192 ], [ -1.42386, 52.8816 ], [ -1.42569, 52.88122 ], [ -1.42558, 52.88097 ], [ -1.42626, 52.88083 ], [ -1.42782, 52.88052 ], [ -1.42802, 52.88071 ], [ -1.43153, 52.87952 ], [ -1.43377, 52.87944 ], [ -1.43586, 52.87978 ], [ -1.43743, 52.88002 ], [ -1.44003, 52.88141 ], [ -1.44131, 52.88087 ], [ -1.44181, 52.88173 ], [ -1.44205, 52.88209 ], [ -1.44446, 52.88439 ], [ -1.44494, 52.8848 ], [ -1.44192, 52.88555 ], [ -1.44101, 52.88537 ], [ -1.43967, 52.88644 ], [ -1.439, 52.88654 ], [ -1.43977, 52.88711 ], [ -1.43938, 52.88719 ], [ -1.43932, 52.88771 ], [ -1.43969, 52.88753 ], [ -1.43999, 52.8878 ], [ -1.43944, 52.88818 ], [ -1.4397, 52.88926 ], [ -1.43894, 52.88927 ], [ -1.43816, 52.88866 ], [ -1.43674, 52.88835 ], [ -1.4365, 52.8887 ], [ -1.43629, 52.88883 ], [ -1.4354, 52.88861 ], [ -1.43421, 52.88756 ], [ -1.43337, 52.88757 ], [ -1.43391, 52.88876 ], [ -1.43338, 52.88881 ], [ -1.43263, 52.88832 ], [ -1.43168, 52.88913 ], [ -1.43016, 52.88947 ], [ -1.43006, 52.89023 ], [ -1.43142, 52.89069 ], [ -1.43151, 52.89017 ], [ -1.43276, 52.89008 ], [ -1.43307, 52.89029 ], [ -1.43083, 52.89204 ], [ -1.43039, 52.89169 ], [ -1.42956, 52.89241 ], [ -1.42977, 52.89315 ], [ -1.42904, 52.89321 ], [ -1.42885, 52.89379 ], [ -1.42766, 52.89412 ], [ -1.42791, 52.89556 ], [ -1.42748, 52.89564 ], [ -1.42694, 52.89523 ], [ -1.42606, 52.89434 ], [ -1.42421, 52.89261 ], [ -1.42358, 52.89233 ], [ -1.42336, 52.89224 ], [ -1.42084, 52.89077 ], [ -1.41701, 52.88938 ], [ -1.41478, 52.88843 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002824", "population": 9970, "outputarea_code": "E00068573", "lsoa_code": "E01013585", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.47894, "latitude": 52.88181, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.48431, 52.87123 ], [ -1.48362, 52.87041 ], [ -1.4873, 52.86985 ], [ -1.48753, 52.86952 ], [ -1.49103, 52.86938 ], [ -1.49367, 52.86974 ], [ -1.49519, 52.87038 ], [ -1.49481, 52.87115 ], [ -1.49476, 52.87125 ], [ -1.49376, 52.87329 ], [ -1.4936, 52.87363 ], [ -1.49436, 52.87408 ], [ -1.49494, 52.87443 ], [ -1.49529, 52.87463 ], [ -1.49495, 52.87493 ], [ -1.49565, 52.87532 ], [ -1.49667, 52.87592 ], [ -1.49671, 52.87685 ], [ -1.49763, 52.87691 ], [ -1.49973, 52.87726 ], [ -1.4999, 52.8775 ], [ -1.5, 52.87902 ], [ -1.49982, 52.87924 ], [ -1.49914, 52.88121 ], [ -1.4995, 52.8827 ], [ -1.50183, 52.88147 ], [ -1.50196, 52.88161 ], [ -1.49866, 52.88334 ], [ -1.49809, 52.88364 ], [ -1.4974, 52.884 ], [ -1.49644, 52.8845 ], [ -1.49552, 52.88498 ], [ -1.49523, 52.88513 ], [ -1.49232, 52.88665 ], [ -1.49032, 52.8877 ], [ -1.48906, 52.88836 ], [ -1.48895, 52.88842 ], [ -1.48613, 52.88989 ], [ -1.4843, 52.89085 ], [ -1.47978, 52.89323 ], [ -1.47512, 52.89576 ], [ -1.47324, 52.89693 ], [ -1.4721, 52.89623 ], [ -1.47183, 52.89653 ], [ -1.47012, 52.89641 ], [ -1.46263, 52.89545 ], [ -1.46377, 52.89383 ], [ -1.46222, 52.89265 ], [ -1.46299, 52.89227 ], [ -1.46534, 52.89273 ], [ -1.46608, 52.89287 ], [ -1.46679, 52.89199 ], [ -1.46693, 52.89086 ], [ -1.46625, 52.89039 ], [ -1.46655, 52.89045 ], [ -1.46676, 52.88936 ], [ -1.46331, 52.88753 ], [ -1.4619, 52.88438 ], [ -1.4601, 52.88439 ], [ -1.45982, 52.88334 ], [ -1.46018, 52.88259 ], [ -1.46205, 52.88134 ], [ -1.46243, 52.88043 ], [ -1.46205, 52.87736 ], [ -1.46717, 52.87292 ], [ -1.46766, 52.87054 ], [ -1.48044, 52.87104 ], [ -1.48147, 52.87108 ], [ -1.48431, 52.87123 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002825", "population": 8756, "outputarea_code": "E00068231", "lsoa_code": "E01013518", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.45088, "latitude": 52.87553, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.44753, 52.86494 ], [ -1.44918, 52.86652 ], [ -1.4507, 52.867 ], [ -1.45126, 52.8675 ], [ -1.45269, 52.86822 ], [ -1.45339, 52.86852 ], [ -1.45436, 52.86887 ], [ -1.45698, 52.86988 ], [ -1.46376, 52.87249 ], [ -1.46717, 52.87292 ], [ -1.46205, 52.87736 ], [ -1.46243, 52.88043 ], [ -1.46205, 52.88134 ], [ -1.46018, 52.88259 ], [ -1.45982, 52.88334 ], [ -1.4601, 52.88439 ], [ -1.4562, 52.88513 ], [ -1.45369, 52.88528 ], [ -1.44904, 52.88451 ], [ -1.44835, 52.88409 ], [ -1.44785, 52.88423 ], [ -1.44647, 52.8846 ], [ -1.44559, 52.88425 ], [ -1.44446, 52.88439 ], [ -1.44205, 52.88209 ], [ -1.44181, 52.88173 ], [ -1.44131, 52.88087 ], [ -1.44106, 52.8802 ], [ -1.43876, 52.87829 ], [ -1.43958, 52.87799 ], [ -1.44004, 52.87721 ], [ -1.44094, 52.8769 ], [ -1.44313, 52.87702 ], [ -1.44276, 52.87627 ], [ -1.44066, 52.87373 ], [ -1.44009, 52.87107 ], [ -1.44123, 52.87084 ], [ -1.44134, 52.86998 ], [ -1.4398, 52.86996 ], [ -1.43982, 52.86971 ], [ -1.43974, 52.86892 ], [ -1.43896, 52.86843 ], [ -1.43805, 52.86859 ], [ -1.43819, 52.86823 ], [ -1.43737, 52.86675 ], [ -1.43853, 52.86677 ], [ -1.43932, 52.8664 ], [ -1.43863, 52.86525 ], [ -1.43996, 52.86474 ], [ -1.44003, 52.86473 ], [ -1.44119, 52.86553 ], [ -1.44573, 52.86506 ], [ -1.44753, 52.86494 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02002826", "population": 6433, "outputarea_code": "E00068233", "lsoa_code": "E01013520", "la_name": "Derby", "bua_name": "Derby BUASD", "constituency_name": "Derby South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.43223, "latitude": 52.87223, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.44753, 52.86494 ], [ -1.44573, 52.86506 ], [ -1.44119, 52.86553 ], [ -1.44003, 52.86473 ], [ -1.43996, 52.86474 ], [ -1.43863, 52.86525 ], [ -1.43932, 52.8664 ], [ -1.43853, 52.86677 ], [ -1.43737, 52.86675 ], [ -1.43819, 52.86823 ], [ -1.43805, 52.86859 ], [ -1.43896, 52.86843 ], [ -1.43974, 52.86892 ], [ -1.43982, 52.86971 ], [ -1.4398, 52.86996 ], [ -1.44134, 52.86998 ], [ -1.44123, 52.87084 ], [ -1.44009, 52.87107 ], [ -1.44066, 52.87373 ], [ -1.44276, 52.87627 ], [ -1.44313, 52.87702 ], [ -1.44094, 52.8769 ], [ -1.44004, 52.87721 ], [ -1.43958, 52.87799 ], [ -1.43876, 52.87829 ], [ -1.44106, 52.8802 ], [ -1.44131, 52.88087 ], [ -1.44003, 52.88141 ], [ -1.43743, 52.88002 ], [ -1.43586, 52.87978 ], [ -1.43377, 52.87944 ], [ -1.43153, 52.87952 ], [ -1.42802, 52.88071 ], [ -1.42782, 52.88052 ], [ -1.42626, 52.88083 ], [ -1.42558, 52.88097 ], [ -1.42569, 52.88122 ], [ -1.42386, 52.8816 ], [ -1.42038, 52.88192 ], [ -1.42056, 52.87989 ], [ -1.41959, 52.87863 ], [ -1.42009, 52.87827 ], [ -1.41653, 52.87576 ], [ -1.41967, 52.87506 ], [ -1.42541, 52.87393 ], [ -1.42518, 52.87297 ], [ -1.42582, 52.87219 ], [ -1.42834, 52.87089 ], [ -1.4296, 52.87025 ], [ -1.42952, 52.87012 ], [ -1.42753, 52.86884 ], [ -1.42614, 52.86914 ], [ -1.42487, 52.86877 ], [ -1.42484, 52.86853 ], [ -1.42357, 52.86508 ], [ -1.42465, 52.86488 ], [ -1.42796, 52.86476 ], [ -1.42768, 52.86394 ], [ -1.43159, 52.86362 ], [ -1.43563, 52.86307 ], [ -1.43791, 52.86283 ], [ -1.43821, 52.86169 ], [ -1.43906, 52.86241 ], [ -1.44081, 52.86208 ], [ -1.44088, 52.86229 ], [ -1.44156, 52.86173 ], [ -1.44356, 52.86112 ], [ -1.44623, 52.86131 ], [ -1.44488, 52.86215 ], [ -1.44465, 52.86266 ], [ -1.44492, 52.86331 ], [ -1.44753, 52.86494 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02004118", "population": 1240, "outputarea_code": "E00100396", "lsoa_code": "E01019839", "la_name": "South Derbyshire", "bua_name": "Derby BUASD", "constituency_name": "South Derbyshire", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.55562, "latitude": 52.89633, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.55679, 52.89348 ], [ -1.56012, 52.89231 ], [ -1.56242, 52.89305 ], [ -1.56286, 52.89255 ], [ -1.56413, 52.89283 ], [ -1.56233, 52.89466 ], [ -1.562, 52.89492 ], [ -1.56235, 52.89512 ], [ -1.56063, 52.89635 ], [ -1.56092, 52.89658 ], [ -1.55969, 52.89698 ], [ -1.55862, 52.89668 ], [ -1.55752, 52.89707 ], [ -1.55765, 52.8975 ], [ -1.55467, 52.89877 ], [ -1.55493, 52.89962 ], [ -1.55283, 52.90098 ], [ -1.54866, 52.90092 ], [ -1.54862, 52.90087 ], [ -1.54848, 52.90072 ], [ -1.55077, 52.90078 ], [ -1.55148, 52.90042 ], [ -1.54805, 52.89686 ], [ -1.5493, 52.89641 ], [ -1.55679, 52.89348 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02004120", "population": 4123, "outputarea_code": "E00100562", "lsoa_code": "E01019874", "la_name": "South Derbyshire", "bua_name": "Derby BUASD", "constituency_name": "South Derbyshire", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.50102, "latitude": 52.87497, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.49804, 52.87107 ], [ -1.5031, 52.87085 ], [ -1.50535, 52.87164 ], [ -1.50564, 52.8718 ], [ -1.50729, 52.87261 ], [ -1.50884, 52.87323 ], [ -1.50726, 52.87493 ], [ -1.50678, 52.87548 ], [ -1.50417, 52.87817 ], [ -1.50347, 52.87912 ], [ -1.50183, 52.88147 ], [ -1.4995, 52.8827 ], [ -1.49914, 52.88121 ], [ -1.49982, 52.87924 ], [ -1.5, 52.87902 ], [ -1.4999, 52.8775 ], [ -1.49973, 52.87726 ], [ -1.49763, 52.87691 ], [ -1.49671, 52.87685 ], [ -1.49667, 52.87592 ], [ -1.49565, 52.87532 ], [ -1.49495, 52.87493 ], [ -1.49529, 52.87463 ], [ -1.49494, 52.87443 ], [ -1.49436, 52.87408 ], [ -1.4936, 52.87363 ], [ -1.49376, 52.87329 ], [ -1.49476, 52.87125 ], [ -1.49481, 52.87115 ], [ -1.49519, 52.87038 ], [ -1.49715, 52.87105 ], [ -1.49804, 52.87107 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Derby", "bua_code": "E35001358", "msoa_code": "E02004121", "population": 1375, "outputarea_code": "E00100366", "lsoa_code": "E01019835", "la_name": "South Derbyshire", "bua_name": "Derby BUASD", "constituency_name": "South Derbyshire", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.40718, "latitude": 52.87996, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.41484, 52.88448 ], [ -1.41403, 52.8843 ], [ -1.41166, 52.88424 ], [ -1.4108, 52.88531 ], [ -1.41038, 52.88654 ], [ -1.40973, 52.88644 ], [ -1.40986, 52.88829 ], [ -1.40941, 52.88908 ], [ -1.40911, 52.88936 ], [ -1.40636, 52.88779 ], [ -1.40849, 52.886 ], [ -1.40729, 52.88562 ], [ -1.40734, 52.88517 ], [ -1.40673, 52.88522 ], [ -1.40416, 52.88425 ], [ -1.40349, 52.88431 ], [ -1.40292, 52.88435 ], [ -1.39859, 52.88199 ], [ -1.39622, 52.88076 ], [ -1.39119, 52.88005 ], [ -1.38926, 52.87968 ], [ -1.38854, 52.8771 ], [ -1.39122, 52.87703 ], [ -1.39269, 52.87661 ], [ -1.39721, 52.87683 ], [ -1.39706, 52.87588 ], [ -1.40199, 52.8756 ], [ -1.40333, 52.87529 ], [ -1.40763, 52.87503 ], [ -1.41178, 52.87545 ], [ -1.4135, 52.87471 ], [ -1.41755, 52.87426 ], [ -1.41772, 52.87478 ], [ -1.4195, 52.87455 ], [ -1.41967, 52.87506 ], [ -1.41653, 52.87576 ], [ -1.42009, 52.87827 ], [ -1.41959, 52.87863 ], [ -1.42056, 52.87989 ], [ -1.42038, 52.88192 ], [ -1.41891, 52.88455 ], [ -1.41725, 52.88476 ], [ -1.41511, 52.88453 ], [ -1.41484, 52.88448 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Desborough", "bua_code": "E34004266", "msoa_code": "E02005640", "population": 11331, "outputarea_code": "E00137817", "lsoa_code": "E01027094", "la_name": "Kettering", "bua_name": "Desborough BUA", "constituency_name": "Kettering", "citytownclassification": "Small Town", "urban": "Y", "longitude": -0.82751, "latitude": 52.4427, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.82599, 52.43222 ], [ -0.82651, 52.43219 ], [ -0.82604, 52.43135 ], [ -0.82661, 52.43118 ], [ -0.8262, 52.43087 ], [ -0.82721, 52.43028 ], [ -0.82917, 52.43104 ], [ -0.83033, 52.43049 ], [ -0.82999, 52.42989 ], [ -0.83195, 52.42897 ], [ -0.83367, 52.42998 ], [ -0.83418, 52.42974 ], [ -0.83525, 52.42987 ], [ -0.83515, 52.42963 ], [ -0.83722, 52.42841 ], [ -0.83776, 52.42758 ], [ -0.83888, 52.42702 ], [ -0.83944, 52.42667 ], [ -0.83954, 52.42695 ], [ -0.83994, 52.42692 ], [ -0.84002, 52.42662 ], [ -0.84087, 52.42667 ], [ -0.84102, 52.42707 ], [ -0.84159, 52.42663 ], [ -0.84213, 52.42688 ], [ -0.84182, 52.42727 ], [ -0.84233, 52.42744 ], [ -0.84295, 52.42718 ], [ -0.8428, 52.42763 ], [ -0.84333, 52.42773 ], [ -0.84387, 52.42738 ], [ -0.84511, 52.42741 ], [ -0.84524, 52.42706 ], [ -0.84596, 52.42697 ], [ -0.84687, 52.4263 ], [ -0.84815, 52.42635 ], [ -0.84879, 52.42572 ], [ -0.8508, 52.42593 ], [ -0.85135, 52.42517 ], [ -0.85146, 52.42554 ], [ -0.85541, 52.42835 ], [ -0.85875, 52.43144 ], [ -0.85613, 52.43214 ], [ -0.85549, 52.43258 ], [ -0.85411, 52.4315 ], [ -0.85295, 52.43123 ], [ -0.85025, 52.4325 ], [ -0.84988, 52.43478 ], [ -0.85027, 52.4367 ], [ -0.85074, 52.43699 ], [ -0.85576, 52.43696 ], [ -0.85633, 52.4372 ], [ -0.86131, 52.43492 ], [ -0.86433, 52.43422 ], [ -0.86522, 52.43459 ], [ -0.86514, 52.43488 ], [ -0.86626, 52.43559 ], [ -0.86293, 52.4376 ], [ -0.85769, 52.43938 ], [ -0.85589, 52.44017 ], [ -0.85584, 52.44051 ], [ -0.85207, 52.44122 ], [ -0.85071, 52.44211 ], [ -0.84955, 52.44463 ], [ -0.85006, 52.4463 ], [ -0.849, 52.44732 ], [ -0.84824, 52.44885 ], [ -0.84925, 52.45163 ], [ -0.84731, 52.45174 ], [ -0.84604, 52.45125 ], [ -0.84144, 52.45107 ], [ -0.84097, 52.45141 ], [ -0.83846, 52.45164 ], [ -0.83759, 52.45205 ], [ -0.83766, 52.45537 ], [ -0.83658, 52.45799 ], [ -0.83642, 52.45843 ], [ -0.82674, 52.4568 ], [ -0.81966, 52.45681 ], [ -0.81938, 52.45642 ], [ -0.82002, 52.45609 ], [ -0.81982, 52.45573 ], [ -0.81721, 52.45487 ], [ -0.81295, 52.454 ], [ -0.81041, 52.45454 ], [ -0.80672, 52.45421 ], [ -0.80226, 52.45433 ], [ -0.79609, 52.45273 ], [ -0.7956, 52.45234 ], [ -0.79468, 52.45292 ], [ -0.79401, 52.45276 ], [ -0.79019, 52.45241 ], [ -0.79047, 52.44947 ], [ -0.79093, 52.44897 ], [ -0.79788, 52.44658 ], [ -0.80001, 52.44468 ], [ -0.8011, 52.44456 ], [ -0.8007, 52.44281 ], [ -0.80024, 52.44202 ], [ -0.7997, 52.44202 ], [ -0.80091, 52.44163 ], [ -0.80062, 52.43984 ], [ -0.80027, 52.43892 ], [ -0.80116, 52.43875 ], [ -0.8009, 52.43796 ], [ -0.8001, 52.43696 ], [ -0.80302, 52.43631 ], [ -0.80634, 52.43603 ], [ -0.80803, 52.43591 ], [ -0.81229, 52.43486 ], [ -0.81797, 52.43432 ], [ -0.81889, 52.4344 ], [ -0.82015, 52.43393 ], [ -0.81988, 52.43315 ], [ -0.82061, 52.43263 ], [ -0.82104, 52.43305 ], [ -0.82177, 52.43265 ], [ -0.82227, 52.43282 ], [ -0.82332, 52.4326 ], [ -0.82387, 52.43288 ], [ -0.82421, 52.43246 ], [ -0.82506, 52.43257 ], [ -0.82599, 52.43222 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Dronfield", "bua_code": "E34001068", "msoa_code": "E02004106", "population": 3261, "outputarea_code": "E00100084", "lsoa_code": "E01019778", "la_name": "North East Derbyshire", "bua_name": "Dronfield BUA", "constituency_name": "North East Derbyshire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.45432, "latitude": 53.31222, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.4443, 53.30596 ], [ -1.44439, 53.30486 ], [ -1.44483, 53.30484 ], [ -1.44557, 53.3038 ], [ -1.44567, 53.30379 ], [ -1.44706, 53.30377 ], [ -1.45012, 53.30298 ], [ -1.45091, 53.30403 ], [ -1.45411, 53.3034 ], [ -1.45481, 53.30467 ], [ -1.45791, 53.30456 ], [ -1.45772, 53.3063 ], [ -1.45887, 53.30647 ], [ -1.46132, 53.30649 ], [ -1.46206, 53.30618 ], [ -1.46302, 53.30649 ], [ -1.46456, 53.30632 ], [ -1.46493, 53.30673 ], [ -1.46477, 53.30722 ], [ -1.46417, 53.30732 ], [ -1.46438, 53.30782 ], [ -1.46334, 53.30798 ], [ -1.46206, 53.30892 ], [ -1.4621, 53.30958 ], [ -1.4611, 53.31033 ], [ -1.46151, 53.31114 ], [ -1.46313, 53.31187 ], [ -1.46341, 53.31156 ], [ -1.46358, 53.31202 ], [ -1.46477, 53.31263 ], [ -1.46576, 53.31301 ], [ -1.46664, 53.31298 ], [ -1.46883, 53.31393 ], [ -1.46753, 53.31564 ], [ -1.46791, 53.31714 ], [ -1.46726, 53.31799 ], [ -1.4637, 53.31961 ], [ -1.46366, 53.31963 ], [ -1.46153, 53.32018 ], [ -1.4601, 53.32005 ], [ -1.45981, 53.31971 ], [ -1.45728, 53.32067 ], [ -1.4573, 53.32175 ], [ -1.45645, 53.32188 ], [ -1.45524, 53.32184 ], [ -1.45452, 53.3192 ], [ -1.45008, 53.31922 ], [ -1.4491, 53.3191 ], [ -1.44902, 53.3187 ], [ -1.44812, 53.31819 ], [ -1.44768, 53.31703 ], [ -1.44561, 53.316 ], [ -1.44469, 53.31466 ], [ -1.4415, 53.31241 ], [ -1.44166, 53.31012 ], [ -1.44067, 53.31025 ], [ -1.44173, 53.30907 ], [ -1.44171, 53.30854 ], [ -1.44393, 53.30692 ], [ -1.4443, 53.30596 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Dronfield", "bua_code": "E34001068", "msoa_code": "E02004108", "population": 5736, "outputarea_code": "E00100096", "lsoa_code": "E01019782", "la_name": "North East Derbyshire", "bua_name": "Dronfield BUA", "constituency_name": "North East Derbyshire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.46454, "latitude": 53.30429, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.46656, 53.29734 ], [ -1.46711, 53.29689 ], [ -1.46658, 53.29678 ], [ -1.46662, 53.2965 ], [ -1.46739, 53.2965 ], [ -1.46674, 53.29579 ], [ -1.4679, 53.29567 ], [ -1.47022, 53.29632 ], [ -1.47021, 53.29692 ], [ -1.46937, 53.29718 ], [ -1.46839, 53.29676 ], [ -1.46759, 53.29762 ], [ -1.46826, 53.29784 ], [ -1.46879, 53.29762 ], [ -1.46987, 53.29818 ], [ -1.47099, 53.29833 ], [ -1.47652, 53.29848 ], [ -1.47674, 53.29862 ], [ -1.47684, 53.29896 ], [ -1.47635, 53.30011 ], [ -1.47712, 53.3013 ], [ -1.47747, 53.30205 ], [ -1.47632, 53.30239 ], [ -1.47798, 53.30454 ], [ -1.47908, 53.30709 ], [ -1.4788, 53.30822 ], [ -1.47849, 53.30837 ], [ -1.47745, 53.30878 ], [ -1.47765, 53.30925 ], [ -1.47514, 53.31576 ], [ -1.47595, 53.31677 ], [ -1.4745, 53.31847 ], [ -1.4718, 53.31779 ], [ -1.46972, 53.31716 ], [ -1.46791, 53.31714 ], [ -1.46753, 53.31564 ], [ -1.46883, 53.31393 ], [ -1.46664, 53.31298 ], [ -1.46576, 53.31301 ], [ -1.46477, 53.31263 ], [ -1.46358, 53.31202 ], [ -1.46341, 53.31156 ], [ -1.46313, 53.31187 ], [ -1.46151, 53.31114 ], [ -1.4611, 53.31033 ], [ -1.4621, 53.30958 ], [ -1.46206, 53.30892 ], [ -1.46334, 53.30798 ], [ -1.46438, 53.30782 ], [ -1.46417, 53.30732 ], [ -1.46477, 53.30722 ], [ -1.46493, 53.30673 ], [ -1.46456, 53.30632 ], [ -1.46302, 53.30649 ], [ -1.46206, 53.30618 ], [ -1.46132, 53.30649 ], [ -1.45887, 53.30647 ], [ -1.45772, 53.3063 ], [ -1.45791, 53.30456 ], [ -1.45481, 53.30467 ], [ -1.45411, 53.3034 ], [ -1.45091, 53.30403 ], [ -1.45012, 53.30298 ], [ -1.44706, 53.30377 ], [ -1.44567, 53.30379 ], [ -1.44764, 53.29964 ], [ -1.44635, 53.29753 ], [ -1.44534, 53.29446 ], [ -1.44735, 53.29324 ], [ -1.44678, 53.29285 ], [ -1.44716, 53.29265 ], [ -1.45255, 53.2955 ], [ -1.45766, 53.29729 ], [ -1.45837, 53.29655 ], [ -1.45904, 53.29693 ], [ -1.45968, 53.29685 ], [ -1.45996, 53.29638 ], [ -1.465, 53.29708 ], [ -1.46514, 53.2975 ], [ -1.46635, 53.29767 ], [ -1.46656, 53.29734 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Dronfield", "bua_code": "E34001068", "msoa_code": "E02004109", "population": 4693, "outputarea_code": "E00100128", "lsoa_code": "E01019787", "la_name": "North East Derbyshire", "bua_name": "Dronfield BUA", "constituency_name": "North East Derbyshire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.50375, "latitude": 53.30719, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.49646, 53.29921 ], [ -1.49582, 53.29897 ], [ -1.49474, 53.30002 ], [ -1.49413, 53.30016 ], [ -1.49376, 53.29977 ], [ -1.49243, 53.29956 ], [ -1.49129, 53.3011 ], [ -1.49003, 53.30133 ], [ -1.49028, 53.30081 ], [ -1.48964, 53.30037 ], [ -1.48929, 53.29921 ], [ -1.48868, 53.2992 ], [ -1.48702, 53.29932 ], [ -1.48538, 53.29942 ], [ -1.48527, 53.29935 ], [ -1.48805, 53.29789 ], [ -1.48987, 53.29735 ], [ -1.48953, 53.29673 ], [ -1.49172, 53.29621 ], [ -1.4926, 53.2953 ], [ -1.49446, 53.29527 ], [ -1.4984, 53.29587 ], [ -1.49834, 53.29609 ], [ -1.50071, 53.29681 ], [ -1.50126, 53.2973 ], [ -1.50957, 53.3004 ], [ -1.5152, 53.30186 ], [ -1.51447, 53.30281 ], [ -1.516, 53.30352 ], [ -1.51781, 53.30387 ], [ -1.5188, 53.30381 ], [ -1.51908, 53.30408 ], [ -1.52062, 53.30349 ], [ -1.52252, 53.30517 ], [ -1.52331, 53.30494 ], [ -1.52388, 53.30539 ], [ -1.52489, 53.30781 ], [ -1.52407, 53.30928 ], [ -1.52456, 53.31002 ], [ -1.52617, 53.31041 ], [ -1.52635, 53.31122 ], [ -1.52573, 53.3121 ], [ -1.5241, 53.3125 ], [ -1.52161, 53.31178 ], [ -1.52161, 53.31261 ], [ -1.52123, 53.31287 ], [ -1.51909, 53.31224 ], [ -1.51751, 53.31214 ], [ -1.51627, 53.31256 ], [ -1.5159, 53.31332 ], [ -1.51498, 53.31386 ], [ -1.51042, 53.31599 ], [ -1.50473, 53.31704 ], [ -1.50211, 53.31759 ], [ -1.50061, 53.31592 ], [ -1.49686, 53.31636 ], [ -1.49734, 53.31629 ], [ -1.49605, 53.31442 ], [ -1.49368, 53.31423 ], [ -1.49381, 53.31368 ], [ -1.49513, 53.31374 ], [ -1.4951, 53.31326 ], [ -1.49208, 53.31205 ], [ -1.4875, 53.31162 ], [ -1.48454, 53.31095 ], [ -1.48225, 53.31103 ], [ -1.4814, 53.31079 ], [ -1.48142, 53.31037 ], [ -1.47849, 53.30837 ], [ -1.4788, 53.30822 ], [ -1.48078, 53.30819 ], [ -1.48268, 53.30791 ], [ -1.48592, 53.30687 ], [ -1.48664, 53.30632 ], [ -1.48843, 53.30577 ], [ -1.4933, 53.30551 ], [ -1.49437, 53.3053 ], [ -1.49445, 53.30528 ], [ -1.49483, 53.30517 ], [ -1.49435, 53.3038 ], [ -1.49509, 53.30159 ], [ -1.49646, 53.29921 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Dronfield", "bua_code": "E34001068", "msoa_code": "E02004110", "population": 7477, "outputarea_code": "E00100110", "lsoa_code": "E01019785", "la_name": "North East Derbyshire", "bua_name": "Dronfield BUA", "constituency_name": "North East Derbyshire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.47397, "latitude": 53.29505, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.46754, 53.28308 ], [ -1.46973, 53.28389 ], [ -1.4712, 53.28408 ], [ -1.47192, 53.28448 ], [ -1.47175, 53.28477 ], [ -1.4742, 53.28497 ], [ -1.4748, 53.28615 ], [ -1.47528, 53.28618 ], [ -1.47638, 53.28618 ], [ -1.47845, 53.28684 ], [ -1.47946, 53.28672 ], [ -1.4802, 53.28722 ], [ -1.48154, 53.28729 ], [ -1.48168, 53.28755 ], [ -1.48203, 53.28735 ], [ -1.48271, 53.28761 ], [ -1.48496, 53.28707 ], [ -1.48532, 53.28747 ], [ -1.48489, 53.28765 ], [ -1.48542, 53.28792 ], [ -1.48463, 53.28804 ], [ -1.48493, 53.2888 ], [ -1.48317, 53.2911 ], [ -1.48372, 53.29269 ], [ -1.48233, 53.29568 ], [ -1.48482, 53.29572 ], [ -1.48509, 53.29646 ], [ -1.48832, 53.29612 ], [ -1.48861, 53.2968 ], [ -1.48953, 53.29673 ], [ -1.48987, 53.29735 ], [ -1.48805, 53.29789 ], [ -1.48527, 53.29935 ], [ -1.48538, 53.29942 ], [ -1.48702, 53.29932 ], [ -1.48868, 53.2992 ], [ -1.48929, 53.29921 ], [ -1.48964, 53.30037 ], [ -1.49028, 53.30081 ], [ -1.49003, 53.30133 ], [ -1.49129, 53.3011 ], [ -1.49243, 53.29956 ], [ -1.49376, 53.29977 ], [ -1.49413, 53.30016 ], [ -1.49474, 53.30002 ], [ -1.49582, 53.29897 ], [ -1.49646, 53.29921 ], [ -1.49509, 53.30159 ], [ -1.49435, 53.3038 ], [ -1.49483, 53.30517 ], [ -1.49445, 53.30528 ], [ -1.49437, 53.3053 ], [ -1.4933, 53.30551 ], [ -1.48843, 53.30577 ], [ -1.48664, 53.30632 ], [ -1.48592, 53.30687 ], [ -1.48268, 53.30791 ], [ -1.48078, 53.30819 ], [ -1.4788, 53.30822 ], [ -1.47908, 53.30709 ], [ -1.47798, 53.30454 ], [ -1.47632, 53.30239 ], [ -1.47747, 53.30205 ], [ -1.47712, 53.3013 ], [ -1.47635, 53.30011 ], [ -1.47684, 53.29896 ], [ -1.47674, 53.29862 ], [ -1.47652, 53.29848 ], [ -1.47099, 53.29833 ], [ -1.46987, 53.29818 ], [ -1.46879, 53.29762 ], [ -1.46826, 53.29784 ], [ -1.46759, 53.29762 ], [ -1.46839, 53.29676 ], [ -1.46937, 53.29718 ], [ -1.47021, 53.29692 ], [ -1.47022, 53.29632 ], [ -1.4679, 53.29567 ], [ -1.46674, 53.29579 ], [ -1.46739, 53.2965 ], [ -1.46662, 53.2965 ], [ -1.46658, 53.29678 ], [ -1.46711, 53.29689 ], [ -1.46656, 53.29734 ], [ -1.46635, 53.29767 ], [ -1.46514, 53.2975 ], [ -1.465, 53.29708 ], [ -1.45996, 53.29638 ], [ -1.45968, 53.29685 ], [ -1.45904, 53.29693 ], [ -1.45837, 53.29655 ], [ -1.45766, 53.29729 ], [ -1.45255, 53.2955 ], [ -1.44716, 53.29265 ], [ -1.45121, 53.29104 ], [ -1.45587, 53.29015 ], [ -1.45934, 53.28996 ], [ -1.45933, 53.28953 ], [ -1.4621, 53.28926 ], [ -1.46167, 53.28806 ], [ -1.46434, 53.28795 ], [ -1.46498, 53.28694 ], [ -1.46427, 53.28423 ], [ -1.46573, 53.28347 ], [ -1.46754, 53.28308 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Earl Shilton", "bua_code": "E35001102", "msoa_code": "E02005382", "population": 10580, "outputarea_code": "E00131115", "lsoa_code": "E01025839", "la_name": "Hinckley and Bosworth", "bua_name": "Earl Shilton BUASD", "constituency_name": "Bosworth", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.30348, "latitude": 52.57393, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.27839, 52.57572 ], [ -1.2744, 52.57498 ], [ -1.27389, 52.57493 ], [ -1.27062, 52.57463 ], [ -1.27044, 52.5749 ], [ -1.26997, 52.5748 ], [ -1.27009, 52.57382 ], [ -1.26947, 52.57379 ], [ -1.26928, 52.57329 ], [ -1.26976, 52.573 ], [ -1.26911, 52.57302 ], [ -1.26903, 52.57242 ], [ -1.26883, 52.57208 ], [ -1.2676, 52.57189 ], [ -1.26806, 52.57146 ], [ -1.26821, 52.57135 ], [ -1.26833, 52.57084 ], [ -1.26936, 52.57079 ], [ -1.26921, 52.57025 ], [ -1.26968, 52.57034 ], [ -1.26972, 52.56987 ], [ -1.26938, 52.56964 ], [ -1.26987, 52.56972 ], [ -1.2702, 52.56892 ], [ -1.27258, 52.56834 ], [ -1.2725, 52.5679 ], [ -1.2718, 52.56777 ], [ -1.27292, 52.56597 ], [ -1.2736, 52.56594 ], [ -1.27519, 52.56447 ], [ -1.2756, 52.56483 ], [ -1.27607, 52.56449 ], [ -1.27703, 52.56479 ], [ -1.27683, 52.56505 ], [ -1.27808, 52.5652 ], [ -1.27816, 52.5649 ], [ -1.2797, 52.56469 ], [ -1.27942, 52.56447 ], [ -1.28021, 52.56435 ], [ -1.28072, 52.56371 ], [ -1.28162, 52.56368 ], [ -1.28227, 52.56323 ], [ -1.28451, 52.56339 ], [ -1.28494, 52.56298 ], [ -1.28557, 52.56328 ], [ -1.28891, 52.56365 ], [ -1.28933, 52.56462 ], [ -1.29547, 52.5634 ], [ -1.29809, 52.56372 ], [ -1.29856, 52.56336 ], [ -1.29823, 52.56281 ], [ -1.29968, 52.5622 ], [ -1.30202, 52.56139 ], [ -1.30317, 52.56146 ], [ -1.30365, 52.56191 ], [ -1.30564, 52.56183 ], [ -1.30675, 52.56291 ], [ -1.30858, 52.5627 ], [ -1.30905, 52.56292 ], [ -1.30934, 52.56256 ], [ -1.31032, 52.56265 ], [ -1.31162, 52.56203 ], [ -1.31234, 52.56227 ], [ -1.31215, 52.56284 ], [ -1.31293, 52.56319 ], [ -1.31292, 52.56354 ], [ -1.31975, 52.5659 ], [ -1.31914, 52.56707 ], [ -1.32044, 52.56727 ], [ -1.32371, 52.56779 ], [ -1.32389, 52.56755 ], [ -1.32503, 52.56574 ], [ -1.32582, 52.56493 ], [ -1.3286, 52.56584 ], [ -1.3278, 52.56671 ], [ -1.33096, 52.56987 ], [ -1.3312, 52.57011 ], [ -1.33162, 52.5706 ], [ -1.33245, 52.57115 ], [ -1.33267, 52.57267 ], [ -1.33275, 52.57322 ], [ -1.33315, 52.57471 ], [ -1.33478, 52.57444 ], [ -1.33513, 52.57577 ], [ -1.3343, 52.57682 ], [ -1.3282, 52.57816 ], [ -1.32589, 52.57911 ], [ -1.32428, 52.57954 ], [ -1.32387, 52.57982 ], [ -1.32411, 52.58011 ], [ -1.32308, 52.58146 ], [ -1.32279, 52.58221 ], [ -1.32173, 52.58253 ], [ -1.32177, 52.58339 ], [ -1.32138, 52.58354 ], [ -1.32169, 52.58631 ], [ -1.32024, 52.5885 ], [ -1.31914, 52.58811 ], [ -1.3182, 52.58819 ], [ -1.31807, 52.58853 ], [ -1.31683, 52.58826 ], [ -1.31545, 52.58827 ], [ -1.31491, 52.58855 ], [ -1.31432, 52.58813 ], [ -1.31356, 52.58838 ], [ -1.31087, 52.58827 ], [ -1.30921, 52.58785 ], [ -1.30834, 52.58728 ], [ -1.30743, 52.58721 ], [ -1.30625, 52.58777 ], [ -1.30666, 52.58969 ], [ -1.30636, 52.59045 ], [ -1.30595, 52.59039 ], [ -1.30614, 52.58955 ], [ -1.30548, 52.58893 ], [ -1.30196, 52.58741 ], [ -1.29884, 52.58748 ], [ -1.29545, 52.58901 ], [ -1.29241, 52.59153 ], [ -1.29205, 52.5913 ], [ -1.29412, 52.58931 ], [ -1.2959, 52.5884 ], [ -1.29834, 52.58599 ], [ -1.29631, 52.58551 ], [ -1.29557, 52.58471 ], [ -1.29604, 52.58414 ], [ -1.29531, 52.58384 ], [ -1.29563, 52.58248 ], [ -1.29709, 52.58001 ], [ -1.28936, 52.57831 ], [ -1.28642, 52.57809 ], [ -1.28333, 52.57675 ], [ -1.27839, 52.57572 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Earl Shilton", "bua_code": "E35001102", "msoa_code": "E02005383", "population": 9249, "outputarea_code": "E00131025", "lsoa_code": "E01025822", "la_name": "Hinckley and Bosworth", "bua_name": "Earl Shilton BUASD", "constituency_name": "Bosworth", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.34982, "latitude": 52.57247, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.3312, 52.57011 ], [ -1.33096, 52.56987 ], [ -1.3278, 52.56671 ], [ -1.3286, 52.56584 ], [ -1.32927, 52.56599 ], [ -1.33489, 52.56019 ], [ -1.33252, 52.55937 ], [ -1.33246, 52.55843 ], [ -1.33729, 52.55632 ], [ -1.33791, 52.55551 ], [ -1.33991, 52.55487 ], [ -1.34116, 52.55508 ], [ -1.34046, 52.55587 ], [ -1.34169, 52.55637 ], [ -1.34118, 52.55678 ], [ -1.34527, 52.55757 ], [ -1.34715, 52.5584 ], [ -1.35256, 52.55764 ], [ -1.3529, 52.55761 ], [ -1.35408, 52.55768 ], [ -1.35343, 52.56052 ], [ -1.3566, 52.56077 ], [ -1.35664, 52.56124 ], [ -1.35762, 52.5611 ], [ -1.35793, 52.56075 ], [ -1.3597, 52.56093 ], [ -1.35939, 52.56156 ], [ -1.3604, 52.56327 ], [ -1.36732, 52.56253 ], [ -1.36721, 52.56336 ], [ -1.3651, 52.56511 ], [ -1.3659, 52.56531 ], [ -1.37879, 52.56712 ], [ -1.38239, 52.56719 ], [ -1.38551, 52.56597 ], [ -1.38764, 52.56799 ], [ -1.38851, 52.56997 ], [ -1.38347, 52.57153 ], [ -1.38391, 52.57202 ], [ -1.38393, 52.57208 ], [ -1.38476, 52.57318 ], [ -1.38426, 52.57642 ], [ -1.38479, 52.5773 ], [ -1.38224, 52.57726 ], [ -1.37992, 52.57737 ], [ -1.37897, 52.57702 ], [ -1.3786, 52.5772 ], [ -1.37793, 52.5768 ], [ -1.37648, 52.57691 ], [ -1.37617, 52.57653 ], [ -1.37468, 52.57657 ], [ -1.37283, 52.57587 ], [ -1.37249, 52.57542 ], [ -1.37017, 52.5743 ], [ -1.36902, 52.57453 ], [ -1.36868, 52.57434 ], [ -1.36383, 52.57504 ], [ -1.36302, 52.57699 ], [ -1.3622, 52.57736 ], [ -1.36178, 52.57805 ], [ -1.36071, 52.57846 ], [ -1.35815, 52.57983 ], [ -1.35608, 52.5819 ], [ -1.3554, 52.58177 ], [ -1.35494, 52.58251 ], [ -1.35216, 52.58457 ], [ -1.34832, 52.58498 ], [ -1.34509, 52.58603 ], [ -1.34378, 52.58599 ], [ -1.34254, 52.58552 ], [ -1.34062, 52.58502 ], [ -1.33898, 52.58515 ], [ -1.33494, 52.58656 ], [ -1.33442, 52.58715 ], [ -1.33263, 52.58773 ], [ -1.33593, 52.58808 ], [ -1.33431, 52.59057 ], [ -1.33105, 52.58968 ], [ -1.33049, 52.58925 ], [ -1.32817, 52.58948 ], [ -1.32609, 52.58896 ], [ -1.32602, 52.58927 ], [ -1.32477, 52.589 ], [ -1.3243, 52.58936 ], [ -1.32307, 52.5886 ], [ -1.32148, 52.58899 ], [ -1.32147, 52.58863 ], [ -1.32024, 52.5885 ], [ -1.32169, 52.58631 ], [ -1.32138, 52.58354 ], [ -1.32177, 52.58339 ], [ -1.32173, 52.58253 ], [ -1.32279, 52.58221 ], [ -1.32308, 52.58146 ], [ -1.32411, 52.58011 ], [ -1.32387, 52.57982 ], [ -1.32428, 52.57954 ], [ -1.32589, 52.57911 ], [ -1.3282, 52.57816 ], [ -1.3343, 52.57682 ], [ -1.33513, 52.57577 ], [ -1.33478, 52.57444 ], [ -1.33315, 52.57471 ], [ -1.33275, 52.57322 ], [ -1.33267, 52.57267 ], [ -1.33245, 52.57115 ], [ -1.33162, 52.5706 ], [ -1.3312, 52.57011 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Eastwood", "bua_code": "E35000877", "msoa_code": "E02005850", "population": 4472, "outputarea_code": "E00143215", "lsoa_code": "E01028108", "la_name": "Broxtowe", "bua_name": "Eastwood BUASD", "constituency_name": "Ashfield", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.29329, "latitude": 53.0321, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.29091, 53.01654 ], [ -1.29025, 53.01625 ], [ -1.28947, 53.01587 ], [ -1.29135, 53.01435 ], [ -1.29197, 53.01436 ], [ -1.29235, 53.01384 ], [ -1.29294, 53.01379 ], [ -1.29339, 53.01404 ], [ -1.29421, 53.01377 ], [ -1.29494, 53.01411 ], [ -1.29462, 53.01465 ], [ -1.29536, 53.01505 ], [ -1.29679, 53.0146 ], [ -1.29915, 53.01457 ], [ -1.29928, 53.0149 ], [ -1.29787, 53.01606 ], [ -1.29978, 53.01661 ], [ -1.2993, 53.0179 ], [ -1.29621, 53.01853 ], [ -1.29635, 53.01882 ], [ -1.29592, 53.01889 ], [ -1.29669, 53.01965 ], [ -1.29672, 53.01941 ], [ -1.29799, 53.01946 ], [ -1.29831, 53.01998 ], [ -1.30234, 53.0204 ], [ -1.30317, 53.02047 ], [ -1.3038, 53.02052 ], [ -1.3069, 53.02025 ], [ -1.30697, 53.01929 ], [ -1.30815, 53.01928 ], [ -1.31207, 53.02 ], [ -1.31346, 53.02028 ], [ -1.3149, 53.01988 ], [ -1.31795, 53.01992 ], [ -1.3183, 53.02198 ], [ -1.3227, 53.0216 ], [ -1.32334, 53.02303 ], [ -1.3237, 53.02415 ], [ -1.32463, 53.02611 ], [ -1.32588, 53.02738 ], [ -1.32779, 53.02842 ], [ -1.32802, 53.02924 ], [ -1.32828, 53.03021 ], [ -1.32753, 53.03052 ], [ -1.32552, 53.03105 ], [ -1.32481, 53.03057 ], [ -1.323, 53.03088 ], [ -1.32096, 53.03039 ], [ -1.31656, 53.03084 ], [ -1.31464, 53.0305 ], [ -1.31195, 53.02939 ], [ -1.30852, 53.02931 ], [ -1.30801, 53.03222 ], [ -1.30743, 53.03299 ], [ -1.30825, 53.034 ], [ -1.30806, 53.03629 ], [ -1.30736, 53.03715 ], [ -1.30749, 53.03799 ], [ -1.30709, 53.03875 ], [ -1.30616, 53.0392 ], [ -1.30599, 53.03995 ], [ -1.30508, 53.04041 ], [ -1.30472, 53.04027 ], [ -1.30111, 53.04267 ], [ -1.30023, 53.04317 ], [ -1.30111, 53.04328 ], [ -1.30094, 53.04417 ], [ -1.2991, 53.04632 ], [ -1.29811, 53.04651 ], [ -1.29529, 53.04611 ], [ -1.28802, 53.04826 ], [ -1.28482, 53.04823 ], [ -1.28149, 53.04775 ], [ -1.2805, 53.04704 ], [ -1.27875, 53.04709 ], [ -1.27746, 53.04624 ], [ -1.27676, 53.04553 ], [ -1.27771, 53.0445 ], [ -1.27869, 53.04405 ], [ -1.27572, 53.04328 ], [ -1.27283, 53.04209 ], [ -1.27072, 53.04189 ], [ -1.27033, 53.04051 ], [ -1.2693, 53.03942 ], [ -1.26859, 53.03904 ], [ -1.26709, 53.0389 ], [ -1.2664, 53.03842 ], [ -1.2638, 53.03843 ], [ -1.2629, 53.03926 ], [ -1.25824, 53.04043 ], [ -1.25769, 53.04096 ], [ -1.25343, 53.03979 ], [ -1.25126, 53.03803 ], [ -1.25229, 53.03777 ], [ -1.25268, 53.03795 ], [ -1.25681, 53.03552 ], [ -1.25833, 53.03613 ], [ -1.26052, 53.03605 ], [ -1.26214, 53.03657 ], [ -1.26829, 53.03418 ], [ -1.26916, 53.0342 ], [ -1.27158, 53.03343 ], [ -1.27367, 53.03331 ], [ -1.27362, 53.03251 ], [ -1.27536, 53.03247 ], [ -1.27727, 53.03185 ], [ -1.27793, 53.03243 ], [ -1.28267, 53.02896 ], [ -1.2822, 53.02865 ], [ -1.28311, 53.02802 ], [ -1.28055, 53.02716 ], [ -1.27963, 53.02649 ], [ -1.28363, 53.02449 ], [ -1.28147, 53.02295 ], [ -1.28399, 53.0201 ], [ -1.28487, 53.01914 ], [ -1.28481, 53.01842 ], [ -1.28567, 53.01862 ], [ -1.28681, 53.01967 ], [ -1.28919, 53.01866 ], [ -1.28962, 53.01858 ], [ -1.28999, 53.01896 ], [ -1.29038, 53.01828 ], [ -1.29091, 53.01654 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Eastwood", "bua_code": "E35000877", "msoa_code": "E02005851", "population": 6157, "outputarea_code": "E00143226", "lsoa_code": "E01028110", "la_name": "Broxtowe", "bua_name": "Eastwood BUASD", "constituency_name": "Ashfield", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.30948, "latitude": 53.01406, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.30141, 53.01367 ], [ -1.30016, 53.01253 ], [ -1.29853, 53.01195 ], [ -1.29758, 53.01173 ], [ -1.29744, 53.01135 ], [ -1.3, 53.0102 ], [ -1.30002, 53.01018 ], [ -1.29997, 53.01017 ], [ -1.29812, 53.00884 ], [ -1.29392, 53.0097 ], [ -1.29398, 53.00903 ], [ -1.29782, 53.00817 ], [ -1.2998, 53.00852 ], [ -1.30164, 53.00924 ], [ -1.30233, 53.00971 ], [ -1.30659, 53.0101 ], [ -1.30684, 53.00988 ], [ -1.30648, 53.00972 ], [ -1.30737, 53.00894 ], [ -1.30699, 53.0087 ], [ -1.30791, 53.00811 ], [ -1.30831, 53.00834 ], [ -1.30882, 53.00799 ], [ -1.30952, 53.00514 ], [ -1.30799, 53.00387 ], [ -1.30868, 53.00353 ], [ -1.30929, 53.00384 ], [ -1.31002, 53.0034 ], [ -1.31232, 53.0046 ], [ -1.31336, 53.00457 ], [ -1.31337, 53.00524 ], [ -1.31349, 53.00662 ], [ -1.31456, 53.00722 ], [ -1.31554, 53.00848 ], [ -1.31919, 53.01022 ], [ -1.31964, 53.01154 ], [ -1.3183, 53.01358 ], [ -1.31873, 53.01418 ], [ -1.32018, 53.01552 ], [ -1.3188, 53.01604 ], [ -1.31926, 53.01688 ], [ -1.31956, 53.01721 ], [ -1.31995, 53.01764 ], [ -1.3227, 53.0216 ], [ -1.3183, 53.02198 ], [ -1.31795, 53.01992 ], [ -1.3149, 53.01988 ], [ -1.31346, 53.02028 ], [ -1.31207, 53.02 ], [ -1.30815, 53.01928 ], [ -1.30697, 53.01929 ], [ -1.3069, 53.02025 ], [ -1.3038, 53.02052 ], [ -1.30317, 53.02047 ], [ -1.30234, 53.0204 ], [ -1.29831, 53.01998 ], [ -1.29799, 53.01946 ], [ -1.29672, 53.01941 ], [ -1.29669, 53.01965 ], [ -1.29592, 53.01889 ], [ -1.29635, 53.01882 ], [ -1.29621, 53.01853 ], [ -1.2993, 53.0179 ], [ -1.29978, 53.01661 ], [ -1.29787, 53.01606 ], [ -1.29928, 53.0149 ], [ -1.29915, 53.01457 ], [ -1.29933, 53.01393 ], [ -1.30141, 53.01367 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Eastwood", "bua_code": "E35000877", "msoa_code": "E02005852", "population": 8340, "outputarea_code": "E00143227", "lsoa_code": "E01028109", "la_name": "Broxtowe", "bua_name": "Eastwood BUASD", "constituency_name": "Ashfield", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.277, "latitude": 53.01637, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.30164, 53.00924 ], [ -1.2998, 53.00852 ], [ -1.29782, 53.00817 ], [ -1.29398, 53.00903 ], [ -1.29392, 53.0097 ], [ -1.29812, 53.00884 ], [ -1.29997, 53.01017 ], [ -1.30002, 53.01018 ], [ -1.3, 53.0102 ], [ -1.29744, 53.01135 ], [ -1.29758, 53.01173 ], [ -1.29853, 53.01195 ], [ -1.30016, 53.01253 ], [ -1.30141, 53.01367 ], [ -1.29933, 53.01393 ], [ -1.29915, 53.01457 ], [ -1.29679, 53.0146 ], [ -1.29536, 53.01505 ], [ -1.29462, 53.01465 ], [ -1.29494, 53.01411 ], [ -1.29421, 53.01377 ], [ -1.29339, 53.01404 ], [ -1.29294, 53.01379 ], [ -1.29235, 53.01384 ], [ -1.29197, 53.01436 ], [ -1.29135, 53.01435 ], [ -1.28947, 53.01587 ], [ -1.29025, 53.01625 ], [ -1.29091, 53.01654 ], [ -1.29038, 53.01828 ], [ -1.28999, 53.01896 ], [ -1.28962, 53.01858 ], [ -1.28919, 53.01866 ], [ -1.28681, 53.01967 ], [ -1.28567, 53.01862 ], [ -1.28481, 53.01842 ], [ -1.28487, 53.01914 ], [ -1.28399, 53.0201 ], [ -1.28147, 53.02295 ], [ -1.28363, 53.02449 ], [ -1.27963, 53.02649 ], [ -1.28055, 53.02716 ], [ -1.28311, 53.02802 ], [ -1.2822, 53.02865 ], [ -1.28267, 53.02896 ], [ -1.27793, 53.03243 ], [ -1.27727, 53.03185 ], [ -1.27536, 53.03247 ], [ -1.27362, 53.03251 ], [ -1.27367, 53.03331 ], [ -1.27158, 53.03343 ], [ -1.26916, 53.0342 ], [ -1.26829, 53.03418 ], [ -1.26214, 53.03657 ], [ -1.26052, 53.03605 ], [ -1.25833, 53.03613 ], [ -1.25681, 53.03552 ], [ -1.25268, 53.03795 ], [ -1.25229, 53.03777 ], [ -1.25126, 53.03803 ], [ -1.24746, 53.03573 ], [ -1.24711, 53.03507 ], [ -1.23891, 53.03256 ], [ -1.24126, 53.03115 ], [ -1.2441, 53.03155 ], [ -1.24787, 53.03094 ], [ -1.24677, 53.02753 ], [ -1.2475, 53.02741 ], [ -1.24765, 53.02666 ], [ -1.25138, 53.02563 ], [ -1.25272, 53.02438 ], [ -1.2564, 53.02315 ], [ -1.25639, 53.01788 ], [ -1.25816, 53.0179 ], [ -1.25825, 53.01748 ], [ -1.25759, 53.01744 ], [ -1.25779, 53.01666 ], [ -1.25853, 53.01681 ], [ -1.26103, 53.01449 ], [ -1.26276, 53.01448 ], [ -1.26262, 53.01425 ], [ -1.264, 53.01344 ], [ -1.2677, 53.01455 ], [ -1.26812, 53.01359 ], [ -1.27058, 53.01199 ], [ -1.27465, 53.0091 ], [ -1.27472, 53.00815 ], [ -1.27645, 53.00656 ], [ -1.27704, 53.00595 ], [ -1.2747, 53.0053 ], [ -1.27542, 53.00385 ], [ -1.27466, 53.00359 ], [ -1.27505, 53.00263 ], [ -1.27335, 53.0025 ], [ -1.27189, 53.00242 ], [ -1.27303, 53.00185 ], [ -1.27362, 53.00148 ], [ -1.27788, 53.00236 ], [ -1.2789, 53.00169 ], [ -1.27964, 53.00001 ], [ -1.27955, 52.99899 ], [ -1.2802, 52.99858 ], [ -1.28072, 52.99724 ], [ -1.28166, 52.99714 ], [ -1.28368, 52.9968 ], [ -1.28459, 52.99634 ], [ -1.28514, 52.99668 ], [ -1.28922, 52.99723 ], [ -1.29206, 52.99598 ], [ -1.29578, 52.99395 ], [ -1.29785, 52.99347 ], [ -1.29894, 52.99235 ], [ -1.30072, 52.99183 ], [ -1.30156, 52.99231 ], [ -1.3005, 52.99265 ], [ -1.30037, 52.9932 ], [ -1.30141, 52.99363 ], [ -1.30067, 52.99419 ], [ -1.30093, 52.99464 ], [ -1.30144, 52.99436 ], [ -1.30158, 52.99484 ], [ -1.30234, 52.99501 ], [ -1.30173, 52.9959 ], [ -1.30206, 52.99604 ], [ -1.30317, 52.99688 ], [ -1.30247, 52.9972 ], [ -1.30361, 52.99801 ], [ -1.30236, 52.99844 ], [ -1.30219, 52.99912 ], [ -1.30269, 52.99968 ], [ -1.30354, 52.99974 ], [ -1.30286, 53.0003 ], [ -1.30407, 53.00006 ], [ -1.3044, 53.0003 ], [ -1.30368, 53.0006 ], [ -1.30368, 53.00103 ], [ -1.30492, 53.00139 ], [ -1.30455, 53.00172 ], [ -1.30634, 53.00249 ], [ -1.30574, 53.00267 ], [ -1.30633, 53.00329 ], [ -1.30644, 53.00333 ], [ -1.30654, 53.00333 ], [ -1.30657, 53.00332 ], [ -1.30707, 53.003 ], [ -1.30727, 53.00304 ], [ -1.30717, 53.00321 ], [ -1.30708, 53.00335 ], [ -1.30705, 53.00352 ], [ -1.30712, 53.00354 ], [ -1.30744, 53.00365 ], [ -1.30799, 53.00387 ], [ -1.30952, 53.00514 ], [ -1.30882, 53.00799 ], [ -1.30831, 53.00834 ], [ -1.30791, 53.00811 ], [ -1.30699, 53.0087 ], [ -1.30737, 53.00894 ], [ -1.30648, 53.00972 ], [ -1.30684, 53.00988 ], [ -1.30659, 53.0101 ], [ -1.30233, 53.00971 ], [ -1.30164, 53.00924 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Gainsborough", "bua_code": "E34004397", "msoa_code": "E02005493", "population": 3617, "outputarea_code": "E00134005", "lsoa_code": "E01026380", "la_name": "West Lindsey", "bua_name": "Gainsborough BUA", "constituency_name": "Gainsborough", "citytownclassification": "Small Town", "urban": "Y", "longitude": -0.78491, "latitude": 53.42018, "pgroup": "10k" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.77156, 53.40349 ], [ -0.77219, 53.40436 ], [ -0.77233, 53.4059 ], [ -0.77016, 53.40639 ], [ -0.76997, 53.40608 ], [ -0.7691, 53.4062 ], [ -0.76889, 53.40667 ], [ -0.76745, 53.40691 ], [ -0.76751, 53.40719 ], [ -0.77049, 53.40829 ], [ -0.76763, 53.40848 ], [ -0.76762, 53.40902 ], [ -0.76698, 53.412 ], [ -0.76079, 53.4108 ], [ -0.75676, 53.4105 ], [ -0.74956, 53.40754 ], [ -0.74717, 53.40551 ], [ -0.75016, 53.40479 ], [ -0.75329, 53.40467 ], [ -0.7541, 53.40469 ], [ -0.75556, 53.40472 ], [ -0.75705, 53.40475 ], [ -0.76027, 53.40481 ], [ -0.76215, 53.40485 ], [ -0.7638, 53.40494 ], [ -0.76707, 53.40468 ], [ -0.76974, 53.40312 ], [ -0.76997, 53.40289 ], [ -0.77095, 53.40309 ], [ -0.77107, 53.40272 ], [ -0.77156, 53.40349 ] ] ], [ [ [ -0.77695, 53.4161 ], [ -0.77854, 53.41318 ], [ -0.7816, 53.41376 ], [ -0.78788, 53.41428 ], [ -0.78832, 53.41543 ], [ -0.78953, 53.41578 ], [ -0.79079, 53.41566 ], [ -0.79373, 53.41496 ], [ -0.79651, 53.41529 ], [ -0.80426, 53.41781 ], [ -0.80843, 53.42014 ], [ -0.80042, 53.4252 ], [ -0.79956, 53.43004 ], [ -0.80431, 53.43025 ], [ -0.8038, 53.43271 ], [ -0.81074, 53.43288 ], [ -0.81059, 53.43552 ], [ -0.79327, 53.43504 ], [ -0.79404, 53.43104 ], [ -0.7808, 53.4289 ], [ -0.78328, 53.42791 ], [ -0.77675, 53.42284 ], [ -0.77761, 53.42254 ], [ -0.774, 53.42051 ], [ -0.76731, 53.42342 ], [ -0.76602, 53.422 ], [ -0.77196, 53.41887 ], [ -0.77329, 53.41974 ], [ -0.77655, 53.41667 ], [ -0.77695, 53.4161 ] ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Gainsborough", "bua_code": "E34004397", "msoa_code": "E02005495", "population": 10445, "outputarea_code": "E00134006", "lsoa_code": "E01026379", "la_name": "West Lindsey", "bua_name": "Gainsborough BUA", "constituency_name": "Gainsborough", "citytownclassification": "Small Town", "urban": "Y", "longitude": -0.76704, "latitude": 53.39296, "pgroup": "10k" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.77653, 53.37986 ], [ -0.77566, 53.37912 ], [ -0.77679, 53.37972 ], [ -0.78057, 53.38254 ], [ -0.77653, 53.37986 ] ] ], [ [ [ -0.76168, 53.38748 ], [ -0.75626, 53.38783 ], [ -0.75616, 53.38784 ], [ -0.75323, 53.38804 ], [ -0.75208, 53.38747 ], [ -0.74241, 53.39167 ], [ -0.73881, 53.3929 ], [ -0.73791, 53.39279 ], [ -0.73384, 53.38959 ], [ -0.73445, 53.38733 ], [ -0.73632, 53.3844 ], [ -0.73574, 53.38245 ], [ -0.73855, 53.38189 ], [ -0.74117, 53.38202 ], [ -0.74725, 53.38157 ], [ -0.755, 53.38043 ], [ -0.76338, 53.37826 ], [ -0.77107, 53.37697 ], [ -0.7749, 53.37685 ], [ -0.77515, 53.3771 ], [ -0.77467, 53.37775 ], [ -0.77556, 53.37903 ], [ -0.77436, 53.37858 ], [ -0.77598, 53.38014 ], [ -0.78067, 53.38336 ], [ -0.78118, 53.38318 ], [ -0.78082, 53.3826 ], [ -0.78171, 53.38313 ], [ -0.78093, 53.38353 ], [ -0.78165, 53.38388 ], [ -0.78229, 53.38407 ], [ -0.783, 53.38374 ], [ -0.78926, 53.38552 ], [ -0.78974, 53.38589 ], [ -0.78876, 53.38618 ], [ -0.78398, 53.38608 ], [ -0.77728, 53.38928 ], [ -0.77591, 53.39075 ], [ -0.77613, 53.39235 ], [ -0.77662, 53.3943 ], [ -0.77649, 53.39651 ], [ -0.77695, 53.39721 ], [ -0.77853, 53.39894 ], [ -0.78525, 53.40225 ], [ -0.78753, 53.40427 ], [ -0.78833, 53.40564 ], [ -0.79053, 53.40955 ], [ -0.79083, 53.41156 ], [ -0.79064, 53.41186 ], [ -0.78788, 53.41428 ], [ -0.7816, 53.41376 ], [ -0.77854, 53.41318 ], [ -0.76698, 53.412 ], [ -0.76762, 53.40902 ], [ -0.76763, 53.40848 ], [ -0.77049, 53.40829 ], [ -0.76751, 53.40719 ], [ -0.76745, 53.40691 ], [ -0.76889, 53.40667 ], [ -0.7691, 53.4062 ], [ -0.76997, 53.40608 ], [ -0.77016, 53.40639 ], [ -0.77233, 53.4059 ], [ -0.77219, 53.40436 ], [ -0.77156, 53.40349 ], [ -0.77107, 53.40272 ], [ -0.77095, 53.40309 ], [ -0.76997, 53.40289 ], [ -0.77077, 53.40215 ], [ -0.76959, 53.39913 ], [ -0.76947, 53.39827 ], [ -0.76953, 53.39578 ], [ -0.77051, 53.39305 ], [ -0.76982, 53.39303 ], [ -0.76647, 53.39311 ], [ -0.76199, 53.39315 ], [ -0.76209, 53.39105 ], [ -0.76208, 53.39095 ], [ -0.76168, 53.38748 ] ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Gainsborough", "bua_code": "E34004397", "msoa_code": "E02005497", "population": 7607, "outputarea_code": "E00133985", "lsoa_code": "E01026375", "la_name": "West Lindsey", "bua_name": "Gainsborough BUA", "constituency_name": "Gainsborough", "citytownclassification": "Small Town", "urban": "Y", "longitude": -0.75564, "latitude": 53.39688, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.75626, 53.38783 ], [ -0.76168, 53.38748 ], [ -0.76208, 53.39095 ], [ -0.76209, 53.39105 ], [ -0.76199, 53.39315 ], [ -0.76647, 53.39311 ], [ -0.76982, 53.39303 ], [ -0.77051, 53.39305 ], [ -0.76953, 53.39578 ], [ -0.76947, 53.39827 ], [ -0.76959, 53.39913 ], [ -0.77077, 53.40215 ], [ -0.76997, 53.40289 ], [ -0.76974, 53.40312 ], [ -0.76707, 53.40468 ], [ -0.7638, 53.40494 ], [ -0.76215, 53.40485 ], [ -0.76027, 53.40481 ], [ -0.75705, 53.40475 ], [ -0.75556, 53.40472 ], [ -0.7541, 53.40469 ], [ -0.75329, 53.40467 ], [ -0.75016, 53.40479 ], [ -0.74717, 53.40551 ], [ -0.74431, 53.40515 ], [ -0.74502, 53.40279 ], [ -0.74621, 53.40138 ], [ -0.74597, 53.4001 ], [ -0.7448, 53.39631 ], [ -0.73937, 53.39643 ], [ -0.73791, 53.39279 ], [ -0.73881, 53.3929 ], [ -0.74241, 53.39167 ], [ -0.75208, 53.38747 ], [ -0.75323, 53.38804 ], [ -0.75616, 53.38784 ], [ -0.75626, 53.38783 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Gainsborough", "bua_code": "E34004397", "msoa_code": "E02005498", "population": 1000, "outputarea_code": "E00134063", "lsoa_code": "E01026388", "la_name": "West Lindsey", "bua_name": "Gainsborough BUA", "constituency_name": "Gainsborough", "citytownclassification": "Small Town", "urban": "Y", "longitude": -0.75534, "latitude": 53.37038, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.77194, 53.36301 ], [ -0.77283, 53.36418 ], [ -0.77477, 53.36497 ], [ -0.77679, 53.36475 ], [ -0.7786, 53.36346 ], [ -0.77935, 53.36216 ], [ -0.78027, 53.3617 ], [ -0.78192, 53.36188 ], [ -0.7852, 53.36293 ], [ -0.78989, 53.36323 ], [ -0.79044, 53.36356 ], [ -0.78949, 53.36514 ], [ -0.79011, 53.36829 ], [ -0.78873, 53.36958 ], [ -0.78516, 53.3746 ], [ -0.7811, 53.37609 ], [ -0.77515, 53.3771 ], [ -0.7749, 53.37685 ], [ -0.77107, 53.37697 ], [ -0.76338, 53.37826 ], [ -0.755, 53.38043 ], [ -0.74725, 53.38157 ], [ -0.74117, 53.38202 ], [ -0.73855, 53.38189 ], [ -0.73574, 53.38245 ], [ -0.73523, 53.38227 ], [ -0.73303, 53.38255 ], [ -0.73024, 53.38224 ], [ -0.72673, 53.38118 ], [ -0.72924, 53.38028 ], [ -0.72925, 53.38002 ], [ -0.72872, 53.37847 ], [ -0.72886, 53.37547 ], [ -0.72805, 53.37334 ], [ -0.72802, 53.36832 ], [ -0.72578, 53.36487 ], [ -0.72538, 53.36434 ], [ -0.73328, 53.36327 ], [ -0.73421, 53.36271 ], [ -0.73668, 53.36311 ], [ -0.73709, 53.36256 ], [ -0.74051, 53.36327 ], [ -0.74041, 53.36265 ], [ -0.74114, 53.36281 ], [ -0.74019, 53.36119 ], [ -0.74058, 53.36111 ], [ -0.7403, 53.36053 ], [ -0.74574, 53.35923 ], [ -0.75404, 53.35864 ], [ -0.75862, 53.35938 ], [ -0.7608, 53.35956 ], [ -0.76327, 53.35922 ], [ -0.76889, 53.36391 ], [ -0.77095, 53.36356 ], [ -0.77194, 53.36301 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Glossop", "bua_code": "E35001411", "msoa_code": "E02004093", "population": 5042, "outputarea_code": "E00099832", "lsoa_code": "E01019733", "la_name": "High Peak", "bua_name": "Glossop BUASD", "constituency_name": "High Peak", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.96018, "latitude": 53.46173, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.97787, 53.45301 ], [ -1.97695, 53.45437 ], [ -1.97777, 53.45507 ], [ -1.97739, 53.45537 ], [ -1.97777, 53.45594 ], [ -1.97682, 53.45629 ], [ -1.97731, 53.4568 ], [ -1.97673, 53.45711 ], [ -1.97621, 53.4568 ], [ -1.97561, 53.45696 ], [ -1.97486, 53.45737 ], [ -1.97523, 53.45764 ], [ -1.97631, 53.45786 ], [ -1.97835, 53.4565 ], [ -1.97885, 53.45692 ], [ -1.97817, 53.45754 ], [ -1.9796, 53.45825 ], [ -1.97851, 53.45881 ], [ -1.97901, 53.45911 ], [ -1.97845, 53.45936 ], [ -1.97901, 53.4597 ], [ -1.97876, 53.45996 ], [ -1.97703, 53.45946 ], [ -1.9743, 53.4593 ], [ -1.97411, 53.45935 ], [ -1.97045, 53.46136 ], [ -1.96849, 53.46116 ], [ -1.96697, 53.46195 ], [ -1.96824, 53.46317 ], [ -1.96974, 53.4641 ], [ -1.9714, 53.46462 ], [ -1.97114, 53.46601 ], [ -1.97487, 53.46673 ], [ -1.97487, 53.46821 ], [ -1.97416, 53.46779 ], [ -1.97231, 53.46762 ], [ -1.9715, 53.46785 ], [ -1.97035, 53.46926 ], [ -1.96904, 53.46959 ], [ -1.96634, 53.46882 ], [ -1.96453, 53.46834 ], [ -1.95829, 53.46545 ], [ -1.95586, 53.46438 ], [ -1.94839, 53.4671 ], [ -1.94501, 53.46704 ], [ -1.94152, 53.46744 ], [ -1.93991, 53.46717 ], [ -1.94108, 53.46362 ], [ -1.94223, 53.46219 ], [ -1.94272, 53.45925 ], [ -1.94407, 53.45931 ], [ -1.94399, 53.45972 ], [ -1.94578, 53.45952 ], [ -1.94839, 53.46062 ], [ -1.94978, 53.45991 ], [ -1.95212, 53.45984 ], [ -1.95222, 53.45929 ], [ -1.95645, 53.45896 ], [ -1.95666, 53.45875 ], [ -1.95551, 53.45799 ], [ -1.95702, 53.45736 ], [ -1.95774, 53.45587 ], [ -1.95907, 53.45526 ], [ -1.96054, 53.45452 ], [ -1.96223, 53.45423 ], [ -1.96258, 53.45371 ], [ -1.96328, 53.45379 ], [ -1.96382, 53.45485 ], [ -1.96492, 53.455 ], [ -1.96528, 53.4545 ], [ -1.96569, 53.45505 ], [ -1.96492, 53.45521 ], [ -1.96553, 53.45664 ], [ -1.96754, 53.45607 ], [ -1.96713, 53.45692 ], [ -1.96974, 53.45582 ], [ -1.96994, 53.45534 ], [ -1.97294, 53.45566 ], [ -1.9762, 53.45491 ], [ -1.97595, 53.45374 ], [ -1.97493, 53.45335 ], [ -1.97551, 53.45327 ], [ -1.97562, 53.45289 ], [ -1.97698, 53.45326 ], [ -1.97787, 53.45301 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Glossop", "bua_code": "E35001411", "msoa_code": "E02004094", "population": 4134, "outputarea_code": "E00099825", "lsoa_code": "E01019730", "la_name": "High Peak", "bua_name": "Glossop BUASD", "constituency_name": "High Peak", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.97721, "latitude": 53.45775, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.97787, 53.45301 ], [ -1.97698, 53.45326 ], [ -1.97562, 53.45289 ], [ -1.97551, 53.45327 ], [ -1.97493, 53.45335 ], [ -1.97595, 53.45374 ], [ -1.9762, 53.45491 ], [ -1.97294, 53.45566 ], [ -1.96994, 53.45534 ], [ -1.96974, 53.45582 ], [ -1.96713, 53.45692 ], [ -1.96754, 53.45607 ], [ -1.96553, 53.45664 ], [ -1.96492, 53.45521 ], [ -1.96569, 53.45505 ], [ -1.96528, 53.4545 ], [ -1.96829, 53.45364 ], [ -1.97016, 53.45373 ], [ -1.9701, 53.45112 ], [ -1.97138, 53.44876 ], [ -1.97312, 53.44711 ], [ -1.97481, 53.4475 ], [ -1.97732, 53.44891 ], [ -1.98037, 53.45103 ], [ -1.98416, 53.45304 ], [ -1.98506, 53.45317 ], [ -1.98687, 53.4543 ], [ -1.98553, 53.45564 ], [ -1.98756, 53.45681 ], [ -1.98735, 53.45891 ], [ -1.98798, 53.45967 ], [ -1.98798, 53.46071 ], [ -1.98644, 53.46104 ], [ -1.98421, 53.46174 ], [ -1.98062, 53.46304 ], [ -1.98153, 53.4645 ], [ -1.98151, 53.46453 ], [ -1.98026, 53.46621 ], [ -1.97784, 53.46748 ], [ -1.97527, 53.46858 ], [ -1.97487, 53.46821 ], [ -1.97487, 53.46673 ], [ -1.97114, 53.46601 ], [ -1.9714, 53.46462 ], [ -1.96974, 53.4641 ], [ -1.96824, 53.46317 ], [ -1.96697, 53.46195 ], [ -1.96849, 53.46116 ], [ -1.97045, 53.46136 ], [ -1.97411, 53.45935 ], [ -1.9743, 53.4593 ], [ -1.97703, 53.45946 ], [ -1.97876, 53.45996 ], [ -1.97901, 53.4597 ], [ -1.97845, 53.45936 ], [ -1.97901, 53.45911 ], [ -1.97851, 53.45881 ], [ -1.9796, 53.45825 ], [ -1.97817, 53.45754 ], [ -1.97885, 53.45692 ], [ -1.97835, 53.4565 ], [ -1.97631, 53.45786 ], [ -1.97523, 53.45764 ], [ -1.97486, 53.45737 ], [ -1.97561, 53.45696 ], [ -1.97621, 53.4568 ], [ -1.97673, 53.45711 ], [ -1.97731, 53.4568 ], [ -1.97682, 53.45629 ], [ -1.97777, 53.45594 ], [ -1.97739, 53.45537 ], [ -1.97777, 53.45507 ], [ -1.97695, 53.45437 ], [ -1.97787, 53.45301 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Glossop", "bua_code": "E35001411", "msoa_code": "E02004095", "population": 10019, "outputarea_code": "E00099868", "lsoa_code": "E01019739", "la_name": "High Peak", "bua_name": "Glossop BUASD", "constituency_name": "High Peak", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.94329, "latitude": 53.44202, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.94542, 53.42891 ], [ -1.94806, 53.43122 ], [ -1.94701, 53.43133 ], [ -1.94786, 53.43256 ], [ -1.95103, 53.43468 ], [ -1.9519, 53.43469 ], [ -1.95254, 53.43578 ], [ -1.9541, 53.43645 ], [ -1.95486, 53.43784 ], [ -1.95561, 53.43802 ], [ -1.95647, 53.43783 ], [ -1.95647, 53.43874 ], [ -1.95694, 53.43893 ], [ -1.95757, 53.439 ], [ -1.9579, 53.43948 ], [ -1.95919, 53.43906 ], [ -1.95801, 53.4399 ], [ -1.96011, 53.44069 ], [ -1.9599, 53.44096 ], [ -1.96026, 53.44087 ], [ -1.96133, 53.44145 ], [ -1.96284, 53.44201 ], [ -1.96507, 53.44293 ], [ -1.96687, 53.44423 ], [ -1.96532, 53.445 ], [ -1.96381, 53.4451 ], [ -1.96351, 53.44638 ], [ -1.96304, 53.44694 ], [ -1.96015, 53.44687 ], [ -1.95784, 53.44688 ], [ -1.95493, 53.44638 ], [ -1.95202, 53.44542 ], [ -1.95184, 53.44554 ], [ -1.9499, 53.44697 ], [ -1.94786, 53.4463 ], [ -1.9478, 53.44581 ], [ -1.94732, 53.44571 ], [ -1.94596, 53.4454 ], [ -1.94548, 53.44466 ], [ -1.94446, 53.44477 ], [ -1.94341, 53.44588 ], [ -1.94255, 53.4477 ], [ -1.94265, 53.44968 ], [ -1.94125, 53.45088 ], [ -1.94147, 53.45285 ], [ -1.94214, 53.4536 ], [ -1.94269, 53.4542 ], [ -1.94299, 53.45591 ], [ -1.94228, 53.45596 ], [ -1.94191, 53.45633 ], [ -1.9414, 53.4567 ], [ -1.93616, 53.45512 ], [ -1.93229, 53.45318 ], [ -1.93031, 53.45176 ], [ -1.92757, 53.44883 ], [ -1.92958, 53.44614 ], [ -1.92839, 53.44486 ], [ -1.93205, 53.44497 ], [ -1.93237, 53.44464 ], [ -1.93157, 53.44418 ], [ -1.9311, 53.44411 ], [ -1.931, 53.44374 ], [ -1.92877, 53.44403 ], [ -1.9286, 53.44343 ], [ -1.93016, 53.44269 ], [ -1.92919, 53.4426 ], [ -1.92864, 53.44223 ], [ -1.9301, 53.44161 ], [ -1.93007, 53.44124 ], [ -1.93063, 53.44116 ], [ -1.9307, 53.44161 ], [ -1.93133, 53.4417 ], [ -1.93127, 53.44194 ], [ -1.93233, 53.44196 ], [ -1.93232, 53.4418 ], [ -1.93251, 53.44066 ], [ -1.93462, 53.44069 ], [ -1.93209, 53.43931 ], [ -1.93447, 53.43857 ], [ -1.93447, 53.43823 ], [ -1.93268, 53.4374 ], [ -1.93291, 53.43684 ], [ -1.93242, 53.43671 ], [ -1.93171, 53.43561 ], [ -1.93185, 53.43495 ], [ -1.93127, 53.43461 ], [ -1.93169, 53.43383 ], [ -1.93133, 53.43374 ], [ -1.93523, 53.43156 ], [ -1.9408, 53.4297 ], [ -1.94542, 53.42891 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Glossop", "bua_code": "E35001411", "msoa_code": "E02004096", "population": 7697, "outputarea_code": "E00099810", "lsoa_code": "E01019727", "la_name": "High Peak", "bua_name": "Glossop BUASD", "constituency_name": "High Peak", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.95599, "latitude": 53.44456, "pgroup": "10k" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.9519, 53.43469 ], [ -1.95103, 53.43468 ], [ -1.94786, 53.43256 ], [ -1.94701, 53.43133 ], [ -1.94806, 53.43122 ], [ -1.94542, 53.42891 ], [ -1.95106, 53.42869 ], [ -1.95627, 53.42919 ], [ -1.96174, 53.43052 ], [ -1.96476, 53.43174 ], [ -1.96484, 53.43178 ], [ -1.96804, 53.4336 ], [ -1.97093, 53.43606 ], [ -1.97139, 53.43608 ], [ -1.97148, 53.43564 ], [ -1.97217, 53.43561 ], [ -1.97364, 53.43611 ], [ -1.97486, 53.43603 ], [ -1.97554, 53.43681 ], [ -1.97534, 53.43879 ], [ -1.97494, 53.43918 ], [ -1.97552, 53.4396 ], [ -1.97621, 53.44013 ], [ -1.97521, 53.44112 ], [ -1.976, 53.44181 ], [ -1.97442, 53.4431 ], [ -1.97763, 53.44274 ], [ -1.97873, 53.44206 ], [ -1.98008, 53.44298 ], [ -1.98007, 53.4434 ], [ -1.98007, 53.44344 ], [ -1.97839, 53.44362 ], [ -1.97472, 53.4453 ], [ -1.97312, 53.44711 ], [ -1.97138, 53.44876 ], [ -1.9701, 53.45112 ], [ -1.97016, 53.45373 ], [ -1.96829, 53.45364 ], [ -1.96528, 53.4545 ], [ -1.96492, 53.455 ], [ -1.96382, 53.45485 ], [ -1.96328, 53.45379 ], [ -1.96258, 53.45371 ], [ -1.96223, 53.45423 ], [ -1.96054, 53.45452 ], [ -1.95907, 53.45526 ], [ -1.95774, 53.45587 ], [ -1.95702, 53.45736 ], [ -1.95551, 53.45799 ], [ -1.95666, 53.45875 ], [ -1.95645, 53.45896 ], [ -1.95222, 53.45929 ], [ -1.95212, 53.45984 ], [ -1.94978, 53.45991 ], [ -1.94839, 53.46062 ], [ -1.94578, 53.45952 ], [ -1.94399, 53.45972 ], [ -1.94407, 53.45931 ], [ -1.94272, 53.45925 ], [ -1.94347, 53.45712 ], [ -1.9414, 53.4567 ], [ -1.94191, 53.45633 ], [ -1.94228, 53.45596 ], [ -1.94299, 53.45591 ], [ -1.94269, 53.4542 ], [ -1.94214, 53.4536 ], [ -1.94147, 53.45285 ], [ -1.94125, 53.45088 ], [ -1.94265, 53.44968 ], [ -1.94255, 53.4477 ], [ -1.94341, 53.44588 ], [ -1.94446, 53.44477 ], [ -1.94548, 53.44466 ], [ -1.94596, 53.4454 ], [ -1.94732, 53.44571 ], [ -1.9478, 53.44581 ], [ -1.94786, 53.4463 ], [ -1.9499, 53.44697 ], [ -1.95184, 53.44554 ], [ -1.95202, 53.44542 ], [ -1.95493, 53.44638 ], [ -1.95784, 53.44688 ], [ -1.96015, 53.44687 ], [ -1.96304, 53.44694 ], [ -1.96351, 53.44638 ], [ -1.96381, 53.4451 ], [ -1.96532, 53.445 ], [ -1.96687, 53.44423 ], [ -1.96507, 53.44293 ], [ -1.96284, 53.44201 ], [ -1.96133, 53.44145 ], [ -1.96026, 53.44087 ], [ -1.9599, 53.44096 ], [ -1.96011, 53.44069 ], [ -1.95801, 53.4399 ], [ -1.95919, 53.43906 ], [ -1.9579, 53.43948 ], [ -1.95757, 53.439 ], [ -1.95694, 53.43893 ], [ -1.95647, 53.43874 ], [ -1.95647, 53.43783 ], [ -1.95561, 53.43802 ], [ -1.95486, 53.43784 ], [ -1.9541, 53.43645 ], [ -1.95254, 53.43578 ], [ -1.9519, 53.43469 ] ] ], [ [ [ -1.93447, 53.43857 ], [ -1.93209, 53.43931 ], [ -1.93462, 53.44069 ], [ -1.93251, 53.44066 ], [ -1.93232, 53.4418 ], [ -1.93233, 53.44196 ], [ -1.93127, 53.44194 ], [ -1.93133, 53.4417 ], [ -1.9307, 53.44161 ], [ -1.93063, 53.44116 ], [ -1.93007, 53.44124 ], [ -1.9301, 53.44161 ], [ -1.92864, 53.44223 ], [ -1.92919, 53.4426 ], [ -1.93016, 53.44269 ], [ -1.9286, 53.44343 ], [ -1.92877, 53.44403 ], [ -1.931, 53.44374 ], [ -1.9311, 53.44411 ], [ -1.93157, 53.44418 ], [ -1.93237, 53.44464 ], [ -1.93205, 53.44497 ], [ -1.92839, 53.44486 ], [ -1.92958, 53.44614 ], [ -1.92757, 53.44883 ], [ -1.92601, 53.4459 ], [ -1.92552, 53.44279 ], [ -1.92602, 53.44034 ], [ -1.9277, 53.43717 ], [ -1.93133, 53.43374 ], [ -1.93169, 53.43383 ], [ -1.93127, 53.43461 ], [ -1.93185, 53.43495 ], [ -1.93171, 53.43561 ], [ -1.93242, 53.43671 ], [ -1.93291, 53.43684 ], [ -1.93268, 53.4374 ], [ -1.93447, 53.43823 ], [ -1.93447, 53.43857 ] ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Grantham", "bua_code": "E35001363", "msoa_code": "E02005476", "population": 517, "outputarea_code": "E00133648", "lsoa_code": "E01026313", "la_name": "South Kesteven", "bua_name": "Grantham BUASD", "constituency_name": "Sleaford and North Hykeham", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.60968, "latitude": 52.94418, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.64041, 52.92942 ], [ -0.63765, 52.93083 ], [ -0.64333, 52.93273 ], [ -0.64516, 52.93405 ], [ -0.64402, 52.93554 ], [ -0.64369, 52.93675 ], [ -0.64313, 52.9393 ], [ -0.63938, 52.94879 ], [ -0.64442, 52.95021 ], [ -0.64852, 52.95082 ], [ -0.64827, 52.95123 ], [ -0.65477, 52.95263 ], [ -0.65775, 52.95372 ], [ -0.65263, 52.95802 ], [ -0.64841, 52.95654 ], [ -0.63638, 52.95356 ], [ -0.63611, 52.95297 ], [ -0.63428, 52.95244 ], [ -0.62744, 52.95205 ], [ -0.62729, 52.95092 ], [ -0.62452, 52.95145 ], [ -0.62446, 52.95076 ], [ -0.62195, 52.95101 ], [ -0.62083, 52.95072 ], [ -0.62048, 52.95177 ], [ -0.61269, 52.95214 ], [ -0.61276, 52.95271 ], [ -0.60945, 52.95287 ], [ -0.60932, 52.95346 ], [ -0.60736, 52.95323 ], [ -0.60461, 52.95348 ], [ -0.60091, 52.9526 ], [ -0.5997, 52.95259 ], [ -0.59808, 52.95313 ], [ -0.59523, 52.95316 ], [ -0.58634, 52.95264 ], [ -0.58184, 52.95138 ], [ -0.58047, 52.95035 ], [ -0.57678, 52.94907 ], [ -0.55969, 52.94577 ], [ -0.56577, 52.93641 ], [ -0.57716, 52.93751 ], [ -0.58555, 52.93733 ], [ -0.58717, 52.93696 ], [ -0.59007, 52.93683 ], [ -0.59002, 52.93743 ], [ -0.60867, 52.93981 ], [ -0.60972, 52.94046 ], [ -0.61121, 52.94072 ], [ -0.61372, 52.9411 ], [ -0.61399, 52.94088 ], [ -0.61483, 52.94097 ], [ -0.62228, 52.94221 ], [ -0.62306, 52.94119 ], [ -0.62291, 52.94026 ], [ -0.62346, 52.9397 ], [ -0.62319, 52.93905 ], [ -0.62361, 52.93786 ], [ -0.62574, 52.9374 ], [ -0.62595, 52.93658 ], [ -0.62708, 52.93612 ], [ -0.62689, 52.93564 ], [ -0.62633, 52.93573 ], [ -0.62605, 52.93535 ], [ -0.62645, 52.93473 ], [ -0.62708, 52.93456 ], [ -0.6274, 52.93336 ], [ -0.62706, 52.93257 ], [ -0.62765, 52.93193 ], [ -0.6274, 52.93096 ], [ -0.62839, 52.93038 ], [ -0.62773, 52.93007 ], [ -0.62786, 52.92955 ], [ -0.62967, 52.92935 ], [ -0.63045, 52.92846 ], [ -0.63046, 52.92778 ], [ -0.62956, 52.9267 ], [ -0.63001, 52.92618 ], [ -0.63435, 52.92667 ], [ -0.63343, 52.92733 ], [ -0.63496, 52.92767 ], [ -0.63764, 52.92847 ], [ -0.64041, 52.92942 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Grantham", "bua_code": "E35001363", "msoa_code": "E02005477", "population": 339, "outputarea_code": "E00133795", "lsoa_code": "E01026340", "la_name": "South Kesteven", "bua_name": "Grantham BUASD", "constituency_name": "Sleaford and North Hykeham", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.66672, "latitude": 52.92792, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.65928, 52.92995 ], [ -0.66043, 52.92896 ], [ -0.66065, 52.92921 ], [ -0.66275, 52.92602 ], [ -0.66528, 52.92221 ], [ -0.66984, 52.92275 ], [ -0.67006, 52.9246 ], [ -0.67089, 52.92468 ], [ -0.6706, 52.92612 ], [ -0.67167, 52.9264 ], [ -0.67045, 52.92796 ], [ -0.67477, 52.92858 ], [ -0.6702, 52.93185 ], [ -0.66802, 52.93218 ], [ -0.66604, 52.9316 ], [ -0.66556, 52.93255 ], [ -0.66447, 52.93276 ], [ -0.66379, 52.9325 ], [ -0.66344, 52.93207 ], [ -0.6616, 52.93143 ], [ -0.66069, 52.93046 ], [ -0.65928, 52.92995 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Grantham", "bua_code": "E35001363", "msoa_code": "E02005478", "population": 10047, "outputarea_code": "E00133707", "lsoa_code": "E01026326", "la_name": "South Kesteven", "bua_name": "Grantham BUASD", "constituency_name": "Grantham and Stamford", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.63191, "latitude": 52.92184, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.64307, 52.91357 ], [ -0.64392, 52.9149 ], [ -0.64517, 52.91578 ], [ -0.64671, 52.91802 ], [ -0.64788, 52.91998 ], [ -0.64768, 52.92175 ], [ -0.64762, 52.92213 ], [ -0.64729, 52.92461 ], [ -0.64694, 52.92726 ], [ -0.64681, 52.92824 ], [ -0.64655, 52.93017 ], [ -0.64648, 52.93064 ], [ -0.646, 52.93438 ], [ -0.64516, 52.93405 ], [ -0.64333, 52.93273 ], [ -0.63765, 52.93083 ], [ -0.64041, 52.92942 ], [ -0.63764, 52.92847 ], [ -0.63496, 52.92767 ], [ -0.63343, 52.92733 ], [ -0.63435, 52.92667 ], [ -0.63001, 52.92618 ], [ -0.62956, 52.9267 ], [ -0.62758, 52.92627 ], [ -0.62777, 52.92608 ], [ -0.62436, 52.92531 ], [ -0.62415, 52.92525 ], [ -0.62151, 52.92442 ], [ -0.62034, 52.92412 ], [ -0.61758, 52.92452 ], [ -0.61662, 52.92448 ], [ -0.61611, 52.92444 ], [ -0.61377, 52.92426 ], [ -0.61323, 52.92287 ], [ -0.61131, 52.9229 ], [ -0.61168, 52.91997 ], [ -0.61172, 52.91968 ], [ -0.6118, 52.9193 ], [ -0.61279, 52.91622 ], [ -0.61295, 52.9158 ], [ -0.61838, 52.91439 ], [ -0.62041, 52.91316 ], [ -0.62275, 52.91503 ], [ -0.62487, 52.91595 ], [ -0.62682, 52.91639 ], [ -0.62981, 52.91686 ], [ -0.63251, 52.91756 ], [ -0.63648, 52.91818 ], [ -0.63723, 52.91869 ], [ -0.63857, 52.91873 ], [ -0.63912, 52.91785 ], [ -0.6373, 52.91649 ], [ -0.63845, 52.91402 ], [ -0.63944, 52.91399 ], [ -0.6422, 52.91404 ], [ -0.64307, 52.91357 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Grantham", "bua_code": "E35001363", "msoa_code": "E02005479", "population": 8899, "outputarea_code": "E00133682", "lsoa_code": "E01026321", "la_name": "South Kesteven", "bua_name": "Grantham BUASD", "constituency_name": "Grantham and Stamford", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.65601, "latitude": 52.92076, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.64307, 52.91357 ], [ -0.6422, 52.91404 ], [ -0.63944, 52.91399 ], [ -0.63845, 52.91402 ], [ -0.63685, 52.9115 ], [ -0.63693, 52.91046 ], [ -0.63721, 52.91039 ], [ -0.63909, 52.90985 ], [ -0.6398, 52.90953 ], [ -0.64248, 52.90931 ], [ -0.64255, 52.90931 ], [ -0.64533, 52.90945 ], [ -0.64567, 52.90966 ], [ -0.64502, 52.91039 ], [ -0.64658, 52.91054 ], [ -0.6505, 52.91091 ], [ -0.64961, 52.91272 ], [ -0.6541, 52.91241 ], [ -0.65692, 52.91295 ], [ -0.65854, 52.91295 ], [ -0.66017, 52.91251 ], [ -0.66301, 52.91197 ], [ -0.66472, 52.91208 ], [ -0.66481, 52.91207 ], [ -0.66893, 52.91183 ], [ -0.67123, 52.91207 ], [ -0.6716, 52.91209 ], [ -0.67234, 52.91482 ], [ -0.67331, 52.91733 ], [ -0.67359, 52.91805 ], [ -0.67322, 52.91814 ], [ -0.67328, 52.92109 ], [ -0.67145, 52.92124 ], [ -0.67176, 52.92265 ], [ -0.66984, 52.92275 ], [ -0.66528, 52.92221 ], [ -0.66275, 52.92602 ], [ -0.66065, 52.92921 ], [ -0.66043, 52.92896 ], [ -0.65928, 52.92995 ], [ -0.65878, 52.93043 ], [ -0.65863, 52.93057 ], [ -0.65831, 52.93091 ], [ -0.65677, 52.93291 ], [ -0.6547, 52.93564 ], [ -0.65469, 52.9362 ], [ -0.65091, 52.93597 ], [ -0.64929, 52.93526 ], [ -0.64858, 52.93545 ], [ -0.64732, 52.93468 ], [ -0.646, 52.93438 ], [ -0.64648, 52.93064 ], [ -0.64655, 52.93017 ], [ -0.64681, 52.92824 ], [ -0.64694, 52.92726 ], [ -0.64729, 52.92461 ], [ -0.64762, 52.92213 ], [ -0.64768, 52.92175 ], [ -0.64788, 52.91998 ], [ -0.64671, 52.91802 ], [ -0.64517, 52.91578 ], [ -0.64392, 52.9149 ], [ -0.64307, 52.91357 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Grantham", "bua_code": "E35001363", "msoa_code": "E02005480", "population": 7572, "outputarea_code": "E00133620", "lsoa_code": "E01026310", "la_name": "South Kesteven", "bua_name": "Grantham BUASD", "constituency_name": "Grantham and Stamford", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.66537, "latitude": 52.90529, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.65475, 52.90232 ], [ -0.65598, 52.90096 ], [ -0.65813, 52.90005 ], [ -0.6615, 52.89922 ], [ -0.66107, 52.89904 ], [ -0.66149, 52.89863 ], [ -0.66598, 52.89804 ], [ -0.66971, 52.89612 ], [ -0.67079, 52.89607 ], [ -0.67174, 52.89661 ], [ -0.67494, 52.89923 ], [ -0.67692, 52.90036 ], [ -0.67609, 52.90215 ], [ -0.67723, 52.90248 ], [ -0.67767, 52.90583 ], [ -0.6765, 52.9058 ], [ -0.67622, 52.90977 ], [ -0.67616, 52.91027 ], [ -0.67156, 52.91025 ], [ -0.67118, 52.91025 ], [ -0.67123, 52.91207 ], [ -0.66893, 52.91183 ], [ -0.66481, 52.91207 ], [ -0.66472, 52.91208 ], [ -0.66301, 52.91197 ], [ -0.66017, 52.91251 ], [ -0.65854, 52.91295 ], [ -0.65692, 52.91295 ], [ -0.6541, 52.91241 ], [ -0.64961, 52.91272 ], [ -0.6505, 52.91091 ], [ -0.65328, 52.91088 ], [ -0.65373, 52.91083 ], [ -0.65468, 52.91072 ], [ -0.65455, 52.90954 ], [ -0.65425, 52.90856 ], [ -0.65406, 52.90704 ], [ -0.65469, 52.90516 ], [ -0.6551, 52.9041 ], [ -0.65475, 52.90232 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Grantham", "bua_code": "E35001363", "msoa_code": "E02005481", "population": 11997, "outputarea_code": "E00133667", "lsoa_code": "E01026317", "la_name": "South Kesteven", "bua_name": "Grantham BUASD", "constituency_name": "Grantham and Stamford", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.63924, "latitude": 52.90426, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.62417, 52.90047 ], [ -0.62827, 52.89855 ], [ -0.63035, 52.89754 ], [ -0.6279, 52.88949 ], [ -0.63292, 52.88843 ], [ -0.63465, 52.90096 ], [ -0.63517, 52.90259 ], [ -0.63707, 52.90072 ], [ -0.63729, 52.89747 ], [ -0.63966, 52.89695 ], [ -0.6428, 52.89714 ], [ -0.64517, 52.89732 ], [ -0.64771, 52.89526 ], [ -0.6499, 52.89244 ], [ -0.65284, 52.89443 ], [ -0.65741, 52.89588 ], [ -0.65809, 52.89503 ], [ -0.65682, 52.89335 ], [ -0.65901, 52.89309 ], [ -0.6621, 52.89212 ], [ -0.66409, 52.89465 ], [ -0.66971, 52.89612 ], [ -0.66598, 52.89804 ], [ -0.66149, 52.89863 ], [ -0.66107, 52.89904 ], [ -0.6615, 52.89922 ], [ -0.65813, 52.90005 ], [ -0.65598, 52.90096 ], [ -0.65475, 52.90232 ], [ -0.6551, 52.9041 ], [ -0.65469, 52.90516 ], [ -0.65406, 52.90704 ], [ -0.65425, 52.90856 ], [ -0.65455, 52.90954 ], [ -0.65468, 52.91072 ], [ -0.65373, 52.91083 ], [ -0.65328, 52.91088 ], [ -0.6505, 52.91091 ], [ -0.64658, 52.91054 ], [ -0.64502, 52.91039 ], [ -0.64567, 52.90966 ], [ -0.64533, 52.90945 ], [ -0.64255, 52.90931 ], [ -0.64248, 52.90931 ], [ -0.6398, 52.90953 ], [ -0.63909, 52.90985 ], [ -0.63721, 52.91039 ], [ -0.63693, 52.91046 ], [ -0.63685, 52.9115 ], [ -0.63845, 52.91402 ], [ -0.6373, 52.91649 ], [ -0.63912, 52.91785 ], [ -0.63857, 52.91873 ], [ -0.63723, 52.91869 ], [ -0.63648, 52.91818 ], [ -0.63251, 52.91756 ], [ -0.62981, 52.91686 ], [ -0.62682, 52.91639 ], [ -0.62487, 52.91595 ], [ -0.62275, 52.91503 ], [ -0.62041, 52.91316 ], [ -0.61838, 52.91439 ], [ -0.61295, 52.9158 ], [ -0.61118, 52.91407 ], [ -0.61644, 52.91234 ], [ -0.61857, 52.91155 ], [ -0.61785, 52.91079 ], [ -0.62096, 52.91019 ], [ -0.62327, 52.90816 ], [ -0.62408, 52.90744 ], [ -0.62371, 52.90635 ], [ -0.62361, 52.90609 ], [ -0.62353, 52.90583 ], [ -0.62189, 52.90151 ], [ -0.62417, 52.90047 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Grantham", "bua_code": "E35001363", "msoa_code": "E02005482", "population": 4856, "outputarea_code": "E00133544", "lsoa_code": "E01026294", "la_name": "South Kesteven", "bua_name": "Grantham BUASD", "constituency_name": "Grantham and Stamford", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.61609, "latitude": 52.91247, "pgroup": "10k" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.62417, 52.90047 ], [ -0.62189, 52.90151 ], [ -0.62353, 52.90583 ], [ -0.61742, 52.90606 ], [ -0.61188, 52.90568 ], [ -0.612, 52.90823 ], [ -0.6076, 52.90761 ], [ -0.60716, 52.90479 ], [ -0.60869, 52.90317 ], [ -0.60896, 52.90191 ], [ -0.61081, 52.90196 ], [ -0.61196, 52.90156 ], [ -0.61177, 52.89855 ], [ -0.61498, 52.89895 ], [ -0.61417, 52.89954 ], [ -0.61476, 52.89952 ], [ -0.61484, 52.90029 ], [ -0.61362, 52.90031 ], [ -0.61371, 52.90066 ], [ -0.61573, 52.90123 ], [ -0.61659, 52.90199 ], [ -0.61836, 52.90114 ], [ -0.61877, 52.90035 ], [ -0.61586, 52.89912 ], [ -0.61651, 52.89796 ], [ -0.61552, 52.89302 ], [ -0.61937, 52.89385 ], [ -0.62148, 52.89599 ], [ -0.62248, 52.89818 ], [ -0.62414, 52.89792 ], [ -0.62494, 52.89829 ], [ -0.62827, 52.89855 ], [ -0.62417, 52.90047 ] ] ], [ [ [ -0.60634, 52.91669 ], [ -0.60535, 52.91613 ], [ -0.60707, 52.91497 ], [ -0.61022, 52.91466 ], [ -0.61129, 52.91552 ], [ -0.61279, 52.91622 ], [ -0.6118, 52.9193 ], [ -0.61172, 52.91968 ], [ -0.61168, 52.91997 ], [ -0.61131, 52.9229 ], [ -0.61323, 52.92287 ], [ -0.61377, 52.92426 ], [ -0.61611, 52.92444 ], [ -0.61662, 52.92448 ], [ -0.61758, 52.92452 ], [ -0.62034, 52.92412 ], [ -0.62151, 52.92442 ], [ -0.62415, 52.92525 ], [ -0.62436, 52.92531 ], [ -0.62777, 52.92608 ], [ -0.62758, 52.92627 ], [ -0.62956, 52.9267 ], [ -0.63046, 52.92778 ], [ -0.63045, 52.92846 ], [ -0.62967, 52.92935 ], [ -0.62786, 52.92955 ], [ -0.62773, 52.93007 ], [ -0.62839, 52.93038 ], [ -0.6274, 52.93096 ], [ -0.62765, 52.93193 ], [ -0.62608, 52.93217 ], [ -0.62553, 52.92968 ], [ -0.62405, 52.92908 ], [ -0.6204, 52.92816 ], [ -0.61741, 52.92726 ], [ -0.6159, 52.92718 ], [ -0.61005, 52.92689 ], [ -0.60908, 52.92519 ], [ -0.60873, 52.92319 ], [ -0.60805, 52.92135 ], [ -0.60719, 52.92111 ], [ -0.60668, 52.92094 ], [ -0.60497, 52.91986 ], [ -0.60266, 52.91846 ], [ -0.60477, 52.91593 ], [ -0.60634, 52.91669 ] ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Heanor", "bua_code": "E35001202", "msoa_code": "E02004036", "population": 1694, "outputarea_code": "E00098275", "lsoa_code": "E01019432", "la_name": "Amber Valley", "bua_name": "Heanor BUASD", "constituency_name": "Amber Valley", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.37163, "latitude": 53.02667, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.37608, 53.01873 ], [ -1.38014, 53.02151 ], [ -1.38301, 53.02432 ], [ -1.38036, 53.02471 ], [ -1.38081, 53.02671 ], [ -1.38289, 53.02683 ], [ -1.38538, 53.02766 ], [ -1.38435, 53.02853 ], [ -1.3831, 53.02811 ], [ -1.3815, 53.02987 ], [ -1.38009, 53.02926 ], [ -1.37984, 53.02957 ], [ -1.37577, 53.03062 ], [ -1.37159, 53.03129 ], [ -1.37045, 53.03035 ], [ -1.36722, 53.03163 ], [ -1.36497, 53.03302 ], [ -1.36297, 53.0336 ], [ -1.35888, 53.03376 ], [ -1.35967, 53.03191 ], [ -1.36131, 53.03055 ], [ -1.36201, 53.02638 ], [ -1.36177, 53.02524 ], [ -1.36268, 53.02493 ], [ -1.36305, 53.02411 ], [ -1.3636, 53.02337 ], [ -1.36735, 53.02273 ], [ -1.36888, 53.02345 ], [ -1.36846, 53.02312 ], [ -1.37088, 53.02237 ], [ -1.37431, 53.01986 ], [ -1.37536, 53.0189 ], [ -1.37608, 53.01873 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Heanor", "bua_code": "E35001202", "msoa_code": "E02004040", "population": 9225, "outputarea_code": "E00098276", "lsoa_code": "E01019433", "la_name": "Amber Valley", "bua_name": "Heanor BUASD", "constituency_name": "Amber Valley", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.36429, "latitude": 53.01712, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.4025, 52.99303 ], [ -1.39853, 52.9938 ], [ -1.39837, 52.9959 ], [ -1.39664, 52.99534 ], [ -1.39613, 52.99568 ], [ -1.39428, 52.99595 ], [ -1.39505, 52.9956 ], [ -1.395, 52.9949 ], [ -1.39428, 52.99515 ], [ -1.39034, 52.99532 ], [ -1.39087, 52.9971 ], [ -1.38994, 52.9976 ], [ -1.39119, 52.99743 ], [ -1.39186, 52.99817 ], [ -1.39137, 52.99832 ], [ -1.3915, 52.99856 ], [ -1.38852, 52.99896 ], [ -1.39036, 52.99929 ], [ -1.39113, 53.00013 ], [ -1.39245, 52.99999 ], [ -1.39233, 52.9995 ], [ -1.39278, 52.99961 ], [ -1.3932, 52.9993 ], [ -1.3936, 52.99827 ], [ -1.39402, 52.99796 ], [ -1.39444, 52.99806 ], [ -1.39448, 52.99774 ], [ -1.39516, 52.99782 ], [ -1.39542, 52.99871 ], [ -1.39762, 52.99919 ], [ -1.39787, 52.99974 ], [ -1.39899, 53.00035 ], [ -1.39589, 53.00176 ], [ -1.39542, 53.00303 ], [ -1.39383, 53.00317 ], [ -1.39373, 53.00418 ], [ -1.39181, 53.00415 ], [ -1.38973, 53.00478 ], [ -1.38815, 53.00707 ], [ -1.38744, 53.00735 ], [ -1.38768, 53.00802 ], [ -1.38834, 53.01012 ], [ -1.38847, 53.012 ], [ -1.38782, 53.01401 ], [ -1.38813, 53.01409 ], [ -1.38773, 53.01451 ], [ -1.3851, 53.01507 ], [ -1.38555, 53.01607 ], [ -1.38309, 53.01666 ], [ -1.38237, 53.0172 ], [ -1.38077, 53.01714 ], [ -1.37987, 53.01629 ], [ -1.37909, 53.01702 ], [ -1.37766, 53.01786 ], [ -1.37608, 53.01873 ], [ -1.37536, 53.0189 ], [ -1.37431, 53.01986 ], [ -1.37088, 53.02237 ], [ -1.36846, 53.02312 ], [ -1.36888, 53.02345 ], [ -1.36735, 53.02273 ], [ -1.3636, 53.02337 ], [ -1.36305, 53.02411 ], [ -1.36268, 53.02493 ], [ -1.36177, 53.02524 ], [ -1.36201, 53.02638 ], [ -1.36131, 53.03055 ], [ -1.35967, 53.03191 ], [ -1.35888, 53.03376 ], [ -1.35791, 53.03585 ], [ -1.35784, 53.03599 ], [ -1.35691, 53.03774 ], [ -1.35222, 53.04171 ], [ -1.35577, 53.04368 ], [ -1.35747, 53.0478 ], [ -1.35128, 53.04869 ], [ -1.34875, 53.04906 ], [ -1.34792, 53.04822 ], [ -1.34315, 53.04964 ], [ -1.3372, 53.04947 ], [ -1.33763, 53.05051 ], [ -1.33574, 53.05071 ], [ -1.33444, 53.05024 ], [ -1.33324, 53.04817 ], [ -1.33463, 53.0473 ], [ -1.33374, 53.04571 ], [ -1.33398, 53.0447 ], [ -1.33296, 53.04459 ], [ -1.33302, 53.04404 ], [ -1.33358, 53.04414 ], [ -1.33357, 53.04367 ], [ -1.33304, 53.0434 ], [ -1.33382, 53.04294 ], [ -1.33261, 53.04256 ], [ -1.3324, 53.0422 ], [ -1.3336, 53.0422 ], [ -1.3336, 53.04173 ], [ -1.33495, 53.0417 ], [ -1.33495, 53.04146 ], [ -1.33473, 53.04122 ], [ -1.33428, 53.04132 ], [ -1.33462, 53.04063 ], [ -1.33319, 53.03969 ], [ -1.33258, 53.0383 ], [ -1.33257, 53.03724 ], [ -1.3331, 53.03698 ], [ -1.33264, 53.03639 ], [ -1.3331, 53.03584 ], [ -1.33314, 53.03577 ], [ -1.3328, 53.03516 ], [ -1.33311, 53.03391 ], [ -1.33227, 53.03403 ], [ -1.33184, 53.03322 ], [ -1.33212, 53.03295 ], [ -1.33163, 53.03279 ], [ -1.33194, 53.03249 ], [ -1.33127, 53.03183 ], [ -1.33181, 53.03092 ], [ -1.33116, 53.03093 ], [ -1.331, 53.03044 ], [ -1.32932, 53.03081 ], [ -1.32861, 53.03008 ], [ -1.32802, 53.02924 ], [ -1.32779, 53.02842 ], [ -1.32588, 53.02738 ], [ -1.32463, 53.02611 ], [ -1.3237, 53.02415 ], [ -1.32509, 53.02517 ], [ -1.3287, 53.02355 ], [ -1.33145, 53.02457 ], [ -1.33302, 53.02483 ], [ -1.33186, 53.02115 ], [ -1.3329, 53.02116 ], [ -1.33312, 53.01997 ], [ -1.33348, 53.02001 ], [ -1.3379, 53.0205 ], [ -1.33775, 53.02192 ], [ -1.33691, 53.0247 ], [ -1.33762, 53.02475 ], [ -1.33754, 53.02504 ], [ -1.33751, 53.02539 ], [ -1.33999, 53.02556 ], [ -1.34053, 53.02551 ], [ -1.34045, 53.02526 ], [ -1.34121, 53.02532 ], [ -1.34192, 53.02591 ], [ -1.34251, 53.02597 ], [ -1.34574, 53.0254 ], [ -1.34648, 53.02553 ], [ -1.34691, 53.02359 ], [ -1.34736, 53.02225 ], [ -1.34832, 53.02225 ], [ -1.35071, 53.02258 ], [ -1.35278, 53.02211 ], [ -1.352, 53.01985 ], [ -1.35148, 53.0189 ], [ -1.35061, 53.01931 ], [ -1.35021, 53.01819 ], [ -1.35026, 53.01785 ], [ -1.35184, 53.01769 ], [ -1.35204, 53.01767 ], [ -1.35255, 53.01762 ], [ -1.35249, 53.0174 ], [ -1.35247, 53.01733 ], [ -1.35303, 53.01725 ], [ -1.35266, 53.01598 ], [ -1.35409, 53.01603 ], [ -1.35478, 53.01472 ], [ -1.3549, 53.01446 ], [ -1.356, 53.01482 ], [ -1.35679, 53.01493 ], [ -1.35735, 53.01473 ], [ -1.35809, 53.01519 ], [ -1.35906, 53.01578 ], [ -1.35851, 53.01603 ], [ -1.35986, 53.01666 ], [ -1.36023, 53.01654 ], [ -1.36045, 53.01637 ], [ -1.3603, 53.01581 ], [ -1.35924, 53.01549 ], [ -1.35887, 53.01479 ], [ -1.36084, 53.01447 ], [ -1.36098, 53.01387 ], [ -1.36062, 53.01379 ], [ -1.36078, 53.01358 ], [ -1.36123, 53.01377 ], [ -1.36233, 53.01313 ], [ -1.36188, 53.01248 ], [ -1.36244, 53.01163 ], [ -1.36124, 53.01049 ], [ -1.36161, 53.01038 ], [ -1.36147, 53.00995 ], [ -1.36229, 53.00975 ], [ -1.36168, 53.00951 ], [ -1.36271, 53.00915 ], [ -1.36337, 53.00819 ], [ -1.36186, 53.0062 ], [ -1.36263, 53.00581 ], [ -1.36496, 53.00545 ], [ -1.36816, 53.0057 ], [ -1.37351, 53.00285 ], [ -1.37498, 53.00144 ], [ -1.37499, 52.99993 ], [ -1.37441, 52.9941 ], [ -1.37383, 52.99402 ], [ -1.37305, 52.99103 ], [ -1.37439, 52.99108 ], [ -1.3747, 52.99137 ], [ -1.37638, 52.99102 ], [ -1.37764, 52.99112 ], [ -1.3809, 52.98908 ], [ -1.38104, 52.98848 ], [ -1.3797, 52.98815 ], [ -1.37954, 52.9859 ], [ -1.37983, 52.98505 ], [ -1.38199, 52.98391 ], [ -1.38354, 52.98424 ], [ -1.38795, 52.98435 ], [ -1.39761, 52.98224 ], [ -1.39748, 52.9812 ], [ -1.40143, 52.98214 ], [ -1.3993, 52.98318 ], [ -1.40228, 52.98659 ], [ -1.40113, 52.98785 ], [ -1.40042, 52.99032 ], [ -1.40165, 52.99253 ], [ -1.4025, 52.99303 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Heanor", "bua_code": "E35001202", "msoa_code": "E02004041", "population": 7112, "outputarea_code": "E00098292", "lsoa_code": "E01019434", "la_name": "Amber Valley", "bua_name": "Heanor BUASD", "constituency_name": "Amber Valley", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.34275, "latitude": 53.01275, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.35475, 53.00776 ], [ -1.35524, 53.00824 ], [ -1.35445, 53.00816 ], [ -1.35322, 53.00829 ], [ -1.35485, 53.00907 ], [ -1.35461, 53.00947 ], [ -1.35552, 53.00938 ], [ -1.35533, 53.00972 ], [ -1.35615, 53.01047 ], [ -1.35613, 53.01155 ], [ -1.35722, 53.01148 ], [ -1.35656, 53.01218 ], [ -1.3565, 53.01266 ], [ -1.35717, 53.01311 ], [ -1.35643, 53.01354 ], [ -1.35724, 53.01417 ], [ -1.35667, 53.01451 ], [ -1.35679, 53.01493 ], [ -1.356, 53.01482 ], [ -1.3549, 53.01446 ], [ -1.35478, 53.01472 ], [ -1.35409, 53.01603 ], [ -1.35266, 53.01598 ], [ -1.35303, 53.01725 ], [ -1.35247, 53.01733 ], [ -1.35249, 53.0174 ], [ -1.35255, 53.01762 ], [ -1.35204, 53.01767 ], [ -1.35184, 53.01769 ], [ -1.35026, 53.01785 ], [ -1.35021, 53.01819 ], [ -1.35061, 53.01931 ], [ -1.35148, 53.0189 ], [ -1.352, 53.01985 ], [ -1.35278, 53.02211 ], [ -1.35071, 53.02258 ], [ -1.34832, 53.02225 ], [ -1.34242, 53.01867 ], [ -1.34029, 53.01856 ], [ -1.33945, 53.01821 ], [ -1.33751, 53.01756 ], [ -1.33668, 53.01686 ], [ -1.33569, 53.01582 ], [ -1.33418, 53.01572 ], [ -1.33358, 53.01538 ], [ -1.33029, 53.01447 ], [ -1.32937, 53.01308 ], [ -1.32602, 53.00896 ], [ -1.32255, 53.00637 ], [ -1.32458, 53.00556 ], [ -1.32661, 53.00502 ], [ -1.3285, 53.00727 ], [ -1.33104, 53.00903 ], [ -1.3319, 53.00877 ], [ -1.33387, 53.00801 ], [ -1.33556, 53.00857 ], [ -1.33675, 53.00851 ], [ -1.33745, 53.00816 ], [ -1.33924, 53.00747 ], [ -1.34075, 53.00662 ], [ -1.34289, 53.00629 ], [ -1.34433, 53.00723 ], [ -1.34524, 53.00726 ], [ -1.34537, 53.00713 ], [ -1.34592, 53.00724 ], [ -1.34595, 53.00686 ], [ -1.34694, 53.00689 ], [ -1.35034, 53.00613 ], [ -1.35101, 53.0056 ], [ -1.35135, 53.00613 ], [ -1.35143, 53.00768 ], [ -1.35251, 53.0073 ], [ -1.35475, 53.00776 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Heanor", "bua_code": "E35001202", "msoa_code": "E02004043", "population": 489, "outputarea_code": "E00098449", "lsoa_code": "E01019465", "la_name": "Amber Valley", "bua_name": "Heanor BUASD", "constituency_name": "Amber Valley", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.39401, "latitude": 52.99725, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.39119, 52.99743 ], [ -1.38994, 52.9976 ], [ -1.39087, 52.9971 ], [ -1.39034, 52.99532 ], [ -1.39428, 52.99515 ], [ -1.395, 52.9949 ], [ -1.39505, 52.9956 ], [ -1.39428, 52.99595 ], [ -1.39613, 52.99568 ], [ -1.39664, 52.99534 ], [ -1.39837, 52.9959 ], [ -1.39762, 52.99919 ], [ -1.39542, 52.99871 ], [ -1.39516, 52.99782 ], [ -1.39448, 52.99774 ], [ -1.39444, 52.99806 ], [ -1.39402, 52.99796 ], [ -1.3936, 52.99827 ], [ -1.3932, 52.9993 ], [ -1.39278, 52.99961 ], [ -1.39233, 52.9995 ], [ -1.39245, 52.99999 ], [ -1.39113, 53.00013 ], [ -1.39036, 52.99929 ], [ -1.38852, 52.99896 ], [ -1.3915, 52.99856 ], [ -1.39137, 52.99832 ], [ -1.39186, 52.99817 ], [ -1.39119, 52.99743 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Heanor", "bua_code": "E35001202", "msoa_code": "E02006827", "population": 7564, "outputarea_code": "E00098304", "lsoa_code": "E01019437", "la_name": "Amber Valley", "bua_name": "Heanor BUASD", "constituency_name": "Amber Valley", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.34199, "latitude": 53.00138, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.33041, 52.9809 ], [ -1.33013, 52.9821 ], [ -1.33117, 52.98393 ], [ -1.33504, 52.98534 ], [ -1.3383, 52.98434 ], [ -1.34673, 52.98333 ], [ -1.34957, 52.98478 ], [ -1.35086, 52.98592 ], [ -1.35437, 52.98688 ], [ -1.35597, 52.98827 ], [ -1.35843, 52.98944 ], [ -1.36334, 52.99008 ], [ -1.36455, 52.98971 ], [ -1.36502, 52.98992 ], [ -1.36629, 52.98973 ], [ -1.36874, 52.99043 ], [ -1.37305, 52.99103 ], [ -1.37383, 52.99402 ], [ -1.37441, 52.9941 ], [ -1.37499, 52.99993 ], [ -1.37498, 53.00144 ], [ -1.37351, 53.00285 ], [ -1.36816, 53.0057 ], [ -1.36496, 53.00545 ], [ -1.36263, 53.00581 ], [ -1.36186, 53.0062 ], [ -1.36337, 53.00819 ], [ -1.36271, 53.00915 ], [ -1.36168, 53.00951 ], [ -1.36229, 53.00975 ], [ -1.36147, 53.00995 ], [ -1.36161, 53.01038 ], [ -1.36124, 53.01049 ], [ -1.36244, 53.01163 ], [ -1.36188, 53.01248 ], [ -1.36233, 53.01313 ], [ -1.36123, 53.01377 ], [ -1.36078, 53.01358 ], [ -1.36062, 53.01379 ], [ -1.36098, 53.01387 ], [ -1.36084, 53.01447 ], [ -1.35887, 53.01479 ], [ -1.35924, 53.01549 ], [ -1.3603, 53.01581 ], [ -1.36045, 53.01637 ], [ -1.36023, 53.01654 ], [ -1.35986, 53.01666 ], [ -1.35851, 53.01603 ], [ -1.35906, 53.01578 ], [ -1.35809, 53.01519 ], [ -1.35735, 53.01473 ], [ -1.35679, 53.01493 ], [ -1.35667, 53.01451 ], [ -1.35724, 53.01417 ], [ -1.35643, 53.01354 ], [ -1.35717, 53.01311 ], [ -1.3565, 53.01266 ], [ -1.35656, 53.01218 ], [ -1.35722, 53.01148 ], [ -1.35613, 53.01155 ], [ -1.35615, 53.01047 ], [ -1.35533, 53.00972 ], [ -1.35552, 53.00938 ], [ -1.35461, 53.00947 ], [ -1.35485, 53.00907 ], [ -1.35322, 53.00829 ], [ -1.35445, 53.00816 ], [ -1.35524, 53.00824 ], [ -1.35475, 53.00776 ], [ -1.35251, 53.0073 ], [ -1.35143, 53.00768 ], [ -1.35135, 53.00613 ], [ -1.35101, 53.0056 ], [ -1.35034, 53.00613 ], [ -1.34694, 53.00689 ], [ -1.34595, 53.00686 ], [ -1.34592, 53.00724 ], [ -1.34537, 53.00713 ], [ -1.34524, 53.00726 ], [ -1.34433, 53.00723 ], [ -1.34289, 53.00629 ], [ -1.34075, 53.00662 ], [ -1.33924, 53.00747 ], [ -1.33745, 53.00816 ], [ -1.33675, 53.00851 ], [ -1.33556, 53.00857 ], [ -1.33387, 53.00801 ], [ -1.3319, 53.00877 ], [ -1.33104, 53.00903 ], [ -1.3285, 53.00727 ], [ -1.32661, 53.00502 ], [ -1.32458, 53.00556 ], [ -1.32255, 53.00637 ], [ -1.32602, 53.00896 ], [ -1.32937, 53.01308 ], [ -1.33029, 53.01447 ], [ -1.33358, 53.01538 ], [ -1.33418, 53.01572 ], [ -1.33569, 53.01582 ], [ -1.33668, 53.01686 ], [ -1.33751, 53.01756 ], [ -1.33945, 53.01821 ], [ -1.34029, 53.01856 ], [ -1.34242, 53.01867 ], [ -1.34832, 53.02225 ], [ -1.34736, 53.02225 ], [ -1.34691, 53.02359 ], [ -1.34648, 53.02553 ], [ -1.34574, 53.0254 ], [ -1.34251, 53.02597 ], [ -1.34192, 53.02591 ], [ -1.34121, 53.02532 ], [ -1.34045, 53.02526 ], [ -1.34053, 53.02551 ], [ -1.33999, 53.02556 ], [ -1.33751, 53.02539 ], [ -1.33754, 53.02504 ], [ -1.33762, 53.02475 ], [ -1.33691, 53.0247 ], [ -1.33775, 53.02192 ], [ -1.3379, 53.0205 ], [ -1.33348, 53.02001 ], [ -1.33312, 53.01997 ], [ -1.3329, 53.02116 ], [ -1.33186, 53.02115 ], [ -1.33302, 53.02483 ], [ -1.33145, 53.02457 ], [ -1.3287, 53.02355 ], [ -1.32509, 53.02517 ], [ -1.3237, 53.02415 ], [ -1.32334, 53.02303 ], [ -1.3227, 53.0216 ], [ -1.31995, 53.01764 ], [ -1.31956, 53.01721 ], [ -1.31926, 53.01688 ], [ -1.3188, 53.01604 ], [ -1.32018, 53.01552 ], [ -1.31873, 53.01418 ], [ -1.3183, 53.01358 ], [ -1.31964, 53.01154 ], [ -1.31919, 53.01022 ], [ -1.31554, 53.00848 ], [ -1.31456, 53.00722 ], [ -1.31349, 53.00662 ], [ -1.31337, 53.00524 ], [ -1.31336, 53.00457 ], [ -1.31232, 53.0046 ], [ -1.31002, 53.0034 ], [ -1.30929, 53.00384 ], [ -1.30868, 53.00353 ], [ -1.30799, 53.00387 ], [ -1.30744, 53.00365 ], [ -1.30983, 53.00204 ], [ -1.31396, 53.00132 ], [ -1.31674, 52.99936 ], [ -1.3174, 52.99848 ], [ -1.3179, 52.99705 ], [ -1.31872, 52.99649 ], [ -1.32133, 52.99473 ], [ -1.32242, 52.99445 ], [ -1.32236, 52.99396 ], [ -1.32419, 52.99371 ], [ -1.3231, 52.99274 ], [ -1.32237, 52.99068 ], [ -1.32205, 52.98934 ], [ -1.32311, 52.98983 ], [ -1.32464, 52.98953 ], [ -1.32391, 52.98831 ], [ -1.3262, 52.98862 ], [ -1.32666, 52.98809 ], [ -1.32723, 52.98806 ], [ -1.32708, 52.98771 ], [ -1.32804, 52.98736 ], [ -1.33152, 52.98707 ], [ -1.33034, 52.98623 ], [ -1.32814, 52.98335 ], [ -1.32815, 52.98163 ], [ -1.33041, 52.9809 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Higham Ferrers", "bua_code": "E35000422", "msoa_code": "E02005635", "population": 8614, "outputarea_code": "E00137508", "lsoa_code": "E01027034", "la_name": "East Northamptonshire", "bua_name": "Higham Ferrers BUASD", "constituency_name": "Wellingborough", "citytownclassification": "Small Town", "urban": "Y", "longitude": -0.57997, "latitude": 52.30804, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.57604, 52.29771 ], [ -0.58575, 52.30108 ], [ -0.59065, 52.30178 ], [ -0.59453, 52.302 ], [ -0.59573, 52.30208 ], [ -0.5961, 52.30238 ], [ -0.59837, 52.30222 ], [ -0.60165, 52.30202 ], [ -0.60196, 52.30212 ], [ -0.60383, 52.30418 ], [ -0.60978, 52.30602 ], [ -0.61046, 52.30634 ], [ -0.61029, 52.30689 ], [ -0.60938, 52.30788 ], [ -0.60773, 52.30861 ], [ -0.60851, 52.30996 ], [ -0.6068, 52.31002 ], [ -0.60589, 52.31007 ], [ -0.60406, 52.31015 ], [ -0.60387, 52.31381 ], [ -0.60317, 52.31572 ], [ -0.60486, 52.31553 ], [ -0.60546, 52.31619 ], [ -0.60611, 52.31633 ], [ -0.60646, 52.31611 ], [ -0.60684, 52.31705 ], [ -0.60898, 52.31798 ], [ -0.60489, 52.32085 ], [ -0.60246, 52.3225 ], [ -0.59722, 52.32525 ], [ -0.5961, 52.32578 ], [ -0.59431, 52.3257 ], [ -0.59332, 52.32646 ], [ -0.5925, 52.32644 ], [ -0.59271, 52.32543 ], [ -0.59367, 52.32452 ], [ -0.58706, 52.32192 ], [ -0.5816, 52.32023 ], [ -0.57182, 52.31872 ], [ -0.56473, 52.31796 ], [ -0.56346, 52.318 ], [ -0.55993, 52.31906 ], [ -0.55834, 52.31754 ], [ -0.56256, 52.31584 ], [ -0.56133, 52.31437 ], [ -0.56413, 52.3124 ], [ -0.55947, 52.3102 ], [ -0.56198, 52.30653 ], [ -0.56172, 52.30573 ], [ -0.56044, 52.30537 ], [ -0.55842, 52.30327 ], [ -0.56039, 52.30253 ], [ -0.56027, 52.30224 ], [ -0.5589, 52.30032 ], [ -0.55604, 52.29753 ], [ -0.55094, 52.2959 ], [ -0.55133, 52.29516 ], [ -0.54756, 52.29412 ], [ -0.55016, 52.29123 ], [ -0.5508, 52.29128 ], [ -0.55372, 52.28864 ], [ -0.55875, 52.2857 ], [ -0.56062, 52.28825 ], [ -0.56282, 52.29036 ], [ -0.56429, 52.29153 ], [ -0.56818, 52.29328 ], [ -0.57099, 52.29575 ], [ -0.5746, 52.29738 ], [ -0.57604, 52.29771 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Hilton (South Derbyshire)", "bua_code": "E34000839", "msoa_code": "E02004119", "population": 8210, "outputarea_code": "E00100434", "lsoa_code": "E01019848", "la_name": "South Derbyshire", "bua_name": "Hilton (South Derbyshire) BUA", "constituency_name": "South Derbyshire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.6354, "latitude": 52.87263, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.61618, 52.8651 ], [ -1.61821, 52.86224 ], [ -1.62058, 52.86187 ], [ -1.62466, 52.86342 ], [ -1.62496, 52.8631 ], [ -1.62774, 52.86101 ], [ -1.62846, 52.86136 ], [ -1.63156, 52.85984 ], [ -1.63027, 52.85903 ], [ -1.62866, 52.85887 ], [ -1.62878, 52.85835 ], [ -1.62761, 52.8583 ], [ -1.62693, 52.8568 ], [ -1.62909, 52.85718 ], [ -1.62981, 52.85586 ], [ -1.63107, 52.8558 ], [ -1.63179, 52.85463 ], [ -1.63292, 52.85458 ], [ -1.63607, 52.85444 ], [ -1.63515, 52.85298 ], [ -1.63604, 52.85307 ], [ -1.63827, 52.85402 ], [ -1.64031, 52.8556 ], [ -1.64191, 52.85575 ], [ -1.64263, 52.85633 ], [ -1.64415, 52.85614 ], [ -1.64596, 52.85582 ], [ -1.65253, 52.85681 ], [ -1.65588, 52.85705 ], [ -1.65868, 52.85679 ], [ -1.66278, 52.8582 ], [ -1.66496, 52.85846 ], [ -1.66517, 52.85892 ], [ -1.66453, 52.85997 ], [ -1.66351, 52.86055 ], [ -1.66342, 52.86152 ], [ -1.66247, 52.86202 ], [ -1.66212, 52.86622 ], [ -1.66181, 52.86615 ], [ -1.66157, 52.86744 ], [ -1.66161, 52.86869 ], [ -1.6622, 52.86901 ], [ -1.66124, 52.87589 ], [ -1.65942, 52.87551 ], [ -1.65765, 52.87551 ], [ -1.65731, 52.87945 ], [ -1.65199, 52.8788 ], [ -1.65131, 52.8801 ], [ -1.65201, 52.88074 ], [ -1.65172, 52.88109 ], [ -1.65002, 52.88181 ], [ -1.65028, 52.88118 ], [ -1.64903, 52.88101 ], [ -1.64863, 52.88199 ], [ -1.64572, 52.88265 ], [ -1.64549, 52.88327 ], [ -1.64835, 52.88554 ], [ -1.64874, 52.88662 ], [ -1.64619, 52.88957 ], [ -1.64175, 52.89111 ], [ -1.63836, 52.89147 ], [ -1.63528, 52.89237 ], [ -1.63266, 52.89242 ], [ -1.63107, 52.89286 ], [ -1.62986, 52.89138 ], [ -1.62838, 52.89036 ], [ -1.62715, 52.89005 ], [ -1.62226, 52.88754 ], [ -1.62097, 52.88722 ], [ -1.62021, 52.8865 ], [ -1.61679, 52.88642 ], [ -1.61211, 52.88568 ], [ -1.61049, 52.88456 ], [ -1.60859, 52.88397 ], [ -1.60832, 52.8822 ], [ -1.60785, 52.88127 ], [ -1.60873, 52.88076 ], [ -1.60887, 52.87904 ], [ -1.608, 52.87847 ], [ -1.60853, 52.87803 ], [ -1.60784, 52.87812 ], [ -1.60738, 52.8778 ], [ -1.6076, 52.87666 ], [ -1.60736, 52.87594 ], [ -1.60781, 52.87522 ], [ -1.60788, 52.87522 ], [ -1.60833, 52.87491 ], [ -1.60838, 52.87402 ], [ -1.60759, 52.87406 ], [ -1.60817, 52.8737 ], [ -1.60781, 52.87346 ], [ -1.60868, 52.87347 ], [ -1.60929, 52.87314 ], [ -1.60906, 52.87257 ], [ -1.60941, 52.87229 ], [ -1.60909, 52.87207 ], [ -1.60881, 52.8723 ], [ -1.60856, 52.87196 ], [ -1.6088, 52.87148 ], [ -1.60949, 52.87132 ], [ -1.60899, 52.87107 ], [ -1.60918, 52.8701 ], [ -1.60838, 52.86879 ], [ -1.60798, 52.86798 ], [ -1.60767, 52.86735 ], [ -1.60812, 52.86632 ], [ -1.6105, 52.86563 ], [ -1.61124, 52.86503 ], [ -1.61081, 52.86459 ], [ -1.61534, 52.86152 ], [ -1.61656, 52.86192 ], [ -1.61535, 52.86382 ], [ -1.61618, 52.8651 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Hinckley", "bua_code": "E34004181", "msoa_code": "E02005384", "population": 2184, "outputarea_code": "E00131244", "lsoa_code": "E01025864", "la_name": "Hinckley and Bosworth", "bua_name": "Hinckley BUA", "constituency_name": "Bosworth", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.39349, "latitude": 52.55726, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.3891, 52.55123 ], [ -1.3892, 52.55084 ], [ -1.38966, 52.55122 ], [ -1.39109, 52.55054 ], [ -1.39194, 52.55137 ], [ -1.39256, 52.5511 ], [ -1.39286, 52.55152 ], [ -1.39429, 52.5512 ], [ -1.3944, 52.55138 ], [ -1.3947, 52.55048 ], [ -1.39658, 52.55097 ], [ -1.39839, 52.54916 ], [ -1.40578, 52.55058 ], [ -1.41185, 52.55077 ], [ -1.41021, 52.55353 ], [ -1.41356, 52.5544 ], [ -1.4163, 52.55592 ], [ -1.41531, 52.55646 ], [ -1.41608, 52.55776 ], [ -1.41127, 52.55855 ], [ -1.40728, 52.55816 ], [ -1.40723, 52.55929 ], [ -1.40714, 52.55932 ], [ -1.40326, 52.56065 ], [ -1.39978, 52.56309 ], [ -1.39862, 52.56393 ], [ -1.39891, 52.56552 ], [ -1.39748, 52.56622 ], [ -1.39657, 52.56632 ], [ -1.39659, 52.56674 ], [ -1.39565, 52.56688 ], [ -1.3953, 52.56729 ], [ -1.39309, 52.56566 ], [ -1.39211, 52.56438 ], [ -1.38843, 52.56523 ], [ -1.38773, 52.56477 ], [ -1.38551, 52.56597 ], [ -1.38239, 52.56719 ], [ -1.38108, 52.56512 ], [ -1.38143, 52.56471 ], [ -1.38113, 52.56381 ], [ -1.37827, 52.56185 ], [ -1.37725, 52.56156 ], [ -1.37662, 52.56046 ], [ -1.37537, 52.55967 ], [ -1.37536, 52.55891 ], [ -1.37444, 52.55751 ], [ -1.38065, 52.55537 ], [ -1.37981, 52.55432 ], [ -1.37833, 52.55437 ], [ -1.3764, 52.55282 ], [ -1.3775, 52.55244 ], [ -1.37703, 52.5515 ], [ -1.37685, 52.55121 ], [ -1.37743, 52.55091 ], [ -1.37844, 52.55115 ], [ -1.37891, 52.55074 ], [ -1.37997, 52.55063 ], [ -1.38068, 52.55098 ], [ -1.38211, 52.55069 ], [ -1.38229, 52.54957 ], [ -1.38328, 52.54929 ], [ -1.38465, 52.5499 ], [ -1.38692, 52.55088 ], [ -1.3891, 52.55123 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Hinckley", "bua_code": "E34004181", "msoa_code": "E02005385", "population": 6446, "outputarea_code": "E00131211", "lsoa_code": "E01025862", "la_name": "Hinckley and Bosworth", "bua_name": "Hinckley BUA", "constituency_name": "Bosworth", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.35894, "latitude": 52.55396, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.34512, 52.54507 ], [ -1.35665, 52.53989 ], [ -1.36048, 52.54143 ], [ -1.35934, 52.54213 ], [ -1.3602, 52.54336 ], [ -1.3615, 52.54358 ], [ -1.36175, 52.54456 ], [ -1.36295, 52.54463 ], [ -1.36326, 52.54491 ], [ -1.36343, 52.5449 ], [ -1.36284, 52.54609 ], [ -1.36338, 52.5462 ], [ -1.36384, 52.54684 ], [ -1.36229, 52.54753 ], [ -1.36256, 52.54798 ], [ -1.36483, 52.54813 ], [ -1.36428, 52.55012 ], [ -1.36448, 52.55005 ], [ -1.36701, 52.55086 ], [ -1.36673, 52.55125 ], [ -1.36716, 52.55149 ], [ -1.36739, 52.55177 ], [ -1.36685, 52.55187 ], [ -1.36665, 52.55214 ], [ -1.36781, 52.55292 ], [ -1.36786, 52.55297 ], [ -1.36864, 52.55359 ], [ -1.36965, 52.55418 ], [ -1.36904, 52.5545 ], [ -1.37121, 52.55506 ], [ -1.37209, 52.55562 ], [ -1.37282, 52.55459 ], [ -1.37212, 52.55288 ], [ -1.37312, 52.5528 ], [ -1.37266, 52.55265 ], [ -1.37293, 52.55204 ], [ -1.37347, 52.55216 ], [ -1.37441, 52.55168 ], [ -1.37517, 52.5517 ], [ -1.37534, 52.55194 ], [ -1.37703, 52.5515 ], [ -1.3775, 52.55244 ], [ -1.3764, 52.55282 ], [ -1.37833, 52.55437 ], [ -1.37981, 52.55432 ], [ -1.38065, 52.55537 ], [ -1.37444, 52.55751 ], [ -1.37536, 52.55891 ], [ -1.37537, 52.55967 ], [ -1.37662, 52.56046 ], [ -1.37725, 52.56156 ], [ -1.37827, 52.56185 ], [ -1.38113, 52.56381 ], [ -1.38143, 52.56471 ], [ -1.38108, 52.56512 ], [ -1.38239, 52.56719 ], [ -1.37879, 52.56712 ], [ -1.3659, 52.56531 ], [ -1.3651, 52.56511 ], [ -1.36721, 52.56336 ], [ -1.36732, 52.56253 ], [ -1.3604, 52.56327 ], [ -1.35939, 52.56156 ], [ -1.3597, 52.56093 ], [ -1.35793, 52.56075 ], [ -1.35762, 52.5611 ], [ -1.35664, 52.56124 ], [ -1.3566, 52.56077 ], [ -1.35343, 52.56052 ], [ -1.35408, 52.55768 ], [ -1.3529, 52.55761 ], [ -1.35256, 52.55764 ], [ -1.34715, 52.5584 ], [ -1.34527, 52.55757 ], [ -1.34118, 52.55678 ], [ -1.34169, 52.55637 ], [ -1.34046, 52.55587 ], [ -1.34116, 52.55508 ], [ -1.33991, 52.55487 ], [ -1.33791, 52.55551 ], [ -1.33899, 52.55459 ], [ -1.33911, 52.5529 ], [ -1.33805, 52.55173 ], [ -1.33657, 52.54861 ], [ -1.34512, 52.54507 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Hinckley", "bua_code": "E34004181", "msoa_code": "E02005386", "population": 8824, "outputarea_code": "E00131167", "lsoa_code": "E01025850", "la_name": "Hinckley and Bosworth", "bua_name": "Hinckley BUA", "constituency_name": "Bosworth", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.3696, "latitude": 52.54478, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.35725, 52.53961 ], [ -1.3625, 52.53733 ], [ -1.36702, 52.53599 ], [ -1.36703, 52.53657 ], [ -1.36741, 52.53649 ], [ -1.36861, 52.53621 ], [ -1.3687, 52.53743 ], [ -1.36826, 52.5375 ], [ -1.36835, 52.53778 ], [ -1.36917, 52.53785 ], [ -1.36904, 52.53833 ], [ -1.37247, 52.53788 ], [ -1.37204, 52.53839 ], [ -1.3728, 52.53872 ], [ -1.37639, 52.53823 ], [ -1.37869, 52.5374 ], [ -1.37833, 52.53799 ], [ -1.37864, 52.53827 ], [ -1.37736, 52.53955 ], [ -1.37624, 52.5394 ], [ -1.37477, 52.54028 ], [ -1.37561, 52.54047 ], [ -1.37643, 52.54002 ], [ -1.37755, 52.54073 ], [ -1.37731, 52.54102 ], [ -1.37775, 52.54137 ], [ -1.37529, 52.54123 ], [ -1.37581, 52.54131 ], [ -1.37608, 52.54175 ], [ -1.37584, 52.54228 ], [ -1.37574, 52.5425 ], [ -1.37675, 52.54274 ], [ -1.37672, 52.543 ], [ -1.37721, 52.54323 ], [ -1.3766, 52.54411 ], [ -1.37502, 52.54481 ], [ -1.37835, 52.54623 ], [ -1.37858, 52.5463 ], [ -1.37829, 52.54655 ], [ -1.37875, 52.54741 ], [ -1.37693, 52.54629 ], [ -1.37637, 52.54632 ], [ -1.37604, 52.54684 ], [ -1.3773, 52.54865 ], [ -1.37778, 52.54902 ], [ -1.38086, 52.54827 ], [ -1.38179, 52.54858 ], [ -1.38154, 52.54912 ], [ -1.38229, 52.54957 ], [ -1.38211, 52.55069 ], [ -1.38068, 52.55098 ], [ -1.37997, 52.55063 ], [ -1.37891, 52.55074 ], [ -1.37844, 52.55115 ], [ -1.37743, 52.55091 ], [ -1.37685, 52.55121 ], [ -1.37703, 52.5515 ], [ -1.37534, 52.55194 ], [ -1.37517, 52.5517 ], [ -1.37441, 52.55168 ], [ -1.37347, 52.55216 ], [ -1.37293, 52.55204 ], [ -1.37266, 52.55265 ], [ -1.37312, 52.5528 ], [ -1.37212, 52.55288 ], [ -1.37282, 52.55459 ], [ -1.37209, 52.55562 ], [ -1.37121, 52.55506 ], [ -1.36904, 52.5545 ], [ -1.36965, 52.55418 ], [ -1.36864, 52.55359 ], [ -1.36786, 52.55297 ], [ -1.36781, 52.55292 ], [ -1.36665, 52.55214 ], [ -1.36685, 52.55187 ], [ -1.36739, 52.55177 ], [ -1.36716, 52.55149 ], [ -1.36673, 52.55125 ], [ -1.36701, 52.55086 ], [ -1.36448, 52.55005 ], [ -1.36428, 52.55012 ], [ -1.36483, 52.54813 ], [ -1.36256, 52.54798 ], [ -1.36229, 52.54753 ], [ -1.36384, 52.54684 ], [ -1.36338, 52.5462 ], [ -1.36284, 52.54609 ], [ -1.36343, 52.5449 ], [ -1.36326, 52.54491 ], [ -1.36295, 52.54463 ], [ -1.36175, 52.54456 ], [ -1.3615, 52.54358 ], [ -1.3602, 52.54336 ], [ -1.35934, 52.54213 ], [ -1.36048, 52.54143 ], [ -1.35665, 52.53989 ], [ -1.35725, 52.53961 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Hinckley", "bua_code": "E34004181", "msoa_code": "E02005387", "population": 9816, "outputarea_code": "E00131187", "lsoa_code": "E01025855", "la_name": "Hinckley and Bosworth", "bua_name": "Hinckley BUA", "constituency_name": "Bosworth", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.40067, "latitude": 52.54122, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.39691, 52.53566 ], [ -1.39181, 52.53555 ], [ -1.39214, 52.53491 ], [ -1.39414, 52.53528 ], [ -1.39504, 52.53487 ], [ -1.39472, 52.53454 ], [ -1.39495, 52.5333 ], [ -1.3944, 52.53223 ], [ -1.39169, 52.52975 ], [ -1.39155, 52.52913 ], [ -1.39224, 52.52845 ], [ -1.39447, 52.52753 ], [ -1.39489, 52.52696 ], [ -1.41388, 52.53388 ], [ -1.41521, 52.53439 ], [ -1.41583, 52.53419 ], [ -1.41606, 52.53448 ], [ -1.41735, 52.53445 ], [ -1.41738, 52.53609 ], [ -1.41834, 52.5365 ], [ -1.41896, 52.53777 ], [ -1.41879, 52.53863 ], [ -1.41662, 52.54019 ], [ -1.41576, 52.54413 ], [ -1.41294, 52.54799 ], [ -1.41185, 52.55077 ], [ -1.40578, 52.55058 ], [ -1.39839, 52.54916 ], [ -1.39658, 52.55097 ], [ -1.3947, 52.55048 ], [ -1.3944, 52.55138 ], [ -1.39429, 52.5512 ], [ -1.39286, 52.55152 ], [ -1.39256, 52.5511 ], [ -1.39194, 52.55137 ], [ -1.39109, 52.55054 ], [ -1.38966, 52.55122 ], [ -1.3892, 52.55084 ], [ -1.3891, 52.55123 ], [ -1.38692, 52.55088 ], [ -1.38465, 52.5499 ], [ -1.38328, 52.54929 ], [ -1.38229, 52.54957 ], [ -1.38154, 52.54912 ], [ -1.38179, 52.54858 ], [ -1.38086, 52.54827 ], [ -1.37778, 52.54902 ], [ -1.3773, 52.54865 ], [ -1.37604, 52.54684 ], [ -1.37637, 52.54632 ], [ -1.37693, 52.54629 ], [ -1.37875, 52.54741 ], [ -1.37829, 52.54655 ], [ -1.37858, 52.5463 ], [ -1.38073, 52.54733 ], [ -1.38305, 52.54584 ], [ -1.38313, 52.5458 ], [ -1.38322, 52.54478 ], [ -1.38413, 52.5437 ], [ -1.38504, 52.54278 ], [ -1.38464, 52.54248 ], [ -1.38553, 52.54231 ], [ -1.38689, 52.54145 ], [ -1.38822, 52.54081 ], [ -1.38653, 52.53976 ], [ -1.38899, 52.53883 ], [ -1.38984, 52.53879 ], [ -1.39008, 52.53913 ], [ -1.39136, 52.53924 ], [ -1.39122, 52.53984 ], [ -1.39239, 52.53987 ], [ -1.39356, 52.53993 ], [ -1.39375, 52.53958 ], [ -1.39459, 52.53949 ], [ -1.3941, 52.53888 ], [ -1.39535, 52.53845 ], [ -1.39382, 52.53682 ], [ -1.39403, 52.5366 ], [ -1.39339, 52.53657 ], [ -1.39363, 52.53609 ], [ -1.39686, 52.53614 ], [ -1.39691, 52.53566 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Hinckley", "bua_code": "E34004181", "msoa_code": "E02005388", "population": 5770, "outputarea_code": "E00131166", "lsoa_code": "E01025851", "la_name": "Hinckley and Bosworth", "bua_name": "Hinckley BUA", "constituency_name": "Bosworth", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.3827, "latitude": 52.53838, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.39495, 52.5333 ], [ -1.39472, 52.53454 ], [ -1.39504, 52.53487 ], [ -1.39414, 52.53528 ], [ -1.39214, 52.53491 ], [ -1.39181, 52.53555 ], [ -1.39691, 52.53566 ], [ -1.39686, 52.53614 ], [ -1.39363, 52.53609 ], [ -1.39339, 52.53657 ], [ -1.39403, 52.5366 ], [ -1.39382, 52.53682 ], [ -1.39535, 52.53845 ], [ -1.3941, 52.53888 ], [ -1.39459, 52.53949 ], [ -1.39375, 52.53958 ], [ -1.39356, 52.53993 ], [ -1.39239, 52.53987 ], [ -1.39122, 52.53984 ], [ -1.39136, 52.53924 ], [ -1.39008, 52.53913 ], [ -1.38984, 52.53879 ], [ -1.38899, 52.53883 ], [ -1.38653, 52.53976 ], [ -1.38822, 52.54081 ], [ -1.38689, 52.54145 ], [ -1.38553, 52.54231 ], [ -1.38464, 52.54248 ], [ -1.38504, 52.54278 ], [ -1.38413, 52.5437 ], [ -1.38322, 52.54478 ], [ -1.38313, 52.5458 ], [ -1.38305, 52.54584 ], [ -1.38073, 52.54733 ], [ -1.37858, 52.5463 ], [ -1.37835, 52.54623 ], [ -1.37502, 52.54481 ], [ -1.3766, 52.54411 ], [ -1.37721, 52.54323 ], [ -1.37672, 52.543 ], [ -1.37675, 52.54274 ], [ -1.37574, 52.5425 ], [ -1.37584, 52.54228 ], [ -1.37608, 52.54175 ], [ -1.37581, 52.54131 ], [ -1.37529, 52.54123 ], [ -1.37775, 52.54137 ], [ -1.37731, 52.54102 ], [ -1.37755, 52.54073 ], [ -1.37643, 52.54002 ], [ -1.37561, 52.54047 ], [ -1.37477, 52.54028 ], [ -1.37624, 52.5394 ], [ -1.37736, 52.53955 ], [ -1.37864, 52.53827 ], [ -1.37833, 52.53799 ], [ -1.37869, 52.5374 ], [ -1.37639, 52.53823 ], [ -1.3728, 52.53872 ], [ -1.37204, 52.53839 ], [ -1.37247, 52.53788 ], [ -1.36904, 52.53833 ], [ -1.36917, 52.53785 ], [ -1.36835, 52.53778 ], [ -1.36826, 52.5375 ], [ -1.3687, 52.53743 ], [ -1.36861, 52.53621 ], [ -1.36741, 52.53649 ], [ -1.36703, 52.53657 ], [ -1.36702, 52.53599 ], [ -1.3708, 52.53515 ], [ -1.37613, 52.53443 ], [ -1.38045, 52.53417 ], [ -1.38643, 52.5335 ], [ -1.38906, 52.53308 ], [ -1.3944, 52.53223 ], [ -1.39495, 52.5333 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Hinckley", "bua_code": "E34004181", "msoa_code": "E02005389", "population": 5890, "outputarea_code": "E00131054", "lsoa_code": "E01025827", "la_name": "Hinckley and Bosworth", "bua_name": "Hinckley BUA", "constituency_name": "Bosworth", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.34889, "latitude": 52.5363, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.35992, 52.53111 ], [ -1.36066, 52.53097 ], [ -1.36272, 52.53074 ], [ -1.36527, 52.53095 ], [ -1.36651, 52.53121 ], [ -1.36783, 52.53089 ], [ -1.3704, 52.53013 ], [ -1.37136, 52.52987 ], [ -1.37353, 52.53318 ], [ -1.37613, 52.53443 ], [ -1.3708, 52.53515 ], [ -1.36702, 52.53599 ], [ -1.3625, 52.53733 ], [ -1.35725, 52.53961 ], [ -1.35665, 52.53989 ], [ -1.34512, 52.54507 ], [ -1.33657, 52.54861 ], [ -1.33625, 52.5471 ], [ -1.33456, 52.5438 ], [ -1.33495, 52.54292 ], [ -1.33438, 52.54104 ], [ -1.3326, 52.5387 ], [ -1.33383, 52.53556 ], [ -1.33485, 52.53303 ], [ -1.33238, 52.53177 ], [ -1.33343, 52.53108 ], [ -1.33546, 52.53115 ], [ -1.33995, 52.53026 ], [ -1.33924, 52.52983 ], [ -1.33868, 52.52872 ], [ -1.34, 52.52875 ], [ -1.34149, 52.52868 ], [ -1.3414, 52.52777 ], [ -1.34366, 52.52753 ], [ -1.34488, 52.52996 ], [ -1.34631, 52.52978 ], [ -1.34752, 52.52925 ], [ -1.34786, 52.52942 ], [ -1.34813, 52.5291 ], [ -1.34757, 52.52845 ], [ -1.34784, 52.52808 ], [ -1.3476, 52.5276 ], [ -1.34703, 52.52761 ], [ -1.34814, 52.52731 ], [ -1.349, 52.52749 ], [ -1.34954, 52.52722 ], [ -1.35014, 52.52768 ], [ -1.35106, 52.5275 ], [ -1.35113, 52.52748 ], [ -1.35192, 52.52716 ], [ -1.35224, 52.52742 ], [ -1.353, 52.52715 ], [ -1.3538, 52.52776 ], [ -1.35439, 52.52804 ], [ -1.35389, 52.52872 ], [ -1.35284, 52.52877 ], [ -1.35401, 52.53026 ], [ -1.35503, 52.53163 ], [ -1.35384, 52.53193 ], [ -1.35327, 52.53211 ], [ -1.35331, 52.53256 ], [ -1.3553, 52.53241 ], [ -1.35781, 52.53158 ], [ -1.35755, 52.53112 ], [ -1.3584, 52.53096 ], [ -1.359, 52.53085 ], [ -1.35926, 52.53124 ], [ -1.35992, 52.53111 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Hinckley", "bua_code": "E34004181", "msoa_code": "E02005390", "population": 9227, "outputarea_code": "E00131075", "lsoa_code": "E01025834", "la_name": "Hinckley and Bosworth", "bua_name": "Hinckley BUA", "constituency_name": "Bosworth", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.35152, "latitude": 52.52026, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.34, 52.52875 ], [ -1.33868, 52.52872 ], [ -1.33924, 52.52983 ], [ -1.33995, 52.53026 ], [ -1.33546, 52.53115 ], [ -1.33343, 52.53108 ], [ -1.33238, 52.53177 ], [ -1.3307, 52.53113 ], [ -1.33166, 52.52984 ], [ -1.32959, 52.52934 ], [ -1.33122, 52.52734 ], [ -1.33033, 52.52714 ], [ -1.3304, 52.52462 ], [ -1.32925, 52.52446 ], [ -1.32927, 52.52405 ], [ -1.32763, 52.52322 ], [ -1.32713, 52.52254 ], [ -1.32724, 52.52159 ], [ -1.3257, 52.52142 ], [ -1.32511, 52.5212 ], [ -1.32522, 52.52096 ], [ -1.32379, 52.52053 ], [ -1.32243, 52.51898 ], [ -1.32356, 52.51699 ], [ -1.32212, 52.51619 ], [ -1.3219, 52.51572 ], [ -1.32115, 52.51604 ], [ -1.32079, 52.51558 ], [ -1.31797, 52.51512 ], [ -1.31877, 52.51455 ], [ -1.31913, 52.51351 ], [ -1.31906, 52.5111 ], [ -1.32133, 52.50786 ], [ -1.32189, 52.50558 ], [ -1.32509, 52.50104 ], [ -1.33844, 52.50578 ], [ -1.34467, 52.50843 ], [ -1.34765, 52.50952 ], [ -1.35015, 52.51045 ], [ -1.36329, 52.51527 ], [ -1.36495, 52.51594 ], [ -1.36527, 52.51573 ], [ -1.36815, 52.51645 ], [ -1.36824, 52.51723 ], [ -1.37062, 52.51779 ], [ -1.37354, 52.51808 ], [ -1.37325, 52.51913 ], [ -1.3784, 52.52093 ], [ -1.37971, 52.52127 ], [ -1.38011, 52.52139 ], [ -1.38636, 52.52376 ], [ -1.39489, 52.52696 ], [ -1.39447, 52.52753 ], [ -1.39224, 52.52845 ], [ -1.39155, 52.52913 ], [ -1.39169, 52.52975 ], [ -1.3944, 52.53223 ], [ -1.38906, 52.53308 ], [ -1.38643, 52.5335 ], [ -1.38045, 52.53417 ], [ -1.37613, 52.53443 ], [ -1.37353, 52.53318 ], [ -1.37136, 52.52987 ], [ -1.3704, 52.53013 ], [ -1.36783, 52.53089 ], [ -1.36651, 52.53121 ], [ -1.36527, 52.53095 ], [ -1.36272, 52.53074 ], [ -1.36066, 52.53097 ], [ -1.35992, 52.53111 ], [ -1.35926, 52.53124 ], [ -1.359, 52.53085 ], [ -1.3584, 52.53096 ], [ -1.35755, 52.53112 ], [ -1.35781, 52.53158 ], [ -1.3553, 52.53241 ], [ -1.35331, 52.53256 ], [ -1.35327, 52.53211 ], [ -1.35384, 52.53193 ], [ -1.35503, 52.53163 ], [ -1.35401, 52.53026 ], [ -1.35284, 52.52877 ], [ -1.35389, 52.52872 ], [ -1.35439, 52.52804 ], [ -1.3538, 52.52776 ], [ -1.353, 52.52715 ], [ -1.35224, 52.52742 ], [ -1.35192, 52.52716 ], [ -1.35113, 52.52748 ], [ -1.35106, 52.5275 ], [ -1.35014, 52.52768 ], [ -1.34954, 52.52722 ], [ -1.349, 52.52749 ], [ -1.34814, 52.52731 ], [ -1.34703, 52.52761 ], [ -1.3476, 52.5276 ], [ -1.34784, 52.52808 ], [ -1.34757, 52.52845 ], [ -1.34813, 52.5291 ], [ -1.34786, 52.52942 ], [ -1.34752, 52.52925 ], [ -1.34631, 52.52978 ], [ -1.34488, 52.52996 ], [ -1.34366, 52.52753 ], [ -1.3414, 52.52777 ], [ -1.34149, 52.52868 ], [ -1.34, 52.52875 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Holbeach", "bua_code": "E34002085", "msoa_code": "E02005467", "population": 7485, "outputarea_code": "E00133310", "lsoa_code": "E01026250", "la_name": "South Holland", "bua_name": "Holbeach BUA", "constituency_name": "South Holland and The Deepings", "citytownclassification": "Small Town", "urban": "Y", "longitude": 0.0098, "latitude": 52.80575, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.01904, 52.79816 ], [ 0.01716, 52.79894 ], [ 0.0154, 52.79966 ], [ 0.014, 52.79955 ], [ 0.01068, 52.7993 ], [ 0.0067, 52.79906 ], [ -0.0025, 52.79841 ], [ -0.00752, 52.79802 ], [ -0.01057, 52.79779 ], [ -0.01013, 52.80264 ], [ -0.01101, 52.80292 ], [ -0.0081, 52.80706 ], [ -0.01056, 52.80746 ], [ -0.0103, 52.8088 ], [ -0.00987, 52.80887 ], [ -0.01004, 52.80932 ], [ -0.00895, 52.80949 ], [ -0.0095, 52.81098 ], [ -0.00784, 52.81121 ], [ -0.00828, 52.81291 ], [ -0.00625, 52.81332 ], [ -0.00491, 52.81403 ], [ -0.00508, 52.81626 ], [ 0.00862, 52.81112 ], [ 0.00958, 52.81096 ], [ 0.0139, 52.81044 ], [ 0.01735, 52.81042 ], [ 0.01757, 52.81043 ], [ 0.02234, 52.81086 ], [ 0.02536, 52.81089 ], [ 0.02982, 52.81033 ], [ 0.0368, 52.80954 ], [ 0.04313, 52.80922 ], [ 0.04166, 52.80758 ], [ 0.0404, 52.80708 ], [ 0.04011, 52.8062 ], [ 0.03957, 52.80606 ], [ 0.03528, 52.80771 ], [ 0.03397, 52.8067 ], [ 0.03005, 52.80572 ], [ 0.02826, 52.80496 ], [ 0.02692, 52.80421 ], [ 0.02726, 52.80354 ], [ 0.02606, 52.80361 ], [ 0.02564, 52.80283 ], [ 0.026, 52.80168 ], [ 0.02911, 52.80135 ], [ 0.02775, 52.79994 ], [ 0.02614, 52.79893 ], [ 0.02296, 52.79962 ], [ 0.0225, 52.79857 ], [ 0.02213, 52.79856 ], [ 0.02122, 52.79927 ], [ 0.02032, 52.79951 ], [ 0.01904, 52.79816 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Holbeach", "bua_code": "E34002085", "msoa_code": "E02005474", "population": 771, "outputarea_code": "E00133274", "lsoa_code": "E01026245", "la_name": "South Holland", "bua_name": "Holbeach BUA", "constituency_name": "South Holland and The Deepings", "citytownclassification": "Small Town", "urban": "Y", "longitude": 0.02123, "latitude": 52.80009, "pgroup": "5k" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.01068, 52.7993 ], [ 0.014, 52.79955 ], [ 0.0154, 52.79966 ], [ 0.01716, 52.79894 ], [ 0.01904, 52.79816 ], [ 0.01927, 52.79734 ], [ 0.01744, 52.79271 ], [ 0.0153, 52.79164 ], [ 0.01445, 52.79299 ], [ 0.01108, 52.79642 ], [ 0.00392, 52.79524 ], [ 0.00282, 52.79408 ], [ 0.00065, 52.79286 ], [ 0.00006, 52.79354 ], [ -0.00234, 52.79372 ], [ -0.00135, 52.79734 ], [ -0.0025, 52.79841 ], [ 0.0067, 52.79906 ], [ 0.01068, 52.7993 ] ] ], [ [ [ 0.03737, 52.80262 ], [ 0.03939, 52.80165 ], [ 0.0367, 52.80084 ], [ 0.03523, 52.79977 ], [ 0.03449, 52.79983 ], [ 0.02775, 52.79994 ], [ 0.02911, 52.80135 ], [ 0.026, 52.80168 ], [ 0.02564, 52.80283 ], [ 0.02606, 52.80361 ], [ 0.02726, 52.80354 ], [ 0.02692, 52.80421 ], [ 0.02826, 52.80496 ], [ 0.03005, 52.80572 ], [ 0.03397, 52.8067 ], [ 0.03528, 52.80771 ], [ 0.03957, 52.80606 ], [ 0.04011, 52.8062 ], [ 0.0404, 52.80708 ], [ 0.04166, 52.80758 ], [ 0.04313, 52.80922 ], [ 0.04328, 52.80948 ], [ 0.04464, 52.80947 ], [ 0.04569, 52.80789 ], [ 0.04459, 52.80645 ], [ 0.04101, 52.80436 ], [ 0.03721, 52.80487 ], [ 0.03737, 52.80262 ] ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Hucknall", "bua_code": "E35000605", "msoa_code": "E02005831", "population": 9551, "outputarea_code": "E00142305", "lsoa_code": "E01027929", "la_name": "Ashfield", "bua_name": "Hucknall BUASD", "constituency_name": "Sherwood", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.19194, "latitude": 53.03513, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.18771, 53.01789 ], [ -1.18831, 53.01796 ], [ -1.18913, 53.01734 ], [ -1.19222, 53.01642 ], [ -1.19235, 53.01638 ], [ -1.19519, 53.01545 ], [ -1.19782, 53.01592 ], [ -1.19995, 53.01681 ], [ -1.20051, 53.01763 ], [ -1.20234, 53.01816 ], [ -1.20302, 53.01834 ], [ -1.20299, 53.01981 ], [ -1.20485, 53.02329 ], [ -1.19856, 53.02129 ], [ -1.19998, 53.02347 ], [ -1.19747, 53.02166 ], [ -1.19529, 53.02457 ], [ -1.19563, 53.02565 ], [ -1.1946, 53.02623 ], [ -1.19639, 53.02818 ], [ -1.19717, 53.0286 ], [ -1.19633, 53.02939 ], [ -1.19557, 53.02944 ], [ -1.19567, 53.02976 ], [ -1.19566, 53.03063 ], [ -1.19577, 53.03078 ], [ -1.19639, 53.03091 ], [ -1.19639, 53.0313 ], [ -1.19673, 53.03104 ], [ -1.1979, 53.03156 ], [ -1.19766, 53.03188 ], [ -1.19667, 53.03159 ], [ -1.19619, 53.0321 ], [ -1.19523, 53.0324 ], [ -1.19495, 53.03383 ], [ -1.19291, 53.03249 ], [ -1.19228, 53.03295 ], [ -1.19259, 53.0333 ], [ -1.19049, 53.03376 ], [ -1.18987, 53.03482 ], [ -1.18952, 53.03541 ], [ -1.1929, 53.03731 ], [ -1.19379, 53.03728 ], [ -1.19593, 53.03653 ], [ -1.19728, 53.03708 ], [ -1.19849, 53.0381 ], [ -1.19808, 53.03825 ], [ -1.19589, 53.03894 ], [ -1.19649, 53.03978 ], [ -1.1962, 53.04034 ], [ -1.19475, 53.04191 ], [ -1.19495, 53.0421 ], [ -1.19559, 53.04201 ], [ -1.19664, 53.04115 ], [ -1.19767, 53.04148 ], [ -1.19819, 53.04105 ], [ -1.19926, 53.04093 ], [ -1.19879, 53.04018 ], [ -1.19892, 53.03907 ], [ -1.19952, 53.04052 ], [ -1.20148, 53.04026 ], [ -1.20218, 53.0403 ], [ -1.2021, 53.04055 ], [ -1.20163, 53.04203 ], [ -1.20323, 53.04271 ], [ -1.20302, 53.04306 ], [ -1.20418, 53.0438 ], [ -1.20365, 53.04397 ], [ -1.20386, 53.0447 ], [ -1.20638, 53.04485 ], [ -1.20678, 53.0456 ], [ -1.20977, 53.04433 ], [ -1.21034, 53.04463 ], [ -1.21235, 53.0441 ], [ -1.21255, 53.04308 ], [ -1.21448, 53.04663 ], [ -1.21532, 53.04767 ], [ -1.21742, 53.04903 ], [ -1.21386, 53.04959 ], [ -1.20868, 53.05109 ], [ -1.20833, 53.05083 ], [ -1.20678, 53.05139 ], [ -1.20607, 53.05051 ], [ -1.20421, 53.05055 ], [ -1.20235, 53.05181 ], [ -1.20213, 53.05109 ], [ -1.20202, 53.05084 ], [ -1.1999, 53.05161 ], [ -1.1971, 53.04864 ], [ -1.19641, 53.04902 ], [ -1.1931, 53.04818 ], [ -1.19172, 53.04779 ], [ -1.18995, 53.04865 ], [ -1.1896, 53.04806 ], [ -1.18999, 53.0479 ], [ -1.18942, 53.04737 ], [ -1.18583, 53.04868 ], [ -1.18539, 53.04832 ], [ -1.18355, 53.04865 ], [ -1.18218, 53.04849 ], [ -1.18159, 53.04789 ], [ -1.18125, 53.04337 ], [ -1.17747, 53.03835 ], [ -1.17713, 53.03715 ], [ -1.17688, 53.03537 ], [ -1.17776, 53.03304 ], [ -1.178, 53.03008 ], [ -1.17938, 53.02718 ], [ -1.17942, 53.02601 ], [ -1.17966, 53.02419 ], [ -1.18264, 53.02226 ], [ -1.18369, 53.02073 ], [ -1.18322, 53.01944 ], [ -1.18632, 53.019 ], [ -1.18637, 53.01862 ], [ -1.18684, 53.01861 ], [ -1.18683, 53.01777 ], [ -1.18771, 53.01789 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Hucknall", "bua_code": "E35000605", "msoa_code": "E02005832", "population": 9051, "outputarea_code": "E00142280", "lsoa_code": "E01027927", "la_name": "Ashfield", "bua_name": "Hucknall BUASD", "constituency_name": "Sherwood", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.20356, "latitude": 53.03643, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.20509, 53.03041 ], [ -1.20432, 53.02999 ], [ -1.20523, 53.02856 ], [ -1.20529, 53.02853 ], [ -1.20549, 53.02845 ], [ -1.20676, 53.02799 ], [ -1.20752, 53.02791 ], [ -1.20744, 53.02878 ], [ -1.20712, 53.02872 ], [ -1.20735, 53.02932 ], [ -1.20888, 53.0299 ], [ -1.20965, 53.02959 ], [ -1.20976, 53.0292 ], [ -1.2104, 53.02926 ], [ -1.21048, 53.02983 ], [ -1.21132, 53.0302 ], [ -1.21176, 53.03016 ], [ -1.21226, 53.02914 ], [ -1.21317, 53.02868 ], [ -1.21406, 53.02923 ], [ -1.21274, 53.03044 ], [ -1.2097, 53.03202 ], [ -1.20936, 53.03226 ], [ -1.20999, 53.03254 ], [ -1.2128, 53.03458 ], [ -1.21173, 53.03562 ], [ -1.212, 53.03623 ], [ -1.21155, 53.03596 ], [ -1.211, 53.03672 ], [ -1.2113, 53.0371 ], [ -1.21225, 53.03711 ], [ -1.21249, 53.03823 ], [ -1.21263, 53.03911 ], [ -1.21128, 53.03906 ], [ -1.21125, 53.03951 ], [ -1.21062, 53.03961 ], [ -1.20986, 53.03881 ], [ -1.20896, 53.03933 ], [ -1.21045, 53.04027 ], [ -1.21012, 53.04099 ], [ -1.2112, 53.04138 ], [ -1.21217, 53.04246 ], [ -1.21255, 53.04308 ], [ -1.21235, 53.0441 ], [ -1.21034, 53.04463 ], [ -1.20977, 53.04433 ], [ -1.20678, 53.0456 ], [ -1.20638, 53.04485 ], [ -1.20386, 53.0447 ], [ -1.20365, 53.04397 ], [ -1.20418, 53.0438 ], [ -1.20302, 53.04306 ], [ -1.20323, 53.04271 ], [ -1.20163, 53.04203 ], [ -1.2021, 53.04055 ], [ -1.20218, 53.0403 ], [ -1.20148, 53.04026 ], [ -1.19952, 53.04052 ], [ -1.19892, 53.03907 ], [ -1.19879, 53.04018 ], [ -1.19926, 53.04093 ], [ -1.19819, 53.04105 ], [ -1.19767, 53.04148 ], [ -1.19664, 53.04115 ], [ -1.19559, 53.04201 ], [ -1.19495, 53.0421 ], [ -1.19475, 53.04191 ], [ -1.1962, 53.04034 ], [ -1.19649, 53.03978 ], [ -1.19589, 53.03894 ], [ -1.19808, 53.03825 ], [ -1.19849, 53.0381 ], [ -1.19728, 53.03708 ], [ -1.19593, 53.03653 ], [ -1.19379, 53.03728 ], [ -1.1929, 53.03731 ], [ -1.18952, 53.03541 ], [ -1.18987, 53.03482 ], [ -1.19049, 53.03376 ], [ -1.19259, 53.0333 ], [ -1.19228, 53.03295 ], [ -1.19291, 53.03249 ], [ -1.19495, 53.03383 ], [ -1.19523, 53.0324 ], [ -1.19619, 53.0321 ], [ -1.19667, 53.03159 ], [ -1.19766, 53.03188 ], [ -1.1979, 53.03156 ], [ -1.19673, 53.03104 ], [ -1.19639, 53.0313 ], [ -1.19639, 53.03091 ], [ -1.19577, 53.03078 ], [ -1.19566, 53.03063 ], [ -1.19567, 53.02976 ], [ -1.1973, 53.02962 ], [ -1.20009, 53.0308 ], [ -1.2005, 53.03036 ], [ -1.20115, 53.03069 ], [ -1.20134, 53.03139 ], [ -1.20315, 53.03175 ], [ -1.20372, 53.03178 ], [ -1.20458, 53.03061 ], [ -1.20528, 53.0305 ], [ -1.20509, 53.03041 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Hucknall", "bua_code": "E35000605", "msoa_code": "E02005833", "population": 7632, "outputarea_code": "E00142283", "lsoa_code": "E01027925", "la_name": "Ashfield", "bua_name": "Hucknall BUASD", "constituency_name": "Sherwood", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.23028, "latitude": 53.04, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.23443, 53.02661 ], [ -1.23536, 53.02792 ], [ -1.23628, 53.02831 ], [ -1.2388, 53.02961 ], [ -1.24126, 53.03115 ], [ -1.23891, 53.03256 ], [ -1.24711, 53.03507 ], [ -1.24746, 53.03573 ], [ -1.25126, 53.03803 ], [ -1.25343, 53.03979 ], [ -1.25769, 53.04096 ], [ -1.2557, 53.04188 ], [ -1.24671, 53.04465 ], [ -1.24499, 53.04563 ], [ -1.24317, 53.04735 ], [ -1.24172, 53.04777 ], [ -1.23879, 53.04947 ], [ -1.23226, 53.0503 ], [ -1.22958, 53.0517 ], [ -1.22925, 53.05155 ], [ -1.22818, 53.05254 ], [ -1.22812, 53.05457 ], [ -1.21742, 53.04903 ], [ -1.21532, 53.04767 ], [ -1.21448, 53.04663 ], [ -1.21255, 53.04308 ], [ -1.21217, 53.04246 ], [ -1.2112, 53.04138 ], [ -1.21012, 53.04099 ], [ -1.21045, 53.04027 ], [ -1.20896, 53.03933 ], [ -1.20986, 53.03881 ], [ -1.21062, 53.03961 ], [ -1.21125, 53.03951 ], [ -1.21128, 53.03906 ], [ -1.21263, 53.03911 ], [ -1.21249, 53.03823 ], [ -1.21225, 53.03711 ], [ -1.2113, 53.0371 ], [ -1.211, 53.03672 ], [ -1.21155, 53.03596 ], [ -1.212, 53.03623 ], [ -1.21173, 53.03562 ], [ -1.2128, 53.03458 ], [ -1.20999, 53.03254 ], [ -1.20936, 53.03226 ], [ -1.2097, 53.03202 ], [ -1.21274, 53.03044 ], [ -1.21406, 53.02923 ], [ -1.21523, 53.02896 ], [ -1.21616, 53.02971 ], [ -1.21777, 53.03116 ], [ -1.21921, 53.03375 ], [ -1.21934, 53.03465 ], [ -1.22179, 53.03419 ], [ -1.22424, 53.03442 ], [ -1.22433, 53.03294 ], [ -1.22223, 53.03313 ], [ -1.22181, 53.03222 ], [ -1.22329, 53.0316 ], [ -1.22562, 53.03052 ], [ -1.22606, 53.02993 ], [ -1.22885, 53.02737 ], [ -1.23063, 53.02737 ], [ -1.23085, 53.02718 ], [ -1.23132, 53.02746 ], [ -1.23227, 53.0261 ], [ -1.23339, 53.02642 ], [ -1.23369, 53.02607 ], [ -1.23443, 53.02661 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Hucknall", "bua_code": "E35000605", "msoa_code": "E02005834", "population": 7487, "outputarea_code": "E00142277", "lsoa_code": "E01027926", "la_name": "Ashfield", "bua_name": "Hucknall BUASD", "constituency_name": "Sherwood", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.21701, "latitude": 53.02148, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.2326, 53.01137 ], [ -1.23254, 53.01273 ], [ -1.23066, 53.01623 ], [ -1.23112, 53.01698 ], [ -1.23096, 53.01846 ], [ -1.23197, 53.01948 ], [ -1.23183, 53.02128 ], [ -1.2291, 53.02277 ], [ -1.23112, 53.02427 ], [ -1.23369, 53.02607 ], [ -1.23339, 53.02642 ], [ -1.23227, 53.0261 ], [ -1.23132, 53.02746 ], [ -1.23085, 53.02718 ], [ -1.23063, 53.02737 ], [ -1.22885, 53.02737 ], [ -1.22606, 53.02993 ], [ -1.22562, 53.03052 ], [ -1.22329, 53.0316 ], [ -1.22181, 53.03222 ], [ -1.22223, 53.03313 ], [ -1.22433, 53.03294 ], [ -1.22424, 53.03442 ], [ -1.22179, 53.03419 ], [ -1.21934, 53.03465 ], [ -1.21921, 53.03375 ], [ -1.21777, 53.03116 ], [ -1.21616, 53.02971 ], [ -1.21523, 53.02896 ], [ -1.21406, 53.02923 ], [ -1.21317, 53.02868 ], [ -1.21226, 53.02914 ], [ -1.21176, 53.03016 ], [ -1.21132, 53.0302 ], [ -1.21048, 53.02983 ], [ -1.2104, 53.02926 ], [ -1.20976, 53.0292 ], [ -1.20965, 53.02959 ], [ -1.20888, 53.0299 ], [ -1.20735, 53.02932 ], [ -1.20712, 53.02872 ], [ -1.20744, 53.02878 ], [ -1.20752, 53.02791 ], [ -1.20676, 53.02799 ], [ -1.20549, 53.02845 ], [ -1.20529, 53.02853 ], [ -1.20523, 53.02856 ], [ -1.20432, 53.02999 ], [ -1.20509, 53.03041 ], [ -1.20528, 53.0305 ], [ -1.20458, 53.03061 ], [ -1.20372, 53.03178 ], [ -1.20315, 53.03175 ], [ -1.20134, 53.03139 ], [ -1.20115, 53.03069 ], [ -1.2005, 53.03036 ], [ -1.20009, 53.0308 ], [ -1.1973, 53.02962 ], [ -1.19567, 53.02976 ], [ -1.19557, 53.02944 ], [ -1.19633, 53.02939 ], [ -1.19717, 53.0286 ], [ -1.19639, 53.02818 ], [ -1.1946, 53.02623 ], [ -1.19563, 53.02565 ], [ -1.19529, 53.02457 ], [ -1.19747, 53.02166 ], [ -1.19998, 53.02347 ], [ -1.19856, 53.02129 ], [ -1.20485, 53.02329 ], [ -1.20299, 53.01981 ], [ -1.20302, 53.01834 ], [ -1.2076, 53.01865 ], [ -1.21016, 53.01804 ], [ -1.21009, 53.01773 ], [ -1.21097, 53.01516 ], [ -1.21256, 53.013 ], [ -1.21704, 53.01065 ], [ -1.22239, 53.00838 ], [ -1.22474, 53.00861 ], [ -1.22515, 53.0081 ], [ -1.22775, 53.00859 ], [ -1.22823, 53.00893 ], [ -1.22933, 53.00883 ], [ -1.23109, 53.00953 ], [ -1.23149, 53.01051 ], [ -1.2326, 53.01137 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Hucknall", "bua_code": "E35000605", "msoa_code": "E02005865", "population": 230, "outputarea_code": "E00143626", "lsoa_code": "E01028189", "la_name": "Gedling", "bua_name": "Hucknall BUASD", "constituency_name": "Sherwood", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.20368, "latitude": 53.05658, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.18981, 53.05881 ], [ -1.18946, 53.05772 ], [ -1.18876, 53.05745 ], [ -1.18908, 53.05654 ], [ -1.18668, 53.053 ], [ -1.18576, 53.05219 ], [ -1.18511, 53.05217 ], [ -1.18459, 53.0522 ], [ -1.1844, 53.05182 ], [ -1.18355, 53.04865 ], [ -1.18539, 53.04832 ], [ -1.18583, 53.04868 ], [ -1.18942, 53.04737 ], [ -1.18999, 53.0479 ], [ -1.1896, 53.04806 ], [ -1.18995, 53.04865 ], [ -1.19172, 53.04779 ], [ -1.1931, 53.04818 ], [ -1.19641, 53.04902 ], [ -1.1971, 53.04864 ], [ -1.1999, 53.05161 ], [ -1.20202, 53.05084 ], [ -1.20213, 53.05109 ], [ -1.20235, 53.05181 ], [ -1.20421, 53.05055 ], [ -1.20607, 53.05051 ], [ -1.20678, 53.05139 ], [ -1.20833, 53.05083 ], [ -1.20868, 53.05109 ], [ -1.21386, 53.04959 ], [ -1.21742, 53.04903 ], [ -1.22812, 53.05457 ], [ -1.22886, 53.05803 ], [ -1.22832, 53.0578 ], [ -1.22334, 53.05772 ], [ -1.2222, 53.05779 ], [ -1.22221, 53.05819 ], [ -1.22111, 53.05835 ], [ -1.22006, 53.05809 ], [ -1.21769, 53.05812 ], [ -1.21699, 53.05829 ], [ -1.21521, 53.05968 ], [ -1.21503, 53.05982 ], [ -1.21373, 53.06015 ], [ -1.20832, 53.06231 ], [ -1.2079, 53.06279 ], [ -1.20823, 53.06401 ], [ -1.20481, 53.06602 ], [ -1.19817, 53.0661 ], [ -1.18961, 53.06813 ], [ -1.18903, 53.0673 ], [ -1.18952, 53.06704 ], [ -1.18952, 53.06502 ], [ -1.19042, 53.0639 ], [ -1.18996, 53.06356 ], [ -1.19127, 53.06226 ], [ -1.19185, 53.06064 ], [ -1.19124, 53.05963 ], [ -1.18981, 53.05881 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Ilkeston", "bua_code": "E35001224", "msoa_code": "E02004078", "population": 7151, "outputarea_code": "E00099385", "lsoa_code": "E01019644", "la_name": "Erewash", "bua_name": "Ilkeston BUASD", "constituency_name": "Erewash", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.3094, "latitude": 52.99237, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.30118, 52.98403 ], [ -1.30233, 52.98305 ], [ -1.30543, 52.98221 ], [ -1.30586, 52.98232 ], [ -1.3064, 52.982 ], [ -1.30745, 52.98267 ], [ -1.30859, 52.98284 ], [ -1.3086, 52.98334 ], [ -1.30761, 52.98294 ], [ -1.30793, 52.98338 ], [ -1.30895, 52.9839 ], [ -1.3095, 52.98371 ], [ -1.31013, 52.98406 ], [ -1.31104, 52.98393 ], [ -1.311, 52.98465 ], [ -1.30894, 52.98467 ], [ -1.30916, 52.9858 ], [ -1.31162, 52.98607 ], [ -1.31236, 52.98656 ], [ -1.31309, 52.98656 ], [ -1.31293, 52.98607 ], [ -1.3141, 52.9859 ], [ -1.31443, 52.98652 ], [ -1.31577, 52.98648 ], [ -1.3161, 52.98727 ], [ -1.31794, 52.98676 ], [ -1.31953, 52.98958 ], [ -1.31985, 52.99004 ], [ -1.32065, 52.99003 ], [ -1.32237, 52.99068 ], [ -1.3231, 52.99274 ], [ -1.32419, 52.99371 ], [ -1.32236, 52.99396 ], [ -1.32242, 52.99445 ], [ -1.32133, 52.99473 ], [ -1.31872, 52.99649 ], [ -1.3179, 52.99705 ], [ -1.3174, 52.99848 ], [ -1.31674, 52.99936 ], [ -1.31396, 53.00132 ], [ -1.30983, 53.00204 ], [ -1.30744, 53.00365 ], [ -1.30712, 53.00354 ], [ -1.30705, 53.00352 ], [ -1.30708, 53.00335 ], [ -1.30717, 53.00321 ], [ -1.30727, 53.00304 ], [ -1.30707, 53.003 ], [ -1.30657, 53.00332 ], [ -1.30654, 53.00333 ], [ -1.30644, 53.00333 ], [ -1.30633, 53.00329 ], [ -1.30574, 53.00267 ], [ -1.30634, 53.00249 ], [ -1.30455, 53.00172 ], [ -1.30492, 53.00139 ], [ -1.30368, 53.00103 ], [ -1.30368, 53.0006 ], [ -1.3044, 53.0003 ], [ -1.30407, 53.00006 ], [ -1.30286, 53.0003 ], [ -1.30354, 52.99974 ], [ -1.30269, 52.99968 ], [ -1.30219, 52.99912 ], [ -1.30236, 52.99844 ], [ -1.30361, 52.99801 ], [ -1.30247, 52.9972 ], [ -1.30317, 52.99688 ], [ -1.30206, 52.99604 ], [ -1.30173, 52.9959 ], [ -1.30234, 52.99501 ], [ -1.30158, 52.99484 ], [ -1.30144, 52.99436 ], [ -1.30093, 52.99464 ], [ -1.30067, 52.99419 ], [ -1.30141, 52.99363 ], [ -1.30037, 52.9932 ], [ -1.3005, 52.99265 ], [ -1.30156, 52.99231 ], [ -1.30072, 52.99183 ], [ -1.30123, 52.99105 ], [ -1.30049, 52.99015 ], [ -1.29948, 52.98974 ], [ -1.29902, 52.98949 ], [ -1.29769, 52.98968 ], [ -1.29814, 52.98938 ], [ -1.29776, 52.98886 ], [ -1.29809, 52.98857 ], [ -1.29727, 52.98841 ], [ -1.29671, 52.98777 ], [ -1.29548, 52.98785 ], [ -1.29527, 52.98687 ], [ -1.29468, 52.98692 ], [ -1.29473, 52.9864 ], [ -1.29465, 52.98577 ], [ -1.29872, 52.98576 ], [ -1.30118, 52.98403 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Ilkeston", "bua_code": "E35001224", "msoa_code": "E02004080", "population": 9694, "outputarea_code": "E00099452", "lsoa_code": "E01019657", "la_name": "Erewash", "bua_name": "Ilkeston BUASD", "constituency_name": "Erewash", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.30433, "latitude": 52.97311, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.29768, 52.96203 ], [ -1.29602, 52.96144 ], [ -1.29443, 52.96077 ], [ -1.29466, 52.96053 ], [ -1.29522, 52.96061 ], [ -1.29485, 52.96033 ], [ -1.2959, 52.9594 ], [ -1.29824, 52.95978 ], [ -1.29965, 52.96107 ], [ -1.30173, 52.96051 ], [ -1.3018, 52.96056 ], [ -1.302, 52.96086 ], [ -1.30646, 52.96031 ], [ -1.30706, 52.9603 ], [ -1.30779, 52.96296 ], [ -1.30783, 52.96318 ], [ -1.30713, 52.96568 ], [ -1.30735, 52.96641 ], [ -1.30807, 52.9676 ], [ -1.30814, 52.96767 ], [ -1.30917, 52.96738 ], [ -1.31009, 52.96778 ], [ -1.31035, 52.96895 ], [ -1.31042, 52.96933 ], [ -1.31111, 52.96959 ], [ -1.3106, 52.96996 ], [ -1.31085, 52.97045 ], [ -1.30992, 52.97059 ], [ -1.31033, 52.97105 ], [ -1.31135, 52.97116 ], [ -1.31117, 52.97131 ], [ -1.31192, 52.97198 ], [ -1.31191, 52.97252 ], [ -1.31265, 52.97236 ], [ -1.31286, 52.97255 ], [ -1.31287, 52.97317 ], [ -1.31364, 52.97325 ], [ -1.31403, 52.97291 ], [ -1.31452, 52.97311 ], [ -1.31504, 52.9728 ], [ -1.31476, 52.97251 ], [ -1.3151, 52.97229 ], [ -1.31469, 52.97221 ], [ -1.31522, 52.97145 ], [ -1.31504, 52.97086 ], [ -1.3162, 52.9707 ], [ -1.31652, 52.97168 ], [ -1.31838, 52.9734 ], [ -1.31957, 52.97371 ], [ -1.32547, 52.97115 ], [ -1.32614, 52.97237 ], [ -1.32499, 52.97348 ], [ -1.32535, 52.97477 ], [ -1.32494, 52.97524 ], [ -1.3217, 52.97647 ], [ -1.32097, 52.9757 ], [ -1.32018, 52.97559 ], [ -1.31819, 52.97676 ], [ -1.31533, 52.9759 ], [ -1.31204, 52.97867 ], [ -1.31296, 52.97893 ], [ -1.313, 52.97936 ], [ -1.31156, 52.98033 ], [ -1.30979, 52.9781 ], [ -1.30833, 52.97978 ], [ -1.30747, 52.98047 ], [ -1.30543, 52.98221 ], [ -1.30233, 52.98305 ], [ -1.30118, 52.98403 ], [ -1.29872, 52.98576 ], [ -1.29465, 52.98577 ], [ -1.29536, 52.98543 ], [ -1.29565, 52.98567 ], [ -1.29618, 52.98495 ], [ -1.29675, 52.98516 ], [ -1.29747, 52.98467 ], [ -1.29555, 52.98098 ], [ -1.29068, 52.97068 ], [ -1.29211, 52.97043 ], [ -1.29065, 52.96917 ], [ -1.29379, 52.9686 ], [ -1.29409, 52.9691 ], [ -1.2946, 52.97004 ], [ -1.29654, 52.97013 ], [ -1.29909, 52.96803 ], [ -1.29918, 52.9674 ], [ -1.29786, 52.96758 ], [ -1.29759, 52.96702 ], [ -1.29848, 52.9668 ], [ -1.29827, 52.96643 ], [ -1.29899, 52.96631 ], [ -1.29871, 52.96562 ], [ -1.29967, 52.96566 ], [ -1.30006, 52.96531 ], [ -1.29898, 52.96503 ], [ -1.30011, 52.96474 ], [ -1.3005, 52.96418 ], [ -1.30001, 52.96361 ], [ -1.29936, 52.96276 ], [ -1.29768, 52.96203 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Ilkeston", "bua_code": "E35001224", "msoa_code": "E02004082", "population": 1358, "outputarea_code": "E00099532", "lsoa_code": "E01019673", "la_name": "Erewash", "bua_name": "Ilkeston BUASD", "constituency_name": "Erewash", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.31832, "latitude": 52.96723, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.32198, 52.96302 ], [ -1.3237, 52.96331 ], [ -1.32531, 52.96306 ], [ -1.32656, 52.96348 ], [ -1.32675, 52.9637 ], [ -1.32766, 52.96523 ], [ -1.32656, 52.96665 ], [ -1.32539, 52.96826 ], [ -1.32547, 52.97115 ], [ -1.31957, 52.97371 ], [ -1.31838, 52.9734 ], [ -1.31652, 52.97168 ], [ -1.3162, 52.9707 ], [ -1.31504, 52.97086 ], [ -1.31522, 52.97145 ], [ -1.31469, 52.97221 ], [ -1.3151, 52.97229 ], [ -1.31476, 52.97251 ], [ -1.31504, 52.9728 ], [ -1.31452, 52.97311 ], [ -1.31403, 52.97291 ], [ -1.31364, 52.97325 ], [ -1.31287, 52.97317 ], [ -1.31286, 52.97255 ], [ -1.31265, 52.97236 ], [ -1.31191, 52.97252 ], [ -1.31192, 52.97198 ], [ -1.31117, 52.97131 ], [ -1.31135, 52.97116 ], [ -1.31033, 52.97105 ], [ -1.30992, 52.97059 ], [ -1.31085, 52.97045 ], [ -1.3106, 52.96996 ], [ -1.31111, 52.96959 ], [ -1.31042, 52.96933 ], [ -1.31035, 52.96895 ], [ -1.31009, 52.96778 ], [ -1.30917, 52.96738 ], [ -1.31085, 52.96724 ], [ -1.31275, 52.96763 ], [ -1.31409, 52.96755 ], [ -1.31428, 52.9662 ], [ -1.31229, 52.96644 ], [ -1.31013, 52.96515 ], [ -1.31061, 52.96511 ], [ -1.31119, 52.96419 ], [ -1.31179, 52.96426 ], [ -1.31211, 52.96383 ], [ -1.31294, 52.96357 ], [ -1.31135, 52.96157 ], [ -1.31239, 52.96143 ], [ -1.31251, 52.96077 ], [ -1.31403, 52.9596 ], [ -1.31418, 52.95958 ], [ -1.31451, 52.9602 ], [ -1.31706, 52.96215 ], [ -1.32198, 52.96302 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Ilkeston", "bua_code": "E35001224", "msoa_code": "E02004083", "population": 7971, "outputarea_code": "E00099451", "lsoa_code": "E01019659", "la_name": "Erewash", "bua_name": "Ilkeston BUASD", "constituency_name": "Erewash", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.29813, "latitude": 52.95743, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.29172, 52.95545 ], [ -1.29185, 52.955 ], [ -1.29083, 52.95421 ], [ -1.29011, 52.95456 ], [ -1.289, 52.95402 ], [ -1.28822, 52.95452 ], [ -1.28764, 52.95449 ], [ -1.28643, 52.95386 ], [ -1.28575, 52.95285 ], [ -1.28415, 52.95253 ], [ -1.28384, 52.9522 ], [ -1.28241, 52.95123 ], [ -1.2824, 52.9502 ], [ -1.28156, 52.94934 ], [ -1.28103, 52.94916 ], [ -1.28173, 52.94867 ], [ -1.28213, 52.94764 ], [ -1.28126, 52.94721 ], [ -1.2813, 52.94663 ], [ -1.28277, 52.94556 ], [ -1.28395, 52.9461 ], [ -1.28477, 52.94744 ], [ -1.28607, 52.94738 ], [ -1.28672, 52.94792 ], [ -1.28761, 52.94799 ], [ -1.29025, 52.94745 ], [ -1.29146, 52.94797 ], [ -1.29246, 52.94721 ], [ -1.29311, 52.94744 ], [ -1.29473, 52.94706 ], [ -1.29506, 52.94737 ], [ -1.29553, 52.94726 ], [ -1.2965, 52.94827 ], [ -1.29842, 52.94829 ], [ -1.29916, 52.95008 ], [ -1.3024, 52.95056 ], [ -1.3053, 52.95162 ], [ -1.30514, 52.95195 ], [ -1.3071, 52.95215 ], [ -1.30726, 52.95242 ], [ -1.30765, 52.95233 ], [ -1.30774, 52.95275 ], [ -1.30859, 52.95258 ], [ -1.30901, 52.95203 ], [ -1.31067, 52.95227 ], [ -1.31181, 52.95143 ], [ -1.31299, 52.95275 ], [ -1.31293, 52.95589 ], [ -1.31276, 52.95679 ], [ -1.31333, 52.95821 ], [ -1.31381, 52.95911 ], [ -1.31418, 52.95958 ], [ -1.31403, 52.9596 ], [ -1.31251, 52.96077 ], [ -1.31239, 52.96143 ], [ -1.31135, 52.96157 ], [ -1.31294, 52.96357 ], [ -1.31211, 52.96383 ], [ -1.31179, 52.96426 ], [ -1.31119, 52.96419 ], [ -1.31061, 52.96511 ], [ -1.31013, 52.96515 ], [ -1.31229, 52.96644 ], [ -1.31428, 52.9662 ], [ -1.31409, 52.96755 ], [ -1.31275, 52.96763 ], [ -1.31085, 52.96724 ], [ -1.30917, 52.96738 ], [ -1.30814, 52.96767 ], [ -1.30807, 52.9676 ], [ -1.30735, 52.96641 ], [ -1.30713, 52.96568 ], [ -1.30783, 52.96318 ], [ -1.30779, 52.96296 ], [ -1.30706, 52.9603 ], [ -1.30646, 52.96031 ], [ -1.302, 52.96086 ], [ -1.3018, 52.96056 ], [ -1.30173, 52.96051 ], [ -1.29965, 52.96107 ], [ -1.29824, 52.95978 ], [ -1.2959, 52.9594 ], [ -1.29485, 52.96033 ], [ -1.29522, 52.96061 ], [ -1.29466, 52.96053 ], [ -1.29443, 52.96077 ], [ -1.29602, 52.96144 ], [ -1.29768, 52.96203 ], [ -1.29936, 52.96276 ], [ -1.30001, 52.96361 ], [ -1.3005, 52.96418 ], [ -1.30011, 52.96474 ], [ -1.29898, 52.96503 ], [ -1.30006, 52.96531 ], [ -1.29967, 52.96566 ], [ -1.29871, 52.96562 ], [ -1.29899, 52.96631 ], [ -1.29827, 52.96643 ], [ -1.29848, 52.9668 ], [ -1.29759, 52.96702 ], [ -1.29786, 52.96758 ], [ -1.29918, 52.9674 ], [ -1.29909, 52.96803 ], [ -1.29654, 52.97013 ], [ -1.2946, 52.97004 ], [ -1.29409, 52.9691 ], [ -1.29379, 52.9686 ], [ -1.29065, 52.96917 ], [ -1.29211, 52.97043 ], [ -1.29068, 52.97068 ], [ -1.28962, 52.96973 ], [ -1.28881, 52.96988 ], [ -1.28866, 52.96933 ], [ -1.28838, 52.96976 ], [ -1.28785, 52.96981 ], [ -1.2884, 52.96904 ], [ -1.28762, 52.96883 ], [ -1.28771, 52.9677 ], [ -1.28825, 52.96759 ], [ -1.28942, 52.96632 ], [ -1.28853, 52.96592 ], [ -1.28927, 52.96526 ], [ -1.28867, 52.96495 ], [ -1.28916, 52.96448 ], [ -1.28861, 52.96107 ], [ -1.28946, 52.96082 ], [ -1.29051, 52.95982 ], [ -1.29169, 52.95616 ], [ -1.29251, 52.95564 ], [ -1.29172, 52.95545 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Ilkeston", "bua_code": "E35001224", "msoa_code": "E02004084", "population": 6157, "outputarea_code": "E00099497", "lsoa_code": "E01019668", "la_name": "Erewash", "bua_name": "Ilkeston BUASD", "constituency_name": "Erewash", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.32618, "latitude": 52.95703, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.31293, 52.95589 ], [ -1.31299, 52.95275 ], [ -1.31181, 52.95143 ], [ -1.31319, 52.95045 ], [ -1.31482, 52.94995 ], [ -1.32109, 52.94839 ], [ -1.32542, 52.94842 ], [ -1.32661, 52.94844 ], [ -1.32576, 52.94937 ], [ -1.33171, 52.94915 ], [ -1.33104, 52.94957 ], [ -1.33011, 52.94957 ], [ -1.33102, 52.95017 ], [ -1.33098, 52.95078 ], [ -1.3331, 52.95075 ], [ -1.33458, 52.95306 ], [ -1.33561, 52.95316 ], [ -1.33759, 52.95538 ], [ -1.33844, 52.95625 ], [ -1.33894, 52.95608 ], [ -1.3394, 52.95639 ], [ -1.34017, 52.95727 ], [ -1.33771, 52.95896 ], [ -1.34034, 52.96246 ], [ -1.34057, 52.96271 ], [ -1.33728, 52.9648 ], [ -1.33605, 52.96638 ], [ -1.33534, 52.96665 ], [ -1.32766, 52.96523 ], [ -1.32675, 52.9637 ], [ -1.32656, 52.96348 ], [ -1.32531, 52.96306 ], [ -1.3237, 52.96331 ], [ -1.32198, 52.96302 ], [ -1.31706, 52.96215 ], [ -1.31451, 52.9602 ], [ -1.31418, 52.95958 ], [ -1.31381, 52.95911 ], [ -1.31333, 52.95821 ], [ -1.31276, 52.95679 ], [ -1.31293, 52.95589 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Ilkeston", "bua_code": "E35001224", "msoa_code": "E02006828", "population": 7110, "outputarea_code": "E00099352", "lsoa_code": "E01019638", "la_name": "Erewash", "bua_name": "Ilkeston BUASD", "constituency_name": "Erewash", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.32078, "latitude": 52.98172, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.33041, 52.9809 ], [ -1.32815, 52.98163 ], [ -1.32814, 52.98335 ], [ -1.33034, 52.98623 ], [ -1.33152, 52.98707 ], [ -1.32804, 52.98736 ], [ -1.32708, 52.98771 ], [ -1.32723, 52.98806 ], [ -1.32666, 52.98809 ], [ -1.3262, 52.98862 ], [ -1.32391, 52.98831 ], [ -1.32464, 52.98953 ], [ -1.32311, 52.98983 ], [ -1.32205, 52.98934 ], [ -1.32237, 52.99068 ], [ -1.32065, 52.99003 ], [ -1.31985, 52.99004 ], [ -1.31953, 52.98958 ], [ -1.31794, 52.98676 ], [ -1.3161, 52.98727 ], [ -1.31577, 52.98648 ], [ -1.31443, 52.98652 ], [ -1.3141, 52.9859 ], [ -1.31293, 52.98607 ], [ -1.31309, 52.98656 ], [ -1.31236, 52.98656 ], [ -1.31162, 52.98607 ], [ -1.30916, 52.9858 ], [ -1.30894, 52.98467 ], [ -1.311, 52.98465 ], [ -1.31104, 52.98393 ], [ -1.31013, 52.98406 ], [ -1.3095, 52.98371 ], [ -1.30895, 52.9839 ], [ -1.30793, 52.98338 ], [ -1.30761, 52.98294 ], [ -1.3086, 52.98334 ], [ -1.30859, 52.98284 ], [ -1.30745, 52.98267 ], [ -1.3064, 52.982 ], [ -1.30586, 52.98232 ], [ -1.30543, 52.98221 ], [ -1.30747, 52.98047 ], [ -1.30833, 52.97978 ], [ -1.30979, 52.9781 ], [ -1.31156, 52.98033 ], [ -1.313, 52.97936 ], [ -1.31296, 52.97893 ], [ -1.31204, 52.97867 ], [ -1.31533, 52.9759 ], [ -1.31819, 52.97676 ], [ -1.32018, 52.97559 ], [ -1.32097, 52.9757 ], [ -1.3217, 52.97647 ], [ -1.32494, 52.97524 ], [ -1.32535, 52.97477 ], [ -1.32499, 52.97348 ], [ -1.32614, 52.97237 ], [ -1.32775, 52.97422 ], [ -1.33043, 52.97547 ], [ -1.33278, 52.97656 ], [ -1.3331, 52.97732 ], [ -1.33279, 52.97814 ], [ -1.33041, 52.9809 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Irthlingborough", "bua_code": "E34000086", "msoa_code": "E02005634", "population": 8090, "outputarea_code": "E00137528", "lsoa_code": "E01027039", "la_name": "East Northamptonshire", "bua_name": "Irthlingborough BUA", "constituency_name": "Corby", "citytownclassification": "Small Town", "urban": "Y", "longitude": -0.62091, "latitude": 52.32274, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.60898, 52.31798 ], [ -0.60684, 52.31705 ], [ -0.60646, 52.31611 ], [ -0.60611, 52.31633 ], [ -0.60546, 52.31619 ], [ -0.60486, 52.31553 ], [ -0.60317, 52.31572 ], [ -0.60387, 52.31381 ], [ -0.60406, 52.31015 ], [ -0.60589, 52.31007 ], [ -0.6068, 52.31002 ], [ -0.60851, 52.30996 ], [ -0.60773, 52.30861 ], [ -0.60938, 52.30788 ], [ -0.61029, 52.30689 ], [ -0.61237, 52.30703 ], [ -0.61333, 52.30613 ], [ -0.61389, 52.30604 ], [ -0.61663, 52.30636 ], [ -0.61842, 52.30701 ], [ -0.62194, 52.30704 ], [ -0.62585, 52.30664 ], [ -0.62686, 52.30611 ], [ -0.62823, 52.30634 ], [ -0.62916, 52.3057 ], [ -0.63031, 52.30572 ], [ -0.63154, 52.30481 ], [ -0.63196, 52.30493 ], [ -0.6318, 52.30581 ], [ -0.63236, 52.30626 ], [ -0.63351, 52.3054 ], [ -0.63404, 52.30599 ], [ -0.63571, 52.30599 ], [ -0.63703, 52.3052 ], [ -0.63946, 52.31377 ], [ -0.63948, 52.31381 ], [ -0.64108, 52.31605 ], [ -0.64122, 52.31712 ], [ -0.64013, 52.31829 ], [ -0.63779, 52.32321 ], [ -0.63696, 52.32571 ], [ -0.63508, 52.32907 ], [ -0.63482, 52.33301 ], [ -0.63344, 52.33698 ], [ -0.6322, 52.33677 ], [ -0.6295, 52.33925 ], [ -0.62279, 52.34203 ], [ -0.62412, 52.3426 ], [ -0.62336, 52.34335 ], [ -0.62201, 52.34309 ], [ -0.62194, 52.34354 ], [ -0.61984, 52.34335 ], [ -0.61129, 52.33631 ], [ -0.60732, 52.33596 ], [ -0.60464, 52.33643 ], [ -0.60237, 52.33562 ], [ -0.6038, 52.3339 ], [ -0.6026, 52.33342 ], [ -0.60255, 52.3325 ], [ -0.60364, 52.33048 ], [ -0.60199, 52.32999 ], [ -0.60326, 52.32851 ], [ -0.60241, 52.32838 ], [ -0.6026, 52.32808 ], [ -0.60092, 52.32691 ], [ -0.59722, 52.32525 ], [ -0.60246, 52.3225 ], [ -0.60489, 52.32085 ], [ -0.60898, 52.31798 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Kettering", "bua_code": "E35001167", "msoa_code": "E02005642", "population": 8380, "outputarea_code": "E00137748", "lsoa_code": "E01027079", "la_name": "Kettering", "bua_name": "Kettering BUASD", "constituency_name": "Kettering", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.72443, "latitude": 52.41487, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.72415, 52.40767 ], [ -0.72456, 52.40688 ], [ -0.72704, 52.40629 ], [ -0.7273, 52.40677 ], [ -0.72788, 52.40763 ], [ -0.7281, 52.408 ], [ -0.72975, 52.41085 ], [ -0.73015, 52.41091 ], [ -0.73199, 52.40954 ], [ -0.73319, 52.40987 ], [ -0.73328, 52.41141 ], [ -0.73398, 52.41159 ], [ -0.73549, 52.41168 ], [ -0.73678, 52.41528 ], [ -0.73688, 52.41552 ], [ -0.73459, 52.41673 ], [ -0.73388, 52.41706 ], [ -0.72828, 52.42046 ], [ -0.72862, 52.42157 ], [ -0.72771, 52.42195 ], [ -0.72387, 52.42161 ], [ -0.71673, 52.42094 ], [ -0.71718, 52.42068 ], [ -0.71645, 52.42025 ], [ -0.71161, 52.41748 ], [ -0.71333, 52.41507 ], [ -0.7134, 52.41497 ], [ -0.71484, 52.41289 ], [ -0.717, 52.41353 ], [ -0.71897, 52.41304 ], [ -0.71868, 52.41158 ], [ -0.71855, 52.41081 ], [ -0.71844, 52.41016 ], [ -0.71822, 52.40916 ], [ -0.718, 52.40864 ], [ -0.72087, 52.40815 ], [ -0.72213, 52.40796 ], [ -0.72415, 52.40767 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Kettering", "bua_code": "E35001167", "msoa_code": "E02005643", "population": 8339, "outputarea_code": "E00137759", "lsoa_code": "E01027082", "la_name": "Kettering", "bua_name": "Kettering BUASD", "constituency_name": "Kettering", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.70771, "latitude": 52.40696, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.71479, 52.39698 ], [ -0.71374, 52.39814 ], [ -0.71189, 52.3992 ], [ -0.71165, 52.39965 ], [ -0.71179, 52.40007 ], [ -0.71266, 52.40239 ], [ -0.7129, 52.40387 ], [ -0.71358, 52.40442 ], [ -0.7156, 52.40532 ], [ -0.71842, 52.40604 ], [ -0.71833, 52.40614 ], [ -0.71765, 52.40699 ], [ -0.718, 52.40864 ], [ -0.71822, 52.40916 ], [ -0.71844, 52.41016 ], [ -0.71855, 52.41081 ], [ -0.71868, 52.41158 ], [ -0.71897, 52.41304 ], [ -0.717, 52.41353 ], [ -0.71484, 52.41289 ], [ -0.7134, 52.41497 ], [ -0.71333, 52.41507 ], [ -0.71161, 52.41748 ], [ -0.70247, 52.41244 ], [ -0.70172, 52.41292 ], [ -0.69292, 52.41243 ], [ -0.69357, 52.41176 ], [ -0.69298, 52.41116 ], [ -0.6931, 52.41046 ], [ -0.69427, 52.40996 ], [ -0.69489, 52.40922 ], [ -0.69588, 52.4092 ], [ -0.69624, 52.4084 ], [ -0.69896, 52.40676 ], [ -0.70023, 52.40531 ], [ -0.70124, 52.40355 ], [ -0.70205, 52.40308 ], [ -0.703, 52.403 ], [ -0.70384, 52.40279 ], [ -0.70442, 52.40221 ], [ -0.7036, 52.39711 ], [ -0.70381, 52.39566 ], [ -0.70621, 52.39594 ], [ -0.71042, 52.39536 ], [ -0.71225, 52.39545 ], [ -0.71261, 52.39526 ], [ -0.71368, 52.39577 ], [ -0.71479, 52.39698 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Kettering", "bua_code": "E35001167", "msoa_code": "E02005644", "population": 9146, "outputarea_code": "E00137871", "lsoa_code": "E01027105", "la_name": "Kettering", "bua_name": "Kettering BUASD", "constituency_name": "Kettering", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.72069, "latitude": 52.40203, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.72592, 52.39905 ], [ -0.72264, 52.39957 ], [ -0.72206, 52.39908 ], [ -0.72257, 52.39896 ], [ -0.72246, 52.39854 ], [ -0.72228, 52.3983 ], [ -0.72143, 52.39833 ], [ -0.72166, 52.39893 ], [ -0.72132, 52.39903 ], [ -0.72168, 52.39932 ], [ -0.71948, 52.4001 ], [ -0.71895, 52.4002 ], [ -0.71785, 52.40029 ], [ -0.71731, 52.40065 ], [ -0.71804, 52.40199 ], [ -0.71912, 52.40232 ], [ -0.71994, 52.40214 ], [ -0.72084, 52.40195 ], [ -0.72196, 52.4017 ], [ -0.72584, 52.40093 ], [ -0.72619, 52.40222 ], [ -0.72792, 52.40235 ], [ -0.7292, 52.40227 ], [ -0.72997, 52.40329 ], [ -0.72966, 52.40385 ], [ -0.72973, 52.404 ], [ -0.73014, 52.40391 ], [ -0.73041, 52.40443 ], [ -0.73132, 52.40438 ], [ -0.7323, 52.40439 ], [ -0.73216, 52.40488 ], [ -0.73338, 52.40562 ], [ -0.73238, 52.40567 ], [ -0.73147, 52.40522 ], [ -0.73048, 52.40568 ], [ -0.72947, 52.40537 ], [ -0.72857, 52.40469 ], [ -0.7275, 52.40489 ], [ -0.72724, 52.40522 ], [ -0.72798, 52.40555 ], [ -0.72742, 52.40598 ], [ -0.72777, 52.40669 ], [ -0.7273, 52.40677 ], [ -0.72704, 52.40629 ], [ -0.72456, 52.40688 ], [ -0.72415, 52.40767 ], [ -0.72213, 52.40796 ], [ -0.72087, 52.40815 ], [ -0.718, 52.40864 ], [ -0.71765, 52.40699 ], [ -0.71833, 52.40614 ], [ -0.71842, 52.40604 ], [ -0.7156, 52.40532 ], [ -0.71358, 52.40442 ], [ -0.7129, 52.40387 ], [ -0.71266, 52.40239 ], [ -0.71179, 52.40007 ], [ -0.71165, 52.39965 ], [ -0.71189, 52.3992 ], [ -0.71374, 52.39814 ], [ -0.71479, 52.39698 ], [ -0.71546, 52.39701 ], [ -0.71585, 52.39681 ], [ -0.7192, 52.39631 ], [ -0.71997, 52.3962 ], [ -0.722, 52.39589 ], [ -0.72442, 52.39554 ], [ -0.72783, 52.3954 ], [ -0.72787, 52.39564 ], [ -0.7279, 52.39695 ], [ -0.72631, 52.3965 ], [ -0.72578, 52.3969 ], [ -0.72487, 52.39698 ], [ -0.72592, 52.39905 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Kettering", "bua_code": "E35001167", "msoa_code": "E02005645", "population": 11619, "outputarea_code": "E00137870", "lsoa_code": "E01027104", "la_name": "Kettering", "bua_name": "Kettering BUASD", "constituency_name": "Kettering", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.73789, "latitude": 52.39945, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.73256, 52.38348 ], [ -0.73589, 52.38578 ], [ -0.73778, 52.38659 ], [ -0.74269, 52.38754 ], [ -0.74581, 52.38824 ], [ -0.74855, 52.38976 ], [ -0.7486, 52.38978 ], [ -0.75015, 52.39098 ], [ -0.74966, 52.39824 ], [ -0.75148, 52.40312 ], [ -0.75325, 52.40695 ], [ -0.75452, 52.40814 ], [ -0.75319, 52.40834 ], [ -0.74886, 52.41053 ], [ -0.74152, 52.41381 ], [ -0.73688, 52.41552 ], [ -0.73678, 52.41528 ], [ -0.73549, 52.41168 ], [ -0.73398, 52.41159 ], [ -0.73328, 52.41141 ], [ -0.73319, 52.40987 ], [ -0.73199, 52.40954 ], [ -0.73015, 52.41091 ], [ -0.72975, 52.41085 ], [ -0.7281, 52.408 ], [ -0.72788, 52.40763 ], [ -0.7273, 52.40677 ], [ -0.72777, 52.40669 ], [ -0.72742, 52.40598 ], [ -0.72798, 52.40555 ], [ -0.72724, 52.40522 ], [ -0.7275, 52.40489 ], [ -0.72857, 52.40469 ], [ -0.72947, 52.40537 ], [ -0.73048, 52.40568 ], [ -0.73147, 52.40522 ], [ -0.73238, 52.40567 ], [ -0.73338, 52.40562 ], [ -0.73216, 52.40488 ], [ -0.7323, 52.40439 ], [ -0.73132, 52.40438 ], [ -0.73041, 52.40443 ], [ -0.73014, 52.40391 ], [ -0.72973, 52.404 ], [ -0.72966, 52.40385 ], [ -0.72997, 52.40329 ], [ -0.7292, 52.40227 ], [ -0.72792, 52.40235 ], [ -0.72619, 52.40222 ], [ -0.72584, 52.40093 ], [ -0.72196, 52.4017 ], [ -0.72084, 52.40195 ], [ -0.71994, 52.40214 ], [ -0.71912, 52.40232 ], [ -0.71804, 52.40199 ], [ -0.71731, 52.40065 ], [ -0.71785, 52.40029 ], [ -0.71895, 52.4002 ], [ -0.71948, 52.4001 ], [ -0.72168, 52.39932 ], [ -0.72132, 52.39903 ], [ -0.72166, 52.39893 ], [ -0.72143, 52.39833 ], [ -0.72228, 52.3983 ], [ -0.72246, 52.39854 ], [ -0.72257, 52.39896 ], [ -0.72206, 52.39908 ], [ -0.72264, 52.39957 ], [ -0.72592, 52.39905 ], [ -0.72487, 52.39698 ], [ -0.72578, 52.3969 ], [ -0.72631, 52.3965 ], [ -0.7279, 52.39695 ], [ -0.72787, 52.39564 ], [ -0.72783, 52.3954 ], [ -0.72442, 52.39554 ], [ -0.72428, 52.39517 ], [ -0.72392, 52.39464 ], [ -0.72219, 52.39299 ], [ -0.72015, 52.39163 ], [ -0.72036, 52.39026 ], [ -0.72113, 52.39037 ], [ -0.72159, 52.39098 ], [ -0.72299, 52.39081 ], [ -0.72359, 52.39026 ], [ -0.72363, 52.38988 ], [ -0.72528, 52.38994 ], [ -0.72617, 52.38924 ], [ -0.72691, 52.38934 ], [ -0.72728, 52.38881 ], [ -0.72784, 52.38894 ], [ -0.72873, 52.38879 ], [ -0.72929, 52.38963 ], [ -0.72975, 52.3903 ], [ -0.73173, 52.39039 ], [ -0.73158, 52.38959 ], [ -0.73079, 52.38752 ], [ -0.72962, 52.38591 ], [ -0.73256, 52.38348 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Kettering", "bua_code": "E35001167", "msoa_code": "E02005646", "population": 6414, "outputarea_code": "E00137831", "lsoa_code": "E01027096", "la_name": "Kettering", "bua_name": "Kettering BUASD", "constituency_name": "Kettering", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.69904, "latitude": 52.39593, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.69213, 52.39383 ], [ -0.69285, 52.39317 ], [ -0.69269, 52.39205 ], [ -0.69264, 52.3918 ], [ -0.69316, 52.39178 ], [ -0.69506, 52.39145 ], [ -0.69938, 52.39034 ], [ -0.70007, 52.38969 ], [ -0.69961, 52.38962 ], [ -0.69885, 52.38846 ], [ -0.69639, 52.38838 ], [ -0.69627, 52.38637 ], [ -0.699, 52.38606 ], [ -0.7024, 52.385 ], [ -0.70389, 52.38518 ], [ -0.70754, 52.38679 ], [ -0.71484, 52.38806 ], [ -0.71617, 52.38911 ], [ -0.71493, 52.38927 ], [ -0.71683, 52.39147 ], [ -0.71764, 52.39154 ], [ -0.71837, 52.39218 ], [ -0.71673, 52.39217 ], [ -0.71558, 52.39256 ], [ -0.71548, 52.39284 ], [ -0.7163, 52.39279 ], [ -0.71578, 52.39317 ], [ -0.71589, 52.3939 ], [ -0.71502, 52.39404 ], [ -0.71494, 52.39375 ], [ -0.71415, 52.39382 ], [ -0.71349, 52.39298 ], [ -0.71283, 52.39341 ], [ -0.71211, 52.39326 ], [ -0.71163, 52.39347 ], [ -0.71148, 52.39385 ], [ -0.71159, 52.39494 ], [ -0.71042, 52.39536 ], [ -0.70621, 52.39594 ], [ -0.70381, 52.39566 ], [ -0.7036, 52.39711 ], [ -0.70442, 52.40221 ], [ -0.70384, 52.40279 ], [ -0.703, 52.403 ], [ -0.70205, 52.40308 ], [ -0.70124, 52.40355 ], [ -0.70023, 52.40531 ], [ -0.69896, 52.40676 ], [ -0.69624, 52.4084 ], [ -0.68794, 52.40393 ], [ -0.68588, 52.40276 ], [ -0.68521, 52.4027 ], [ -0.68482, 52.40163 ], [ -0.685, 52.39911 ], [ -0.68454, 52.39691 ], [ -0.68616, 52.39329 ], [ -0.68684, 52.39336 ], [ -0.68733, 52.39297 ], [ -0.68796, 52.39316 ], [ -0.68804, 52.39279 ], [ -0.68848, 52.39282 ], [ -0.6885, 52.39312 ], [ -0.68947, 52.39326 ], [ -0.69209, 52.39305 ], [ -0.69213, 52.39383 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Kettering", "bua_code": "E35001167", "msoa_code": "E02005647", "population": 7462, "outputarea_code": "E00137843", "lsoa_code": "E01027100", "la_name": "Kettering", "bua_name": "Kettering BUASD", "constituency_name": "Kettering", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.71711, "latitude": 52.38268, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.7052, 52.38086 ], [ -0.70536, 52.38021 ], [ -0.70458, 52.37825 ], [ -0.70489, 52.37648 ], [ -0.7043, 52.3748 ], [ -0.70371, 52.37416 ], [ -0.70291, 52.37438 ], [ -0.7025, 52.37394 ], [ -0.70282, 52.37369 ], [ -0.70197, 52.3733 ], [ -0.70259, 52.37303 ], [ -0.7126, 52.37178 ], [ -0.71593, 52.37199 ], [ -0.71957, 52.373 ], [ -0.72334, 52.37488 ], [ -0.72756, 52.37875 ], [ -0.73256, 52.38348 ], [ -0.72962, 52.38591 ], [ -0.73079, 52.38752 ], [ -0.73158, 52.38959 ], [ -0.73173, 52.39039 ], [ -0.72975, 52.3903 ], [ -0.72929, 52.38963 ], [ -0.72873, 52.38879 ], [ -0.72784, 52.38894 ], [ -0.72728, 52.38881 ], [ -0.72691, 52.38934 ], [ -0.72617, 52.38924 ], [ -0.72528, 52.38994 ], [ -0.72363, 52.38988 ], [ -0.72359, 52.39026 ], [ -0.72299, 52.39081 ], [ -0.72159, 52.39098 ], [ -0.72113, 52.39037 ], [ -0.72036, 52.39026 ], [ -0.72015, 52.39163 ], [ -0.72219, 52.39299 ], [ -0.72392, 52.39464 ], [ -0.72428, 52.39517 ], [ -0.72442, 52.39554 ], [ -0.722, 52.39589 ], [ -0.71997, 52.3962 ], [ -0.7192, 52.39631 ], [ -0.71585, 52.39681 ], [ -0.71546, 52.39701 ], [ -0.71479, 52.39698 ], [ -0.71368, 52.39577 ], [ -0.71261, 52.39526 ], [ -0.71225, 52.39545 ], [ -0.71042, 52.39536 ], [ -0.71159, 52.39494 ], [ -0.71148, 52.39385 ], [ -0.71163, 52.39347 ], [ -0.71211, 52.39326 ], [ -0.71283, 52.39341 ], [ -0.71349, 52.39298 ], [ -0.71415, 52.39382 ], [ -0.71494, 52.39375 ], [ -0.71502, 52.39404 ], [ -0.71589, 52.3939 ], [ -0.71578, 52.39317 ], [ -0.7163, 52.39279 ], [ -0.71548, 52.39284 ], [ -0.71558, 52.39256 ], [ -0.71673, 52.39217 ], [ -0.71837, 52.39218 ], [ -0.71764, 52.39154 ], [ -0.71683, 52.39147 ], [ -0.71493, 52.38927 ], [ -0.71617, 52.38911 ], [ -0.71484, 52.38806 ], [ -0.70754, 52.38679 ], [ -0.70389, 52.38518 ], [ -0.7024, 52.385 ], [ -0.7031, 52.38377 ], [ -0.70472, 52.38238 ], [ -0.70516, 52.38096 ], [ -0.7052, 52.38086 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Kettering", "bua_code": "E35001167", "msoa_code": "E02005648", "population": 7548, "outputarea_code": "E00137774", "lsoa_code": "E01027084", "la_name": "Kettering", "bua_name": "Kettering BUASD", "constituency_name": "Kettering", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.69045, "latitude": 52.38446, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.68654, 52.37483 ], [ -0.69053, 52.37418 ], [ -0.69402, 52.37392 ], [ -0.69376, 52.3715 ], [ -0.69456, 52.3712 ], [ -0.69455, 52.37061 ], [ -0.69553, 52.37191 ], [ -0.69497, 52.37217 ], [ -0.69613, 52.37378 ], [ -0.69965, 52.37338 ], [ -0.70259, 52.37303 ], [ -0.70197, 52.3733 ], [ -0.70282, 52.37369 ], [ -0.7025, 52.37394 ], [ -0.70291, 52.37438 ], [ -0.70371, 52.37416 ], [ -0.7043, 52.3748 ], [ -0.70489, 52.37648 ], [ -0.70458, 52.37825 ], [ -0.70536, 52.38021 ], [ -0.7052, 52.38086 ], [ -0.70516, 52.38096 ], [ -0.70472, 52.38238 ], [ -0.7031, 52.38377 ], [ -0.7024, 52.385 ], [ -0.699, 52.38606 ], [ -0.69627, 52.38637 ], [ -0.69639, 52.38838 ], [ -0.69885, 52.38846 ], [ -0.69961, 52.38962 ], [ -0.70007, 52.38969 ], [ -0.69938, 52.39034 ], [ -0.69506, 52.39145 ], [ -0.69316, 52.39178 ], [ -0.69264, 52.3918 ], [ -0.69269, 52.39205 ], [ -0.69285, 52.39317 ], [ -0.69213, 52.39383 ], [ -0.69209, 52.39305 ], [ -0.68947, 52.39326 ], [ -0.6885, 52.39312 ], [ -0.68848, 52.39282 ], [ -0.68804, 52.39279 ], [ -0.68796, 52.39316 ], [ -0.68733, 52.39297 ], [ -0.68684, 52.39336 ], [ -0.68616, 52.39329 ], [ -0.68454, 52.39691 ], [ -0.685, 52.39911 ], [ -0.68482, 52.40163 ], [ -0.67885, 52.40067 ], [ -0.67997, 52.39832 ], [ -0.67925, 52.39839 ], [ -0.67918, 52.39533 ], [ -0.67803, 52.39454 ], [ -0.67878, 52.39228 ], [ -0.67733, 52.38943 ], [ -0.68087, 52.38905 ], [ -0.67835, 52.38588 ], [ -0.6797, 52.38544 ], [ -0.68136, 52.38533 ], [ -0.68015, 52.38383 ], [ -0.68225, 52.3833 ], [ -0.68183, 52.38262 ], [ -0.68218, 52.38066 ], [ -0.6828, 52.37861 ], [ -0.67991, 52.3784 ], [ -0.6806, 52.37628 ], [ -0.68299, 52.37571 ], [ -0.6852, 52.37516 ], [ -0.68654, 52.37483 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Killamarsh", "bua_code": "E35001129", "msoa_code": "E02004105", "population": 9345, "outputarea_code": "E00100210", "lsoa_code": "E01019801", "la_name": "North East Derbyshire", "bua_name": "Killamarsh BUASD", "constituency_name": "North East Derbyshire", "citytownclassification": "Small Town in Conurbation", "urban": "Y", "longitude": -1.31701, "latitude": 53.32018, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.30855, 53.32052 ], [ -1.30858, 53.32019 ], [ -1.30309, 53.31887 ], [ -1.30295, 53.31847 ], [ -1.3035, 53.31619 ], [ -1.30633, 53.31323 ], [ -1.30747, 53.31252 ], [ -1.30917, 53.31187 ], [ -1.31238, 53.31137 ], [ -1.31358, 53.31091 ], [ -1.31872, 53.3104 ], [ -1.3219, 53.30907 ], [ -1.32203, 53.3093 ], [ -1.32362, 53.30912 ], [ -1.32711, 53.30942 ], [ -1.32891, 53.30914 ], [ -1.3303, 53.30963 ], [ -1.33203, 53.30958 ], [ -1.33571, 53.30903 ], [ -1.33764, 53.30815 ], [ -1.33845, 53.30821 ], [ -1.33935, 53.30784 ], [ -1.3412, 53.3076 ], [ -1.34317, 53.31039 ], [ -1.3422, 53.31115 ], [ -1.34322, 53.31151 ], [ -1.34141, 53.31269 ], [ -1.33918, 53.31264 ], [ -1.33983, 53.31346 ], [ -1.33895, 53.31369 ], [ -1.33879, 53.31427 ], [ -1.33973, 53.31476 ], [ -1.34228, 53.31495 ], [ -1.34032, 53.31557 ], [ -1.33775, 53.31585 ], [ -1.33666, 53.31651 ], [ -1.33622, 53.31858 ], [ -1.33461, 53.32031 ], [ -1.33452, 53.32106 ], [ -1.33227, 53.32211 ], [ -1.33277, 53.32296 ], [ -1.33248, 53.32348 ], [ -1.32835, 53.32665 ], [ -1.32808, 53.32726 ], [ -1.32879, 53.32779 ], [ -1.3283, 53.32897 ], [ -1.32473, 53.32883 ], [ -1.3247, 53.32708 ], [ -1.32225, 53.32748 ], [ -1.32172, 53.32561 ], [ -1.31877, 53.32594 ], [ -1.31565, 53.32678 ], [ -1.31552, 53.32644 ], [ -1.31457, 53.32675 ], [ -1.31368, 53.32732 ], [ -1.31301, 53.32936 ], [ -1.31033, 53.3294 ], [ -1.31127, 53.33026 ], [ -1.31117, 53.33074 ], [ -1.31033, 53.33185 ], [ -1.30973, 53.33203 ], [ -1.30923, 53.33177 ], [ -1.30879, 53.33217 ], [ -1.31148, 53.33209 ], [ -1.31233, 53.33417 ], [ -1.30601, 53.33376 ], [ -1.30269, 53.3326 ], [ -1.29943, 53.33237 ], [ -1.29898, 53.33248 ], [ -1.29753, 53.33145 ], [ -1.29705, 53.33064 ], [ -1.2958, 53.33023 ], [ -1.29545, 53.33038 ], [ -1.29467, 53.32948 ], [ -1.29296, 53.32882 ], [ -1.29329, 53.32869 ], [ -1.29173, 53.32791 ], [ -1.29127, 53.32795 ], [ -1.29086, 53.32739 ], [ -1.2902, 53.32732 ], [ -1.28988, 53.32678 ], [ -1.28937, 53.32681 ], [ -1.28856, 53.32617 ], [ -1.28895, 53.32507 ], [ -1.29029, 53.3237 ], [ -1.29007, 53.32322 ], [ -1.29202, 53.32282 ], [ -1.29408, 53.32281 ], [ -1.29433, 53.32255 ], [ -1.29699, 53.32287 ], [ -1.30029, 53.32114 ], [ -1.30126, 53.32272 ], [ -1.30128, 53.32475 ], [ -1.30173, 53.32535 ], [ -1.30361, 53.32539 ], [ -1.304, 53.32574 ], [ -1.30553, 53.32537 ], [ -1.3068, 53.32409 ], [ -1.30516, 53.32305 ], [ -1.30418, 53.32124 ], [ -1.30855, 53.32052 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Kimberley", "bua_code": "E35000589", "msoa_code": "E02005853", "population": 9277, "outputarea_code": "E00143194", "lsoa_code": "E01028103", "la_name": "Broxtowe", "bua_name": "Kimberley BUASD", "constituency_name": "Broxtowe", "citytownclassification": "Small Town in Conurbation", "urban": "Y", "longitude": -1.24864, "latitude": 53.00869, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.25628, 52.98876 ], [ -1.25512, 52.9894 ], [ -1.25448, 52.98939 ], [ -1.25399, 52.99003 ], [ -1.25754, 52.99004 ], [ -1.2583, 52.99049 ], [ -1.25624, 52.99173 ], [ -1.25558, 52.99346 ], [ -1.25577, 52.9939 ], [ -1.25964, 52.99431 ], [ -1.25806, 52.99513 ], [ -1.2576, 52.99587 ], [ -1.25704, 52.996 ], [ -1.25723, 52.99623 ], [ -1.25567, 52.99651 ], [ -1.25474, 52.99576 ], [ -1.25349, 52.99681 ], [ -1.25388, 52.99742 ], [ -1.25478, 52.99708 ], [ -1.25572, 52.99724 ], [ -1.2563, 52.99771 ], [ -1.25618, 52.99818 ], [ -1.25548, 52.99835 ], [ -1.25357, 52.99809 ], [ -1.25224, 52.99926 ], [ -1.25298, 52.99983 ], [ -1.25442, 52.99969 ], [ -1.25674, 52.99858 ], [ -1.25718, 52.99756 ], [ -1.25841, 52.99818 ], [ -1.26038, 52.99881 ], [ -1.26047, 52.99785 ], [ -1.2655, 52.99645 ], [ -1.26658, 52.99686 ], [ -1.26955, 52.99767 ], [ -1.26948, 52.99862 ], [ -1.2689, 52.99882 ], [ -1.27047, 52.99947 ], [ -1.27053, 52.99995 ], [ -1.27015, 53.00018 ], [ -1.26738, 53.00017 ], [ -1.26689, 53.0004 ], [ -1.2679, 53.00096 ], [ -1.26661, 53.00141 ], [ -1.26863, 53.00212 ], [ -1.26835, 53.00238 ], [ -1.26872, 53.00256 ], [ -1.26807, 53.00297 ], [ -1.26718, 53.0025 ], [ -1.26675, 53.00274 ], [ -1.26675, 53.00316 ], [ -1.26805, 53.00396 ], [ -1.27035, 53.00249 ], [ -1.27236, 53.00402 ], [ -1.27335, 53.0025 ], [ -1.27505, 53.00263 ], [ -1.27466, 53.00359 ], [ -1.27542, 53.00385 ], [ -1.2747, 53.0053 ], [ -1.27704, 53.00595 ], [ -1.27645, 53.00656 ], [ -1.27472, 53.00815 ], [ -1.27465, 53.0091 ], [ -1.27058, 53.01199 ], [ -1.26812, 53.01359 ], [ -1.2677, 53.01455 ], [ -1.264, 53.01344 ], [ -1.26262, 53.01425 ], [ -1.26276, 53.01448 ], [ -1.26103, 53.01449 ], [ -1.25853, 53.01681 ], [ -1.25779, 53.01666 ], [ -1.25759, 53.01744 ], [ -1.25825, 53.01748 ], [ -1.25816, 53.0179 ], [ -1.25639, 53.01788 ], [ -1.2564, 53.02315 ], [ -1.25272, 53.02438 ], [ -1.25138, 53.02563 ], [ -1.24765, 53.02666 ], [ -1.2475, 53.02741 ], [ -1.24677, 53.02753 ], [ -1.24787, 53.03094 ], [ -1.2441, 53.03155 ], [ -1.24126, 53.03115 ], [ -1.2388, 53.02961 ], [ -1.23628, 53.02831 ], [ -1.23536, 53.02792 ], [ -1.23443, 53.02661 ], [ -1.23369, 53.02607 ], [ -1.23112, 53.02427 ], [ -1.2291, 53.02277 ], [ -1.23183, 53.02128 ], [ -1.23197, 53.01948 ], [ -1.23096, 53.01846 ], [ -1.23112, 53.01698 ], [ -1.23066, 53.01623 ], [ -1.23254, 53.01273 ], [ -1.2326, 53.01137 ], [ -1.23377, 53.00951 ], [ -1.23386, 53.00795 ], [ -1.23453, 53.00686 ], [ -1.23435, 53.00617 ], [ -1.23255, 53.00385 ], [ -1.23144, 53.0015 ], [ -1.23093, 52.9989 ], [ -1.23124, 52.99596 ], [ -1.23235, 52.99302 ], [ -1.23414, 52.99032 ], [ -1.23447, 52.98991 ], [ -1.23929, 52.99099 ], [ -1.24435, 52.99168 ], [ -1.24846, 52.99328 ], [ -1.2513, 52.99383 ], [ -1.25062, 52.99313 ], [ -1.25032, 52.99163 ], [ -1.24888, 52.99033 ], [ -1.24903, 52.98888 ], [ -1.24861, 52.98794 ], [ -1.25185, 52.98723 ], [ -1.25292, 52.9872 ], [ -1.25384, 52.98789 ], [ -1.25385, 52.98893 ], [ -1.25628, 52.98876 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Kimberley", "bua_code": "E35000589", "msoa_code": "E02006906", "population": 2395, "outputarea_code": "E00143198", "lsoa_code": "E01028106", "la_name": "Broxtowe", "bua_name": "Kimberley BUASD", "constituency_name": "Broxtowe", "citytownclassification": "Small Town in Conurbation", "urban": "Y", "longitude": -1.25507, "latitude": 52.99364, "pgroup": "10k" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.25964, 52.99431 ], [ -1.25577, 52.9939 ], [ -1.25558, 52.99346 ], [ -1.25624, 52.99173 ], [ -1.2583, 52.99049 ], [ -1.25754, 52.99004 ], [ -1.25399, 52.99003 ], [ -1.25448, 52.98939 ], [ -1.25512, 52.9894 ], [ -1.25628, 52.98876 ], [ -1.25778, 52.98844 ], [ -1.26042, 52.98843 ], [ -1.26266, 52.98762 ], [ -1.26382, 52.98759 ], [ -1.2675, 52.98626 ], [ -1.26913, 52.98497 ], [ -1.27067, 52.98472 ], [ -1.2754, 52.98487 ], [ -1.27674, 52.98536 ], [ -1.27815, 52.98528 ], [ -1.2786, 52.98703 ], [ -1.27712, 52.9885 ], [ -1.27782, 52.98938 ], [ -1.27381, 52.99002 ], [ -1.27326, 52.99097 ], [ -1.27139, 52.99111 ], [ -1.27238, 52.99306 ], [ -1.27743, 52.99507 ], [ -1.27804, 52.99568 ], [ -1.27918, 52.99488 ], [ -1.27958, 52.99521 ], [ -1.28051, 52.9952 ], [ -1.2816, 52.99705 ], [ -1.28166, 52.99714 ], [ -1.28072, 52.99724 ], [ -1.2802, 52.99858 ], [ -1.27955, 52.99899 ], [ -1.27964, 53.00001 ], [ -1.2789, 53.00169 ], [ -1.27788, 53.00236 ], [ -1.27362, 53.00148 ], [ -1.27303, 53.00185 ], [ -1.27189, 53.00242 ], [ -1.27335, 53.0025 ], [ -1.27236, 53.00402 ], [ -1.27035, 53.00249 ], [ -1.26805, 53.00396 ], [ -1.26675, 53.00316 ], [ -1.26675, 53.00274 ], [ -1.26718, 53.0025 ], [ -1.26807, 53.00297 ], [ -1.26872, 53.00256 ], [ -1.26835, 53.00238 ], [ -1.26863, 53.00212 ], [ -1.26661, 53.00141 ], [ -1.2679, 53.00096 ], [ -1.26689, 53.0004 ], [ -1.26738, 53.00017 ], [ -1.27015, 53.00018 ], [ -1.27053, 52.99995 ], [ -1.27047, 52.99947 ], [ -1.2689, 52.99882 ], [ -1.26948, 52.99862 ], [ -1.26955, 52.99767 ], [ -1.26658, 52.99686 ], [ -1.2655, 52.99645 ], [ -1.26047, 52.99785 ], [ -1.26038, 52.99881 ], [ -1.25841, 52.99818 ], [ -1.25718, 52.99756 ], [ -1.25674, 52.99858 ], [ -1.25442, 52.99969 ], [ -1.25298, 52.99983 ], [ -1.25224, 52.99926 ], [ -1.25357, 52.99809 ], [ -1.25548, 52.99835 ], [ -1.25618, 52.99818 ], [ -1.2563, 52.99771 ], [ -1.25572, 52.99724 ], [ -1.25478, 52.99708 ], [ -1.25388, 52.99742 ], [ -1.25349, 52.99681 ], [ -1.25474, 52.99576 ], [ -1.25567, 52.99651 ], [ -1.25723, 52.99623 ], [ -1.25704, 52.996 ], [ -1.2576, 52.99587 ], [ -1.25806, 52.99513 ], [ -1.25964, 52.99431 ] ] ], [ [ [ -1.23144, 53.0015 ], [ -1.23084, 52.99945 ], [ -1.21758, 52.99581 ], [ -1.21725, 52.99649 ], [ -1.21624, 52.99645 ], [ -1.21581, 52.99591 ], [ -1.21587, 52.99586 ], [ -1.21831, 52.99358 ], [ -1.21911, 52.9915 ], [ -1.21624, 52.99107 ], [ -1.21461, 52.99068 ], [ -1.21167, 52.99017 ], [ -1.21134, 52.9894 ], [ -1.21195, 52.98832 ], [ -1.21973, 52.9899 ], [ -1.22044, 52.98941 ], [ -1.22137, 52.99019 ], [ -1.22237, 52.99021 ], [ -1.22273, 52.99086 ], [ -1.22407, 52.99115 ], [ -1.2246, 52.99053 ], [ -1.22679, 52.99043 ], [ -1.23017, 52.98959 ], [ -1.23231, 52.98948 ], [ -1.23414, 52.99032 ], [ -1.23235, 52.99302 ], [ -1.23124, 52.99596 ], [ -1.23093, 52.9989 ], [ -1.23144, 53.0015 ] ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Kirkby-in-Ashfield", "bua_code": "E35000267", "msoa_code": "E02005825", "population": 6327, "outputarea_code": "E00142390", "lsoa_code": "E01027949", "la_name": "Ashfield", "bua_name": "Kirkby-in-Ashfield BUASD", "constituency_name": "Ashfield", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.23524, "latitude": 53.10536, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.2325, 53.097 ], [ -1.23286, 53.09539 ], [ -1.23158, 53.09313 ], [ -1.23256, 53.09259 ], [ -1.23733, 53.09387 ], [ -1.23958, 53.0941 ], [ -1.24196, 53.09377 ], [ -1.24207, 53.09413 ], [ -1.2426, 53.09406 ], [ -1.2427, 53.09379 ], [ -1.24533, 53.09385 ], [ -1.24657, 53.09451 ], [ -1.2485, 53.09634 ], [ -1.24835, 53.09713 ], [ -1.24698, 53.097 ], [ -1.24728, 53.0965 ], [ -1.24596, 53.0966 ], [ -1.2461, 53.09725 ], [ -1.24555, 53.0977 ], [ -1.24391, 53.09754 ], [ -1.24361, 53.09866 ], [ -1.24147, 53.09832 ], [ -1.24027, 53.0981 ], [ -1.24024, 53.09842 ], [ -1.2396, 53.09845 ], [ -1.23796, 53.10225 ], [ -1.23869, 53.10255 ], [ -1.23865, 53.10316 ], [ -1.24009, 53.10352 ], [ -1.24002, 53.10384 ], [ -1.23572, 53.10311 ], [ -1.23607, 53.10361 ], [ -1.23568, 53.10445 ], [ -1.23627, 53.10414 ], [ -1.23709, 53.10461 ], [ -1.23615, 53.10602 ], [ -1.23628, 53.10628 ], [ -1.23693, 53.1063 ], [ -1.23676, 53.10669 ], [ -1.23729, 53.10671 ], [ -1.23765, 53.10609 ], [ -1.23774, 53.10574 ], [ -1.23912, 53.1054 ], [ -1.24096, 53.10595 ], [ -1.24118, 53.10522 ], [ -1.24057, 53.10508 ], [ -1.24076, 53.10407 ], [ -1.24142, 53.10411 ], [ -1.24198, 53.10213 ], [ -1.24491, 53.10231 ], [ -1.24537, 53.10314 ], [ -1.24369, 53.10397 ], [ -1.24331, 53.10451 ], [ -1.24418, 53.10531 ], [ -1.24601, 53.10544 ], [ -1.24637, 53.10594 ], [ -1.24707, 53.10598 ], [ -1.24703, 53.10642 ], [ -1.2494, 53.10646 ], [ -1.25109, 53.10649 ], [ -1.25196, 53.10658 ], [ -1.25518, 53.10659 ], [ -1.25587, 53.10726 ], [ -1.25683, 53.10755 ], [ -1.25818, 53.10814 ], [ -1.25872, 53.10874 ], [ -1.25665, 53.11249 ], [ -1.25625, 53.11409 ], [ -1.25594, 53.11425 ], [ -1.25687, 53.11462 ], [ -1.25534, 53.11699 ], [ -1.25379, 53.11875 ], [ -1.25182, 53.12003 ], [ -1.25058, 53.11977 ], [ -1.24968, 53.11809 ], [ -1.24823, 53.11792 ], [ -1.24207, 53.11669 ], [ -1.23864, 53.11615 ], [ -1.23645, 53.1154 ], [ -1.23076, 53.1125 ], [ -1.226, 53.11151 ], [ -1.22665, 53.10893 ], [ -1.22795, 53.10716 ], [ -1.219, 53.10501 ], [ -1.21377, 53.10283 ], [ -1.20588, 53.09721 ], [ -1.20513, 53.09705 ], [ -1.20545, 53.09668 ], [ -1.20605, 53.0968 ], [ -1.20724, 53.09526 ], [ -1.21796, 53.09599 ], [ -1.23038, 53.09686 ], [ -1.2325, 53.097 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Kirkby-in-Ashfield", "bua_code": "E35000267", "msoa_code": "E02005826", "population": 6187, "outputarea_code": "E00142408", "lsoa_code": "E01027952", "la_name": "Ashfield", "bua_name": "Kirkby-in-Ashfield BUASD", "constituency_name": "Ashfield", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.25241, "latitude": 53.10329, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.24406, 53.09873 ], [ -1.24705, 53.09927 ], [ -1.24749, 53.09934 ], [ -1.25124, 53.09986 ], [ -1.25362, 53.09958 ], [ -1.25374, 53.09963 ], [ -1.25577, 53.09988 ], [ -1.26089, 53.10057 ], [ -1.26128, 53.10063 ], [ -1.2642, 53.10089 ], [ -1.26428, 53.10114 ], [ -1.26501, 53.10115 ], [ -1.26519, 53.10281 ], [ -1.26696, 53.1028 ], [ -1.26697, 53.10361 ], [ -1.26428, 53.10351 ], [ -1.26362, 53.10386 ], [ -1.26307, 53.10488 ], [ -1.26613, 53.10501 ], [ -1.26603, 53.10536 ], [ -1.26748, 53.10537 ], [ -1.26748, 53.10668 ], [ -1.26621, 53.10658 ], [ -1.26564, 53.10683 ], [ -1.26649, 53.10728 ], [ -1.26647, 53.10764 ], [ -1.26487, 53.10753 ], [ -1.26471, 53.10813 ], [ -1.26448, 53.10864 ], [ -1.26317, 53.10861 ], [ -1.26328, 53.10916 ], [ -1.2625, 53.10887 ], [ -1.2625, 53.10831 ], [ -1.26158, 53.1081 ], [ -1.26172, 53.10764 ], [ -1.26109, 53.10758 ], [ -1.25936, 53.10727 ], [ -1.25818, 53.10814 ], [ -1.25683, 53.10755 ], [ -1.25587, 53.10726 ], [ -1.25518, 53.10659 ], [ -1.25196, 53.10658 ], [ -1.25109, 53.10649 ], [ -1.2494, 53.10646 ], [ -1.24703, 53.10642 ], [ -1.24707, 53.10598 ], [ -1.24637, 53.10594 ], [ -1.24601, 53.10544 ], [ -1.24418, 53.10531 ], [ -1.24331, 53.10451 ], [ -1.24369, 53.10397 ], [ -1.24537, 53.10314 ], [ -1.24491, 53.10231 ], [ -1.24198, 53.10213 ], [ -1.24142, 53.10411 ], [ -1.24076, 53.10407 ], [ -1.24057, 53.10508 ], [ -1.24118, 53.10522 ], [ -1.24096, 53.10595 ], [ -1.23912, 53.1054 ], [ -1.23774, 53.10574 ], [ -1.23765, 53.10609 ], [ -1.23729, 53.10671 ], [ -1.23676, 53.10669 ], [ -1.23693, 53.1063 ], [ -1.23628, 53.10628 ], [ -1.23615, 53.10602 ], [ -1.23709, 53.10461 ], [ -1.23627, 53.10414 ], [ -1.23568, 53.10445 ], [ -1.23607, 53.10361 ], [ -1.23572, 53.10311 ], [ -1.24002, 53.10384 ], [ -1.24009, 53.10352 ], [ -1.23865, 53.10316 ], [ -1.23869, 53.10255 ], [ -1.23796, 53.10225 ], [ -1.2396, 53.09845 ], [ -1.24024, 53.09842 ], [ -1.24027, 53.0981 ], [ -1.24147, 53.09832 ], [ -1.24361, 53.09866 ], [ -1.24406, 53.09873 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Kirkby-in-Ashfield", "bua_code": "E35000267", "msoa_code": "E02005827", "population": 9041, "outputarea_code": "E00142386", "lsoa_code": "E01027950", "la_name": "Ashfield", "bua_name": "Kirkby-in-Ashfield BUASD", "constituency_name": "Ashfield", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.26487, "latitude": 53.09662, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.24008, 53.08624 ], [ -1.24054, 53.08562 ], [ -1.24107, 53.08476 ], [ -1.24223, 53.08528 ], [ -1.24232, 53.08698 ], [ -1.24367, 53.08693 ], [ -1.24661, 53.08818 ], [ -1.24675, 53.08852 ], [ -1.24704, 53.08901 ], [ -1.25189, 53.08946 ], [ -1.25219, 53.08924 ], [ -1.25271, 53.08903 ], [ -1.25382, 53.08914 ], [ -1.25652, 53.09159 ], [ -1.26041, 53.09261 ], [ -1.26192, 53.09225 ], [ -1.26375, 53.09175 ], [ -1.26429, 53.09123 ], [ -1.26469, 53.09131 ], [ -1.26629, 53.0899 ], [ -1.27639, 53.08793 ], [ -1.27927, 53.08606 ], [ -1.28609, 53.08543 ], [ -1.28719, 53.08446 ], [ -1.29114, 53.08316 ], [ -1.29511, 53.08065 ], [ -1.30335, 53.08805 ], [ -1.30256, 53.08852 ], [ -1.30347, 53.08948 ], [ -1.30409, 53.08945 ], [ -1.30377, 53.08968 ], [ -1.30536, 53.09077 ], [ -1.3061, 53.09192 ], [ -1.30737, 53.09244 ], [ -1.30739, 53.09286 ], [ -1.30913, 53.0945 ], [ -1.30815, 53.09495 ], [ -1.30692, 53.09476 ], [ -1.30708, 53.09541 ], [ -1.30849, 53.09584 ], [ -1.30925, 53.09678 ], [ -1.3074, 53.09946 ], [ -1.30599, 53.10034 ], [ -1.30553, 53.10014 ], [ -1.30498, 53.10056 ], [ -1.30407, 53.1004 ], [ -1.30214, 53.10107 ], [ -1.30158, 53.10101 ], [ -1.3007, 53.10167 ], [ -1.30142, 53.10417 ], [ -1.30252, 53.10393 ], [ -1.30361, 53.10319 ], [ -1.3088, 53.10772 ], [ -1.31183, 53.10871 ], [ -1.31205, 53.10915 ], [ -1.31078, 53.11012 ], [ -1.30778, 53.11064 ], [ -1.29782, 53.11143 ], [ -1.29039, 53.11212 ], [ -1.28324, 53.1134 ], [ -1.28122, 53.1137 ], [ -1.27632, 53.1138 ], [ -1.27192, 53.11369 ], [ -1.26762, 53.11351 ], [ -1.26381, 53.11345 ], [ -1.26199, 53.11339 ], [ -1.25967, 53.11355 ], [ -1.25771, 53.11414 ], [ -1.25687, 53.11462 ], [ -1.25594, 53.11425 ], [ -1.25625, 53.11409 ], [ -1.25665, 53.11249 ], [ -1.25872, 53.10874 ], [ -1.25818, 53.10814 ], [ -1.25936, 53.10727 ], [ -1.26109, 53.10758 ], [ -1.26172, 53.10764 ], [ -1.26158, 53.1081 ], [ -1.2625, 53.10831 ], [ -1.2625, 53.10887 ], [ -1.26328, 53.10916 ], [ -1.26317, 53.10861 ], [ -1.26448, 53.10864 ], [ -1.26471, 53.10813 ], [ -1.26487, 53.10753 ], [ -1.26647, 53.10764 ], [ -1.26649, 53.10728 ], [ -1.26564, 53.10683 ], [ -1.26621, 53.10658 ], [ -1.26748, 53.10668 ], [ -1.26748, 53.10537 ], [ -1.26603, 53.10536 ], [ -1.26613, 53.10501 ], [ -1.26307, 53.10488 ], [ -1.26362, 53.10386 ], [ -1.26428, 53.10351 ], [ -1.26697, 53.10361 ], [ -1.26696, 53.1028 ], [ -1.26519, 53.10281 ], [ -1.26501, 53.10115 ], [ -1.26428, 53.10114 ], [ -1.2642, 53.10089 ], [ -1.26128, 53.10063 ], [ -1.26089, 53.10057 ], [ -1.25577, 53.09988 ], [ -1.25374, 53.09963 ], [ -1.25362, 53.09958 ], [ -1.25124, 53.09986 ], [ -1.24749, 53.09934 ], [ -1.24705, 53.09927 ], [ -1.24406, 53.09873 ], [ -1.24361, 53.09866 ], [ -1.24391, 53.09754 ], [ -1.24555, 53.0977 ], [ -1.2461, 53.09725 ], [ -1.24596, 53.0966 ], [ -1.24728, 53.0965 ], [ -1.24698, 53.097 ], [ -1.24835, 53.09713 ], [ -1.2485, 53.09634 ], [ -1.24657, 53.09451 ], [ -1.24533, 53.09385 ], [ -1.2427, 53.09379 ], [ -1.2426, 53.09406 ], [ -1.24207, 53.09413 ], [ -1.24196, 53.09377 ], [ -1.23958, 53.0941 ], [ -1.23733, 53.09387 ], [ -1.23256, 53.09259 ], [ -1.23158, 53.09313 ], [ -1.23286, 53.09539 ], [ -1.2325, 53.097 ], [ -1.23038, 53.09686 ], [ -1.21796, 53.09599 ], [ -1.20724, 53.09526 ], [ -1.19604, 53.0945 ], [ -1.19293, 53.09262 ], [ -1.19491, 53.09245 ], [ -1.19972, 53.0908 ], [ -1.19976, 53.08967 ], [ -1.19976, 53.08909 ], [ -1.20179, 53.08802 ], [ -1.20251, 53.08691 ], [ -1.20682, 53.08621 ], [ -1.21016, 53.08494 ], [ -1.21158, 53.08482 ], [ -1.21348, 53.08507 ], [ -1.21612, 53.08473 ], [ -1.21822, 53.08477 ], [ -1.22116, 53.084 ], [ -1.22631, 53.08104 ], [ -1.23068, 53.08105 ], [ -1.2327, 53.083 ], [ -1.23542, 53.08466 ], [ -1.24008, 53.08624 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Kirkby-in-Ashfield", "bua_code": "E35000267", "msoa_code": "E02005828", "population": 6283, "outputarea_code": "E00142629", "lsoa_code": "E01027997", "la_name": "Ashfield", "bua_name": "Kirkby-in-Ashfield BUASD", "constituency_name": "Ashfield", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -1.25693, "latitude": 53.06717, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.2434, 53.07871 ], [ -1.24303, 53.07819 ], [ -1.24261, 53.07859 ], [ -1.24282, 53.07721 ], [ -1.24215, 53.07708 ], [ -1.24187, 53.07833 ], [ -1.24057, 53.0785 ], [ -1.23928, 53.07761 ], [ -1.23882, 53.07682 ], [ -1.23842, 53.07613 ], [ -1.23563, 53.07552 ], [ -1.23273, 53.07576 ], [ -1.23121, 53.07529 ], [ -1.22971, 53.07063 ], [ -1.22892, 53.06948 ], [ -1.2293, 53.06875 ], [ -1.22972, 53.0681 ], [ -1.2299, 53.06593 ], [ -1.2301, 53.065 ], [ -1.23129, 53.06207 ], [ -1.22886, 53.05803 ], [ -1.22812, 53.05457 ], [ -1.22818, 53.05254 ], [ -1.22925, 53.05155 ], [ -1.22958, 53.0517 ], [ -1.23226, 53.0503 ], [ -1.23879, 53.04947 ], [ -1.24172, 53.04777 ], [ -1.24317, 53.04735 ], [ -1.24499, 53.04563 ], [ -1.24671, 53.04465 ], [ -1.2557, 53.04188 ], [ -1.25769, 53.04096 ], [ -1.25824, 53.04043 ], [ -1.2629, 53.03926 ], [ -1.2638, 53.03843 ], [ -1.2664, 53.03842 ], [ -1.26709, 53.0389 ], [ -1.26859, 53.03904 ], [ -1.2693, 53.03942 ], [ -1.27033, 53.04051 ], [ -1.27072, 53.04189 ], [ -1.27283, 53.04209 ], [ -1.27572, 53.04328 ], [ -1.27869, 53.04405 ], [ -1.27771, 53.0445 ], [ -1.27676, 53.04553 ], [ -1.27746, 53.04624 ], [ -1.2756, 53.04754 ], [ -1.27553, 53.04879 ], [ -1.27334, 53.05136 ], [ -1.27208, 53.05367 ], [ -1.27212, 53.05469 ], [ -1.27058, 53.05538 ], [ -1.27057, 53.05593 ], [ -1.26829, 53.05905 ], [ -1.26921, 53.05975 ], [ -1.26865, 53.06098 ], [ -1.26972, 53.06277 ], [ -1.2683, 53.06313 ], [ -1.27023, 53.06514 ], [ -1.2719, 53.06543 ], [ -1.27581, 53.06861 ], [ -1.28638, 53.07484 ], [ -1.28709, 53.07489 ], [ -1.28668, 53.07491 ], [ -1.29511, 53.08065 ], [ -1.29114, 53.08316 ], [ -1.28719, 53.08446 ], [ -1.28609, 53.08543 ], [ -1.27927, 53.08606 ], [ -1.27639, 53.08793 ], [ -1.26629, 53.0899 ], [ -1.26469, 53.09131 ], [ -1.26429, 53.09123 ], [ -1.26375, 53.09175 ], [ -1.26192, 53.09225 ], [ -1.26041, 53.09261 ], [ -1.25652, 53.09159 ], [ -1.25382, 53.08914 ], [ -1.25271, 53.08903 ], [ -1.25219, 53.08924 ], [ -1.25189, 53.08946 ], [ -1.24704, 53.08901 ], [ -1.24675, 53.08852 ], [ -1.24661, 53.08818 ], [ -1.24367, 53.08693 ], [ -1.24232, 53.08698 ], [ -1.24223, 53.08528 ], [ -1.24107, 53.08476 ], [ -1.24054, 53.08562 ], [ -1.24008, 53.08624 ], [ -1.23542, 53.08466 ], [ -1.2327, 53.083 ], [ -1.23068, 53.08105 ], [ -1.23463, 53.08086 ], [ -1.23872, 53.07979 ], [ -1.2434, 53.07871 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002827", "population": 5839, "outputarea_code": "E00068744", "lsoa_code": "E01013615", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester West", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.16121, "latitude": 52.67291, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.15602, 52.6628 ], [ -1.15656, 52.66257 ], [ -1.1577, 52.6628 ], [ -1.15767, 52.6623 ], [ -1.15773, 52.66209 ], [ -1.15919, 52.66227 ], [ -1.16042, 52.66233 ], [ -1.16208, 52.66203 ], [ -1.16426, 52.66115 ], [ -1.16549, 52.6617 ], [ -1.16748, 52.66147 ], [ -1.1681, 52.66194 ], [ -1.167, 52.66253 ], [ -1.1671, 52.66299 ], [ -1.1664, 52.66283 ], [ -1.16345, 52.66387 ], [ -1.16448, 52.66485 ], [ -1.16369, 52.66536 ], [ -1.16407, 52.66646 ], [ -1.16856, 52.6665 ], [ -1.16853, 52.66752 ], [ -1.16838, 52.66755 ], [ -1.16968, 52.66934 ], [ -1.17047, 52.66969 ], [ -1.17068, 52.66887 ], [ -1.17089, 52.66785 ], [ -1.17246, 52.66787 ], [ -1.17271, 52.66845 ], [ -1.17395, 52.66908 ], [ -1.1742, 52.66996 ], [ -1.17392, 52.66998 ], [ -1.17332, 52.67076 ], [ -1.17381, 52.67142 ], [ -1.17126, 52.67182 ], [ -1.17205, 52.67231 ], [ -1.1727, 52.67305 ], [ -1.17185, 52.67385 ], [ -1.17287, 52.67415 ], [ -1.17374, 52.67508 ], [ -1.172, 52.67481 ], [ -1.17081, 52.67405 ], [ -1.16995, 52.67452 ], [ -1.17112, 52.67478 ], [ -1.16989, 52.67536 ], [ -1.17037, 52.67623 ], [ -1.17438, 52.67855 ], [ -1.17405, 52.67898 ], [ -1.17467, 52.67915 ], [ -1.17357, 52.67944 ], [ -1.17366, 52.67975 ], [ -1.17306, 52.67972 ], [ -1.17371, 52.68122 ], [ -1.17278, 52.68148 ], [ -1.17326, 52.68169 ], [ -1.1729, 52.68266 ], [ -1.17074, 52.68356 ], [ -1.17069, 52.68361 ], [ -1.16907, 52.68339 ], [ -1.16786, 52.68211 ], [ -1.16551, 52.68394 ], [ -1.16056, 52.67622 ], [ -1.1588, 52.67677 ], [ -1.1575, 52.67727 ], [ -1.15806, 52.67755 ], [ -1.15271, 52.68013 ], [ -1.15187, 52.68087 ], [ -1.14659, 52.67964 ], [ -1.14688, 52.67892 ], [ -1.14578, 52.67869 ], [ -1.14526, 52.67776 ], [ -1.14484, 52.67516 ], [ -1.14577, 52.67507 ], [ -1.14945, 52.67495 ], [ -1.14981, 52.67495 ], [ -1.15317, 52.67099 ], [ -1.15332, 52.6697 ], [ -1.15313, 52.66908 ], [ -1.15247, 52.66782 ], [ -1.15146, 52.66599 ], [ -1.15119, 52.66527 ], [ -1.15157, 52.6649 ], [ -1.15129, 52.66423 ], [ -1.15334, 52.66417 ], [ -1.15361, 52.66474 ], [ -1.15443, 52.66486 ], [ -1.15441, 52.66407 ], [ -1.15495, 52.66383 ], [ -1.15602, 52.6628 ] ], [ [ -1.15443, 52.66486 ], [ -1.15444, 52.66511 ], [ -1.1545, 52.66487 ], [ -1.15443, 52.66486 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002828", "population": 7931, "outputarea_code": "E00069300", "lsoa_code": "E01013735", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester East", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.09667, "latitude": 52.66511, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.11495, 52.67279 ], [ -1.11434, 52.67263 ], [ -1.11013, 52.67146 ], [ -1.10915, 52.6728 ], [ -1.10549, 52.67154 ], [ -1.10523, 52.67186 ], [ -1.10481, 52.67175 ], [ -1.10425, 52.67161 ], [ -1.10408, 52.67157 ], [ -1.0998, 52.67053 ], [ -1.09783, 52.67008 ], [ -1.0972, 52.66997 ], [ -1.0952, 52.66957 ], [ -1.09082, 52.66859 ], [ -1.08933, 52.67025 ], [ -1.08931, 52.67028 ], [ -1.08869, 52.66975 ], [ -1.0881, 52.66991 ], [ -1.08579, 52.66926 ], [ -1.07508, 52.66963 ], [ -1.07493, 52.66799 ], [ -1.06976, 52.66715 ], [ -1.06935, 52.66736 ], [ -1.06875, 52.66691 ], [ -1.06753, 52.66676 ], [ -1.06759, 52.66636 ], [ -1.06445, 52.66473 ], [ -1.06533, 52.66343 ], [ -1.07049, 52.66511 ], [ -1.07329, 52.66507 ], [ -1.07458, 52.66376 ], [ -1.0759, 52.66306 ], [ -1.07644, 52.66201 ], [ -1.07653, 52.66074 ], [ -1.07569, 52.6605 ], [ -1.0762, 52.65971 ], [ -1.07697, 52.65934 ], [ -1.07808, 52.66023 ], [ -1.07948, 52.65768 ], [ -1.07995, 52.65752 ], [ -1.08186, 52.65685 ], [ -1.08303, 52.65644 ], [ -1.08691, 52.65594 ], [ -1.08779, 52.65542 ], [ -1.09219, 52.65588 ], [ -1.09265, 52.65561 ], [ -1.09473, 52.65665 ], [ -1.09491, 52.65625 ], [ -1.09703, 52.65538 ], [ -1.09645, 52.65636 ], [ -1.09745, 52.65671 ], [ -1.09824, 52.6565 ], [ -1.09792, 52.656 ], [ -1.09837, 52.65591 ], [ -1.09877, 52.65629 ], [ -1.09777, 52.65783 ], [ -1.09741, 52.65751 ], [ -1.09662, 52.65812 ], [ -1.09464, 52.65864 ], [ -1.09482, 52.65924 ], [ -1.0974, 52.65841 ], [ -1.09643, 52.65991 ], [ -1.09399, 52.66367 ], [ -1.09803, 52.66481 ], [ -1.0984, 52.66491 ], [ -1.09786, 52.66577 ], [ -1.09626, 52.66541 ], [ -1.09679, 52.66595 ], [ -1.09805, 52.66652 ], [ -1.09775, 52.66705 ], [ -1.09809, 52.66712 ], [ -1.09958, 52.66718 ], [ -1.09987, 52.66669 ], [ -1.09953, 52.66624 ], [ -1.10014, 52.66541 ], [ -1.10072, 52.66557 ], [ -1.10134, 52.66575 ], [ -1.10236, 52.66605 ], [ -1.10272, 52.66616 ], [ -1.10232, 52.66595 ], [ -1.10278, 52.66548 ], [ -1.10424, 52.66499 ], [ -1.10466, 52.6651 ], [ -1.10452, 52.66537 ], [ -1.10625, 52.66587 ], [ -1.10755, 52.6662 ], [ -1.10815, 52.66603 ], [ -1.1083, 52.66573 ], [ -1.10586, 52.66486 ], [ -1.10612, 52.66451 ], [ -1.10979, 52.66512 ], [ -1.10984, 52.66531 ], [ -1.11048, 52.66491 ], [ -1.11077, 52.66488 ], [ -1.11223, 52.66476 ], [ -1.11109, 52.66547 ], [ -1.11365, 52.66571 ], [ -1.11527, 52.66635 ], [ -1.116, 52.66628 ], [ -1.11618, 52.66717 ], [ -1.11802, 52.66669 ], [ -1.1174, 52.66573 ], [ -1.11853, 52.66457 ], [ -1.11716, 52.66366 ], [ -1.11859, 52.66329 ], [ -1.11927, 52.66259 ], [ -1.12085, 52.66085 ], [ -1.12157, 52.66082 ], [ -1.12336, 52.66165 ], [ -1.12455, 52.66078 ], [ -1.12682, 52.66295 ], [ -1.12909, 52.66539 ], [ -1.12819, 52.66516 ], [ -1.1266, 52.66701 ], [ -1.12514, 52.66793 ], [ -1.12161, 52.6695 ], [ -1.12092, 52.67019 ], [ -1.12091, 52.671 ], [ -1.12099, 52.67181 ], [ -1.11972, 52.67178 ], [ -1.11887, 52.67316 ], [ -1.11495, 52.67279 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002829", "population": 11300, "outputarea_code": "E00068657", "lsoa_code": "E01013604", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester West", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.13902, "latitude": 52.66487, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.13833, 52.65302 ], [ -1.13895, 52.65313 ], [ -1.1379, 52.65489 ], [ -1.14061, 52.65556 ], [ -1.14009, 52.65638 ], [ -1.13977, 52.65676 ], [ -1.14035, 52.65721 ], [ -1.13946, 52.65748 ], [ -1.14022, 52.65783 ], [ -1.14128, 52.6583 ], [ -1.14237, 52.65803 ], [ -1.14297, 52.65841 ], [ -1.14411, 52.65844 ], [ -1.14452, 52.65862 ], [ -1.14443, 52.65904 ], [ -1.14554, 52.65933 ], [ -1.14767, 52.66064 ], [ -1.14858, 52.66168 ], [ -1.14889, 52.66207 ], [ -1.15084, 52.66454 ], [ -1.15119, 52.66527 ], [ -1.15146, 52.66599 ], [ -1.15247, 52.66782 ], [ -1.15313, 52.66908 ], [ -1.15332, 52.6697 ], [ -1.15317, 52.67099 ], [ -1.14981, 52.67495 ], [ -1.14945, 52.67495 ], [ -1.14577, 52.67507 ], [ -1.14484, 52.67516 ], [ -1.13771, 52.67537 ], [ -1.13543, 52.67536 ], [ -1.13527, 52.67335 ], [ -1.1331, 52.67311 ], [ -1.13302, 52.66973 ], [ -1.12986, 52.66953 ], [ -1.12989, 52.66922 ], [ -1.12936, 52.66915 ], [ -1.12941, 52.66702 ], [ -1.1292, 52.66539 ], [ -1.12909, 52.66539 ], [ -1.12682, 52.66295 ], [ -1.12819, 52.66147 ], [ -1.12824, 52.66056 ], [ -1.12715, 52.65973 ], [ -1.12545, 52.65726 ], [ -1.12538, 52.65715 ], [ -1.12512, 52.65672 ], [ -1.12546, 52.65555 ], [ -1.12687, 52.65484 ], [ -1.12985, 52.65288 ], [ -1.13, 52.65188 ], [ -1.13482, 52.65325 ], [ -1.13465, 52.65507 ], [ -1.13624, 52.65567 ], [ -1.1361, 52.65592 ], [ -1.13833, 52.65302 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002830", "population": 10145, "outputarea_code": "E00068739", "lsoa_code": "E01013623", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester West", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.16799, "latitude": 52.66004, "pgroup": "100k" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.15991, 52.65273 ], [ -1.15749, 52.65112 ], [ -1.15667, 52.65042 ], [ -1.15731, 52.6501 ], [ -1.16043, 52.64856 ], [ -1.16039, 52.64785 ], [ -1.16046, 52.64787 ], [ -1.1653, 52.64936 ], [ -1.16867, 52.65027 ], [ -1.17686, 52.65227 ], [ -1.18292, 52.65302 ], [ -1.18451, 52.65334 ], [ -1.18421, 52.65651 ], [ -1.18417, 52.65681 ], [ -1.18412, 52.65716 ], [ -1.18436, 52.6591 ], [ -1.18521, 52.66064 ], [ -1.17889, 52.66317 ], [ -1.17665, 52.6643 ], [ -1.17748, 52.66527 ], [ -1.17697, 52.66565 ], [ -1.17771, 52.66801 ], [ -1.17886, 52.6691 ], [ -1.18022, 52.66936 ], [ -1.17796, 52.67148 ], [ -1.17895, 52.67316 ], [ -1.17789, 52.67409 ], [ -1.17798, 52.67539 ], [ -1.17846, 52.67538 ], [ -1.17841, 52.67559 ], [ -1.17909, 52.6764 ], [ -1.17793, 52.67723 ], [ -1.17805, 52.678 ], [ -1.17768, 52.67821 ], [ -1.17681, 52.67849 ], [ -1.1749, 52.67833 ], [ -1.17438, 52.67855 ], [ -1.17037, 52.67623 ], [ -1.16989, 52.67536 ], [ -1.17112, 52.67478 ], [ -1.16995, 52.67452 ], [ -1.17081, 52.67405 ], [ -1.172, 52.67481 ], [ -1.17374, 52.67508 ], [ -1.17287, 52.67415 ], [ -1.17185, 52.67385 ], [ -1.1727, 52.67305 ], [ -1.17205, 52.67231 ], [ -1.17126, 52.67182 ], [ -1.17381, 52.67142 ], [ -1.17332, 52.67076 ], [ -1.17392, 52.66998 ], [ -1.1742, 52.66996 ], [ -1.17395, 52.66908 ], [ -1.17271, 52.66845 ], [ -1.17246, 52.66787 ], [ -1.17089, 52.66785 ], [ -1.17068, 52.66887 ], [ -1.17047, 52.66969 ], [ -1.16968, 52.66934 ], [ -1.16838, 52.66755 ], [ -1.16853, 52.66752 ], [ -1.16856, 52.6665 ], [ -1.16407, 52.66646 ], [ -1.16369, 52.66536 ], [ -1.16448, 52.66485 ], [ -1.16345, 52.66387 ], [ -1.1664, 52.66283 ], [ -1.1671, 52.66299 ], [ -1.167, 52.66253 ], [ -1.1681, 52.66194 ], [ -1.16748, 52.66147 ], [ -1.16549, 52.6617 ], [ -1.16426, 52.66115 ], [ -1.16208, 52.66203 ], [ -1.16042, 52.66233 ], [ -1.15919, 52.66227 ], [ -1.15773, 52.66209 ], [ -1.15767, 52.6623 ], [ -1.1577, 52.6628 ], [ -1.15656, 52.66257 ], [ -1.15602, 52.6628 ], [ -1.15495, 52.66383 ], [ -1.15441, 52.66407 ], [ -1.15443, 52.66486 ], [ -1.15361, 52.66474 ], [ -1.15334, 52.66417 ], [ -1.15129, 52.66423 ], [ -1.15157, 52.6649 ], [ -1.15119, 52.66527 ], [ -1.15084, 52.66454 ], [ -1.14889, 52.66207 ], [ -1.14858, 52.66168 ], [ -1.14767, 52.66064 ], [ -1.14554, 52.65933 ], [ -1.14557, 52.65927 ], [ -1.14617, 52.65834 ], [ -1.14664, 52.65764 ], [ -1.14698, 52.65786 ], [ -1.1477, 52.65764 ], [ -1.14818, 52.65741 ], [ -1.15001, 52.65797 ], [ -1.15332, 52.65713 ], [ -1.15387, 52.65683 ], [ -1.15209, 52.65592 ], [ -1.14952, 52.65519 ], [ -1.15081, 52.65382 ], [ -1.15198, 52.6525 ], [ -1.15691, 52.65293 ], [ -1.15574, 52.65401 ], [ -1.15742, 52.65476 ], [ -1.1586, 52.65399 ], [ -1.15991, 52.65273 ] ] ], [ [ [ -1.15443, 52.66486 ], [ -1.1545, 52.66487 ], [ -1.15444, 52.66511 ], [ -1.15443, 52.66486 ] ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002831", "population": 6701, "outputarea_code": "E00069303", "lsoa_code": "E01013739", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester East", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.10055, "latitude": 52.65911, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.09209, 52.65239 ], [ -1.09267, 52.65183 ], [ -1.09295, 52.65155 ], [ -1.09316, 52.6516 ], [ -1.09417, 52.65186 ], [ -1.09869, 52.65269 ], [ -1.10004, 52.65328 ], [ -1.10081, 52.65365 ], [ -1.10294, 52.65441 ], [ -1.10387, 52.65404 ], [ -1.10606, 52.65476 ], [ -1.10705, 52.65496 ], [ -1.10583, 52.65638 ], [ -1.10757, 52.65738 ], [ -1.10988, 52.65864 ], [ -1.10865, 52.65919 ], [ -1.10965, 52.65942 ], [ -1.11004, 52.66051 ], [ -1.10651, 52.66342 ], [ -1.1078, 52.66432 ], [ -1.10896, 52.66441 ], [ -1.10979, 52.66512 ], [ -1.10612, 52.66451 ], [ -1.10586, 52.66486 ], [ -1.1083, 52.66573 ], [ -1.10815, 52.66603 ], [ -1.10755, 52.6662 ], [ -1.10625, 52.66587 ], [ -1.10452, 52.66537 ], [ -1.10466, 52.6651 ], [ -1.10424, 52.66499 ], [ -1.10278, 52.66548 ], [ -1.10232, 52.66595 ], [ -1.10272, 52.66616 ], [ -1.10236, 52.66605 ], [ -1.10134, 52.66575 ], [ -1.10072, 52.66557 ], [ -1.10014, 52.66541 ], [ -1.09953, 52.66624 ], [ -1.09987, 52.66669 ], [ -1.09958, 52.66718 ], [ -1.09809, 52.66712 ], [ -1.09775, 52.66705 ], [ -1.09805, 52.66652 ], [ -1.09679, 52.66595 ], [ -1.09626, 52.66541 ], [ -1.09786, 52.66577 ], [ -1.0984, 52.66491 ], [ -1.09803, 52.66481 ], [ -1.09399, 52.66367 ], [ -1.09643, 52.65991 ], [ -1.0974, 52.65841 ], [ -1.09482, 52.65924 ], [ -1.09464, 52.65864 ], [ -1.09662, 52.65812 ], [ -1.09741, 52.65751 ], [ -1.09777, 52.65783 ], [ -1.09877, 52.65629 ], [ -1.09837, 52.65591 ], [ -1.09792, 52.656 ], [ -1.09824, 52.6565 ], [ -1.09745, 52.65671 ], [ -1.09645, 52.65636 ], [ -1.09703, 52.65538 ], [ -1.09491, 52.65625 ], [ -1.09473, 52.65665 ], [ -1.09265, 52.65561 ], [ -1.09219, 52.65588 ], [ -1.08779, 52.65542 ], [ -1.09209, 52.65239 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002832", "population": 9003, "outputarea_code": "E00068785", "lsoa_code": "E01013625", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester East", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.12038, "latitude": 52.65757, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.12688, 52.64539 ], [ -1.12827, 52.64621 ], [ -1.12804, 52.64693 ], [ -1.1291, 52.64859 ], [ -1.1301, 52.65016 ], [ -1.13, 52.65188 ], [ -1.12985, 52.65288 ], [ -1.12687, 52.65484 ], [ -1.12546, 52.65555 ], [ -1.12512, 52.65672 ], [ -1.12538, 52.65715 ], [ -1.12545, 52.65726 ], [ -1.12715, 52.65973 ], [ -1.12824, 52.66056 ], [ -1.12819, 52.66147 ], [ -1.12682, 52.66295 ], [ -1.12455, 52.66078 ], [ -1.12336, 52.66165 ], [ -1.12157, 52.66082 ], [ -1.12085, 52.66085 ], [ -1.11927, 52.66259 ], [ -1.11859, 52.66329 ], [ -1.11716, 52.66366 ], [ -1.11853, 52.66457 ], [ -1.1174, 52.66573 ], [ -1.11802, 52.66669 ], [ -1.11618, 52.66717 ], [ -1.116, 52.66628 ], [ -1.11527, 52.66635 ], [ -1.11365, 52.66571 ], [ -1.11109, 52.66547 ], [ -1.11223, 52.66476 ], [ -1.11077, 52.66488 ], [ -1.11048, 52.66491 ], [ -1.10984, 52.66531 ], [ -1.10979, 52.66512 ], [ -1.10896, 52.66441 ], [ -1.1078, 52.66432 ], [ -1.10651, 52.66342 ], [ -1.11004, 52.66051 ], [ -1.10965, 52.65942 ], [ -1.11153, 52.65991 ], [ -1.11395, 52.66054 ], [ -1.11526, 52.65899 ], [ -1.11655, 52.6594 ], [ -1.11687, 52.65902 ], [ -1.11784, 52.65931 ], [ -1.11838, 52.6583 ], [ -1.1165, 52.65748 ], [ -1.11605, 52.65734 ], [ -1.11607, 52.65695 ], [ -1.11694, 52.65686 ], [ -1.11699, 52.65629 ], [ -1.11776, 52.65602 ], [ -1.11809, 52.65561 ], [ -1.11824, 52.65543 ], [ -1.11874, 52.65482 ], [ -1.11915, 52.65432 ], [ -1.11869, 52.65418 ], [ -1.11883, 52.65393 ], [ -1.11805, 52.6537 ], [ -1.11935, 52.65309 ], [ -1.11985, 52.65323 ], [ -1.12048, 52.65244 ], [ -1.12069, 52.65218 ], [ -1.12123, 52.65152 ], [ -1.12127, 52.65146 ], [ -1.1216, 52.65106 ], [ -1.12178, 52.65126 ], [ -1.12214, 52.65091 ], [ -1.12188, 52.65079 ], [ -1.12305, 52.64922 ], [ -1.1264, 52.65004 ], [ -1.12645, 52.64958 ], [ -1.12653, 52.64913 ], [ -1.12652, 52.64888 ], [ -1.12656, 52.64818 ], [ -1.12659, 52.64758 ], [ -1.12426, 52.6477 ], [ -1.12408, 52.64791 ], [ -1.12363, 52.64781 ], [ -1.12409, 52.64726 ], [ -1.12443, 52.64732 ], [ -1.12595, 52.64523 ], [ -1.12688, 52.64539 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002833", "population": 8500, "outputarea_code": "E00068784", "lsoa_code": "E01013630", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester East", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.11072, "latitude": 52.65453, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.1054, 52.64878 ], [ -1.10722, 52.64952 ], [ -1.1076, 52.64967 ], [ -1.11061, 52.65059 ], [ -1.11124, 52.65077 ], [ -1.11413, 52.65161 ], [ -1.11594, 52.65213 ], [ -1.11648, 52.65228 ], [ -1.11677, 52.65236 ], [ -1.11935, 52.65309 ], [ -1.11805, 52.6537 ], [ -1.11883, 52.65393 ], [ -1.11869, 52.65418 ], [ -1.11915, 52.65432 ], [ -1.11874, 52.65482 ], [ -1.11824, 52.65543 ], [ -1.11809, 52.65561 ], [ -1.11776, 52.65602 ], [ -1.11699, 52.65629 ], [ -1.11694, 52.65686 ], [ -1.11607, 52.65695 ], [ -1.11605, 52.65734 ], [ -1.1165, 52.65748 ], [ -1.11838, 52.6583 ], [ -1.11784, 52.65931 ], [ -1.11687, 52.65902 ], [ -1.11655, 52.6594 ], [ -1.11526, 52.65899 ], [ -1.11395, 52.66054 ], [ -1.11153, 52.65991 ], [ -1.10965, 52.65942 ], [ -1.10865, 52.65919 ], [ -1.10988, 52.65864 ], [ -1.10757, 52.65738 ], [ -1.10583, 52.65638 ], [ -1.10705, 52.65496 ], [ -1.10606, 52.65476 ], [ -1.10387, 52.65404 ], [ -1.10294, 52.65441 ], [ -1.10081, 52.65365 ], [ -1.10117, 52.65321 ], [ -1.10275, 52.6514 ], [ -1.1054, 52.64878 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002834", "population": 10205, "outputarea_code": "E00068660", "lsoa_code": "E01013606", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester West", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.14267, "latitude": 52.64788, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.13649, 52.63911 ], [ -1.13971, 52.63696 ], [ -1.14032, 52.63596 ], [ -1.14017, 52.63492 ], [ -1.14159, 52.6343 ], [ -1.14153, 52.63377 ], [ -1.14233, 52.63372 ], [ -1.14476, 52.63601 ], [ -1.14569, 52.63879 ], [ -1.14582, 52.64111 ], [ -1.14531, 52.64228 ], [ -1.1443, 52.6429 ], [ -1.14048, 52.64421 ], [ -1.14083, 52.64507 ], [ -1.14109, 52.64538 ], [ -1.14142, 52.64497 ], [ -1.14221, 52.64508 ], [ -1.14223, 52.6445 ], [ -1.1428, 52.6441 ], [ -1.14802, 52.64523 ], [ -1.14849, 52.64447 ], [ -1.14932, 52.64452 ], [ -1.1496, 52.64481 ], [ -1.15124, 52.64457 ], [ -1.15138, 52.64422 ], [ -1.15682, 52.64515 ], [ -1.15749, 52.64553 ], [ -1.15939, 52.64748 ], [ -1.16039, 52.64785 ], [ -1.16043, 52.64856 ], [ -1.15731, 52.6501 ], [ -1.15667, 52.65042 ], [ -1.15749, 52.65112 ], [ -1.15991, 52.65273 ], [ -1.1586, 52.65399 ], [ -1.15742, 52.65476 ], [ -1.15574, 52.65401 ], [ -1.15691, 52.65293 ], [ -1.15198, 52.6525 ], [ -1.15081, 52.65382 ], [ -1.14952, 52.65519 ], [ -1.15209, 52.65592 ], [ -1.15387, 52.65683 ], [ -1.15332, 52.65713 ], [ -1.15001, 52.65797 ], [ -1.14818, 52.65741 ], [ -1.1477, 52.65764 ], [ -1.14698, 52.65786 ], [ -1.14664, 52.65764 ], [ -1.14617, 52.65834 ], [ -1.14557, 52.65927 ], [ -1.14554, 52.65933 ], [ -1.14443, 52.65904 ], [ -1.14452, 52.65862 ], [ -1.14411, 52.65844 ], [ -1.14297, 52.65841 ], [ -1.14237, 52.65803 ], [ -1.14128, 52.6583 ], [ -1.14022, 52.65783 ], [ -1.13946, 52.65748 ], [ -1.14035, 52.65721 ], [ -1.13977, 52.65676 ], [ -1.14009, 52.65638 ], [ -1.14061, 52.65556 ], [ -1.1379, 52.65489 ], [ -1.13895, 52.65313 ], [ -1.13833, 52.65302 ], [ -1.1361, 52.65592 ], [ -1.13624, 52.65567 ], [ -1.13465, 52.65507 ], [ -1.13482, 52.65325 ], [ -1.13, 52.65188 ], [ -1.1301, 52.65016 ], [ -1.1291, 52.64859 ], [ -1.12804, 52.64693 ], [ -1.12827, 52.64621 ], [ -1.12688, 52.64539 ], [ -1.12724, 52.64505 ], [ -1.12648, 52.64468 ], [ -1.12838, 52.64257 ], [ -1.12956, 52.64128 ], [ -1.13071, 52.64139 ], [ -1.13317, 52.64049 ], [ -1.13591, 52.63937 ], [ -1.13649, 52.63911 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002835", "population": 14295, "outputarea_code": "E00069125", "lsoa_code": "E01013696", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester East", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.07517, "latitude": 52.6533, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.08704, 52.64384 ], [ -1.08697, 52.64418 ], [ -1.08605, 52.64419 ], [ -1.08541, 52.64527 ], [ -1.08527, 52.64563 ], [ -1.08592, 52.64575 ], [ -1.09305, 52.64579 ], [ -1.09413, 52.64625 ], [ -1.09268, 52.64777 ], [ -1.09489, 52.64848 ], [ -1.09505, 52.64861 ], [ -1.09295, 52.65155 ], [ -1.09267, 52.65183 ], [ -1.09209, 52.65239 ], [ -1.08779, 52.65542 ], [ -1.08691, 52.65594 ], [ -1.08303, 52.65644 ], [ -1.08186, 52.65685 ], [ -1.07995, 52.65752 ], [ -1.07948, 52.65768 ], [ -1.07808, 52.66023 ], [ -1.07697, 52.65934 ], [ -1.0762, 52.65971 ], [ -1.07569, 52.6605 ], [ -1.07653, 52.66074 ], [ -1.07644, 52.66201 ], [ -1.0759, 52.66306 ], [ -1.07458, 52.66376 ], [ -1.07329, 52.66507 ], [ -1.07049, 52.66511 ], [ -1.06533, 52.66343 ], [ -1.06445, 52.66473 ], [ -1.06442, 52.66469 ], [ -1.06261, 52.66394 ], [ -1.06065, 52.66369 ], [ -1.05976, 52.66385 ], [ -1.05966, 52.66358 ], [ -1.05889, 52.66373 ], [ -1.05869, 52.66348 ], [ -1.05762, 52.66392 ], [ -1.05676, 52.66384 ], [ -1.05759, 52.66145 ], [ -1.05898, 52.65762 ], [ -1.05894, 52.65645 ], [ -1.05908, 52.65612 ], [ -1.06035, 52.65354 ], [ -1.06243, 52.65383 ], [ -1.06333, 52.65335 ], [ -1.06443, 52.65331 ], [ -1.06442, 52.65239 ], [ -1.06541, 52.65166 ], [ -1.06704, 52.65197 ], [ -1.06765, 52.65131 ], [ -1.06734, 52.6511 ], [ -1.06591, 52.65061 ], [ -1.06292, 52.65133 ], [ -1.06286, 52.65098 ], [ -1.06283, 52.65079 ], [ -1.06493, 52.6506 ], [ -1.06558, 52.64994 ], [ -1.06739, 52.64971 ], [ -1.0675, 52.64921 ], [ -1.06705, 52.64874 ], [ -1.06647, 52.64887 ], [ -1.06635, 52.64852 ], [ -1.06613, 52.64788 ], [ -1.06687, 52.64775 ], [ -1.06736, 52.64719 ], [ -1.06933, 52.64688 ], [ -1.06987, 52.64645 ], [ -1.06985, 52.64583 ], [ -1.06906, 52.64492 ], [ -1.06984, 52.64464 ], [ -1.06976, 52.64429 ], [ -1.07184, 52.6439 ], [ -1.07221, 52.64392 ], [ -1.07226, 52.64348 ], [ -1.07788, 52.64279 ], [ -1.07808, 52.64276 ], [ -1.0842, 52.64203 ], [ -1.08455, 52.64199 ], [ -1.08604, 52.64205 ], [ -1.08696, 52.64207 ], [ -1.08736, 52.64229 ], [ -1.08704, 52.64384 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002836", "population": 9575, "outputarea_code": "E00069218", "lsoa_code": "E01013717", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester East", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.11663, "latitude": 52.64691, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.10972, 52.6448 ], [ -1.11214, 52.64258 ], [ -1.11449, 52.6404 ], [ -1.11794, 52.63976 ], [ -1.11845, 52.64032 ], [ -1.11832, 52.64088 ], [ -1.11802, 52.64178 ], [ -1.11851, 52.64253 ], [ -1.12072, 52.64321 ], [ -1.12227, 52.64354 ], [ -1.12508, 52.64423 ], [ -1.12648, 52.64468 ], [ -1.12724, 52.64505 ], [ -1.12688, 52.64539 ], [ -1.12595, 52.64523 ], [ -1.12443, 52.64732 ], [ -1.12409, 52.64726 ], [ -1.12363, 52.64781 ], [ -1.12408, 52.64791 ], [ -1.12426, 52.6477 ], [ -1.12659, 52.64758 ], [ -1.12656, 52.64818 ], [ -1.12652, 52.64888 ], [ -1.12653, 52.64913 ], [ -1.12645, 52.64958 ], [ -1.1264, 52.65004 ], [ -1.12305, 52.64922 ], [ -1.12188, 52.65079 ], [ -1.12214, 52.65091 ], [ -1.12178, 52.65126 ], [ -1.1216, 52.65106 ], [ -1.12127, 52.65146 ], [ -1.12123, 52.65152 ], [ -1.12069, 52.65218 ], [ -1.12048, 52.65244 ], [ -1.11985, 52.65323 ], [ -1.11935, 52.65309 ], [ -1.11677, 52.65236 ], [ -1.11648, 52.65228 ], [ -1.11594, 52.65213 ], [ -1.11413, 52.65161 ], [ -1.11124, 52.65077 ], [ -1.11061, 52.65059 ], [ -1.1076, 52.64967 ], [ -1.10722, 52.64952 ], [ -1.1054, 52.64878 ], [ -1.10697, 52.64734 ], [ -1.10872, 52.64571 ], [ -1.10916, 52.6453 ], [ -1.10972, 52.6448 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002837", "population": 8284, "outputarea_code": "E00068914", "lsoa_code": "E01013651", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester East", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.09822, "latitude": 52.64653, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.08704, 52.64384 ], [ -1.08736, 52.64229 ], [ -1.08696, 52.64207 ], [ -1.0917, 52.64219 ], [ -1.09637, 52.64219 ], [ -1.09743, 52.64217 ], [ -1.09798, 52.64217 ], [ -1.1006, 52.64209 ], [ -1.10097, 52.64209 ], [ -1.10395, 52.64234 ], [ -1.10373, 52.64254 ], [ -1.10381, 52.64263 ], [ -1.10418, 52.64265 ], [ -1.10588, 52.64352 ], [ -1.10567, 52.64375 ], [ -1.10586, 52.64403 ], [ -1.10836, 52.64423 ], [ -1.10765, 52.6445 ], [ -1.10836, 52.64476 ], [ -1.10836, 52.64445 ], [ -1.10879, 52.64441 ], [ -1.10916, 52.6453 ], [ -1.10872, 52.64571 ], [ -1.10697, 52.64734 ], [ -1.1054, 52.64878 ], [ -1.10275, 52.6514 ], [ -1.10117, 52.65321 ], [ -1.10081, 52.65365 ], [ -1.10004, 52.65328 ], [ -1.09869, 52.65269 ], [ -1.09417, 52.65186 ], [ -1.09316, 52.6516 ], [ -1.09295, 52.65155 ], [ -1.09505, 52.64861 ], [ -1.09489, 52.64848 ], [ -1.09268, 52.64777 ], [ -1.09413, 52.64625 ], [ -1.09305, 52.64579 ], [ -1.08592, 52.64575 ], [ -1.08527, 52.64563 ], [ -1.08541, 52.64527 ], [ -1.08605, 52.64419 ], [ -1.08697, 52.64418 ], [ -1.08704, 52.64384 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002838", "population": 8026, "outputarea_code": "E00069247", "lsoa_code": "E01013721", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester West", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.16879, "latitude": 52.64438, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.1609, 52.63996 ], [ -1.16083, 52.63962 ], [ -1.16067, 52.63757 ], [ -1.16148, 52.63751 ], [ -1.16438, 52.63894 ], [ -1.16468, 52.6395 ], [ -1.16551, 52.63967 ], [ -1.16911, 52.64035 ], [ -1.16992, 52.6406 ], [ -1.17064, 52.64039 ], [ -1.17026, 52.64072 ], [ -1.17093, 52.64092 ], [ -1.17306, 52.63907 ], [ -1.17474, 52.63991 ], [ -1.17567, 52.63908 ], [ -1.18317, 52.64221 ], [ -1.18362, 52.6426 ], [ -1.18255, 52.64359 ], [ -1.18341, 52.64357 ], [ -1.18419, 52.64313 ], [ -1.18463, 52.64358 ], [ -1.18547, 52.64363 ], [ -1.18543, 52.64367 ], [ -1.18258, 52.64712 ], [ -1.18209, 52.64675 ], [ -1.18259, 52.64613 ], [ -1.18164, 52.64591 ], [ -1.18049, 52.64588 ], [ -1.18016, 52.64624 ], [ -1.18071, 52.64663 ], [ -1.17989, 52.64693 ], [ -1.17955, 52.64686 ], [ -1.17906, 52.64675 ], [ -1.17867, 52.64724 ], [ -1.17796, 52.64737 ], [ -1.1774, 52.64847 ], [ -1.17677, 52.64869 ], [ -1.17513, 52.64836 ], [ -1.17314, 52.64731 ], [ -1.17303, 52.64783 ], [ -1.17593, 52.64912 ], [ -1.17576, 52.6496 ], [ -1.17518, 52.64972 ], [ -1.17463, 52.64948 ], [ -1.17436, 52.65015 ], [ -1.17368, 52.64996 ], [ -1.17361, 52.65016 ], [ -1.17323, 52.65052 ], [ -1.17366, 52.65134 ], [ -1.17528, 52.65145 ], [ -1.17565, 52.65189 ], [ -1.17652, 52.65189 ], [ -1.17686, 52.65227 ], [ -1.16867, 52.65027 ], [ -1.1653, 52.64936 ], [ -1.16046, 52.64787 ], [ -1.16039, 52.64785 ], [ -1.15939, 52.64748 ], [ -1.15749, 52.64553 ], [ -1.15682, 52.64515 ], [ -1.15138, 52.64422 ], [ -1.14965, 52.64398 ], [ -1.1506, 52.64266 ], [ -1.15082, 52.6423 ], [ -1.15117, 52.64165 ], [ -1.15134, 52.64133 ], [ -1.15442, 52.64145 ], [ -1.15825, 52.64207 ], [ -1.15873, 52.64218 ], [ -1.16114, 52.64281 ], [ -1.16099, 52.64049 ], [ -1.1609, 52.63996 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002839", "population": 7930, "outputarea_code": "E00069131", "lsoa_code": "E01013700", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester East", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.06777, "latitude": 52.64329, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.06497, 52.63436 ], [ -1.06754, 52.63573 ], [ -1.07171, 52.63723 ], [ -1.07526, 52.63819 ], [ -1.07582, 52.63831 ], [ -1.07843, 52.639 ], [ -1.08258, 52.6411 ], [ -1.08297, 52.64127 ], [ -1.08455, 52.64199 ], [ -1.0842, 52.64203 ], [ -1.07808, 52.64276 ], [ -1.07788, 52.64279 ], [ -1.07226, 52.64348 ], [ -1.07221, 52.64392 ], [ -1.07184, 52.6439 ], [ -1.06976, 52.64429 ], [ -1.06984, 52.64464 ], [ -1.06906, 52.64492 ], [ -1.06985, 52.64583 ], [ -1.06987, 52.64645 ], [ -1.06933, 52.64688 ], [ -1.06736, 52.64719 ], [ -1.06687, 52.64775 ], [ -1.06613, 52.64788 ], [ -1.06635, 52.64852 ], [ -1.06647, 52.64887 ], [ -1.06705, 52.64874 ], [ -1.0675, 52.64921 ], [ -1.06739, 52.64971 ], [ -1.06558, 52.64994 ], [ -1.06493, 52.6506 ], [ -1.06283, 52.65079 ], [ -1.06286, 52.65098 ], [ -1.06292, 52.65133 ], [ -1.06591, 52.65061 ], [ -1.06734, 52.6511 ], [ -1.06765, 52.65131 ], [ -1.06704, 52.65197 ], [ -1.06541, 52.65166 ], [ -1.06442, 52.65239 ], [ -1.06443, 52.65331 ], [ -1.06333, 52.65335 ], [ -1.06243, 52.65383 ], [ -1.06035, 52.65354 ], [ -1.05993, 52.65174 ], [ -1.0591, 52.65155 ], [ -1.05943, 52.6513 ], [ -1.05914, 52.65108 ], [ -1.05779, 52.65038 ], [ -1.0571, 52.65058 ], [ -1.05696, 52.64999 ], [ -1.05573, 52.6507 ], [ -1.05551, 52.65001 ], [ -1.05595, 52.65013 ], [ -1.05742, 52.64943 ], [ -1.05874, 52.64945 ], [ -1.05878, 52.64914 ], [ -1.06065, 52.64959 ], [ -1.06118, 52.64921 ], [ -1.06186, 52.64876 ], [ -1.0616, 52.64858 ], [ -1.06043, 52.64888 ], [ -1.06031, 52.64763 ], [ -1.0604, 52.64674 ], [ -1.05988, 52.64628 ], [ -1.05928, 52.64646 ], [ -1.05934, 52.64416 ], [ -1.05953, 52.64322 ], [ -1.06216, 52.6432 ], [ -1.06462, 52.64337 ], [ -1.06468, 52.64303 ], [ -1.06353, 52.64263 ], [ -1.06259, 52.64268 ], [ -1.06255, 52.64202 ], [ -1.06201, 52.64188 ], [ -1.06233, 52.64157 ], [ -1.06309, 52.64171 ], [ -1.06319, 52.64144 ], [ -1.06388, 52.64144 ], [ -1.06374, 52.64093 ], [ -1.06414, 52.64077 ], [ -1.06271, 52.6401 ], [ -1.06238, 52.64035 ], [ -1.0615, 52.63997 ], [ -1.06135, 52.63947 ], [ -1.06173, 52.63962 ], [ -1.06271, 52.63891 ], [ -1.06177, 52.63782 ], [ -1.06209, 52.63719 ], [ -1.06245, 52.6376 ], [ -1.06313, 52.63743 ], [ -1.06287, 52.63683 ], [ -1.06371, 52.63659 ], [ -1.06405, 52.63713 ], [ -1.06509, 52.63726 ], [ -1.06545, 52.63663 ], [ -1.06141, 52.63562 ], [ -1.06158, 52.63539 ], [ -1.06339, 52.63602 ], [ -1.0638, 52.63562 ], [ -1.06496, 52.63536 ], [ -1.06449, 52.63483 ], [ -1.06497, 52.63436 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002842", "population": 8151, "outputarea_code": "E00069055", "lsoa_code": "E01013681", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester West", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.15015, "latitude": 52.6395, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.14233, 52.63372 ], [ -1.14504, 52.63381 ], [ -1.1502, 52.63415 ], [ -1.15108, 52.6341 ], [ -1.15178, 52.63406 ], [ -1.15241, 52.63403 ], [ -1.15237, 52.63458 ], [ -1.15238, 52.63584 ], [ -1.15239, 52.63663 ], [ -1.15257, 52.63801 ], [ -1.15258, 52.63842 ], [ -1.15388, 52.63851 ], [ -1.15551, 52.63867 ], [ -1.16083, 52.63962 ], [ -1.1609, 52.63996 ], [ -1.16099, 52.64049 ], [ -1.16114, 52.64281 ], [ -1.15873, 52.64218 ], [ -1.15825, 52.64207 ], [ -1.15442, 52.64145 ], [ -1.15134, 52.64133 ], [ -1.15117, 52.64165 ], [ -1.15082, 52.6423 ], [ -1.1506, 52.64266 ], [ -1.14965, 52.64398 ], [ -1.15138, 52.64422 ], [ -1.15124, 52.64457 ], [ -1.1496, 52.64481 ], [ -1.14932, 52.64452 ], [ -1.14849, 52.64447 ], [ -1.14802, 52.64523 ], [ -1.1428, 52.6441 ], [ -1.14223, 52.6445 ], [ -1.14221, 52.64508 ], [ -1.14142, 52.64497 ], [ -1.14109, 52.64538 ], [ -1.14083, 52.64507 ], [ -1.14048, 52.64421 ], [ -1.1443, 52.6429 ], [ -1.14531, 52.64228 ], [ -1.14582, 52.64111 ], [ -1.14569, 52.63879 ], [ -1.14476, 52.63601 ], [ -1.14233, 52.63372 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002843", "population": 14238, "outputarea_code": "E00068917", "lsoa_code": "E01013654", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester East", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.10708, "latitude": 52.63844, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.10595, 52.63225 ], [ -1.1063, 52.6318 ], [ -1.10862, 52.63191 ], [ -1.10877, 52.63169 ], [ -1.11079, 52.63212 ], [ -1.11121, 52.63225 ], [ -1.11149, 52.63241 ], [ -1.11099, 52.6329 ], [ -1.1135, 52.63323 ], [ -1.11375, 52.63367 ], [ -1.11281, 52.6341 ], [ -1.11244, 52.63404 ], [ -1.11281, 52.63392 ], [ -1.11271, 52.63338 ], [ -1.11078, 52.63324 ], [ -1.11018, 52.63369 ], [ -1.11042, 52.63386 ], [ -1.10979, 52.63404 ], [ -1.11071, 52.63435 ], [ -1.11145, 52.63418 ], [ -1.11153, 52.63512 ], [ -1.11175, 52.63514 ], [ -1.11185, 52.63536 ], [ -1.11152, 52.63621 ], [ -1.11154, 52.6367 ], [ -1.11197, 52.63699 ], [ -1.11172, 52.63714 ], [ -1.11237, 52.63726 ], [ -1.11221, 52.63748 ], [ -1.11281, 52.63757 ], [ -1.11268, 52.63782 ], [ -1.11331, 52.63791 ], [ -1.11374, 52.63816 ], [ -1.11427, 52.63851 ], [ -1.11563, 52.63946 ], [ -1.11449, 52.6404 ], [ -1.11214, 52.64258 ], [ -1.10972, 52.6448 ], [ -1.10916, 52.6453 ], [ -1.10879, 52.64441 ], [ -1.10836, 52.64445 ], [ -1.10836, 52.64476 ], [ -1.10765, 52.6445 ], [ -1.10836, 52.64423 ], [ -1.10586, 52.64403 ], [ -1.10567, 52.64375 ], [ -1.10588, 52.64352 ], [ -1.10418, 52.64265 ], [ -1.10381, 52.64263 ], [ -1.10373, 52.64254 ], [ -1.10395, 52.64234 ], [ -1.10097, 52.64209 ], [ -1.1006, 52.64209 ], [ -1.09798, 52.64217 ], [ -1.09861, 52.6418 ], [ -1.09868, 52.64053 ], [ -1.09909, 52.63977 ], [ -1.09944, 52.63982 ], [ -1.09966, 52.63944 ], [ -1.1004, 52.63959 ], [ -1.10104, 52.63932 ], [ -1.10108, 52.63888 ], [ -1.10012, 52.6386 ], [ -1.09914, 52.63922 ], [ -1.09869, 52.63903 ], [ -1.099, 52.63854 ], [ -1.0999, 52.63772 ], [ -1.10037, 52.63792 ], [ -1.10129, 52.63706 ], [ -1.10201, 52.63735 ], [ -1.10292, 52.63651 ], [ -1.1038, 52.63725 ], [ -1.10398, 52.63626 ], [ -1.10308, 52.63589 ], [ -1.10358, 52.63566 ], [ -1.10337, 52.63516 ], [ -1.09999, 52.63379 ], [ -1.10067, 52.63369 ], [ -1.10134, 52.63405 ], [ -1.10191, 52.63359 ], [ -1.10248, 52.63343 ], [ -1.10328, 52.63274 ], [ -1.1033, 52.6337 ], [ -1.10415, 52.63363 ], [ -1.10485, 52.63287 ], [ -1.10555, 52.63211 ], [ -1.10595, 52.63225 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002844", "population": 11917, "outputarea_code": "E00069349", "lsoa_code": "E01013755", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.11972, "latitude": 52.63752, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.11708, 52.62996 ], [ -1.11785, 52.63026 ], [ -1.11837, 52.63046 ], [ -1.11977, 52.63133 ], [ -1.12005, 52.63154 ], [ -1.12054, 52.63188 ], [ -1.12198, 52.63309 ], [ -1.12303, 52.63347 ], [ -1.12437, 52.63353 ], [ -1.12339, 52.63425 ], [ -1.12305, 52.63511 ], [ -1.12351, 52.63785 ], [ -1.12392, 52.63827 ], [ -1.12577, 52.63944 ], [ -1.12629, 52.63969 ], [ -1.12956, 52.64128 ], [ -1.12838, 52.64257 ], [ -1.12648, 52.64468 ], [ -1.12508, 52.64423 ], [ -1.12227, 52.64354 ], [ -1.12072, 52.64321 ], [ -1.11851, 52.64253 ], [ -1.11802, 52.64178 ], [ -1.11832, 52.64088 ], [ -1.11845, 52.64032 ], [ -1.11794, 52.63976 ], [ -1.11449, 52.6404 ], [ -1.11563, 52.63946 ], [ -1.11427, 52.63851 ], [ -1.11374, 52.63816 ], [ -1.11331, 52.63791 ], [ -1.11268, 52.63782 ], [ -1.11281, 52.63757 ], [ -1.11221, 52.63748 ], [ -1.11237, 52.63726 ], [ -1.11172, 52.63714 ], [ -1.11197, 52.63699 ], [ -1.11154, 52.6367 ], [ -1.11152, 52.63621 ], [ -1.11185, 52.63536 ], [ -1.11175, 52.63514 ], [ -1.11153, 52.63512 ], [ -1.11145, 52.63418 ], [ -1.11071, 52.63435 ], [ -1.10979, 52.63404 ], [ -1.11042, 52.63386 ], [ -1.11018, 52.63369 ], [ -1.11078, 52.63324 ], [ -1.11271, 52.63338 ], [ -1.11281, 52.63392 ], [ -1.11244, 52.63404 ], [ -1.11281, 52.6341 ], [ -1.11375, 52.63367 ], [ -1.11403, 52.63362 ], [ -1.11566, 52.63196 ], [ -1.11426, 52.63118 ], [ -1.11434, 52.63106 ], [ -1.11593, 52.63084 ], [ -1.11708, 52.62996 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002845", "population": 10873, "outputarea_code": "E00068948", "lsoa_code": "E01013660", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester East", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.08397, "latitude": 52.63251, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.07638, 52.6233 ], [ -1.07698, 52.6221 ], [ -1.07679, 52.62123 ], [ -1.07696, 52.62105 ], [ -1.07622, 52.62095 ], [ -1.07669, 52.62059 ], [ -1.07809, 52.62153 ], [ -1.07958, 52.62157 ], [ -1.08014, 52.62192 ], [ -1.07973, 52.62236 ], [ -1.0804, 52.62271 ], [ -1.0809, 52.62213 ], [ -1.08697, 52.62261 ], [ -1.08788, 52.62241 ], [ -1.08858, 52.62179 ], [ -1.08918, 52.62198 ], [ -1.09027, 52.62174 ], [ -1.08825, 52.62636 ], [ -1.08805, 52.62793 ], [ -1.08828, 52.63007 ], [ -1.0883, 52.63022 ], [ -1.08844, 52.63124 ], [ -1.0893, 52.63246 ], [ -1.08853, 52.63262 ], [ -1.08861, 52.63315 ], [ -1.08875, 52.63444 ], [ -1.08897, 52.63512 ], [ -1.08859, 52.6352 ], [ -1.09, 52.63651 ], [ -1.09054, 52.63643 ], [ -1.09081, 52.63669 ], [ -1.09117, 52.63734 ], [ -1.09088, 52.63779 ], [ -1.09212, 52.63746 ], [ -1.09486, 52.6367 ], [ -1.09442, 52.63743 ], [ -1.09641, 52.63688 ], [ -1.09733, 52.63731 ], [ -1.09652, 52.63811 ], [ -1.09676, 52.63831 ], [ -1.099, 52.63854 ], [ -1.09869, 52.63903 ], [ -1.09914, 52.63922 ], [ -1.10012, 52.6386 ], [ -1.10108, 52.63888 ], [ -1.10104, 52.63932 ], [ -1.1004, 52.63959 ], [ -1.09966, 52.63944 ], [ -1.09944, 52.63982 ], [ -1.09909, 52.63977 ], [ -1.09868, 52.64053 ], [ -1.09861, 52.6418 ], [ -1.09798, 52.64217 ], [ -1.09743, 52.64217 ], [ -1.09637, 52.64219 ], [ -1.0917, 52.64219 ], [ -1.08696, 52.64207 ], [ -1.08604, 52.64205 ], [ -1.08455, 52.64199 ], [ -1.08297, 52.64127 ], [ -1.08381, 52.64101 ], [ -1.08344, 52.64057 ], [ -1.08187, 52.63875 ], [ -1.07987, 52.63849 ], [ -1.08007, 52.63752 ], [ -1.08016, 52.63719 ], [ -1.07976, 52.63716 ], [ -1.07735, 52.63694 ], [ -1.07558, 52.63613 ], [ -1.07717, 52.635 ], [ -1.07619, 52.6345 ], [ -1.07541, 52.63411 ], [ -1.07483, 52.63536 ], [ -1.07408, 52.63528 ], [ -1.07403, 52.63517 ], [ -1.07399, 52.63351 ], [ -1.07267, 52.63351 ], [ -1.07118, 52.63272 ], [ -1.07151, 52.63247 ], [ -1.07043, 52.63183 ], [ -1.07071, 52.63033 ], [ -1.07137, 52.6305 ], [ -1.07176, 52.63105 ], [ -1.07237, 52.63087 ], [ -1.07217, 52.63037 ], [ -1.07275, 52.62998 ], [ -1.07418, 52.62979 ], [ -1.07421, 52.62924 ], [ -1.07265, 52.62823 ], [ -1.07494, 52.62761 ], [ -1.07551, 52.62719 ], [ -1.07486, 52.62671 ], [ -1.07717, 52.62655 ], [ -1.07699, 52.62626 ], [ -1.0763, 52.62368 ], [ -1.07588, 52.62358 ], [ -1.07638, 52.6233 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002846", "population": 7298, "outputarea_code": "E00069263", "lsoa_code": "E01013729", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester West", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.17886, "latitude": 52.63476, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.19676, 52.63335 ], [ -1.19603, 52.63326 ], [ -1.19161, 52.63322 ], [ -1.18985, 52.63333 ], [ -1.19006, 52.63357 ], [ -1.19056, 52.63499 ], [ -1.1914, 52.63575 ], [ -1.19141, 52.63579 ], [ -1.19139, 52.63583 ], [ -1.19137, 52.63626 ], [ -1.19146, 52.63621 ], [ -1.19265, 52.63659 ], [ -1.192, 52.6372 ], [ -1.19144, 52.63682 ], [ -1.19137, 52.63677 ], [ -1.18988, 52.63834 ], [ -1.18875, 52.63808 ], [ -1.18785, 52.63838 ], [ -1.18734, 52.63809 ], [ -1.18372, 52.64211 ], [ -1.18351, 52.64235 ], [ -1.18317, 52.64221 ], [ -1.17567, 52.63908 ], [ -1.17474, 52.63991 ], [ -1.17306, 52.63907 ], [ -1.17093, 52.64092 ], [ -1.17026, 52.64072 ], [ -1.17064, 52.64039 ], [ -1.16992, 52.6406 ], [ -1.16911, 52.64035 ], [ -1.16551, 52.63967 ], [ -1.16468, 52.6395 ], [ -1.16438, 52.63894 ], [ -1.16148, 52.63751 ], [ -1.16067, 52.63757 ], [ -1.16083, 52.63962 ], [ -1.15551, 52.63867 ], [ -1.15388, 52.63851 ], [ -1.15258, 52.63842 ], [ -1.15257, 52.63801 ], [ -1.15239, 52.63663 ], [ -1.15397, 52.63572 ], [ -1.15669, 52.63618 ], [ -1.15682, 52.63589 ], [ -1.15691, 52.63568 ], [ -1.1574, 52.63608 ], [ -1.1586, 52.63558 ], [ -1.1585, 52.63555 ], [ -1.15732, 52.63538 ], [ -1.15871, 52.63332 ], [ -1.15966, 52.63333 ], [ -1.1599, 52.63305 ], [ -1.16007, 52.63305 ], [ -1.16023, 52.63305 ], [ -1.15888, 52.63289 ], [ -1.15975, 52.63179 ], [ -1.1612, 52.63222 ], [ -1.16097, 52.63062 ], [ -1.16111, 52.6299 ], [ -1.16044, 52.62903 ], [ -1.15902, 52.62887 ], [ -1.15896, 52.6285 ], [ -1.15968, 52.62741 ], [ -1.16031, 52.62736 ], [ -1.16056, 52.62693 ], [ -1.16402, 52.62873 ], [ -1.16465, 52.62906 ], [ -1.16514, 52.62931 ], [ -1.1675, 52.63047 ], [ -1.16997, 52.63145 ], [ -1.17148, 52.63192 ], [ -1.17249, 52.63215 ], [ -1.17589, 52.63262 ], [ -1.18067, 52.63263 ], [ -1.18165, 52.63254 ], [ -1.18257, 52.63242 ], [ -1.18882, 52.63125 ], [ -1.19088, 52.63084 ], [ -1.19156, 52.63072 ], [ -1.19446, 52.63014 ], [ -1.20021, 52.62917 ], [ -1.20547, 52.62887 ], [ -1.2084, 52.63041 ], [ -1.2085, 52.63489 ], [ -1.20664, 52.63529 ], [ -1.2047, 52.63515 ], [ -1.20302, 52.63465 ], [ -1.19676, 52.63335 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002847", "population": 10289, "outputarea_code": "E00068954", "lsoa_code": "E01013663", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester East", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.09715, "latitude": 52.63121, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.10496, 52.62454 ], [ -1.10474, 52.6233 ], [ -1.1062, 52.62286 ], [ -1.10851, 52.62359 ], [ -1.10831, 52.6238 ], [ -1.1062, 52.62335 ], [ -1.1067, 52.62367 ], [ -1.1058, 52.62476 ], [ -1.10702, 52.62481 ], [ -1.10706, 52.62513 ], [ -1.10629, 52.62634 ], [ -1.10705, 52.62656 ], [ -1.10617, 52.62661 ], [ -1.10533, 52.62798 ], [ -1.10452, 52.62793 ], [ -1.10432, 52.62821 ], [ -1.10476, 52.62834 ], [ -1.10473, 52.62881 ], [ -1.10588, 52.62908 ], [ -1.10504, 52.63039 ], [ -1.10536, 52.63102 ], [ -1.10482, 52.63135 ], [ -1.10561, 52.6316 ], [ -1.10555, 52.63211 ], [ -1.10485, 52.63287 ], [ -1.10415, 52.63363 ], [ -1.1033, 52.6337 ], [ -1.10328, 52.63274 ], [ -1.10248, 52.63343 ], [ -1.10191, 52.63359 ], [ -1.10134, 52.63405 ], [ -1.10067, 52.63369 ], [ -1.09999, 52.63379 ], [ -1.10337, 52.63516 ], [ -1.10358, 52.63566 ], [ -1.10308, 52.63589 ], [ -1.10398, 52.63626 ], [ -1.1038, 52.63725 ], [ -1.10292, 52.63651 ], [ -1.10201, 52.63735 ], [ -1.10129, 52.63706 ], [ -1.10037, 52.63792 ], [ -1.0999, 52.63772 ], [ -1.099, 52.63854 ], [ -1.09676, 52.63831 ], [ -1.09652, 52.63811 ], [ -1.09733, 52.63731 ], [ -1.09641, 52.63688 ], [ -1.09442, 52.63743 ], [ -1.09486, 52.6367 ], [ -1.09212, 52.63746 ], [ -1.09088, 52.63779 ], [ -1.09117, 52.63734 ], [ -1.09081, 52.63669 ], [ -1.09054, 52.63643 ], [ -1.09, 52.63651 ], [ -1.08859, 52.6352 ], [ -1.08897, 52.63512 ], [ -1.08875, 52.63444 ], [ -1.08861, 52.63315 ], [ -1.08853, 52.63262 ], [ -1.0893, 52.63246 ], [ -1.08844, 52.63124 ], [ -1.0883, 52.63022 ], [ -1.08828, 52.63007 ], [ -1.08805, 52.62793 ], [ -1.08825, 52.62636 ], [ -1.09102, 52.62641 ], [ -1.09153, 52.62638 ], [ -1.09563, 52.62626 ], [ -1.10074, 52.62738 ], [ -1.10078, 52.62732 ], [ -1.10214, 52.62437 ], [ -1.10242, 52.62413 ], [ -1.10496, 52.62454 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002848", "population": 11303, "outputarea_code": "E00069345", "lsoa_code": "E01013753", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.11197, "latitude": 52.62943, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.10705, 52.62656 ], [ -1.10785, 52.62561 ], [ -1.10877, 52.62591 ], [ -1.10789, 52.62678 ], [ -1.10838, 52.62672 ], [ -1.10928, 52.62581 ], [ -1.10979, 52.62614 ], [ -1.11044, 52.6261 ], [ -1.11089, 52.6263 ], [ -1.11026, 52.62689 ], [ -1.11108, 52.62716 ], [ -1.11058, 52.62731 ], [ -1.1109, 52.62737 ], [ -1.11061, 52.62768 ], [ -1.11058, 52.6279 ], [ -1.11153, 52.6277 ], [ -1.11328, 52.62785 ], [ -1.11359, 52.6281 ], [ -1.11422, 52.62791 ], [ -1.11378, 52.62754 ], [ -1.1143, 52.62723 ], [ -1.11372, 52.62718 ], [ -1.11464, 52.62667 ], [ -1.11493, 52.62671 ], [ -1.11521, 52.62682 ], [ -1.11493, 52.62804 ], [ -1.11594, 52.62827 ], [ -1.11644, 52.62805 ], [ -1.11658, 52.62722 ], [ -1.11584, 52.62721 ], [ -1.11558, 52.62691 ], [ -1.11789, 52.62722 ], [ -1.11848, 52.62697 ], [ -1.11896, 52.62682 ], [ -1.11977, 52.62729 ], [ -1.12163, 52.62851 ], [ -1.12002, 52.62947 ], [ -1.11988, 52.62956 ], [ -1.11837, 52.63046 ], [ -1.11785, 52.63026 ], [ -1.11708, 52.62996 ], [ -1.11593, 52.63084 ], [ -1.11434, 52.63106 ], [ -1.11426, 52.63118 ], [ -1.11566, 52.63196 ], [ -1.11403, 52.63362 ], [ -1.11375, 52.63367 ], [ -1.1135, 52.63323 ], [ -1.11099, 52.6329 ], [ -1.11149, 52.63241 ], [ -1.11121, 52.63225 ], [ -1.11079, 52.63212 ], [ -1.10877, 52.63169 ], [ -1.10862, 52.63191 ], [ -1.1063, 52.6318 ], [ -1.10595, 52.63225 ], [ -1.10555, 52.63211 ], [ -1.10561, 52.6316 ], [ -1.10482, 52.63135 ], [ -1.10536, 52.63102 ], [ -1.10504, 52.63039 ], [ -1.10588, 52.62908 ], [ -1.10473, 52.62881 ], [ -1.10476, 52.62834 ], [ -1.10432, 52.62821 ], [ -1.10452, 52.62793 ], [ -1.10533, 52.62798 ], [ -1.10617, 52.62661 ], [ -1.10705, 52.62656 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002849", "population": 14205, "outputarea_code": "E00069481", "lsoa_code": "E01013779", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester West", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.15161, "latitude": 52.62987, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.15236, 52.625 ], [ -1.15185, 52.62484 ], [ -1.15264, 52.62472 ], [ -1.15292, 52.62441 ], [ -1.15245, 52.62421 ], [ -1.15314, 52.62417 ], [ -1.15382, 52.62348 ], [ -1.15576, 52.62448 ], [ -1.1561, 52.62465 ], [ -1.16056, 52.62693 ], [ -1.16031, 52.62736 ], [ -1.15968, 52.62741 ], [ -1.15896, 52.6285 ], [ -1.15902, 52.62887 ], [ -1.16044, 52.62903 ], [ -1.16111, 52.6299 ], [ -1.16097, 52.63062 ], [ -1.1612, 52.63222 ], [ -1.15975, 52.63179 ], [ -1.15888, 52.63289 ], [ -1.16023, 52.63305 ], [ -1.16007, 52.63305 ], [ -1.1599, 52.63305 ], [ -1.15966, 52.63333 ], [ -1.15871, 52.63332 ], [ -1.15732, 52.63538 ], [ -1.1585, 52.63555 ], [ -1.1586, 52.63558 ], [ -1.1574, 52.63608 ], [ -1.15691, 52.63568 ], [ -1.15682, 52.63589 ], [ -1.15669, 52.63618 ], [ -1.15397, 52.63572 ], [ -1.15239, 52.63663 ], [ -1.15238, 52.63584 ], [ -1.15237, 52.63458 ], [ -1.15241, 52.63403 ], [ -1.15178, 52.63406 ], [ -1.15108, 52.6341 ], [ -1.1502, 52.63415 ], [ -1.14504, 52.63381 ], [ -1.14233, 52.63372 ], [ -1.14205, 52.63234 ], [ -1.14224, 52.63109 ], [ -1.14257, 52.62874 ], [ -1.14272, 52.62775 ], [ -1.14304, 52.62563 ], [ -1.14379, 52.62585 ], [ -1.14511, 52.62572 ], [ -1.14609, 52.62576 ], [ -1.14738, 52.62581 ], [ -1.14698, 52.62576 ], [ -1.14748, 52.62468 ], [ -1.14844, 52.6249 ], [ -1.14883, 52.62429 ], [ -1.15021, 52.62437 ], [ -1.15022, 52.62465 ], [ -1.15207, 52.62531 ], [ -1.15236, 52.625 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002851", "population": 8229, "outputarea_code": "E00068985", "lsoa_code": "E01013670", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester East", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.07194, "latitude": 52.6248, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0543, 52.62802 ], [ -1.05327, 52.62752 ], [ -1.0553, 52.62491 ], [ -1.0558, 52.62499 ], [ -1.057, 52.62398 ], [ -1.05748, 52.62358 ], [ -1.05812, 52.62365 ], [ -1.05925, 52.62253 ], [ -1.0635, 52.61937 ], [ -1.06436, 52.61971 ], [ -1.06565, 52.6194 ], [ -1.06646, 52.61955 ], [ -1.07049, 52.61807 ], [ -1.07156, 52.61754 ], [ -1.07437, 52.61343 ], [ -1.0773, 52.61434 ], [ -1.08245, 52.61489 ], [ -1.08217, 52.61571 ], [ -1.08401, 52.61592 ], [ -1.08391, 52.61506 ], [ -1.08434, 52.61507 ], [ -1.08676, 52.61505 ], [ -1.08839, 52.61531 ], [ -1.0917, 52.61589 ], [ -1.09323, 52.61617 ], [ -1.09263, 52.61739 ], [ -1.09069, 52.62102 ], [ -1.09034, 52.62163 ], [ -1.09027, 52.62174 ], [ -1.08918, 52.62198 ], [ -1.08858, 52.62179 ], [ -1.08788, 52.62241 ], [ -1.08697, 52.62261 ], [ -1.0809, 52.62213 ], [ -1.0804, 52.62271 ], [ -1.07973, 52.62236 ], [ -1.08014, 52.62192 ], [ -1.07958, 52.62157 ], [ -1.07809, 52.62153 ], [ -1.07669, 52.62059 ], [ -1.07622, 52.62095 ], [ -1.07696, 52.62105 ], [ -1.07679, 52.62123 ], [ -1.07698, 52.6221 ], [ -1.07638, 52.6233 ], [ -1.07588, 52.62358 ], [ -1.0763, 52.62368 ], [ -1.07699, 52.62626 ], [ -1.07717, 52.62655 ], [ -1.07486, 52.62671 ], [ -1.07551, 52.62719 ], [ -1.07494, 52.62761 ], [ -1.07265, 52.62823 ], [ -1.07421, 52.62924 ], [ -1.07418, 52.62979 ], [ -1.07275, 52.62998 ], [ -1.07217, 52.63037 ], [ -1.07237, 52.63087 ], [ -1.07176, 52.63105 ], [ -1.07137, 52.6305 ], [ -1.07071, 52.63033 ], [ -1.07043, 52.63183 ], [ -1.07151, 52.63247 ], [ -1.07118, 52.63272 ], [ -1.07267, 52.63351 ], [ -1.07399, 52.63351 ], [ -1.07403, 52.63517 ], [ -1.07408, 52.63528 ], [ -1.07483, 52.63536 ], [ -1.07541, 52.63411 ], [ -1.07619, 52.6345 ], [ -1.07717, 52.635 ], [ -1.07558, 52.63613 ], [ -1.07735, 52.63694 ], [ -1.07976, 52.63716 ], [ -1.08016, 52.63719 ], [ -1.08007, 52.63752 ], [ -1.07987, 52.63849 ], [ -1.08187, 52.63875 ], [ -1.08344, 52.64057 ], [ -1.08381, 52.64101 ], [ -1.08297, 52.64127 ], [ -1.08258, 52.6411 ], [ -1.07843, 52.639 ], [ -1.07582, 52.63831 ], [ -1.07526, 52.63819 ], [ -1.07171, 52.63723 ], [ -1.06754, 52.63573 ], [ -1.06497, 52.63436 ], [ -1.06291, 52.63292 ], [ -1.06147, 52.63227 ], [ -1.05618, 52.63219 ], [ -1.05623, 52.63146 ], [ -1.05572, 52.63033 ], [ -1.0562, 52.6293 ], [ -1.05576, 52.62855 ], [ -1.0543, 52.62802 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002852", "population": 7094, "outputarea_code": "E00068816", "lsoa_code": "E01013638", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester West", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.18223, "latitude": 52.62501, "pgroup": "100k" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.18239, 52.61978 ], [ -1.1827, 52.61999 ], [ -1.1846, 52.62071 ], [ -1.186, 52.62175 ], [ -1.18702, 52.62158 ], [ -1.18802, 52.62257 ], [ -1.18846, 52.62284 ], [ -1.18875, 52.62296 ], [ -1.18909, 52.6231 ], [ -1.19156, 52.62405 ], [ -1.19168, 52.6241 ], [ -1.19413, 52.62501 ], [ -1.19615, 52.6257 ], [ -1.19848, 52.62633 ], [ -1.20014, 52.62668 ], [ -1.20041, 52.62723 ], [ -1.20124, 52.62733 ], [ -1.2054, 52.62882 ], [ -1.20547, 52.62887 ], [ -1.20021, 52.62917 ], [ -1.19446, 52.63014 ], [ -1.19156, 52.63072 ], [ -1.19088, 52.63084 ], [ -1.18882, 52.63125 ], [ -1.18257, 52.63242 ], [ -1.18165, 52.63254 ], [ -1.18067, 52.63263 ], [ -1.18047, 52.63207 ], [ -1.18035, 52.63143 ], [ -1.17995, 52.63142 ], [ -1.17952, 52.6315 ], [ -1.17886, 52.63076 ], [ -1.17924, 52.6308 ], [ -1.17958, 52.63005 ], [ -1.17927, 52.629 ], [ -1.17799, 52.62813 ], [ -1.17615, 52.62772 ], [ -1.17445, 52.6268 ], [ -1.17392, 52.62598 ], [ -1.17304, 52.62595 ], [ -1.17104, 52.62522 ], [ -1.17066, 52.62503 ], [ -1.16922, 52.62379 ], [ -1.16707, 52.62265 ], [ -1.1662, 52.62266 ], [ -1.16618, 52.62223 ], [ -1.16299, 52.62111 ], [ -1.16383, 52.62098 ], [ -1.16373, 52.62056 ], [ -1.1645, 52.62047 ], [ -1.16588, 52.6209 ], [ -1.16653, 52.62063 ], [ -1.16606, 52.62011 ], [ -1.16514, 52.62022 ], [ -1.16471, 52.6198 ], [ -1.16394, 52.61976 ], [ -1.16389, 52.61929 ], [ -1.16464, 52.6188 ], [ -1.16439, 52.61857 ], [ -1.16545, 52.61822 ], [ -1.16705, 52.61854 ], [ -1.16768, 52.61902 ], [ -1.16733, 52.62034 ], [ -1.16864, 52.62058 ], [ -1.16756, 52.61838 ], [ -1.16815, 52.61814 ], [ -1.16969, 52.61824 ], [ -1.16994, 52.61891 ], [ -1.17084, 52.61886 ], [ -1.1711, 52.61814 ], [ -1.17189, 52.61771 ], [ -1.1745, 52.61822 ], [ -1.17479, 52.61796 ], [ -1.17612, 52.61806 ], [ -1.1774, 52.61809 ], [ -1.18239, 52.61978 ] ] ], [ [ [ -1.16533, 52.6204 ], [ -1.16502, 52.62024 ], [ -1.16514, 52.62022 ], [ -1.16533, 52.6204 ] ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002853", "population": 13171, "outputarea_code": "E00069404", "lsoa_code": "E01013763", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.10152, "latitude": 52.62267, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.09663, 52.61638 ], [ -1.09789, 52.61634 ], [ -1.09815, 52.61662 ], [ -1.09928, 52.61698 ], [ -1.10056, 52.61772 ], [ -1.10363, 52.61991 ], [ -1.1043, 52.62074 ], [ -1.10826, 52.62031 ], [ -1.10926, 52.62014 ], [ -1.11118, 52.61967 ], [ -1.1116, 52.62022 ], [ -1.11309, 52.62212 ], [ -1.11463, 52.62353 ], [ -1.11812, 52.62629 ], [ -1.11865, 52.62659 ], [ -1.11896, 52.62682 ], [ -1.11848, 52.62697 ], [ -1.11789, 52.62722 ], [ -1.11558, 52.62691 ], [ -1.11584, 52.62721 ], [ -1.11658, 52.62722 ], [ -1.11644, 52.62805 ], [ -1.11594, 52.62827 ], [ -1.11493, 52.62804 ], [ -1.11521, 52.62682 ], [ -1.11493, 52.62671 ], [ -1.11464, 52.62667 ], [ -1.11372, 52.62718 ], [ -1.1143, 52.62723 ], [ -1.11378, 52.62754 ], [ -1.11422, 52.62791 ], [ -1.11359, 52.6281 ], [ -1.11328, 52.62785 ], [ -1.11153, 52.6277 ], [ -1.11058, 52.6279 ], [ -1.11061, 52.62768 ], [ -1.1109, 52.62737 ], [ -1.11058, 52.62731 ], [ -1.11108, 52.62716 ], [ -1.11026, 52.62689 ], [ -1.11089, 52.6263 ], [ -1.11044, 52.6261 ], [ -1.10979, 52.62614 ], [ -1.10928, 52.62581 ], [ -1.10838, 52.62672 ], [ -1.10789, 52.62678 ], [ -1.10877, 52.62591 ], [ -1.10785, 52.62561 ], [ -1.10705, 52.62656 ], [ -1.10629, 52.62634 ], [ -1.10706, 52.62513 ], [ -1.10702, 52.62481 ], [ -1.1058, 52.62476 ], [ -1.1067, 52.62367 ], [ -1.1062, 52.62335 ], [ -1.10831, 52.6238 ], [ -1.10851, 52.62359 ], [ -1.1062, 52.62286 ], [ -1.10474, 52.6233 ], [ -1.10496, 52.62454 ], [ -1.10242, 52.62413 ], [ -1.10214, 52.62437 ], [ -1.10078, 52.62732 ], [ -1.10074, 52.62738 ], [ -1.09563, 52.62626 ], [ -1.09153, 52.62638 ], [ -1.09102, 52.62641 ], [ -1.08825, 52.62636 ], [ -1.09027, 52.62174 ], [ -1.09034, 52.62163 ], [ -1.09069, 52.62102 ], [ -1.09263, 52.61739 ], [ -1.09323, 52.61617 ], [ -1.09663, 52.61638 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002854", "population": 8465, "outputarea_code": "E00068814", "lsoa_code": "E01013639", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester West", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.16722, "latitude": 52.62422, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.16312, 52.6156 ], [ -1.16291, 52.6155 ], [ -1.16584, 52.61324 ], [ -1.16668, 52.61329 ], [ -1.16809, 52.61435 ], [ -1.17264, 52.61615 ], [ -1.17271, 52.61621 ], [ -1.17416, 52.61774 ], [ -1.17479, 52.61796 ], [ -1.1745, 52.61822 ], [ -1.17189, 52.61771 ], [ -1.1711, 52.61814 ], [ -1.17084, 52.61886 ], [ -1.16994, 52.61891 ], [ -1.16969, 52.61824 ], [ -1.16815, 52.61814 ], [ -1.16756, 52.61838 ], [ -1.16864, 52.62058 ], [ -1.16733, 52.62034 ], [ -1.16768, 52.61902 ], [ -1.16705, 52.61854 ], [ -1.16545, 52.61822 ], [ -1.16439, 52.61857 ], [ -1.16464, 52.6188 ], [ -1.16389, 52.61929 ], [ -1.16394, 52.61976 ], [ -1.16471, 52.6198 ], [ -1.16514, 52.62022 ], [ -1.16606, 52.62011 ], [ -1.16653, 52.62063 ], [ -1.16588, 52.6209 ], [ -1.1645, 52.62047 ], [ -1.16373, 52.62056 ], [ -1.16383, 52.62098 ], [ -1.16299, 52.62111 ], [ -1.16618, 52.62223 ], [ -1.1662, 52.62266 ], [ -1.16707, 52.62265 ], [ -1.16922, 52.62379 ], [ -1.17066, 52.62503 ], [ -1.17104, 52.62522 ], [ -1.17304, 52.62595 ], [ -1.17392, 52.62598 ], [ -1.17445, 52.6268 ], [ -1.17615, 52.62772 ], [ -1.17799, 52.62813 ], [ -1.17927, 52.629 ], [ -1.17958, 52.63005 ], [ -1.17924, 52.6308 ], [ -1.17886, 52.63076 ], [ -1.17952, 52.6315 ], [ -1.17995, 52.63142 ], [ -1.18035, 52.63143 ], [ -1.18047, 52.63207 ], [ -1.18067, 52.63263 ], [ -1.17589, 52.63262 ], [ -1.17249, 52.63215 ], [ -1.17148, 52.63192 ], [ -1.16997, 52.63145 ], [ -1.1675, 52.63047 ], [ -1.16514, 52.62931 ], [ -1.16465, 52.62906 ], [ -1.16402, 52.62873 ], [ -1.16056, 52.62693 ], [ -1.1561, 52.62465 ], [ -1.15576, 52.62448 ], [ -1.15382, 52.62348 ], [ -1.15557, 52.62213 ], [ -1.15573, 52.622 ], [ -1.15745, 52.62056 ], [ -1.15765, 52.62115 ], [ -1.15943, 52.62191 ], [ -1.16144, 52.62031 ], [ -1.16147, 52.6182 ], [ -1.16033, 52.61854 ], [ -1.16025, 52.61807 ], [ -1.16121, 52.61697 ], [ -1.16262, 52.61576 ], [ -1.16258, 52.61608 ], [ -1.16312, 52.6156 ] ], [ [ -1.16514, 52.62022 ], [ -1.16502, 52.62024 ], [ -1.16533, 52.6204 ], [ -1.16514, 52.62022 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002855", "population": 7717, "outputarea_code": "E00068813", "lsoa_code": "E01013636", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester West", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.15489, "latitude": 52.61725, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.15068, 52.61391 ], [ -1.15279, 52.61233 ], [ -1.15397, 52.61086 ], [ -1.15524, 52.61045 ], [ -1.15926, 52.6097 ], [ -1.16109, 52.60874 ], [ -1.16266, 52.60778 ], [ -1.16405, 52.60945 ], [ -1.16425, 52.60966 ], [ -1.16589, 52.6117 ], [ -1.16584, 52.61269 ], [ -1.16584, 52.61324 ], [ -1.16291, 52.6155 ], [ -1.16312, 52.6156 ], [ -1.16258, 52.61608 ], [ -1.16262, 52.61576 ], [ -1.16121, 52.61697 ], [ -1.16025, 52.61807 ], [ -1.16033, 52.61854 ], [ -1.16147, 52.6182 ], [ -1.16144, 52.62031 ], [ -1.15943, 52.62191 ], [ -1.15765, 52.62115 ], [ -1.15745, 52.62056 ], [ -1.15573, 52.622 ], [ -1.15557, 52.62213 ], [ -1.15382, 52.62348 ], [ -1.15314, 52.62417 ], [ -1.15245, 52.62421 ], [ -1.15292, 52.62441 ], [ -1.15264, 52.62472 ], [ -1.15185, 52.62484 ], [ -1.15236, 52.625 ], [ -1.15207, 52.62531 ], [ -1.15022, 52.62465 ], [ -1.15021, 52.62437 ], [ -1.14883, 52.62429 ], [ -1.14844, 52.6249 ], [ -1.14748, 52.62468 ], [ -1.14698, 52.62576 ], [ -1.14738, 52.62581 ], [ -1.14609, 52.62576 ], [ -1.14511, 52.62572 ], [ -1.14379, 52.62585 ], [ -1.14304, 52.62563 ], [ -1.1434, 52.62357 ], [ -1.14354, 52.62271 ], [ -1.14493, 52.6205 ], [ -1.14651, 52.61987 ], [ -1.14746, 52.61778 ], [ -1.14891, 52.61675 ], [ -1.14952, 52.61677 ], [ -1.14932, 52.61585 ], [ -1.15056, 52.61569 ], [ -1.15108, 52.61526 ], [ -1.15062, 52.61479 ], [ -1.15068, 52.61391 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002856", "population": 11942, "outputarea_code": "E00068873", "lsoa_code": "E01013642", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.11877, "latitude": 52.61824, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.12265, 52.60975 ], [ -1.12276, 52.61005 ], [ -1.12332, 52.61121 ], [ -1.12371, 52.61197 ], [ -1.12385, 52.61225 ], [ -1.12407, 52.6127 ], [ -1.12419, 52.61297 ], [ -1.12468, 52.61399 ], [ -1.12473, 52.6141 ], [ -1.12597, 52.61626 ], [ -1.12671, 52.6174 ], [ -1.12808, 52.61746 ], [ -1.13098, 52.61863 ], [ -1.13356, 52.61871 ], [ -1.13357, 52.61907 ], [ -1.13391, 52.61942 ], [ -1.13716, 52.61982 ], [ -1.13518, 52.62244 ], [ -1.13495, 52.62295 ], [ -1.13397, 52.62464 ], [ -1.13628, 52.62467 ], [ -1.13487, 52.62561 ], [ -1.13358, 52.62519 ], [ -1.13276, 52.62634 ], [ -1.13305, 52.62705 ], [ -1.13237, 52.62694 ], [ -1.13086, 52.62766 ], [ -1.13055, 52.62755 ], [ -1.13129, 52.62669 ], [ -1.12919, 52.62605 ], [ -1.12828, 52.62567 ], [ -1.12859, 52.62498 ], [ -1.12665, 52.62431 ], [ -1.12577, 52.62404 ], [ -1.12521, 52.62465 ], [ -1.12404, 52.62427 ], [ -1.12267, 52.62594 ], [ -1.12187, 52.62566 ], [ -1.12052, 52.62519 ], [ -1.11865, 52.62659 ], [ -1.11812, 52.62629 ], [ -1.11463, 52.62353 ], [ -1.11309, 52.62212 ], [ -1.1116, 52.62022 ], [ -1.11118, 52.61967 ], [ -1.10926, 52.62014 ], [ -1.10826, 52.62031 ], [ -1.1043, 52.62074 ], [ -1.10363, 52.61991 ], [ -1.10056, 52.61772 ], [ -1.09928, 52.61698 ], [ -1.09963, 52.61617 ], [ -1.10077, 52.61655 ], [ -1.1015, 52.6162 ], [ -1.10156, 52.61572 ], [ -1.10117, 52.61536 ], [ -1.10188, 52.61484 ], [ -1.10214, 52.61518 ], [ -1.10234, 52.61476 ], [ -1.10208, 52.61465 ], [ -1.10255, 52.61414 ], [ -1.10362, 52.61502 ], [ -1.10457, 52.61473 ], [ -1.10449, 52.61423 ], [ -1.10459, 52.61316 ], [ -1.108, 52.61249 ], [ -1.10861, 52.6132 ], [ -1.10925, 52.61278 ], [ -1.10856, 52.61266 ], [ -1.10846, 52.61237 ], [ -1.11053, 52.61195 ], [ -1.11268, 52.61125 ], [ -1.1127, 52.61119 ], [ -1.11331, 52.61116 ], [ -1.1136, 52.61073 ], [ -1.1158, 52.61055 ], [ -1.11629, 52.61001 ], [ -1.11572, 52.60916 ], [ -1.11618, 52.60821 ], [ -1.11712, 52.60844 ], [ -1.11726, 52.60884 ], [ -1.11673, 52.60915 ], [ -1.11717, 52.60952 ], [ -1.11846, 52.60962 ], [ -1.11847, 52.61039 ], [ -1.119, 52.61096 ], [ -1.11943, 52.61097 ], [ -1.11937, 52.60878 ], [ -1.12089, 52.60885 ], [ -1.12094, 52.60814 ], [ -1.12164, 52.60799 ], [ -1.12265, 52.60975 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002857", "population": 6507, "outputarea_code": "E00068701", "lsoa_code": "E01013614", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.14041, "latitude": 52.61256, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.13854, 52.60465 ], [ -1.13914, 52.60347 ], [ -1.13916, 52.60343 ], [ -1.13984, 52.60229 ], [ -1.14137, 52.60053 ], [ -1.14145, 52.60014 ], [ -1.14263, 52.60038 ], [ -1.14485, 52.60167 ], [ -1.14431, 52.60193 ], [ -1.14541, 52.60228 ], [ -1.14646, 52.60268 ], [ -1.14603, 52.60301 ], [ -1.1466, 52.60399 ], [ -1.14718, 52.60375 ], [ -1.14801, 52.60408 ], [ -1.14661, 52.60521 ], [ -1.14729, 52.60565 ], [ -1.14584, 52.60639 ], [ -1.14582, 52.60642 ], [ -1.14495, 52.60621 ], [ -1.14467, 52.60644 ], [ -1.14443, 52.60695 ], [ -1.14478, 52.60703 ], [ -1.14359, 52.60859 ], [ -1.14413, 52.60944 ], [ -1.14433, 52.60923 ], [ -1.1448, 52.61001 ], [ -1.14351, 52.61053 ], [ -1.14336, 52.61063 ], [ -1.1425, 52.61127 ], [ -1.14376, 52.61225 ], [ -1.14443, 52.61222 ], [ -1.14463, 52.6135 ], [ -1.14552, 52.61384 ], [ -1.14581, 52.61439 ], [ -1.14756, 52.615 ], [ -1.14891, 52.61675 ], [ -1.14746, 52.61778 ], [ -1.14651, 52.61987 ], [ -1.14493, 52.6205 ], [ -1.14354, 52.62271 ], [ -1.1434, 52.62357 ], [ -1.14296, 52.62356 ], [ -1.14236, 52.62198 ], [ -1.14001, 52.62071 ], [ -1.13716, 52.61982 ], [ -1.13391, 52.61942 ], [ -1.13357, 52.61907 ], [ -1.13356, 52.61871 ], [ -1.13354, 52.61823 ], [ -1.13271, 52.6181 ], [ -1.13256, 52.61525 ], [ -1.13058, 52.6146 ], [ -1.13072, 52.61185 ], [ -1.13134, 52.61289 ], [ -1.13201, 52.61287 ], [ -1.13189, 52.61262 ], [ -1.13173, 52.61241 ], [ -1.13161, 52.61164 ], [ -1.1365, 52.61154 ], [ -1.13699, 52.61132 ], [ -1.13634, 52.61104 ], [ -1.13684, 52.61068 ], [ -1.13694, 52.61034 ], [ -1.13656, 52.61025 ], [ -1.13614, 52.61024 ], [ -1.13646, 52.60979 ], [ -1.13732, 52.60769 ], [ -1.13831, 52.60508 ], [ -1.13854, 52.60465 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002858", "population": 7389, "outputarea_code": "E00069163", "lsoa_code": "E01013712", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.10639, "latitude": 52.60641, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.09836, 52.60429 ], [ -1.09842, 52.60416 ], [ -1.09882, 52.60326 ], [ -1.09994, 52.60349 ], [ -1.1002, 52.60245 ], [ -1.10163, 52.60224 ], [ -1.10192, 52.59931 ], [ -1.1039, 52.59799 ], [ -1.10479, 52.59639 ], [ -1.10365, 52.59591 ], [ -1.10679, 52.59563 ], [ -1.10691, 52.59562 ], [ -1.10826, 52.59612 ], [ -1.10824, 52.60063 ], [ -1.11283, 52.59999 ], [ -1.1132, 52.60057 ], [ -1.114, 52.60038 ], [ -1.11425, 52.60005 ], [ -1.11326, 52.59872 ], [ -1.11448, 52.59902 ], [ -1.11523, 52.60027 ], [ -1.11533, 52.60037 ], [ -1.1155, 52.60029 ], [ -1.11658, 52.60052 ], [ -1.11774, 52.60004 ], [ -1.11764, 52.60066 ], [ -1.11861, 52.60079 ], [ -1.1187, 52.60133 ], [ -1.11815, 52.60182 ], [ -1.11882, 52.60246 ], [ -1.11882, 52.60298 ], [ -1.11925, 52.60348 ], [ -1.11896, 52.60369 ], [ -1.11854, 52.60401 ], [ -1.11901, 52.60414 ], [ -1.1187, 52.60493 ], [ -1.11766, 52.60514 ], [ -1.11858, 52.60703 ], [ -1.11801, 52.60691 ], [ -1.11761, 52.60715 ], [ -1.11628, 52.60677 ], [ -1.11541, 52.60572 ], [ -1.11595, 52.6075 ], [ -1.11451, 52.60839 ], [ -1.11572, 52.60916 ], [ -1.11629, 52.61001 ], [ -1.1158, 52.61055 ], [ -1.1136, 52.61073 ], [ -1.11331, 52.61116 ], [ -1.1127, 52.61119 ], [ -1.11268, 52.61125 ], [ -1.11053, 52.61195 ], [ -1.10846, 52.61237 ], [ -1.10856, 52.61266 ], [ -1.10925, 52.61278 ], [ -1.10861, 52.6132 ], [ -1.108, 52.61249 ], [ -1.10459, 52.61316 ], [ -1.10449, 52.61423 ], [ -1.10457, 52.61473 ], [ -1.10362, 52.61502 ], [ -1.10255, 52.61414 ], [ -1.10208, 52.61465 ], [ -1.10234, 52.61476 ], [ -1.10214, 52.61518 ], [ -1.10188, 52.61484 ], [ -1.10117, 52.61536 ], [ -1.10156, 52.61572 ], [ -1.1015, 52.6162 ], [ -1.10077, 52.61655 ], [ -1.09963, 52.61617 ], [ -1.09928, 52.61698 ], [ -1.09815, 52.61662 ], [ -1.09789, 52.61634 ], [ -1.09663, 52.61638 ], [ -1.0974, 52.61321 ], [ -1.09756, 52.61287 ], [ -1.0981, 52.61169 ], [ -1.09838, 52.61111 ], [ -1.09727, 52.61085 ], [ -1.09487, 52.61023 ], [ -1.09346, 52.61025 ], [ -1.09359, 52.60972 ], [ -1.0937, 52.60869 ], [ -1.09537, 52.60739 ], [ -1.09606, 52.60681 ], [ -1.09697, 52.60627 ], [ -1.09821, 52.60458 ], [ -1.09822, 52.60455 ], [ -1.09836, 52.60429 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002860", "population": 8085, "outputarea_code": "E00068703", "lsoa_code": "E01013609", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.15647, "latitude": 52.60231, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.16616, 52.59267 ], [ -1.16662, 52.59271 ], [ -1.16842, 52.59283 ], [ -1.16918, 52.59159 ], [ -1.16944, 52.59162 ], [ -1.17213, 52.59183 ], [ -1.17246, 52.59285 ], [ -1.17416, 52.59285 ], [ -1.17404, 52.59371 ], [ -1.17145, 52.59343 ], [ -1.1704, 52.59391 ], [ -1.17086, 52.59484 ], [ -1.1701, 52.59599 ], [ -1.17037, 52.59656 ], [ -1.17155, 52.59666 ], [ -1.17264, 52.59731 ], [ -1.17161, 52.59867 ], [ -1.17009, 52.59835 ], [ -1.16887, 52.59977 ], [ -1.16798, 52.60143 ], [ -1.1661, 52.60219 ], [ -1.16537, 52.60304 ], [ -1.17105, 52.60582 ], [ -1.16782, 52.60796 ], [ -1.16405, 52.60945 ], [ -1.16266, 52.60778 ], [ -1.16109, 52.60874 ], [ -1.15926, 52.6097 ], [ -1.15524, 52.61045 ], [ -1.15397, 52.61086 ], [ -1.15279, 52.61233 ], [ -1.15068, 52.61391 ], [ -1.15062, 52.61479 ], [ -1.15108, 52.61526 ], [ -1.15056, 52.61569 ], [ -1.14932, 52.61585 ], [ -1.14952, 52.61677 ], [ -1.14891, 52.61675 ], [ -1.14756, 52.615 ], [ -1.14581, 52.61439 ], [ -1.14552, 52.61384 ], [ -1.14463, 52.6135 ], [ -1.14443, 52.61222 ], [ -1.14376, 52.61225 ], [ -1.1425, 52.61127 ], [ -1.14336, 52.61063 ], [ -1.14351, 52.61053 ], [ -1.1448, 52.61001 ], [ -1.14433, 52.60923 ], [ -1.14413, 52.60944 ], [ -1.14359, 52.60859 ], [ -1.14478, 52.60703 ], [ -1.14443, 52.60695 ], [ -1.14467, 52.60644 ], [ -1.14495, 52.60621 ], [ -1.14582, 52.60642 ], [ -1.14584, 52.60639 ], [ -1.14729, 52.60565 ], [ -1.14661, 52.60521 ], [ -1.14801, 52.60408 ], [ -1.14718, 52.60375 ], [ -1.1466, 52.60399 ], [ -1.14603, 52.60301 ], [ -1.14646, 52.60268 ], [ -1.14541, 52.60228 ], [ -1.14431, 52.60193 ], [ -1.14485, 52.60167 ], [ -1.14263, 52.60038 ], [ -1.14145, 52.60014 ], [ -1.14161, 52.59714 ], [ -1.14156, 52.59688 ], [ -1.14558, 52.59583 ], [ -1.14773, 52.59541 ], [ -1.14982, 52.59538 ], [ -1.15322, 52.59542 ], [ -1.15433, 52.5955 ], [ -1.15714, 52.59579 ], [ -1.15736, 52.59257 ], [ -1.15836, 52.59158 ], [ -1.15926, 52.59154 ], [ -1.15934, 52.59123 ], [ -1.15966, 52.59172 ], [ -1.16059, 52.59178 ], [ -1.1609, 52.5918 ], [ -1.16084, 52.59236 ], [ -1.16272, 52.59242 ], [ -1.16616, 52.59267 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002861", "population": 7727, "outputarea_code": "E00069017", "lsoa_code": "E01013678", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.13532, "latitude": 52.59633, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.1361, 52.58942 ], [ -1.13707, 52.58938 ], [ -1.14127, 52.59 ], [ -1.14086, 52.58769 ], [ -1.14161, 52.58784 ], [ -1.14362, 52.58803 ], [ -1.14599, 52.58813 ], [ -1.14672, 52.58815 ], [ -1.14595, 52.58931 ], [ -1.14573, 52.59005 ], [ -1.14561, 52.5905 ], [ -1.14455, 52.59077 ], [ -1.14441, 52.59107 ], [ -1.14373, 52.591 ], [ -1.14388, 52.59042 ], [ -1.14284, 52.59059 ], [ -1.14264, 52.59122 ], [ -1.14138, 52.59196 ], [ -1.14132, 52.5937 ], [ -1.14101, 52.59408 ], [ -1.14175, 52.59434 ], [ -1.14239, 52.59395 ], [ -1.14273, 52.59456 ], [ -1.14456, 52.59456 ], [ -1.1447, 52.59489 ], [ -1.14529, 52.59511 ], [ -1.14488, 52.59559 ], [ -1.14558, 52.59583 ], [ -1.14156, 52.59688 ], [ -1.14161, 52.59714 ], [ -1.14145, 52.60014 ], [ -1.14137, 52.60053 ], [ -1.13984, 52.60229 ], [ -1.13916, 52.60343 ], [ -1.13914, 52.60347 ], [ -1.13854, 52.60465 ], [ -1.13831, 52.60508 ], [ -1.13732, 52.60769 ], [ -1.13641, 52.60712 ], [ -1.13537, 52.60744 ], [ -1.137, 52.60432 ], [ -1.1355, 52.60471 ], [ -1.13588, 52.60399 ], [ -1.13181, 52.60319 ], [ -1.1314, 52.60277 ], [ -1.12888, 52.60384 ], [ -1.12767, 52.60031 ], [ -1.12727, 52.59911 ], [ -1.12702, 52.59821 ], [ -1.12691, 52.59779 ], [ -1.12672, 52.59707 ], [ -1.12662, 52.59663 ], [ -1.12658, 52.59634 ], [ -1.12648, 52.59568 ], [ -1.1268, 52.59564 ], [ -1.12647, 52.59332 ], [ -1.12644, 52.59292 ], [ -1.12646, 52.59289 ], [ -1.12667, 52.59108 ], [ -1.12777, 52.59137 ], [ -1.12806, 52.59099 ], [ -1.12967, 52.59153 ], [ -1.13096, 52.58999 ], [ -1.1361, 52.58942 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02002862", "population": 8234, "outputarea_code": "E00069016", "lsoa_code": "E01013673", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.1516, "latitude": 52.58884, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.15526, 52.58104 ], [ -1.15933, 52.58167 ], [ -1.1589, 52.58266 ], [ -1.15972, 52.58298 ], [ -1.16063, 52.58236 ], [ -1.16101, 52.58325 ], [ -1.16066, 52.58432 ], [ -1.15823, 52.58418 ], [ -1.15802, 52.58568 ], [ -1.15728, 52.58584 ], [ -1.15587, 52.58604 ], [ -1.15561, 52.58715 ], [ -1.15662, 52.58719 ], [ -1.15673, 52.5872 ], [ -1.15715, 52.58863 ], [ -1.15887, 52.58905 ], [ -1.15835, 52.58963 ], [ -1.15799, 52.59067 ], [ -1.15903, 52.5908 ], [ -1.1589, 52.59111 ], [ -1.15934, 52.59123 ], [ -1.15926, 52.59154 ], [ -1.15836, 52.59158 ], [ -1.15736, 52.59257 ], [ -1.15714, 52.59579 ], [ -1.15433, 52.5955 ], [ -1.15322, 52.59542 ], [ -1.14982, 52.59538 ], [ -1.14773, 52.59541 ], [ -1.14558, 52.59583 ], [ -1.14488, 52.59559 ], [ -1.14529, 52.59511 ], [ -1.1447, 52.59489 ], [ -1.14456, 52.59456 ], [ -1.14273, 52.59456 ], [ -1.14239, 52.59395 ], [ -1.14175, 52.59434 ], [ -1.14101, 52.59408 ], [ -1.14132, 52.5937 ], [ -1.14138, 52.59196 ], [ -1.14264, 52.59122 ], [ -1.14284, 52.59059 ], [ -1.14388, 52.59042 ], [ -1.14373, 52.591 ], [ -1.14441, 52.59107 ], [ -1.14455, 52.59077 ], [ -1.14561, 52.5905 ], [ -1.14573, 52.59005 ], [ -1.14595, 52.58931 ], [ -1.14672, 52.58815 ], [ -1.14599, 52.58813 ], [ -1.14625, 52.58668 ], [ -1.14744, 52.58476 ], [ -1.14821, 52.58355 ], [ -1.14872, 52.58281 ], [ -1.14889, 52.58256 ], [ -1.1495, 52.58102 ], [ -1.14998, 52.58098 ], [ -1.15273, 52.5807 ], [ -1.15526, 52.58104 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02005334", "population": 5718, "outputarea_code": "E00130072", "lsoa_code": "E01025635", "la_name": "Blaby", "bua_name": "Leicester BUASD", "constituency_name": "Charnwood", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.21224, "latitude": 52.62239, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.22838, 52.61587 ], [ -1.22843, 52.61696 ], [ -1.22713, 52.61699 ], [ -1.22717, 52.6165 ], [ -1.22676, 52.61642 ], [ -1.22648, 52.61672 ], [ -1.22724, 52.61741 ], [ -1.22662, 52.61751 ], [ -1.22669, 52.61783 ], [ -1.22732, 52.61783 ], [ -1.22731, 52.61823 ], [ -1.22798, 52.61824 ], [ -1.22821, 52.61852 ], [ -1.22771, 52.61894 ], [ -1.22767, 52.61862 ], [ -1.22677, 52.61842 ], [ -1.22649, 52.61888 ], [ -1.22713, 52.61899 ], [ -1.22683, 52.61958 ], [ -1.22562, 52.6198 ], [ -1.22432, 52.61949 ], [ -1.22417, 52.62 ], [ -1.22311, 52.61998 ], [ -1.22295, 52.62024 ], [ -1.22184, 52.61982 ], [ -1.22144, 52.62003 ], [ -1.22138, 52.61977 ], [ -1.2205, 52.61997 ], [ -1.21966, 52.61946 ], [ -1.2185, 52.61918 ], [ -1.21879, 52.61953 ], [ -1.21987, 52.62026 ], [ -1.21975, 52.6207 ], [ -1.22095, 52.62128 ], [ -1.21966, 52.62211 ], [ -1.22207, 52.6229 ], [ -1.21999, 52.6237 ], [ -1.21989, 52.62453 ], [ -1.21851, 52.62507 ], [ -1.21899, 52.62527 ], [ -1.21888, 52.62556 ], [ -1.21865, 52.62594 ], [ -1.21965, 52.62676 ], [ -1.21449, 52.62779 ], [ -1.21211, 52.62821 ], [ -1.20953, 52.62857 ], [ -1.20612, 52.62878 ], [ -1.2054, 52.62882 ], [ -1.20124, 52.62733 ], [ -1.20127, 52.62696 ], [ -1.2007, 52.62596 ], [ -1.20149, 52.62408 ], [ -1.20184, 52.62301 ], [ -1.20216, 52.62211 ], [ -1.20282, 52.62007 ], [ -1.20319, 52.61881 ], [ -1.20362, 52.6173 ], [ -1.20424, 52.61709 ], [ -1.20499, 52.61707 ], [ -1.20551, 52.61762 ], [ -1.20969, 52.61822 ], [ -1.21081, 52.61798 ], [ -1.21439, 52.61728 ], [ -1.21744, 52.61716 ], [ -1.21946, 52.61826 ], [ -1.22062, 52.61825 ], [ -1.22192, 52.61766 ], [ -1.22274, 52.61651 ], [ -1.22505, 52.6156 ], [ -1.22776, 52.61624 ], [ -1.22838, 52.61587 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02005335", "population": 5929, "outputarea_code": "E00130071", "lsoa_code": "E01025634", "la_name": "Blaby", "bua_name": "Leicester BUASD", "constituency_name": "Charnwood", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.23755, "latitude": 52.62741, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.21989, 52.62453 ], [ -1.21999, 52.6237 ], [ -1.22207, 52.6229 ], [ -1.21966, 52.62211 ], [ -1.22095, 52.62128 ], [ -1.21975, 52.6207 ], [ -1.21987, 52.62026 ], [ -1.21879, 52.61953 ], [ -1.2185, 52.61918 ], [ -1.21966, 52.61946 ], [ -1.2205, 52.61997 ], [ -1.22138, 52.61977 ], [ -1.22144, 52.62003 ], [ -1.22184, 52.61982 ], [ -1.22295, 52.62024 ], [ -1.22311, 52.61998 ], [ -1.22417, 52.62 ], [ -1.22432, 52.61949 ], [ -1.22562, 52.6198 ], [ -1.22683, 52.61958 ], [ -1.22713, 52.61899 ], [ -1.22649, 52.61888 ], [ -1.22677, 52.61842 ], [ -1.22767, 52.61862 ], [ -1.22771, 52.61894 ], [ -1.22821, 52.61852 ], [ -1.22798, 52.61824 ], [ -1.22731, 52.61823 ], [ -1.22732, 52.61783 ], [ -1.22669, 52.61783 ], [ -1.22662, 52.61751 ], [ -1.22724, 52.61741 ], [ -1.22648, 52.61672 ], [ -1.22676, 52.61642 ], [ -1.22717, 52.6165 ], [ -1.22713, 52.61699 ], [ -1.22843, 52.61696 ], [ -1.22838, 52.61587 ], [ -1.2319, 52.61461 ], [ -1.24244, 52.6138 ], [ -1.24397, 52.61254 ], [ -1.24346, 52.61191 ], [ -1.24351, 52.61095 ], [ -1.24602, 52.60864 ], [ -1.24846, 52.61081 ], [ -1.25438, 52.61343 ], [ -1.25844, 52.6112 ], [ -1.26177, 52.61333 ], [ -1.26343, 52.61282 ], [ -1.26373, 52.6132 ], [ -1.26462, 52.61442 ], [ -1.26504, 52.61497 ], [ -1.25741, 52.61625 ], [ -1.25779, 52.62079 ], [ -1.26, 52.62383 ], [ -1.26051, 52.62539 ], [ -1.26281, 52.62697 ], [ -1.26178, 52.62829 ], [ -1.26047, 52.62888 ], [ -1.25433, 52.63023 ], [ -1.25247, 52.63024 ], [ -1.25245, 52.63078 ], [ -1.25139, 52.63167 ], [ -1.24939, 52.63156 ], [ -1.24835, 52.63251 ], [ -1.24681, 52.63235 ], [ -1.24094, 52.63348 ], [ -1.24091, 52.63379 ], [ -1.2433, 52.63547 ], [ -1.24531, 52.63618 ], [ -1.24715, 52.63611 ], [ -1.24871, 52.63654 ], [ -1.25067, 52.63613 ], [ -1.25163, 52.63651 ], [ -1.25356, 52.63622 ], [ -1.25373, 52.6351 ], [ -1.25504, 52.63447 ], [ -1.25611, 52.63435 ], [ -1.25597, 52.63554 ], [ -1.25727, 52.63583 ], [ -1.2592, 52.63688 ], [ -1.26137, 52.63626 ], [ -1.2618, 52.63707 ], [ -1.26059, 52.637 ], [ -1.26056, 52.63744 ], [ -1.2593, 52.6372 ], [ -1.25749, 52.63819 ], [ -1.25689, 52.63789 ], [ -1.25667, 52.63831 ], [ -1.25606, 52.63815 ], [ -1.25547, 52.63846 ], [ -1.25503, 52.63824 ], [ -1.25463, 52.6386 ], [ -1.25123, 52.63896 ], [ -1.24861, 52.64022 ], [ -1.24693, 52.63984 ], [ -1.24396, 52.64068 ], [ -1.24386, 52.6411 ], [ -1.24306, 52.64149 ], [ -1.24221, 52.64148 ], [ -1.24186, 52.64107 ], [ -1.24162, 52.64184 ], [ -1.24094, 52.64129 ], [ -1.23974, 52.64151 ], [ -1.23958, 52.64109 ], [ -1.23934, 52.64146 ], [ -1.23869, 52.64129 ], [ -1.23731, 52.6418 ], [ -1.23716, 52.64136 ], [ -1.23667, 52.64136 ], [ -1.23683, 52.64164 ], [ -1.23645, 52.64174 ], [ -1.23564, 52.6413 ], [ -1.23583, 52.64098 ], [ -1.23495, 52.64107 ], [ -1.23466, 52.64041 ], [ -1.23424, 52.64072 ], [ -1.23405, 52.6402 ], [ -1.23373, 52.64074 ], [ -1.23343, 52.64045 ], [ -1.23284, 52.64091 ], [ -1.2322, 52.64075 ], [ -1.23239, 52.64143 ], [ -1.22597, 52.64374 ], [ -1.22508, 52.64408 ], [ -1.22314, 52.64626 ], [ -1.22281, 52.64505 ], [ -1.22348, 52.64487 ], [ -1.21955, 52.64333 ], [ -1.22004, 52.64298 ], [ -1.22015, 52.64214 ], [ -1.21733, 52.64091 ], [ -1.21899, 52.63985 ], [ -1.21658, 52.63874 ], [ -1.2153, 52.63804 ], [ -1.21761, 52.63582 ], [ -1.21567, 52.63469 ], [ -1.21598, 52.63453 ], [ -1.2139, 52.63268 ], [ -1.21105, 52.63106 ], [ -1.2084, 52.63041 ], [ -1.20547, 52.62887 ], [ -1.2054, 52.62882 ], [ -1.20612, 52.62878 ], [ -1.20953, 52.62857 ], [ -1.21211, 52.62821 ], [ -1.21449, 52.62779 ], [ -1.21965, 52.62676 ], [ -1.21865, 52.62594 ], [ -1.21888, 52.62556 ], [ -1.21899, 52.62527 ], [ -1.21851, 52.62507 ], [ -1.21989, 52.62453 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02005336", "population": 7390, "outputarea_code": "E00130237", "lsoa_code": "E01025668", "la_name": "Blaby", "bua_name": "Leicester BUASD", "constituency_name": "South Leicestershire", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.19328, "latitude": 52.61482, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.18915, 52.61552 ], [ -1.18972, 52.61375 ], [ -1.1895, 52.61076 ], [ -1.18896, 52.60728 ], [ -1.18831, 52.6057 ], [ -1.18804, 52.60506 ], [ -1.1868, 52.60025 ], [ -1.19502, 52.60049 ], [ -1.19608, 52.60447 ], [ -1.19802, 52.60844 ], [ -1.20157, 52.61343 ], [ -1.20424, 52.61709 ], [ -1.20362, 52.6173 ], [ -1.20319, 52.61881 ], [ -1.20282, 52.62007 ], [ -1.20216, 52.62211 ], [ -1.20184, 52.62301 ], [ -1.20149, 52.62408 ], [ -1.2007, 52.62596 ], [ -1.20127, 52.62696 ], [ -1.20124, 52.62733 ], [ -1.20041, 52.62723 ], [ -1.20014, 52.62668 ], [ -1.19848, 52.62633 ], [ -1.19615, 52.6257 ], [ -1.19413, 52.62501 ], [ -1.19168, 52.6241 ], [ -1.19156, 52.62405 ], [ -1.18909, 52.6231 ], [ -1.18875, 52.62296 ], [ -1.18846, 52.62284 ], [ -1.18802, 52.62257 ], [ -1.18702, 52.62158 ], [ -1.186, 52.62175 ], [ -1.1846, 52.62071 ], [ -1.1827, 52.61999 ], [ -1.18239, 52.61978 ], [ -1.1774, 52.61809 ], [ -1.17612, 52.61806 ], [ -1.17605, 52.61759 ], [ -1.17599, 52.61689 ], [ -1.17648, 52.61688 ], [ -1.17941, 52.61639 ], [ -1.18015, 52.61708 ], [ -1.18213, 52.61636 ], [ -1.18292, 52.61632 ], [ -1.18319, 52.61557 ], [ -1.18357, 52.61559 ], [ -1.18417, 52.6158 ], [ -1.18434, 52.61553 ], [ -1.18915, 52.61552 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02005337", "population": 9845, "outputarea_code": "E00130092", "lsoa_code": "E01025636", "la_name": "Blaby", "bua_name": "Leicester BUASD", "constituency_name": "South Leicestershire", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.17805, "latitude": 52.6087, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.16782, 52.60796 ], [ -1.17105, 52.60582 ], [ -1.16537, 52.60304 ], [ -1.1661, 52.60219 ], [ -1.16798, 52.60143 ], [ -1.16973, 52.60095 ], [ -1.17763, 52.60181 ], [ -1.17815, 52.60134 ], [ -1.17866, 52.60143 ], [ -1.17966, 52.60076 ], [ -1.18055, 52.60061 ], [ -1.18029, 52.60008 ], [ -1.18163, 52.59906 ], [ -1.18265, 52.59971 ], [ -1.18661, 52.60022 ], [ -1.1868, 52.60025 ], [ -1.18804, 52.60506 ], [ -1.18831, 52.6057 ], [ -1.18896, 52.60728 ], [ -1.1895, 52.61076 ], [ -1.18972, 52.61375 ], [ -1.18915, 52.61552 ], [ -1.18434, 52.61553 ], [ -1.18417, 52.6158 ], [ -1.18357, 52.61559 ], [ -1.18319, 52.61557 ], [ -1.18292, 52.61632 ], [ -1.18213, 52.61636 ], [ -1.18015, 52.61708 ], [ -1.17941, 52.61639 ], [ -1.17648, 52.61688 ], [ -1.17599, 52.61689 ], [ -1.17605, 52.61759 ], [ -1.17612, 52.61806 ], [ -1.17479, 52.61796 ], [ -1.17416, 52.61774 ], [ -1.17271, 52.61621 ], [ -1.17264, 52.61615 ], [ -1.16809, 52.61435 ], [ -1.16668, 52.61329 ], [ -1.16584, 52.61324 ], [ -1.16584, 52.61269 ], [ -1.16589, 52.6117 ], [ -1.16425, 52.60966 ], [ -1.16405, 52.60945 ], [ -1.16782, 52.60796 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02005338", "population": 3594, "outputarea_code": "E00130197", "lsoa_code": "E01025660", "la_name": "Blaby", "bua_name": "Leicester BUASD", "constituency_name": "South Leicestershire", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.17066, "latitude": 52.58591, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.15673, 52.5872 ], [ -1.15662, 52.58719 ], [ -1.15561, 52.58715 ], [ -1.15587, 52.58604 ], [ -1.15728, 52.58584 ], [ -1.15802, 52.58568 ], [ -1.15823, 52.58418 ], [ -1.16066, 52.58432 ], [ -1.16101, 52.58325 ], [ -1.16243, 52.58334 ], [ -1.16292, 52.58244 ], [ -1.16177, 52.58212 ], [ -1.16209, 52.58154 ], [ -1.16315, 52.58168 ], [ -1.16349, 52.58059 ], [ -1.16512, 52.58048 ], [ -1.16644, 52.58094 ], [ -1.16825, 52.58164 ], [ -1.16889, 52.58159 ], [ -1.1699, 52.58124 ], [ -1.17228, 52.58166 ], [ -1.17666, 52.58099 ], [ -1.17729, 52.58086 ], [ -1.17737, 52.58025 ], [ -1.17809, 52.58016 ], [ -1.17839, 52.57956 ], [ -1.18062, 52.58041 ], [ -1.18245, 52.58003 ], [ -1.18531, 52.58033 ], [ -1.18581, 52.58093 ], [ -1.18709, 52.58135 ], [ -1.18715, 52.58183 ], [ -1.18528, 52.58296 ], [ -1.18533, 52.58347 ], [ -1.18481, 52.58361 ], [ -1.18476, 52.58422 ], [ -1.18515, 52.58431 ], [ -1.18418, 52.58539 ], [ -1.18468, 52.58628 ], [ -1.18381, 52.5867 ], [ -1.18294, 52.58665 ], [ -1.18258, 52.58715 ], [ -1.18128, 52.58714 ], [ -1.18091, 52.58836 ], [ -1.1778, 52.58833 ], [ -1.17678, 52.58869 ], [ -1.17631, 52.58807 ], [ -1.17543, 52.58799 ], [ -1.17499, 52.58872 ], [ -1.17413, 52.58897 ], [ -1.17423, 52.58965 ], [ -1.17292, 52.58994 ], [ -1.17271, 52.59058 ], [ -1.17209, 52.59076 ], [ -1.17213, 52.59183 ], [ -1.16944, 52.59162 ], [ -1.16918, 52.59159 ], [ -1.16842, 52.59283 ], [ -1.16662, 52.59271 ], [ -1.16616, 52.59267 ], [ -1.16272, 52.59242 ], [ -1.16084, 52.59236 ], [ -1.1609, 52.5918 ], [ -1.16059, 52.59178 ], [ -1.15966, 52.59172 ], [ -1.15934, 52.59123 ], [ -1.1589, 52.59111 ], [ -1.15903, 52.5908 ], [ -1.15799, 52.59067 ], [ -1.15835, 52.58963 ], [ -1.15887, 52.58905 ], [ -1.15715, 52.58863 ], [ -1.15673, 52.5872 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02005340", "population": 2575, "outputarea_code": "E00130196", "lsoa_code": "E01025658", "la_name": "Blaby", "bua_name": "Leicester BUASD", "constituency_name": "South Leicestershire", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.14786, "latitude": 52.57942, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.14012, 52.5791 ], [ -1.13981, 52.57825 ], [ -1.1407, 52.57636 ], [ -1.13661, 52.57507 ], [ -1.13698, 52.57402 ], [ -1.13775, 52.57391 ], [ -1.13787, 52.57364 ], [ -1.13838, 52.57413 ], [ -1.14008, 52.57381 ], [ -1.14064, 52.57357 ], [ -1.1404, 52.57284 ], [ -1.14124, 52.57236 ], [ -1.14319, 52.57253 ], [ -1.14392, 52.57311 ], [ -1.14322, 52.57308 ], [ -1.1433, 52.57351 ], [ -1.14556, 52.5742 ], [ -1.1474, 52.57606 ], [ -1.14885, 52.57586 ], [ -1.14901, 52.5765 ], [ -1.1537, 52.57749 ], [ -1.15497, 52.57837 ], [ -1.15627, 52.57891 ], [ -1.15733, 52.57882 ], [ -1.15794, 52.57861 ], [ -1.16349, 52.58059 ], [ -1.16315, 52.58168 ], [ -1.16209, 52.58154 ], [ -1.16177, 52.58212 ], [ -1.16292, 52.58244 ], [ -1.16243, 52.58334 ], [ -1.16101, 52.58325 ], [ -1.16063, 52.58236 ], [ -1.15972, 52.58298 ], [ -1.1589, 52.58266 ], [ -1.15933, 52.58167 ], [ -1.15526, 52.58104 ], [ -1.15273, 52.5807 ], [ -1.14998, 52.58098 ], [ -1.1495, 52.58102 ], [ -1.14889, 52.58256 ], [ -1.14872, 52.58281 ], [ -1.14821, 52.58355 ], [ -1.14744, 52.58476 ], [ -1.14625, 52.58668 ], [ -1.14599, 52.58813 ], [ -1.14362, 52.58803 ], [ -1.14391, 52.5862 ], [ -1.14451, 52.58555 ], [ -1.14375, 52.58532 ], [ -1.14329, 52.58464 ], [ -1.14311, 52.58316 ], [ -1.14359, 52.58128 ], [ -1.14173, 52.58147 ], [ -1.14103, 52.58154 ], [ -1.14076, 52.58019 ], [ -1.14032, 52.5797 ], [ -1.14012, 52.5791 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02005365", "population": 10341, "outputarea_code": "E00130704", "lsoa_code": "E01025764", "la_name": "Charnwood", "bua_name": "Leicester BUASD", "constituency_name": "Charnwood", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.09211, "latitude": 52.6787, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.07479, 52.67119 ], [ -1.07475, 52.67077 ], [ -1.07522, 52.67077 ], [ -1.07508, 52.66963 ], [ -1.08579, 52.66926 ], [ -1.0881, 52.66991 ], [ -1.08869, 52.66975 ], [ -1.08931, 52.67028 ], [ -1.08933, 52.67025 ], [ -1.09082, 52.66859 ], [ -1.0952, 52.66957 ], [ -1.0972, 52.66997 ], [ -1.09783, 52.67008 ], [ -1.0998, 52.67053 ], [ -1.10408, 52.67157 ], [ -1.10425, 52.67161 ], [ -1.10481, 52.67175 ], [ -1.10523, 52.67186 ], [ -1.10549, 52.67154 ], [ -1.10915, 52.6728 ], [ -1.11013, 52.67146 ], [ -1.11434, 52.67263 ], [ -1.11495, 52.67279 ], [ -1.11661, 52.67431 ], [ -1.11641, 52.6753 ], [ -1.11376, 52.67758 ], [ -1.11163, 52.67901 ], [ -1.11061, 52.6785 ], [ -1.10925, 52.67888 ], [ -1.10716, 52.67868 ], [ -1.10653, 52.67809 ], [ -1.10468, 52.67743 ], [ -1.10316, 52.67789 ], [ -1.10241, 52.67824 ], [ -1.10255, 52.6787 ], [ -1.10071, 52.68144 ], [ -1.10058, 52.68295 ], [ -1.10095, 52.68354 ], [ -1.10301, 52.68467 ], [ -1.10512, 52.68502 ], [ -1.10618, 52.68609 ], [ -1.10637, 52.68691 ], [ -1.10749, 52.68687 ], [ -1.10793, 52.68715 ], [ -1.10666, 52.68831 ], [ -1.10721, 52.6889 ], [ -1.10622, 52.68923 ], [ -1.10732, 52.69011 ], [ -1.10697, 52.69078 ], [ -1.10807, 52.69197 ], [ -1.10469, 52.69231 ], [ -1.10466, 52.6908 ], [ -1.10436, 52.69048 ], [ -1.10094, 52.69099 ], [ -1.09912, 52.69083 ], [ -1.09143, 52.68893 ], [ -1.09191, 52.68843 ], [ -1.08722, 52.68726 ], [ -1.08407, 52.68654 ], [ -1.08259, 52.68549 ], [ -1.08243, 52.6854 ], [ -1.08079, 52.68412 ], [ -1.07863, 52.68403 ], [ -1.07855, 52.68368 ], [ -1.07298, 52.68288 ], [ -1.07331, 52.68233 ], [ -1.07207, 52.68197 ], [ -1.07166, 52.68142 ], [ -1.07053, 52.68122 ], [ -1.07161, 52.68073 ], [ -1.07154, 52.68023 ], [ -1.06973, 52.68023 ], [ -1.0701, 52.67888 ], [ -1.07135, 52.6792 ], [ -1.07202, 52.67817 ], [ -1.07113, 52.67788 ], [ -1.07238, 52.67648 ], [ -1.07427, 52.67559 ], [ -1.07414, 52.67429 ], [ -1.07389, 52.67307 ], [ -1.07498, 52.67299 ], [ -1.07479, 52.67119 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02006815", "population": 9628, "outputarea_code": "E00069124", "lsoa_code": "E01013698", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester East", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.05534, "latitude": 52.64335, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.05618, 52.63219 ], [ -1.06147, 52.63227 ], [ -1.06291, 52.63292 ], [ -1.06497, 52.63436 ], [ -1.06449, 52.63483 ], [ -1.06496, 52.63536 ], [ -1.0638, 52.63562 ], [ -1.06339, 52.63602 ], [ -1.06158, 52.63539 ], [ -1.06141, 52.63562 ], [ -1.06545, 52.63663 ], [ -1.06509, 52.63726 ], [ -1.06405, 52.63713 ], [ -1.06371, 52.63659 ], [ -1.06287, 52.63683 ], [ -1.06313, 52.63743 ], [ -1.06245, 52.6376 ], [ -1.06209, 52.63719 ], [ -1.06177, 52.63782 ], [ -1.06271, 52.63891 ], [ -1.06173, 52.63962 ], [ -1.06135, 52.63947 ], [ -1.0615, 52.63997 ], [ -1.06238, 52.64035 ], [ -1.06271, 52.6401 ], [ -1.06414, 52.64077 ], [ -1.06374, 52.64093 ], [ -1.06388, 52.64144 ], [ -1.06319, 52.64144 ], [ -1.06309, 52.64171 ], [ -1.06233, 52.64157 ], [ -1.06201, 52.64188 ], [ -1.06255, 52.64202 ], [ -1.06259, 52.64268 ], [ -1.06353, 52.64263 ], [ -1.06468, 52.64303 ], [ -1.06462, 52.64337 ], [ -1.06216, 52.6432 ], [ -1.05953, 52.64322 ], [ -1.05934, 52.64416 ], [ -1.05928, 52.64646 ], [ -1.05988, 52.64628 ], [ -1.0604, 52.64674 ], [ -1.06031, 52.64763 ], [ -1.06043, 52.64888 ], [ -1.0616, 52.64858 ], [ -1.06186, 52.64876 ], [ -1.06118, 52.64921 ], [ -1.06065, 52.64959 ], [ -1.05878, 52.64914 ], [ -1.05874, 52.64945 ], [ -1.05742, 52.64943 ], [ -1.05595, 52.65013 ], [ -1.05551, 52.65001 ], [ -1.05573, 52.6507 ], [ -1.05696, 52.64999 ], [ -1.0571, 52.65058 ], [ -1.05779, 52.65038 ], [ -1.05914, 52.65108 ], [ -1.05943, 52.6513 ], [ -1.0591, 52.65155 ], [ -1.05993, 52.65174 ], [ -1.06035, 52.65354 ], [ -1.05908, 52.65612 ], [ -1.05894, 52.65645 ], [ -1.04861, 52.655 ], [ -1.04873, 52.65407 ], [ -1.04818, 52.65178 ], [ -1.04802, 52.64819 ], [ -1.05102, 52.6481 ], [ -1.05108, 52.6478 ], [ -1.05166, 52.64465 ], [ -1.05162, 52.64408 ], [ -1.05097, 52.64393 ], [ -1.05125, 52.64323 ], [ -1.04919, 52.6434 ], [ -1.04947, 52.64266 ], [ -1.04743, 52.6424 ], [ -1.04754, 52.6405 ], [ -1.04765, 52.63817 ], [ -1.04616, 52.6381 ], [ -1.04621, 52.63791 ], [ -1.04623, 52.63784 ], [ -1.04623, 52.63781 ], [ -1.04807, 52.63733 ], [ -1.04814, 52.63536 ], [ -1.04678, 52.63524 ], [ -1.04696, 52.63462 ], [ -1.04867, 52.63461 ], [ -1.05293, 52.63453 ], [ -1.05313, 52.63327 ], [ -1.056, 52.63257 ], [ -1.05618, 52.63219 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02006816", "population": 5667, "outputarea_code": "E00130973", "lsoa_code": "E01032598", "la_name": "Harborough", "bua_name": "Leicester BUASD", "constituency_name": "Rutland and Melton", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.03377, "latitude": 52.63824, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.01989, 52.62928 ], [ -1.01837, 52.62914 ], [ -1.01875, 52.62636 ], [ -1.01981, 52.62551 ], [ -1.01854, 52.62437 ], [ -1.02282, 52.62219 ], [ -1.02416, 52.62183 ], [ -1.02327, 52.62062 ], [ -1.02535, 52.61997 ], [ -1.02843, 52.61958 ], [ -1.03213, 52.61934 ], [ -1.03411, 52.6188 ], [ -1.03477, 52.61914 ], [ -1.03582, 52.6186 ], [ -1.03833, 52.61828 ], [ -1.04186, 52.61918 ], [ -1.04492, 52.61991 ], [ -1.04462, 52.62054 ], [ -1.04636, 52.6204 ], [ -1.04688, 52.62088 ], [ -1.05137, 52.62176 ], [ -1.05748, 52.62358 ], [ -1.057, 52.62398 ], [ -1.0558, 52.62499 ], [ -1.0553, 52.62491 ], [ -1.05327, 52.62752 ], [ -1.0543, 52.62802 ], [ -1.05576, 52.62855 ], [ -1.0562, 52.6293 ], [ -1.05572, 52.63033 ], [ -1.05623, 52.63146 ], [ -1.05618, 52.63219 ], [ -1.056, 52.63257 ], [ -1.05313, 52.63327 ], [ -1.05293, 52.63453 ], [ -1.04867, 52.63461 ], [ -1.04696, 52.63462 ], [ -1.04678, 52.63524 ], [ -1.04814, 52.63536 ], [ -1.04807, 52.63733 ], [ -1.04623, 52.63781 ], [ -1.04623, 52.63784 ], [ -1.04621, 52.63791 ], [ -1.04616, 52.6381 ], [ -1.04765, 52.63817 ], [ -1.04754, 52.6405 ], [ -1.04743, 52.6424 ], [ -1.04947, 52.64266 ], [ -1.04919, 52.6434 ], [ -1.05125, 52.64323 ], [ -1.05097, 52.64393 ], [ -1.05162, 52.64408 ], [ -1.05166, 52.64465 ], [ -1.05108, 52.6478 ], [ -1.05102, 52.6481 ], [ -1.04802, 52.64819 ], [ -1.04818, 52.65178 ], [ -1.04873, 52.65407 ], [ -1.04861, 52.655 ], [ -1.0456, 52.65461 ], [ -1.0455, 52.65439 ], [ -1.04189, 52.65413 ], [ -1.04173, 52.65387 ], [ -1.03778, 52.65399 ], [ -1.03819, 52.65675 ], [ -1.03954, 52.6587 ], [ -1.03957, 52.65892 ], [ -1.03859, 52.65901 ], [ -1.03465, 52.65858 ], [ -1.03427, 52.65883 ], [ -1.03259, 52.65865 ], [ -1.03275, 52.65824 ], [ -1.03036, 52.65755 ], [ -1.02935, 52.6585 ], [ -1.02804, 52.65745 ], [ -1.02701, 52.65783 ], [ -1.02638, 52.65702 ], [ -1.02578, 52.65721 ], [ -1.02497, 52.6567 ], [ -1.02416, 52.65658 ], [ -1.02279, 52.657 ], [ -1.02146, 52.65644 ], [ -1.02133, 52.65667 ], [ -1.01645, 52.65543 ], [ -1.0147, 52.65585 ], [ -1.01379, 52.65505 ], [ -1.01363, 52.65464 ], [ -1.01557, 52.65272 ], [ -1.01484, 52.65242 ], [ -1.01678, 52.65067 ], [ -1.01607, 52.65024 ], [ -1.01447, 52.65027 ], [ -1.01277, 52.64966 ], [ -1.01288, 52.64865 ], [ -1.0123, 52.64844 ], [ -1.01354, 52.64696 ], [ -1.01438, 52.64464 ], [ -1.01401, 52.64456 ], [ -1.01418, 52.64072 ], [ -1.01373, 52.64066 ], [ -1.01433, 52.63987 ], [ -1.01391, 52.63947 ], [ -1.01476, 52.63732 ], [ -1.01579, 52.636 ], [ -1.01702, 52.63604 ], [ -1.02154, 52.63469 ], [ -1.01979, 52.63345 ], [ -1.01893, 52.63194 ], [ -1.01839, 52.63185 ], [ -1.01989, 52.62928 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02006817", "population": 8348, "outputarea_code": "E00069098", "lsoa_code": "E01013690", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.12496, "latitude": 52.60572, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.12201, 52.59575 ], [ -1.12648, 52.59568 ], [ -1.12658, 52.59634 ], [ -1.12662, 52.59663 ], [ -1.12672, 52.59707 ], [ -1.12691, 52.59779 ], [ -1.12702, 52.59821 ], [ -1.12727, 52.59911 ], [ -1.12767, 52.60031 ], [ -1.12888, 52.60384 ], [ -1.1314, 52.60277 ], [ -1.13181, 52.60319 ], [ -1.13588, 52.60399 ], [ -1.1355, 52.60471 ], [ -1.137, 52.60432 ], [ -1.13537, 52.60744 ], [ -1.13641, 52.60712 ], [ -1.13732, 52.60769 ], [ -1.13646, 52.60979 ], [ -1.13614, 52.61024 ], [ -1.13656, 52.61025 ], [ -1.13694, 52.61034 ], [ -1.13684, 52.61068 ], [ -1.13634, 52.61104 ], [ -1.13699, 52.61132 ], [ -1.1365, 52.61154 ], [ -1.13161, 52.61164 ], [ -1.13173, 52.61241 ], [ -1.13189, 52.61262 ], [ -1.13201, 52.61287 ], [ -1.13134, 52.61289 ], [ -1.13072, 52.61185 ], [ -1.13058, 52.6146 ], [ -1.13256, 52.61525 ], [ -1.13271, 52.6181 ], [ -1.13354, 52.61823 ], [ -1.13356, 52.61871 ], [ -1.13098, 52.61863 ], [ -1.12808, 52.61746 ], [ -1.12671, 52.6174 ], [ -1.12597, 52.61626 ], [ -1.12473, 52.6141 ], [ -1.12468, 52.61399 ], [ -1.12419, 52.61297 ], [ -1.12407, 52.6127 ], [ -1.12385, 52.61225 ], [ -1.12371, 52.61197 ], [ -1.12332, 52.61121 ], [ -1.12276, 52.61005 ], [ -1.12265, 52.60975 ], [ -1.12164, 52.60799 ], [ -1.12094, 52.60814 ], [ -1.12089, 52.60885 ], [ -1.11937, 52.60878 ], [ -1.11943, 52.61097 ], [ -1.119, 52.61096 ], [ -1.11847, 52.61039 ], [ -1.11846, 52.60962 ], [ -1.11717, 52.60952 ], [ -1.11673, 52.60915 ], [ -1.11726, 52.60884 ], [ -1.11712, 52.60844 ], [ -1.11618, 52.60821 ], [ -1.11572, 52.60916 ], [ -1.11451, 52.60839 ], [ -1.11595, 52.6075 ], [ -1.11541, 52.60572 ], [ -1.11628, 52.60677 ], [ -1.11761, 52.60715 ], [ -1.11801, 52.60691 ], [ -1.11858, 52.60703 ], [ -1.11766, 52.60514 ], [ -1.1187, 52.60493 ], [ -1.11901, 52.60414 ], [ -1.11854, 52.60401 ], [ -1.11896, 52.60369 ], [ -1.11925, 52.60348 ], [ -1.11882, 52.60298 ], [ -1.11882, 52.60246 ], [ -1.11815, 52.60182 ], [ -1.1187, 52.60133 ], [ -1.11861, 52.60079 ], [ -1.11764, 52.60066 ], [ -1.11774, 52.60004 ], [ -1.11658, 52.60052 ], [ -1.1155, 52.60029 ], [ -1.11533, 52.60037 ], [ -1.11523, 52.60027 ], [ -1.11448, 52.59902 ], [ -1.11326, 52.59872 ], [ -1.11425, 52.60005 ], [ -1.114, 52.60038 ], [ -1.1132, 52.60057 ], [ -1.11283, 52.59999 ], [ -1.10824, 52.60063 ], [ -1.10826, 52.59612 ], [ -1.10944, 52.59639 ], [ -1.10985, 52.59736 ], [ -1.11289, 52.59695 ], [ -1.11348, 52.59692 ], [ -1.11732, 52.59697 ], [ -1.12017, 52.59754 ], [ -1.12043, 52.59673 ], [ -1.12046, 52.59668 ], [ -1.12078, 52.59546 ], [ -1.12201, 52.59575 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02006819", "population": 8226, "outputarea_code": "E00069246", "lsoa_code": "E01013722", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester West", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.19587, "latitude": 52.64034, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.19161, 52.63322 ], [ -1.19603, 52.63326 ], [ -1.19676, 52.63335 ], [ -1.20302, 52.63465 ], [ -1.2047, 52.63515 ], [ -1.20664, 52.63529 ], [ -1.2085, 52.63489 ], [ -1.2084, 52.63041 ], [ -1.21105, 52.63106 ], [ -1.2139, 52.63268 ], [ -1.21598, 52.63453 ], [ -1.21567, 52.63469 ], [ -1.21308, 52.63615 ], [ -1.21435, 52.63694 ], [ -1.21102, 52.63943 ], [ -1.20974, 52.64169 ], [ -1.20725, 52.64259 ], [ -1.20589, 52.64267 ], [ -1.20353, 52.64165 ], [ -1.20109, 52.64087 ], [ -1.20079, 52.63986 ], [ -1.19978, 52.64013 ], [ -1.19886, 52.64029 ], [ -1.19879, 52.64107 ], [ -1.19879, 52.64142 ], [ -1.1988, 52.64147 ], [ -1.19807, 52.64173 ], [ -1.19538, 52.641 ], [ -1.19066, 52.64039 ], [ -1.19036, 52.64114 ], [ -1.19017, 52.6416 ], [ -1.18923, 52.64316 ], [ -1.18843, 52.6442 ], [ -1.1881, 52.64457 ], [ -1.18699, 52.64559 ], [ -1.18721, 52.64598 ], [ -1.18732, 52.64725 ], [ -1.18685, 52.64727 ], [ -1.18546, 52.64843 ], [ -1.18518, 52.64866 ], [ -1.18406, 52.64958 ], [ -1.1832, 52.65227 ], [ -1.18292, 52.65302 ], [ -1.17686, 52.65227 ], [ -1.17652, 52.65189 ], [ -1.17565, 52.65189 ], [ -1.17528, 52.65145 ], [ -1.17366, 52.65134 ], [ -1.17323, 52.65052 ], [ -1.17361, 52.65016 ], [ -1.17368, 52.64996 ], [ -1.17436, 52.65015 ], [ -1.17463, 52.64948 ], [ -1.17518, 52.64972 ], [ -1.17576, 52.6496 ], [ -1.17593, 52.64912 ], [ -1.17303, 52.64783 ], [ -1.17314, 52.64731 ], [ -1.17513, 52.64836 ], [ -1.17677, 52.64869 ], [ -1.1774, 52.64847 ], [ -1.17796, 52.64737 ], [ -1.17867, 52.64724 ], [ -1.17906, 52.64675 ], [ -1.17955, 52.64686 ], [ -1.17989, 52.64693 ], [ -1.18071, 52.64663 ], [ -1.18016, 52.64624 ], [ -1.18049, 52.64588 ], [ -1.18164, 52.64591 ], [ -1.18259, 52.64613 ], [ -1.18209, 52.64675 ], [ -1.18258, 52.64712 ], [ -1.18543, 52.64367 ], [ -1.18547, 52.64363 ], [ -1.18463, 52.64358 ], [ -1.18419, 52.64313 ], [ -1.18341, 52.64357 ], [ -1.18255, 52.64359 ], [ -1.18362, 52.6426 ], [ -1.18317, 52.64221 ], [ -1.18351, 52.64235 ], [ -1.18372, 52.64211 ], [ -1.18734, 52.63809 ], [ -1.18785, 52.63838 ], [ -1.18875, 52.63808 ], [ -1.18988, 52.63834 ], [ -1.19137, 52.63677 ], [ -1.19144, 52.63682 ], [ -1.192, 52.6372 ], [ -1.19265, 52.63659 ], [ -1.19146, 52.63621 ], [ -1.19137, 52.63626 ], [ -1.19139, 52.63583 ], [ -1.19141, 52.63579 ], [ -1.1914, 52.63575 ], [ -1.19056, 52.63499 ], [ -1.19006, 52.63357 ], [ -1.18985, 52.63333 ], [ -1.19161, 52.63322 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02006820", "population": 9682, "outputarea_code": "E00130025", "lsoa_code": "E01025622", "la_name": "Blaby", "bua_name": "Leicester BUASD", "constituency_name": "Charnwood", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.20245, "latitude": 52.65009, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.19879, 52.64142 ], [ -1.19879, 52.64107 ], [ -1.19886, 52.64029 ], [ -1.19978, 52.64013 ], [ -1.20079, 52.63986 ], [ -1.20109, 52.64087 ], [ -1.20353, 52.64165 ], [ -1.20589, 52.64267 ], [ -1.20725, 52.64259 ], [ -1.20974, 52.64169 ], [ -1.21102, 52.63943 ], [ -1.21435, 52.63694 ], [ -1.21308, 52.63615 ], [ -1.21567, 52.63469 ], [ -1.21761, 52.63582 ], [ -1.2153, 52.63804 ], [ -1.21658, 52.63874 ], [ -1.21899, 52.63985 ], [ -1.21733, 52.64091 ], [ -1.22015, 52.64214 ], [ -1.22004, 52.64298 ], [ -1.21955, 52.64333 ], [ -1.22348, 52.64487 ], [ -1.22281, 52.64505 ], [ -1.22314, 52.64626 ], [ -1.22343, 52.64645 ], [ -1.22427, 52.64625 ], [ -1.22705, 52.64857 ], [ -1.22863, 52.64907 ], [ -1.22565, 52.65052 ], [ -1.22524, 52.65024 ], [ -1.22416, 52.6505 ], [ -1.21799, 52.65126 ], [ -1.2153, 52.65241 ], [ -1.21411, 52.65334 ], [ -1.21424, 52.65387 ], [ -1.21273, 52.65429 ], [ -1.21054, 52.65522 ], [ -1.21003, 52.65692 ], [ -1.21001, 52.65699 ], [ -1.20851, 52.65693 ], [ -1.20822, 52.65691 ], [ -1.20719, 52.65689 ], [ -1.20509, 52.65678 ], [ -1.20472, 52.65724 ], [ -1.20358, 52.65859 ], [ -1.20423, 52.65884 ], [ -1.20481, 52.65827 ], [ -1.20422, 52.65889 ], [ -1.20468, 52.65909 ], [ -1.20439, 52.65957 ], [ -1.20567, 52.66027 ], [ -1.20584, 52.66057 ], [ -1.20663, 52.66042 ], [ -1.20435, 52.66138 ], [ -1.20294, 52.66212 ], [ -1.20259, 52.66395 ], [ -1.19999, 52.66416 ], [ -1.19968, 52.6644 ], [ -1.19744, 52.66337 ], [ -1.19707, 52.66282 ], [ -1.19645, 52.66289 ], [ -1.19615, 52.66229 ], [ -1.19552, 52.66224 ], [ -1.19665, 52.66169 ], [ -1.19478, 52.66096 ], [ -1.19288, 52.66052 ], [ -1.19201, 52.66139 ], [ -1.18956, 52.66068 ], [ -1.18851, 52.66038 ], [ -1.18731, 52.66105 ], [ -1.18521, 52.66064 ], [ -1.18436, 52.6591 ], [ -1.18412, 52.65716 ], [ -1.18417, 52.65681 ], [ -1.18421, 52.65651 ], [ -1.18451, 52.65334 ], [ -1.18292, 52.65302 ], [ -1.1832, 52.65227 ], [ -1.18406, 52.64958 ], [ -1.18518, 52.64866 ], [ -1.18546, 52.64843 ], [ -1.18685, 52.64727 ], [ -1.18732, 52.64725 ], [ -1.18721, 52.64598 ], [ -1.18699, 52.64559 ], [ -1.1881, 52.64457 ], [ -1.18843, 52.6442 ], [ -1.18923, 52.64316 ], [ -1.19017, 52.6416 ], [ -1.19036, 52.64114 ], [ -1.19066, 52.64039 ], [ -1.19538, 52.641 ], [ -1.19807, 52.64173 ], [ -1.1988, 52.64147 ], [ -1.19879, 52.64142 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02006850", "population": 12252, "outputarea_code": "E00068866", "lsoa_code": "E01013646", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.13219, "latitude": 52.62698, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.13628, 52.62467 ], [ -1.13397, 52.62464 ], [ -1.13495, 52.62295 ], [ -1.13518, 52.62244 ], [ -1.13716, 52.61982 ], [ -1.14001, 52.62071 ], [ -1.14236, 52.62198 ], [ -1.14296, 52.62356 ], [ -1.1434, 52.62357 ], [ -1.14304, 52.62563 ], [ -1.14272, 52.62775 ], [ -1.14257, 52.62874 ], [ -1.14224, 52.63109 ], [ -1.14042, 52.63101 ], [ -1.13994, 52.63058 ], [ -1.139, 52.62973 ], [ -1.13838, 52.62952 ], [ -1.13763, 52.62977 ], [ -1.13727, 52.62929 ], [ -1.13669, 52.62968 ], [ -1.13585, 52.62909 ], [ -1.13518, 52.62868 ], [ -1.13475, 52.62872 ], [ -1.1351, 52.62909 ], [ -1.13565, 52.62971 ], [ -1.13474, 52.6302 ], [ -1.13447, 52.62976 ], [ -1.13335, 52.62972 ], [ -1.13346, 52.6301 ], [ -1.13259, 52.63013 ], [ -1.13272, 52.63046 ], [ -1.13182, 52.63031 ], [ -1.13212, 52.63123 ], [ -1.12948, 52.62991 ], [ -1.12691, 52.62908 ], [ -1.12625, 52.62972 ], [ -1.12759, 52.63037 ], [ -1.12684, 52.63063 ], [ -1.12581, 52.63028 ], [ -1.12563, 52.6309 ], [ -1.12529, 52.63087 ], [ -1.1257, 52.63136 ], [ -1.12431, 52.63183 ], [ -1.12303, 52.63347 ], [ -1.12198, 52.63309 ], [ -1.12054, 52.63188 ], [ -1.12005, 52.63154 ], [ -1.11977, 52.63133 ], [ -1.11837, 52.63046 ], [ -1.11988, 52.62956 ], [ -1.12002, 52.62947 ], [ -1.12163, 52.62851 ], [ -1.11977, 52.62729 ], [ -1.11896, 52.62682 ], [ -1.11865, 52.62659 ], [ -1.12052, 52.62519 ], [ -1.12187, 52.62566 ], [ -1.12267, 52.62594 ], [ -1.12404, 52.62427 ], [ -1.12521, 52.62465 ], [ -1.12577, 52.62404 ], [ -1.12665, 52.62431 ], [ -1.12859, 52.62498 ], [ -1.12828, 52.62567 ], [ -1.12919, 52.62605 ], [ -1.13129, 52.62669 ], [ -1.13055, 52.62755 ], [ -1.13086, 52.62766 ], [ -1.13237, 52.62694 ], [ -1.13305, 52.62705 ], [ -1.13276, 52.62634 ], [ -1.13358, 52.62519 ], [ -1.13487, 52.62561 ], [ -1.13628, 52.62467 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Leicester", "bua_code": "E35001399", "msoa_code": "E02006851", "population": 8807, "outputarea_code": "E00068903", "lsoa_code": "E01032873", "la_name": "Leicester", "bua_name": "Leicester BUASD", "constituency_name": "Leicester South", "citytownclassification": "Other City", "urban": "Y", "longitude": -1.13214, "latitude": 52.63486, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.13565, 52.62971 ], [ -1.1351, 52.62909 ], [ -1.13475, 52.62872 ], [ -1.13518, 52.62868 ], [ -1.13585, 52.62909 ], [ -1.13669, 52.62968 ], [ -1.13727, 52.62929 ], [ -1.13763, 52.62977 ], [ -1.13838, 52.62952 ], [ -1.139, 52.62973 ], [ -1.13994, 52.63058 ], [ -1.14042, 52.63101 ], [ -1.14224, 52.63109 ], [ -1.14205, 52.63234 ], [ -1.14233, 52.63372 ], [ -1.14153, 52.63377 ], [ -1.14159, 52.6343 ], [ -1.14017, 52.63492 ], [ -1.14032, 52.63596 ], [ -1.13971, 52.63696 ], [ -1.13649, 52.63911 ], [ -1.13591, 52.63937 ], [ -1.13317, 52.64049 ], [ -1.13071, 52.64139 ], [ -1.12956, 52.64128 ], [ -1.12629, 52.63969 ], [ -1.12577, 52.63944 ], [ -1.12392, 52.63827 ], [ -1.12351, 52.63785 ], [ -1.12305, 52.63511 ], [ -1.12339, 52.63425 ], [ -1.12437, 52.63353 ], [ -1.12303, 52.63347 ], [ -1.12431, 52.63183 ], [ -1.1257, 52.63136 ], [ -1.12529, 52.63087 ], [ -1.12563, 52.6309 ], [ -1.12581, 52.63028 ], [ -1.12684, 52.63063 ], [ -1.12759, 52.63037 ], [ -1.12625, 52.62972 ], [ -1.12691, 52.62908 ], [ -1.12948, 52.62991 ], [ -1.13212, 52.63123 ], [ -1.13182, 52.63031 ], [ -1.13272, 52.63046 ], [ -1.13259, 52.63013 ], [ -1.13346, 52.6301 ], [ -1.13335, 52.62972 ], [ -1.13447, 52.62976 ], [ -1.13474, 52.6302 ], [ -1.13565, 52.62971 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Lincoln", "bua_code": "E35001451", "msoa_code": "E02005442", "population": 6046, "outputarea_code": "E00132761", "lsoa_code": "E01026150", "la_name": "Lincoln", "bua_name": "Lincoln BUASD", "constituency_name": "Lincoln", "citytownclassification": "Large Town", "urban": "Y", "longitude": -0.54085, "latitude": 53.2504, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.53244, 53.24722 ], [ -0.53336, 53.24732 ], [ -0.53366, 53.24679 ], [ -0.53425, 53.24665 ], [ -0.53337, 53.24648 ], [ -0.53399, 53.24599 ], [ -0.53555, 53.2459 ], [ -0.53553, 53.24563 ], [ -0.53438, 53.24573 ], [ -0.53356, 53.24548 ], [ -0.53362, 53.24501 ], [ -0.53309, 53.24496 ], [ -0.53585, 53.24486 ], [ -0.53681, 53.24482 ], [ -0.53794, 53.2449 ], [ -0.53805, 53.24697 ], [ -0.53833, 53.25034 ], [ -0.53843, 53.25025 ], [ -0.53832, 53.24866 ], [ -0.54205, 53.24825 ], [ -0.5424, 53.2487 ], [ -0.54214, 53.24929 ], [ -0.54341, 53.2491 ], [ -0.54321, 53.2487 ], [ -0.54463, 53.24824 ], [ -0.54456, 53.2478 ], [ -0.5466, 53.24653 ], [ -0.54809, 53.2464 ], [ -0.54955, 53.24523 ], [ -0.55114, 53.24734 ], [ -0.55466, 53.25215 ], [ -0.55344, 53.25237 ], [ -0.54897, 53.25311 ], [ -0.54835, 53.25325 ], [ -0.54495, 53.25387 ], [ -0.54128, 53.25428 ], [ -0.53858, 53.25456 ], [ -0.53465, 53.25435 ], [ -0.53319, 53.25413 ], [ -0.5288, 53.25387 ], [ -0.52869, 53.25387 ], [ -0.52671, 53.25382 ], [ -0.52672, 53.25296 ], [ -0.52787, 53.25328 ], [ -0.5292, 53.2531 ], [ -0.52939, 53.25333 ], [ -0.53024, 53.25295 ], [ -0.53059, 53.25314 ], [ -0.53147, 53.25288 ], [ -0.53073, 53.25197 ], [ -0.53113, 53.25173 ], [ -0.53073, 53.25171 ], [ -0.53116, 53.25075 ], [ -0.52972, 53.25037 ], [ -0.52971, 53.25009 ], [ -0.52969, 53.24881 ], [ -0.52893, 53.24907 ], [ -0.52888, 53.24821 ], [ -0.52999, 53.24805 ], [ -0.53044, 53.24794 ], [ -0.53091, 53.24827 ], [ -0.531, 53.24747 ], [ -0.53053, 53.24737 ], [ -0.53244, 53.24722 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Lincoln", "bua_code": "E35001451", "msoa_code": "E02005443", "population": 7153, "outputarea_code": "E00132787", "lsoa_code": "E01026155", "la_name": "Lincoln", "bua_name": "Lincoln BUASD", "constituency_name": "Lincoln", "citytownclassification": "Large Town", "urban": "Y", "longitude": -0.51281, "latitude": 53.24823, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.50351, 53.24216 ], [ -0.50728, 53.24057 ], [ -0.50821, 53.24092 ], [ -0.50851, 53.24195 ], [ -0.51011, 53.24179 ], [ -0.5104, 53.24222 ], [ -0.51082, 53.24244 ], [ -0.51088, 53.24278 ], [ -0.51037, 53.24315 ], [ -0.51152, 53.24357 ], [ -0.51074, 53.24382 ], [ -0.51178, 53.2449 ], [ -0.51194, 53.24579 ], [ -0.51158, 53.24595 ], [ -0.51196, 53.24651 ], [ -0.51129, 53.24778 ], [ -0.51445, 53.24778 ], [ -0.51521, 53.24776 ], [ -0.51537, 53.24719 ], [ -0.51633, 53.24721 ], [ -0.51641, 53.24669 ], [ -0.51722, 53.24672 ], [ -0.51831, 53.2474 ], [ -0.51902, 53.24733 ], [ -0.51947, 53.2478 ], [ -0.5186, 53.24857 ], [ -0.51865, 53.24915 ], [ -0.51957, 53.24901 ], [ -0.52143, 53.24738 ], [ -0.52191, 53.24707 ], [ -0.52237, 53.24726 ], [ -0.52472, 53.24521 ], [ -0.52593, 53.24651 ], [ -0.52732, 53.2466 ], [ -0.52915, 53.24618 ], [ -0.52989, 53.24753 ], [ -0.52821, 53.24784 ], [ -0.52826, 53.24812 ], [ -0.52888, 53.24821 ], [ -0.52893, 53.24907 ], [ -0.52969, 53.24881 ], [ -0.52971, 53.25009 ], [ -0.52972, 53.25037 ], [ -0.53116, 53.25075 ], [ -0.53073, 53.25171 ], [ -0.53113, 53.25173 ], [ -0.53073, 53.25197 ], [ -0.53147, 53.25288 ], [ -0.53059, 53.25314 ], [ -0.53024, 53.25295 ], [ -0.52939, 53.25333 ], [ -0.5292, 53.2531 ], [ -0.52787, 53.25328 ], [ -0.52672, 53.25296 ], [ -0.52671, 53.25382 ], [ -0.5232, 53.25338 ], [ -0.52318, 53.25383 ], [ -0.51427, 53.25403 ], [ -0.51409, 53.25381 ], [ -0.51032, 53.25193 ], [ -0.50711, 53.25037 ], [ -0.50621, 53.24992 ], [ -0.50244, 53.25059 ], [ -0.50189, 53.24994 ], [ -0.50062, 53.24829 ], [ -0.4976, 53.24921 ], [ -0.49601, 53.24719 ], [ -0.49539, 53.24495 ], [ -0.49581, 53.24382 ], [ -0.49862, 53.24295 ], [ -0.4997, 53.24256 ], [ -0.4998, 53.24252 ], [ -0.50153, 53.24189 ], [ -0.50301, 53.24234 ], [ -0.50347, 53.24218 ], [ -0.50351, 53.24216 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Lincoln", "bua_code": "E35001451", "msoa_code": "E02005444", "population": 12696, "outputarea_code": "E00132634", "lsoa_code": "E01026125", "la_name": "Lincoln", "bua_name": "Lincoln BUASD", "constituency_name": "Lincoln", "citytownclassification": "Large Town", "urban": "Y", "longitude": -0.55272, "latitude": 53.2413, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.52002, 53.2309 ], [ -0.52038, 53.23101 ], [ -0.52193, 53.23103 ], [ -0.52167, 53.23234 ], [ -0.52227, 53.23241 ], [ -0.52226, 53.2327 ], [ -0.5236, 53.23266 ], [ -0.52447, 53.23277 ], [ -0.52404, 53.2331 ], [ -0.52413, 53.23412 ], [ -0.52415, 53.23431 ], [ -0.52454, 53.23514 ], [ -0.52495, 53.23516 ], [ -0.52533, 53.23765 ], [ -0.52939, 53.23648 ], [ -0.52934, 53.23511 ], [ -0.53134, 53.23413 ], [ -0.53247, 53.23337 ], [ -0.53223, 53.23262 ], [ -0.53304, 53.23244 ], [ -0.53584, 53.23162 ], [ -0.5363, 53.23076 ], [ -0.53692, 53.2307 ], [ -0.53725, 53.23272 ], [ -0.53844, 53.23257 ], [ -0.53878, 53.2337 ], [ -0.54281, 53.23399 ], [ -0.54306, 53.2341 ], [ -0.543, 53.23485 ], [ -0.54291, 53.2363 ], [ -0.54389, 53.23774 ], [ -0.54467, 53.23732 ], [ -0.54522, 53.23754 ], [ -0.54555, 53.23854 ], [ -0.54655, 53.23866 ], [ -0.54689, 53.2383 ], [ -0.54631, 53.23769 ], [ -0.54685, 53.23755 ], [ -0.54798, 53.23798 ], [ -0.54854, 53.23761 ], [ -0.55065, 53.23697 ], [ -0.55186, 53.2367 ], [ -0.55241, 53.23592 ], [ -0.55408, 53.23566 ], [ -0.5536, 53.23534 ], [ -0.55387, 53.23509 ], [ -0.55524, 53.23546 ], [ -0.55476, 53.23485 ], [ -0.55325, 53.23447 ], [ -0.55161, 53.23386 ], [ -0.55191, 53.23297 ], [ -0.55202, 53.23285 ], [ -0.55371, 53.2334 ], [ -0.5536, 53.23306 ], [ -0.55265, 53.23276 ], [ -0.55276, 53.23248 ], [ -0.55425, 53.23324 ], [ -0.55459, 53.23302 ], [ -0.55452, 53.23258 ], [ -0.55554, 53.23292 ], [ -0.55676, 53.23115 ], [ -0.56196, 53.23215 ], [ -0.5691, 53.23413 ], [ -0.57084, 53.23566 ], [ -0.5722, 53.23645 ], [ -0.59511, 53.24517 ], [ -0.59346, 53.24559 ], [ -0.57223, 53.2494 ], [ -0.5569, 53.25196 ], [ -0.55466, 53.25215 ], [ -0.55114, 53.24734 ], [ -0.54955, 53.24523 ], [ -0.54809, 53.2464 ], [ -0.5466, 53.24653 ], [ -0.54456, 53.2478 ], [ -0.54463, 53.24824 ], [ -0.54321, 53.2487 ], [ -0.54341, 53.2491 ], [ -0.54214, 53.24929 ], [ -0.5424, 53.2487 ], [ -0.54205, 53.24825 ], [ -0.53832, 53.24866 ], [ -0.53843, 53.25025 ], [ -0.53833, 53.25034 ], [ -0.53805, 53.24697 ], [ -0.53794, 53.2449 ], [ -0.53681, 53.24482 ], [ -0.53585, 53.24486 ], [ -0.53309, 53.24496 ], [ -0.53362, 53.24501 ], [ -0.53356, 53.24548 ], [ -0.53438, 53.24573 ], [ -0.53553, 53.24563 ], [ -0.53555, 53.2459 ], [ -0.53399, 53.24599 ], [ -0.53337, 53.24648 ], [ -0.53425, 53.24665 ], [ -0.53366, 53.24679 ], [ -0.53336, 53.24732 ], [ -0.53244, 53.24722 ], [ -0.53053, 53.24737 ], [ -0.531, 53.24747 ], [ -0.53091, 53.24827 ], [ -0.53044, 53.24794 ], [ -0.52999, 53.24805 ], [ -0.52888, 53.24821 ], [ -0.52826, 53.24812 ], [ -0.52821, 53.24784 ], [ -0.52989, 53.24753 ], [ -0.52915, 53.24618 ], [ -0.52732, 53.2466 ], [ -0.52593, 53.24651 ], [ -0.52472, 53.24521 ], [ -0.52731, 53.2429 ], [ -0.52573, 53.24153 ], [ -0.52512, 53.24067 ], [ -0.52499, 53.2405 ], [ -0.52462, 53.24 ], [ -0.52316, 53.23842 ], [ -0.51757, 53.24026 ], [ -0.5172, 53.24038 ], [ -0.51628, 53.23935 ], [ -0.51472, 53.23958 ], [ -0.51369, 53.23785 ], [ -0.51291, 53.23794 ], [ -0.51278, 53.2376 ], [ -0.51269, 53.23549 ], [ -0.51219, 53.23447 ], [ -0.5163, 53.23456 ], [ -0.51662, 53.23381 ], [ -0.51542, 53.23213 ], [ -0.51693, 53.23174 ], [ -0.51724, 53.23078 ], [ -0.51774, 53.23067 ], [ -0.51813, 53.23074 ], [ -0.52002, 53.2309 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Lincoln", "bua_code": "E35001451", "msoa_code": "E02005445", "population": 12033, "outputarea_code": "E00132632", "lsoa_code": "E01026124", "la_name": "Lincoln", "bua_name": "Lincoln BUASD", "constituency_name": "Lincoln", "citytownclassification": "Large Town", "urban": "Y", "longitude": -0.51294, "latitude": 53.23509, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.52227, 53.23241 ], [ -0.52167, 53.23234 ], [ -0.52193, 53.23103 ], [ -0.52038, 53.23101 ], [ -0.52002, 53.2309 ], [ -0.51813, 53.23074 ], [ -0.51774, 53.23067 ], [ -0.51724, 53.23078 ], [ -0.51693, 53.23174 ], [ -0.51542, 53.23213 ], [ -0.51662, 53.23381 ], [ -0.5163, 53.23456 ], [ -0.51219, 53.23447 ], [ -0.51269, 53.23549 ], [ -0.51278, 53.2376 ], [ -0.51291, 53.23794 ], [ -0.51369, 53.23785 ], [ -0.51472, 53.23958 ], [ -0.51628, 53.23935 ], [ -0.5172, 53.24038 ], [ -0.51757, 53.24026 ], [ -0.52316, 53.23842 ], [ -0.52462, 53.24 ], [ -0.52499, 53.2405 ], [ -0.52512, 53.24067 ], [ -0.52573, 53.24153 ], [ -0.52731, 53.2429 ], [ -0.52472, 53.24521 ], [ -0.52237, 53.24726 ], [ -0.52191, 53.24707 ], [ -0.52143, 53.24738 ], [ -0.51957, 53.24901 ], [ -0.51865, 53.24915 ], [ -0.5186, 53.24857 ], [ -0.51947, 53.2478 ], [ -0.51902, 53.24733 ], [ -0.51831, 53.2474 ], [ -0.51722, 53.24672 ], [ -0.51641, 53.24669 ], [ -0.51633, 53.24721 ], [ -0.51537, 53.24719 ], [ -0.51521, 53.24776 ], [ -0.51445, 53.24778 ], [ -0.51129, 53.24778 ], [ -0.51196, 53.24651 ], [ -0.51158, 53.24595 ], [ -0.51194, 53.24579 ], [ -0.51178, 53.2449 ], [ -0.51074, 53.24382 ], [ -0.51152, 53.24357 ], [ -0.51037, 53.24315 ], [ -0.51088, 53.24278 ], [ -0.51082, 53.24244 ], [ -0.5104, 53.24222 ], [ -0.51011, 53.24179 ], [ -0.50851, 53.24195 ], [ -0.50821, 53.24092 ], [ -0.50728, 53.24057 ], [ -0.50351, 53.24216 ], [ -0.50347, 53.24218 ], [ -0.50301, 53.24234 ], [ -0.50153, 53.24189 ], [ -0.4998, 53.24252 ], [ -0.4997, 53.24256 ], [ -0.49862, 53.24295 ], [ -0.49581, 53.24382 ], [ -0.49434, 53.24209 ], [ -0.49629, 53.24035 ], [ -0.49575, 53.24016 ], [ -0.49489, 53.23702 ], [ -0.49481, 53.23675 ], [ -0.49447, 53.23537 ], [ -0.49391, 53.2334 ], [ -0.49642, 53.23372 ], [ -0.49508, 53.2253 ], [ -0.5023, 53.2258 ], [ -0.50663, 53.22622 ], [ -0.51737, 53.22775 ], [ -0.5195, 53.22756 ], [ -0.52415, 53.22685 ], [ -0.52657, 53.22714 ], [ -0.52788, 53.2274 ], [ -0.53201, 53.22813 ], [ -0.53667, 53.22817 ], [ -0.54067, 53.22854 ], [ -0.53954, 53.23145 ], [ -0.53844, 53.23257 ], [ -0.53725, 53.23272 ], [ -0.53692, 53.2307 ], [ -0.5363, 53.23076 ], [ -0.53584, 53.23162 ], [ -0.53304, 53.23244 ], [ -0.53223, 53.23262 ], [ -0.53247, 53.23337 ], [ -0.53134, 53.23413 ], [ -0.52934, 53.23511 ], [ -0.52939, 53.23648 ], [ -0.52533, 53.23765 ], [ -0.52495, 53.23516 ], [ -0.52454, 53.23514 ], [ -0.52415, 53.23431 ], [ -0.52413, 53.23412 ], [ -0.52404, 53.2331 ], [ -0.52447, 53.23277 ], [ -0.5236, 53.23266 ], [ -0.52226, 53.2327 ], [ -0.52227, 53.23241 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Lincoln", "bua_code": "E35001451", "msoa_code": "E02005446", "population": 9394, "outputarea_code": "E00132682", "lsoa_code": "E01026132", "la_name": "Lincoln", "bua_name": "Lincoln BUASD", "constituency_name": "Lincoln", "citytownclassification": "Large Town", "urban": "Y", "longitude": -0.5529, "latitude": 53.23012, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.54532, 53.22108 ], [ -0.5454, 53.22081 ], [ -0.54752, 53.22109 ], [ -0.54782, 53.22088 ], [ -0.54948, 53.22152 ], [ -0.54972, 53.22068 ], [ -0.54995, 53.22071 ], [ -0.55227, 53.22151 ], [ -0.55102, 53.22242 ], [ -0.55115, 53.2229 ], [ -0.55081, 53.22283 ], [ -0.55007, 53.22426 ], [ -0.5515, 53.22522 ], [ -0.55172, 53.22509 ], [ -0.55206, 53.22525 ], [ -0.55083, 53.22574 ], [ -0.55033, 53.22681 ], [ -0.55078, 53.22806 ], [ -0.55058, 53.22904 ], [ -0.55977, 53.23082 ], [ -0.56215, 53.23012 ], [ -0.56309, 53.22923 ], [ -0.56304, 53.22831 ], [ -0.56147, 53.22634 ], [ -0.56366, 53.22648 ], [ -0.56757, 53.22613 ], [ -0.56987, 53.22643 ], [ -0.57263, 53.22791 ], [ -0.57036, 53.22946 ], [ -0.57073, 53.22961 ], [ -0.57236, 53.23545 ], [ -0.5722, 53.23645 ], [ -0.57084, 53.23566 ], [ -0.5691, 53.23413 ], [ -0.56196, 53.23215 ], [ -0.55676, 53.23115 ], [ -0.55554, 53.23292 ], [ -0.55452, 53.23258 ], [ -0.55459, 53.23302 ], [ -0.55425, 53.23324 ], [ -0.55276, 53.23248 ], [ -0.55265, 53.23276 ], [ -0.5536, 53.23306 ], [ -0.55371, 53.2334 ], [ -0.55202, 53.23285 ], [ -0.55191, 53.23297 ], [ -0.55161, 53.23386 ], [ -0.55325, 53.23447 ], [ -0.55476, 53.23485 ], [ -0.55524, 53.23546 ], [ -0.55387, 53.23509 ], [ -0.5536, 53.23534 ], [ -0.55408, 53.23566 ], [ -0.55241, 53.23592 ], [ -0.55186, 53.2367 ], [ -0.55065, 53.23697 ], [ -0.54854, 53.23761 ], [ -0.54798, 53.23798 ], [ -0.54685, 53.23755 ], [ -0.54631, 53.23769 ], [ -0.54689, 53.2383 ], [ -0.54655, 53.23866 ], [ -0.54555, 53.23854 ], [ -0.54522, 53.23754 ], [ -0.54467, 53.23732 ], [ -0.54389, 53.23774 ], [ -0.54291, 53.2363 ], [ -0.543, 53.23485 ], [ -0.54306, 53.2341 ], [ -0.54281, 53.23399 ], [ -0.53878, 53.2337 ], [ -0.53844, 53.23257 ], [ -0.53954, 53.23145 ], [ -0.54067, 53.22854 ], [ -0.54145, 53.22694 ], [ -0.54423, 53.22224 ], [ -0.54425, 53.22221 ], [ -0.54446, 53.22171 ], [ -0.54462, 53.22115 ], [ -0.54465, 53.22103 ], [ -0.54532, 53.22108 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Lincoln", "bua_code": "E35001451", "msoa_code": "E02005447", "population": 7303, "outputarea_code": "E00132687", "lsoa_code": "E01026134", "la_name": "Lincoln", "bua_name": "Lincoln BUASD", "constituency_name": "Lincoln", "citytownclassification": "Large Town", "urban": "Y", "longitude": -0.52791, "latitude": 53.22119, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.54662, 53.21403 ], [ -0.54713, 53.21242 ], [ -0.54729, 53.212 ], [ -0.5485, 53.21212 ], [ -0.54963, 53.21223 ], [ -0.54967, 53.21285 ], [ -0.55129, 53.21238 ], [ -0.55197, 53.21386 ], [ -0.55035, 53.21412 ], [ -0.54988, 53.21613 ], [ -0.54974, 53.21647 ], [ -0.54955, 53.21686 ], [ -0.54915, 53.21774 ], [ -0.5492, 53.21843 ], [ -0.54581, 53.21839 ], [ -0.54583, 53.21884 ], [ -0.54522, 53.2188 ], [ -0.54517, 53.219 ], [ -0.54511, 53.21927 ], [ -0.54477, 53.22065 ], [ -0.54465, 53.22103 ], [ -0.54462, 53.22115 ], [ -0.54446, 53.22171 ], [ -0.54425, 53.22221 ], [ -0.54423, 53.22224 ], [ -0.54145, 53.22694 ], [ -0.54067, 53.22854 ], [ -0.53667, 53.22817 ], [ -0.53201, 53.22813 ], [ -0.52788, 53.2274 ], [ -0.52657, 53.22714 ], [ -0.52415, 53.22685 ], [ -0.5195, 53.22756 ], [ -0.51737, 53.22775 ], [ -0.50663, 53.22622 ], [ -0.5023, 53.2258 ], [ -0.50161, 53.22285 ], [ -0.50127, 53.22106 ], [ -0.50549, 53.21985 ], [ -0.50892, 53.21819 ], [ -0.51344, 53.21807 ], [ -0.51385, 53.22017 ], [ -0.52396, 53.21917 ], [ -0.52692, 53.21872 ], [ -0.52696, 53.2183 ], [ -0.53019, 53.21754 ], [ -0.52873, 53.21474 ], [ -0.53202, 53.21406 ], [ -0.53388, 53.21316 ], [ -0.53685, 53.21117 ], [ -0.54085, 53.21149 ], [ -0.54283, 53.21192 ], [ -0.54489, 53.21289 ], [ -0.54259, 53.21469 ], [ -0.5433, 53.2154 ], [ -0.54011, 53.21638 ], [ -0.54054, 53.2173 ], [ -0.54267, 53.21623 ], [ -0.54359, 53.21651 ], [ -0.54354, 53.21682 ], [ -0.54392, 53.21719 ], [ -0.54501, 53.21729 ], [ -0.5451, 53.21681 ], [ -0.54577, 53.21669 ], [ -0.54594, 53.21601 ], [ -0.54662, 53.21403 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Lincoln", "bua_code": "E35001451", "msoa_code": "E02005448", "population": 7363, "outputarea_code": "E00132657", "lsoa_code": "E01026129", "la_name": "Lincoln", "bua_name": "Lincoln BUASD", "constituency_name": "Lincoln", "citytownclassification": "Large Town", "urban": "Y", "longitude": -0.60936, "latitude": 53.21614, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.60627, 53.20938 ], [ -0.60667, 53.20863 ], [ -0.60693, 53.20831 ], [ -0.6085, 53.20721 ], [ -0.60908, 53.20632 ], [ -0.61087, 53.20673 ], [ -0.61921, 53.20877 ], [ -0.6178, 53.21124 ], [ -0.61747, 53.21441 ], [ -0.62023, 53.21671 ], [ -0.62262, 53.2176 ], [ -0.6167, 53.2191 ], [ -0.61616, 53.21924 ], [ -0.61705, 53.22086 ], [ -0.61563, 53.22125 ], [ -0.61532, 53.22199 ], [ -0.61047, 53.2241 ], [ -0.60922, 53.22301 ], [ -0.60857, 53.22245 ], [ -0.60689, 53.22403 ], [ -0.60385, 53.22257 ], [ -0.60408, 53.22237 ], [ -0.60446, 53.22254 ], [ -0.60555, 53.22165 ], [ -0.60589, 53.22086 ], [ -0.60552, 53.22075 ], [ -0.60456, 53.22116 ], [ -0.60421, 53.22183 ], [ -0.60314, 53.22146 ], [ -0.6022, 53.22169 ], [ -0.60173, 53.22143 ], [ -0.60144, 53.22164 ], [ -0.60048, 53.22153 ], [ -0.60003, 53.22231 ], [ -0.60094, 53.22219 ], [ -0.60123, 53.22275 ], [ -0.60246, 53.22297 ], [ -0.60273, 53.22374 ], [ -0.6021, 53.22414 ], [ -0.60092, 53.22429 ], [ -0.60071, 53.22505 ], [ -0.59877, 53.22462 ], [ -0.59828, 53.22521 ], [ -0.59727, 53.22321 ], [ -0.59823, 53.22229 ], [ -0.59624, 53.22173 ], [ -0.59516, 53.22189 ], [ -0.59482, 53.22159 ], [ -0.59375, 53.22225 ], [ -0.59249, 53.22227 ], [ -0.59238, 53.22221 ], [ -0.59777, 53.21969 ], [ -0.5982, 53.21948 ], [ -0.60065, 53.21836 ], [ -0.60114, 53.21805 ], [ -0.60212, 53.21712 ], [ -0.60297, 53.2154 ], [ -0.60306, 53.21521 ], [ -0.60333, 53.21437 ], [ -0.60324, 53.21135 ], [ -0.60316, 53.21089 ], [ -0.60371, 53.21081 ], [ -0.6053, 53.21039 ], [ -0.60627, 53.20938 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Lincoln", "bua_code": "E35001451", "msoa_code": "E02005449", "population": 8489, "outputarea_code": "E00132681", "lsoa_code": "E01026133", "la_name": "Lincoln", "bua_name": "Lincoln BUASD", "constituency_name": "Lincoln", "citytownclassification": "Large Town", "urban": "Y", "longitude": -0.56503, "latitude": 53.21925, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.56196, 53.20777 ], [ -0.5627, 53.21027 ], [ -0.56463, 53.21069 ], [ -0.5666, 53.21109 ], [ -0.57016, 53.21177 ], [ -0.57211, 53.21208 ], [ -0.57354, 53.2123 ], [ -0.57438, 53.21246 ], [ -0.5762, 53.21285 ], [ -0.57758, 53.21354 ], [ -0.57891, 53.21428 ], [ -0.58074, 53.21529 ], [ -0.58516, 53.21786 ], [ -0.5854, 53.21827 ], [ -0.58412, 53.21929 ], [ -0.58796, 53.22171 ], [ -0.59335, 53.22638 ], [ -0.59504, 53.22785 ], [ -0.59251, 53.2287 ], [ -0.57884, 53.2306 ], [ -0.57547, 53.23164 ], [ -0.57073, 53.22961 ], [ -0.57036, 53.22946 ], [ -0.57263, 53.22791 ], [ -0.56987, 53.22643 ], [ -0.56757, 53.22613 ], [ -0.56366, 53.22648 ], [ -0.56147, 53.22634 ], [ -0.56304, 53.22831 ], [ -0.56309, 53.22923 ], [ -0.56215, 53.23012 ], [ -0.55977, 53.23082 ], [ -0.55058, 53.22904 ], [ -0.55078, 53.22806 ], [ -0.55033, 53.22681 ], [ -0.55083, 53.22574 ], [ -0.55206, 53.22525 ], [ -0.55172, 53.22509 ], [ -0.5515, 53.22522 ], [ -0.55007, 53.22426 ], [ -0.55081, 53.22283 ], [ -0.55115, 53.2229 ], [ -0.55102, 53.22242 ], [ -0.55227, 53.22151 ], [ -0.54995, 53.22071 ], [ -0.54972, 53.22068 ], [ -0.54948, 53.22152 ], [ -0.54782, 53.22088 ], [ -0.54752, 53.22109 ], [ -0.5454, 53.22081 ], [ -0.54532, 53.22108 ], [ -0.54465, 53.22103 ], [ -0.54477, 53.22065 ], [ -0.54511, 53.21927 ], [ -0.54517, 53.219 ], [ -0.54522, 53.2188 ], [ -0.54583, 53.21884 ], [ -0.54581, 53.21839 ], [ -0.5492, 53.21843 ], [ -0.54915, 53.21774 ], [ -0.54955, 53.21686 ], [ -0.54974, 53.21647 ], [ -0.54988, 53.21613 ], [ -0.55035, 53.21412 ], [ -0.55197, 53.21386 ], [ -0.55129, 53.21238 ], [ -0.54967, 53.21285 ], [ -0.54963, 53.21223 ], [ -0.5485, 53.21212 ], [ -0.54729, 53.212 ], [ -0.54713, 53.21242 ], [ -0.54662, 53.21403 ], [ -0.54594, 53.21601 ], [ -0.54577, 53.21669 ], [ -0.5451, 53.21681 ], [ -0.54501, 53.21729 ], [ -0.54392, 53.21719 ], [ -0.54354, 53.21682 ], [ -0.54359, 53.21651 ], [ -0.54267, 53.21623 ], [ -0.54054, 53.2173 ], [ -0.54011, 53.21638 ], [ -0.5433, 53.2154 ], [ -0.54259, 53.21469 ], [ -0.54489, 53.21289 ], [ -0.54283, 53.21192 ], [ -0.54085, 53.21149 ], [ -0.53685, 53.21117 ], [ -0.53851, 53.20999 ], [ -0.53972, 53.20842 ], [ -0.53965, 53.20392 ], [ -0.54098, 53.20364 ], [ -0.54344, 53.20398 ], [ -0.54461, 53.20457 ], [ -0.54504, 53.20543 ], [ -0.54642, 53.20556 ], [ -0.54768, 53.20702 ], [ -0.55008, 53.2075 ], [ -0.55055, 53.20758 ], [ -0.55051, 53.20789 ], [ -0.54985, 53.20894 ], [ -0.55069, 53.20917 ], [ -0.55029, 53.20967 ], [ -0.54982, 53.21043 ], [ -0.5512, 53.21071 ], [ -0.55177, 53.21109 ], [ -0.55208, 53.21091 ], [ -0.55316, 53.21034 ], [ -0.55371, 53.20942 ], [ -0.55288, 53.20857 ], [ -0.55288, 53.20854 ], [ -0.55568, 53.20761 ], [ -0.5597, 53.2058 ], [ -0.56078, 53.20576 ], [ -0.56196, 53.20777 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Lincoln", "bua_code": "E35001451", "msoa_code": "E02005450", "population": 8386, "outputarea_code": "E00132655", "lsoa_code": "E01026130", "la_name": "Lincoln", "bua_name": "Lincoln BUASD", "constituency_name": "Lincoln", "citytownclassification": "Large Town", "urban": "Y", "longitude": -0.59519, "latitude": 53.21196, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5801, 53.20918 ], [ -0.57843, 53.20999 ], [ -0.57758, 53.20941 ], [ -0.57653, 53.20894 ], [ -0.57785, 53.20798 ], [ -0.58096, 53.20571 ], [ -0.58438, 53.20331 ], [ -0.58749, 53.20108 ], [ -0.58822, 53.20057 ], [ -0.59247, 53.2016 ], [ -0.59992, 53.20343 ], [ -0.60049, 53.20358 ], [ -0.60289, 53.20308 ], [ -0.60671, 53.20196 ], [ -0.60812, 53.20187 ], [ -0.61371, 53.20273 ], [ -0.61501, 53.20357 ], [ -0.61486, 53.20531 ], [ -0.61758, 53.20736 ], [ -0.61972, 53.20808 ], [ -0.61921, 53.20877 ], [ -0.61087, 53.20673 ], [ -0.60908, 53.20632 ], [ -0.6085, 53.20721 ], [ -0.60693, 53.20831 ], [ -0.60667, 53.20863 ], [ -0.60627, 53.20938 ], [ -0.6053, 53.21039 ], [ -0.60371, 53.21081 ], [ -0.60316, 53.21089 ], [ -0.60324, 53.21135 ], [ -0.60333, 53.21437 ], [ -0.60306, 53.21521 ], [ -0.60297, 53.2154 ], [ -0.60212, 53.21712 ], [ -0.60114, 53.21805 ], [ -0.60065, 53.21836 ], [ -0.5982, 53.21948 ], [ -0.59777, 53.21969 ], [ -0.59238, 53.22221 ], [ -0.59249, 53.22227 ], [ -0.59375, 53.22225 ], [ -0.59482, 53.22159 ], [ -0.59516, 53.22189 ], [ -0.59624, 53.22173 ], [ -0.59823, 53.22229 ], [ -0.59727, 53.22321 ], [ -0.59828, 53.22521 ], [ -0.59877, 53.22462 ], [ -0.60071, 53.22505 ], [ -0.60092, 53.22429 ], [ -0.6021, 53.22414 ], [ -0.60273, 53.22374 ], [ -0.60246, 53.22297 ], [ -0.60123, 53.22275 ], [ -0.60094, 53.22219 ], [ -0.60003, 53.22231 ], [ -0.60048, 53.22153 ], [ -0.60144, 53.22164 ], [ -0.60173, 53.22143 ], [ -0.6022, 53.22169 ], [ -0.60314, 53.22146 ], [ -0.60421, 53.22183 ], [ -0.60456, 53.22116 ], [ -0.60552, 53.22075 ], [ -0.60589, 53.22086 ], [ -0.60555, 53.22165 ], [ -0.60446, 53.22254 ], [ -0.60408, 53.22237 ], [ -0.60385, 53.22257 ], [ -0.60689, 53.22403 ], [ -0.60594, 53.2245 ], [ -0.60484, 53.22472 ], [ -0.60337, 53.22512 ], [ -0.60095, 53.22671 ], [ -0.59991, 53.22729 ], [ -0.59648, 53.22935 ], [ -0.59504, 53.22785 ], [ -0.59335, 53.22638 ], [ -0.58796, 53.22171 ], [ -0.58412, 53.21929 ], [ -0.5854, 53.21827 ], [ -0.58516, 53.21786 ], [ -0.58074, 53.21529 ], [ -0.58204, 53.21535 ], [ -0.58321, 53.21484 ], [ -0.58411, 53.21378 ], [ -0.58589, 53.21168 ], [ -0.58483, 53.2126 ], [ -0.58279, 53.21221 ], [ -0.58245, 53.21188 ], [ -0.58196, 53.21151 ], [ -0.58218, 53.21081 ], [ -0.58289, 53.21086 ], [ -0.58273, 53.20979 ], [ -0.58202, 53.20995 ], [ -0.58109, 53.20959 ], [ -0.58067, 53.21011 ], [ -0.58008, 53.20979 ], [ -0.5801, 53.20918 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Lincoln", "bua_code": "E35001451", "msoa_code": "E02005451", "population": 7890, "outputarea_code": "E00132822", "lsoa_code": "E01026161", "la_name": "Lincoln", "bua_name": "Lincoln BUASD", "constituency_name": "Lincoln", "citytownclassification": "Large Town", "urban": "Y", "longitude": -0.56529, "latitude": 53.20708, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.55877, 53.20192 ], [ -0.56033, 53.20173 ], [ -0.56531, 53.20081 ], [ -0.56892, 53.19963 ], [ -0.57084, 53.19878 ], [ -0.57092, 53.19874 ], [ -0.57074, 53.19968 ], [ -0.57034, 53.20026 ], [ -0.57068, 53.20125 ], [ -0.5694, 53.20158 ], [ -0.56874, 53.20135 ], [ -0.56779, 53.20213 ], [ -0.56813, 53.20259 ], [ -0.56833, 53.20267 ], [ -0.56553, 53.20423 ], [ -0.56575, 53.20457 ], [ -0.56843, 53.20466 ], [ -0.56874, 53.20541 ], [ -0.57009, 53.20584 ], [ -0.57131, 53.20575 ], [ -0.57171, 53.20633 ], [ -0.57214, 53.20566 ], [ -0.57507, 53.20508 ], [ -0.57523, 53.2053 ], [ -0.57602, 53.20654 ], [ -0.57645, 53.20663 ], [ -0.57555, 53.20785 ], [ -0.5771, 53.2085 ], [ -0.57785, 53.20798 ], [ -0.57653, 53.20894 ], [ -0.57758, 53.20941 ], [ -0.57843, 53.20999 ], [ -0.5801, 53.20918 ], [ -0.58008, 53.20979 ], [ -0.58067, 53.21011 ], [ -0.58109, 53.20959 ], [ -0.58202, 53.20995 ], [ -0.58273, 53.20979 ], [ -0.58289, 53.21086 ], [ -0.58218, 53.21081 ], [ -0.58196, 53.21151 ], [ -0.58245, 53.21188 ], [ -0.58279, 53.21221 ], [ -0.58483, 53.2126 ], [ -0.58589, 53.21168 ], [ -0.58411, 53.21378 ], [ -0.58321, 53.21484 ], [ -0.58204, 53.21535 ], [ -0.58074, 53.21529 ], [ -0.57891, 53.21428 ], [ -0.57758, 53.21354 ], [ -0.5762, 53.21285 ], [ -0.57438, 53.21246 ], [ -0.57354, 53.2123 ], [ -0.57211, 53.21208 ], [ -0.57016, 53.21177 ], [ -0.5666, 53.21109 ], [ -0.56463, 53.21069 ], [ -0.5627, 53.21027 ], [ -0.56196, 53.20777 ], [ -0.56078, 53.20576 ], [ -0.5597, 53.2058 ], [ -0.55568, 53.20761 ], [ -0.55288, 53.20854 ], [ -0.55288, 53.20857 ], [ -0.55371, 53.20942 ], [ -0.55316, 53.21034 ], [ -0.55208, 53.21091 ], [ -0.55177, 53.21109 ], [ -0.5512, 53.21071 ], [ -0.54982, 53.21043 ], [ -0.55029, 53.20967 ], [ -0.55069, 53.20917 ], [ -0.54985, 53.20894 ], [ -0.55051, 53.20789 ], [ -0.55055, 53.20758 ], [ -0.55008, 53.2075 ], [ -0.54768, 53.20702 ], [ -0.54642, 53.20556 ], [ -0.54895, 53.20579 ], [ -0.549, 53.20484 ], [ -0.54905, 53.20379 ], [ -0.54911, 53.20277 ], [ -0.54918, 53.20112 ], [ -0.5531, 53.20165 ], [ -0.55351, 53.20201 ], [ -0.55395, 53.2019 ], [ -0.55505, 53.20199 ], [ -0.55517, 53.20201 ], [ -0.55777, 53.20207 ], [ -0.55877, 53.20192 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Lincoln", "bua_code": "E35001451", "msoa_code": "E02005452", "population": 11042, "outputarea_code": "E00132709", "lsoa_code": "E01026141", "la_name": "Lincoln", "bua_name": "Lincoln BUASD", "constituency_name": "Lincoln", "citytownclassification": "Large Town", "urban": "Y", "longitude": -0.56639, "latitude": 53.19672, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.55251, 53.18759 ], [ -0.55286, 53.18628 ], [ -0.5579, 53.18643 ], [ -0.55861, 53.18645 ], [ -0.55889, 53.18648 ], [ -0.565, 53.18714 ], [ -0.57447, 53.19158 ], [ -0.57409, 53.19185 ], [ -0.57499, 53.19231 ], [ -0.57455, 53.19286 ], [ -0.57434, 53.19305 ], [ -0.57505, 53.19341 ], [ -0.57422, 53.19382 ], [ -0.57811, 53.19575 ], [ -0.57788, 53.19607 ], [ -0.57825, 53.19625 ], [ -0.58008, 53.19717 ], [ -0.58073, 53.19753 ], [ -0.58286, 53.19705 ], [ -0.58346, 53.19781 ], [ -0.58319, 53.19833 ], [ -0.58411, 53.19882 ], [ -0.58432, 53.19905 ], [ -0.58674, 53.19858 ], [ -0.58896, 53.19987 ], [ -0.58822, 53.20057 ], [ -0.58749, 53.20108 ], [ -0.58438, 53.20331 ], [ -0.58096, 53.20571 ], [ -0.57785, 53.20798 ], [ -0.5771, 53.2085 ], [ -0.57555, 53.20785 ], [ -0.57645, 53.20663 ], [ -0.57602, 53.20654 ], [ -0.57523, 53.2053 ], [ -0.57507, 53.20508 ], [ -0.57214, 53.20566 ], [ -0.57171, 53.20633 ], [ -0.57131, 53.20575 ], [ -0.57009, 53.20584 ], [ -0.56874, 53.20541 ], [ -0.56843, 53.20466 ], [ -0.56575, 53.20457 ], [ -0.56553, 53.20423 ], [ -0.56833, 53.20267 ], [ -0.56813, 53.20259 ], [ -0.56779, 53.20213 ], [ -0.56874, 53.20135 ], [ -0.5694, 53.20158 ], [ -0.57068, 53.20125 ], [ -0.57034, 53.20026 ], [ -0.57074, 53.19968 ], [ -0.57092, 53.19874 ], [ -0.57084, 53.19878 ], [ -0.56892, 53.19963 ], [ -0.56531, 53.20081 ], [ -0.56033, 53.20173 ], [ -0.55877, 53.20192 ], [ -0.55777, 53.20207 ], [ -0.55517, 53.20201 ], [ -0.55505, 53.20199 ], [ -0.55395, 53.2019 ], [ -0.55351, 53.20201 ], [ -0.5531, 53.20165 ], [ -0.54918, 53.20112 ], [ -0.54927, 53.19983 ], [ -0.54948, 53.19745 ], [ -0.54949, 53.19738 ], [ -0.55012, 53.19505 ], [ -0.55115, 53.19185 ], [ -0.55141, 53.19102 ], [ -0.5522, 53.18833 ], [ -0.55251, 53.18759 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Lincoln", "bua_code": "E35001451", "msoa_code": "E02005456", "population": 6206, "outputarea_code": "E00132966", "lsoa_code": "E01026185", "la_name": "North Kesteven", "bua_name": "Lincoln BUASD", "constituency_name": "Lincoln", "citytownclassification": "Large Town", "urban": "Y", "longitude": -0.53888, "latitude": 53.1697, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.4932, 53.16381 ], [ -0.49073, 53.15895 ], [ -0.49153, 53.15591 ], [ -0.49286, 53.15333 ], [ -0.50606, 53.15344 ], [ -0.52753, 53.15175 ], [ -0.52932, 53.15894 ], [ -0.54051, 53.15911 ], [ -0.54817, 53.15964 ], [ -0.5579, 53.16144 ], [ -0.56029, 53.16138 ], [ -0.57691, 53.16363 ], [ -0.57691, 53.16601 ], [ -0.57755, 53.16737 ], [ -0.5766, 53.16833 ], [ -0.57443, 53.1691 ], [ -0.57301, 53.17104 ], [ -0.5732, 53.1718 ], [ -0.57256, 53.1726 ], [ -0.57263, 53.17329 ], [ -0.5716, 53.17423 ], [ -0.57149, 53.17506 ], [ -0.57151, 53.17528 ], [ -0.57373, 53.17494 ], [ -0.5749, 53.17478 ], [ -0.57788, 53.17651 ], [ -0.57937, 53.17627 ], [ -0.58031, 53.17756 ], [ -0.58132, 53.17754 ], [ -0.58157, 53.1789 ], [ -0.58098, 53.1803 ], [ -0.57973, 53.18123 ], [ -0.57732, 53.18201 ], [ -0.57656, 53.1824 ], [ -0.57569, 53.18206 ], [ -0.57274, 53.1825 ], [ -0.57009, 53.18351 ], [ -0.56976, 53.18369 ], [ -0.56671, 53.18519 ], [ -0.565, 53.18714 ], [ -0.55889, 53.18648 ], [ -0.55861, 53.18645 ], [ -0.5579, 53.18643 ], [ -0.55286, 53.18628 ], [ -0.54591, 53.18644 ], [ -0.54591, 53.18664 ], [ -0.54206, 53.18701 ], [ -0.54114, 53.18524 ], [ -0.53234, 53.18636 ], [ -0.53121, 53.18649 ], [ -0.53093, 53.18652 ], [ -0.52925, 53.18673 ], [ -0.52578, 53.18283 ], [ -0.52467, 53.17982 ], [ -0.52442, 53.17945 ], [ -0.52217, 53.17976 ], [ -0.52064, 53.17778 ], [ -0.51893, 53.17413 ], [ -0.5189, 53.17055 ], [ -0.51819, 53.1685 ], [ -0.51786, 53.16847 ], [ -0.51633, 53.16854 ], [ -0.51588, 53.16666 ], [ -0.51615, 53.16425 ], [ -0.5074, 53.16466 ], [ -0.50455, 53.16583 ], [ -0.5035, 53.16454 ], [ -0.49466, 53.16657 ], [ -0.4932, 53.16381 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Lincoln", "bua_code": "E35001451", "msoa_code": "E02005501", "population": 516, "outputarea_code": "E00134108", "lsoa_code": "E01026394", "la_name": "West Lindsey", "bua_name": "Lincoln BUASD", "constituency_name": "Gainsborough", "citytownclassification": "Large Town", "urban": "Y", "longitude": -0.49954, "latitude": 53.24359, "pgroup": "100k" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.49489, 53.23702 ], [ -0.49575, 53.24016 ], [ -0.49629, 53.24035 ], [ -0.49434, 53.24209 ], [ -0.49581, 53.24382 ], [ -0.49539, 53.24495 ], [ -0.49601, 53.24719 ], [ -0.49271, 53.24825 ], [ -0.49173, 53.24742 ], [ -0.49492, 53.24668 ], [ -0.49531, 53.24625 ], [ -0.49478, 53.24485 ], [ -0.4939, 53.24485 ], [ -0.49383, 53.24442 ], [ -0.49333, 53.24439 ], [ -0.49386, 53.2438 ], [ -0.49178, 53.2411 ], [ -0.48896, 53.23837 ], [ -0.49489, 53.23702 ] ] ], [ [ [ -0.53465, 53.25435 ], [ -0.52314, 53.2546 ], [ -0.52318, 53.25383 ], [ -0.5232, 53.25338 ], [ -0.52671, 53.25382 ], [ -0.52869, 53.25387 ], [ -0.5288, 53.25387 ], [ -0.53319, 53.25413 ], [ -0.53465, 53.25435 ] ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Long Eaton", "bua_code": "E35000992", "msoa_code": "E02004087", "population": 6446, "outputarea_code": "E00099399", "lsoa_code": "E01019648", "la_name": "Erewash", "bua_name": "Long Eaton BUASD", "constituency_name": "Erewash", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.28935, "latitude": 52.90857, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.2778, 52.90091 ], [ -1.27936, 52.90132 ], [ -1.27951, 52.90291 ], [ -1.27992, 52.9029 ], [ -1.27988, 52.90156 ], [ -1.28034, 52.9018 ], [ -1.28042, 52.90261 ], [ -1.28109, 52.90276 ], [ -1.28157, 52.90183 ], [ -1.28315, 52.90471 ], [ -1.28326, 52.90489 ], [ -1.28516, 52.90775 ], [ -1.28582, 52.90752 ], [ -1.28651, 52.90815 ], [ -1.28647, 52.90742 ], [ -1.28782, 52.90744 ], [ -1.2876, 52.90711 ], [ -1.28576, 52.90459 ], [ -1.28568, 52.90427 ], [ -1.28671, 52.90404 ], [ -1.28777, 52.90375 ], [ -1.28866, 52.90354 ], [ -1.29014, 52.90545 ], [ -1.29091, 52.90574 ], [ -1.29136, 52.90557 ], [ -1.29208, 52.90584 ], [ -1.29278, 52.906 ], [ -1.29351, 52.90606 ], [ -1.29355, 52.90411 ], [ -1.29462, 52.90313 ], [ -1.2972, 52.90528 ], [ -1.29777, 52.90551 ], [ -1.29815, 52.90492 ], [ -1.29912, 52.90531 ], [ -1.30072, 52.90521 ], [ -1.30103, 52.9076 ], [ -1.30083, 52.91095 ], [ -1.30043, 52.91112 ], [ -1.30084, 52.91166 ], [ -1.30053, 52.91406 ], [ -1.2988, 52.91216 ], [ -1.29646, 52.91009 ], [ -1.29564, 52.91026 ], [ -1.29343, 52.91058 ], [ -1.29207, 52.91159 ], [ -1.29173, 52.91196 ], [ -1.29116, 52.91254 ], [ -1.29003, 52.91364 ], [ -1.28688, 52.91574 ], [ -1.285, 52.91777 ], [ -1.28444, 52.9177 ], [ -1.28407, 52.9166 ], [ -1.28487, 52.9144 ], [ -1.28345, 52.91284 ], [ -1.28298, 52.91085 ], [ -1.28205, 52.91116 ], [ -1.28179, 52.91028 ], [ -1.28048, 52.90895 ], [ -1.2814, 52.90874 ], [ -1.2798, 52.90724 ], [ -1.2807, 52.90706 ], [ -1.27932, 52.90587 ], [ -1.27803, 52.90479 ], [ -1.2785, 52.90468 ], [ -1.27768, 52.90314 ], [ -1.27715, 52.90311 ], [ -1.2773, 52.90112 ], [ -1.27734, 52.90079 ], [ -1.2778, 52.90091 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Long Eaton", "bua_code": "E35000992", "msoa_code": "E02004088", "population": 6367, "outputarea_code": "E00099419", "lsoa_code": "E01019653", "la_name": "Erewash", "bua_name": "Long Eaton BUASD", "constituency_name": "Erewash", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.2927, "latitude": 52.89755, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.29984, 52.88894 ], [ -1.29857, 52.88853 ], [ -1.29836, 52.88731 ], [ -1.29925, 52.88705 ], [ -1.29949, 52.88656 ], [ -1.30013, 52.88672 ], [ -1.301, 52.88695 ], [ -1.30594, 52.8885 ], [ -1.30413, 52.89002 ], [ -1.30212, 52.8918 ], [ -1.30027, 52.89443 ], [ -1.29949, 52.89617 ], [ -1.299, 52.89781 ], [ -1.29896, 52.89868 ], [ -1.29922, 52.9016 ], [ -1.29987, 52.90321 ], [ -1.30072, 52.90521 ], [ -1.29912, 52.90531 ], [ -1.29815, 52.90492 ], [ -1.29777, 52.90551 ], [ -1.2972, 52.90528 ], [ -1.29462, 52.90313 ], [ -1.29355, 52.90411 ], [ -1.29351, 52.90606 ], [ -1.29278, 52.906 ], [ -1.29208, 52.90584 ], [ -1.29136, 52.90557 ], [ -1.29091, 52.90574 ], [ -1.29014, 52.90545 ], [ -1.28866, 52.90354 ], [ -1.28777, 52.90375 ], [ -1.28671, 52.90404 ], [ -1.28568, 52.90427 ], [ -1.28576, 52.90459 ], [ -1.2876, 52.90711 ], [ -1.28782, 52.90744 ], [ -1.28647, 52.90742 ], [ -1.28651, 52.90815 ], [ -1.28582, 52.90752 ], [ -1.28516, 52.90775 ], [ -1.28326, 52.90489 ], [ -1.28315, 52.90471 ], [ -1.28157, 52.90183 ], [ -1.28295, 52.90179 ], [ -1.28105, 52.90003 ], [ -1.28106, 52.89946 ], [ -1.28172, 52.89921 ], [ -1.28113, 52.89878 ], [ -1.28134, 52.89775 ], [ -1.28325, 52.89733 ], [ -1.28447, 52.89746 ], [ -1.28799, 52.89367 ], [ -1.28893, 52.89306 ], [ -1.29032, 52.89275 ], [ -1.28955, 52.89096 ], [ -1.28943, 52.89039 ], [ -1.28773, 52.89059 ], [ -1.2881, 52.89037 ], [ -1.28726, 52.88928 ], [ -1.28752, 52.88922 ], [ -1.28936, 52.88877 ], [ -1.28954, 52.88905 ], [ -1.28919, 52.88941 ], [ -1.28979, 52.88935 ], [ -1.28987, 52.88966 ], [ -1.2906, 52.88984 ], [ -1.29046, 52.89011 ], [ -1.29164, 52.8902 ], [ -1.29225, 52.89054 ], [ -1.29351, 52.89047 ], [ -1.2939, 52.89094 ], [ -1.29513, 52.8913 ], [ -1.2957, 52.89146 ], [ -1.29716, 52.89202 ], [ -1.29754, 52.8916 ], [ -1.297, 52.89134 ], [ -1.2974, 52.89094 ], [ -1.29618, 52.891 ], [ -1.2957, 52.89057 ], [ -1.29615, 52.89 ], [ -1.2964, 52.89024 ], [ -1.29709, 52.89016 ], [ -1.29697, 52.88954 ], [ -1.2977, 52.88907 ], [ -1.29816, 52.88931 ], [ -1.29984, 52.88894 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Long Eaton", "bua_code": "E35000992", "msoa_code": "E02004089", "population": 7110, "outputarea_code": "E00099402", "lsoa_code": "E01019647", "la_name": "Erewash", "bua_name": "Long Eaton BUASD", "constituency_name": "Erewash", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.27121, "latitude": 52.89808, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.27193, 52.88619 ], [ -1.2726, 52.88727 ], [ -1.27316, 52.88683 ], [ -1.27425, 52.88733 ], [ -1.27449, 52.88781 ], [ -1.27305, 52.88835 ], [ -1.27259, 52.88834 ], [ -1.27245, 52.88798 ], [ -1.27179, 52.88897 ], [ -1.27022, 52.88969 ], [ -1.26875, 52.88928 ], [ -1.26971, 52.89013 ], [ -1.26796, 52.89041 ], [ -1.26833, 52.89125 ], [ -1.26875, 52.89118 ], [ -1.26898, 52.89177 ], [ -1.26979, 52.89164 ], [ -1.27017, 52.8921 ], [ -1.27104, 52.89196 ], [ -1.27143, 52.89146 ], [ -1.27234, 52.89222 ], [ -1.27314, 52.89343 ], [ -1.2728, 52.89355 ], [ -1.27391, 52.89338 ], [ -1.27518, 52.89412 ], [ -1.27612, 52.89309 ], [ -1.27639, 52.89322 ], [ -1.27586, 52.89523 ], [ -1.27569, 52.89618 ], [ -1.27887, 52.89636 ], [ -1.28092, 52.89602 ], [ -1.2821, 52.89637 ], [ -1.28325, 52.89733 ], [ -1.28134, 52.89775 ], [ -1.28113, 52.89878 ], [ -1.28172, 52.89921 ], [ -1.28106, 52.89946 ], [ -1.28105, 52.90003 ], [ -1.28295, 52.90179 ], [ -1.28157, 52.90183 ], [ -1.28109, 52.90276 ], [ -1.28042, 52.90261 ], [ -1.28034, 52.9018 ], [ -1.27988, 52.90156 ], [ -1.27992, 52.9029 ], [ -1.27951, 52.90291 ], [ -1.27936, 52.90132 ], [ -1.2778, 52.90091 ], [ -1.27734, 52.90079 ], [ -1.2773, 52.90112 ], [ -1.27715, 52.90311 ], [ -1.27768, 52.90314 ], [ -1.2785, 52.90468 ], [ -1.27803, 52.90479 ], [ -1.27932, 52.90587 ], [ -1.2807, 52.90706 ], [ -1.2798, 52.90724 ], [ -1.2814, 52.90874 ], [ -1.28048, 52.90895 ], [ -1.27498, 52.90546 ], [ -1.27309, 52.90516 ], [ -1.26981, 52.90514 ], [ -1.26949, 52.90516 ], [ -1.26883, 52.90523 ], [ -1.26586, 52.90516 ], [ -1.26551, 52.9051 ], [ -1.26317, 52.90445 ], [ -1.26233, 52.90419 ], [ -1.26171, 52.90345 ], [ -1.26095, 52.9027 ], [ -1.26172, 52.90216 ], [ -1.26405, 52.90252 ], [ -1.26416, 52.90102 ], [ -1.26469, 52.9006 ], [ -1.26602, 52.90032 ], [ -1.2658, 52.90003 ], [ -1.26457, 52.89857 ], [ -1.26506, 52.89842 ], [ -1.26487, 52.89813 ], [ -1.26383, 52.89715 ], [ -1.26278, 52.89793 ], [ -1.26244, 52.89752 ], [ -1.26274, 52.89717 ], [ -1.26141, 52.89584 ], [ -1.26021, 52.89587 ], [ -1.26102, 52.89561 ], [ -1.2603, 52.89473 ], [ -1.26028, 52.89387 ], [ -1.26128, 52.89385 ], [ -1.26207, 52.89453 ], [ -1.26293, 52.89443 ], [ -1.26226, 52.89361 ], [ -1.26289, 52.89342 ], [ -1.26294, 52.89381 ], [ -1.26373, 52.89371 ], [ -1.26599, 52.89524 ], [ -1.26632, 52.89502 ], [ -1.26522, 52.89353 ], [ -1.26525, 52.89329 ], [ -1.26492, 52.89329 ], [ -1.26464, 52.89039 ], [ -1.26551, 52.88945 ], [ -1.26589, 52.88771 ], [ -1.26863, 52.88691 ], [ -1.27159, 52.88625 ], [ -1.27193, 52.88619 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Long Eaton", "bua_code": "E35000992", "msoa_code": "E02004091", "population": 9411, "outputarea_code": "E00099544", "lsoa_code": "E01019678", "la_name": "Erewash", "bua_name": "Long Eaton BUASD", "constituency_name": "Erewash", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.26289, "latitude": 52.88641, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.27159, 52.88625 ], [ -1.26863, 52.88691 ], [ -1.26589, 52.88771 ], [ -1.26551, 52.88945 ], [ -1.26464, 52.89039 ], [ -1.26492, 52.89329 ], [ -1.26525, 52.89329 ], [ -1.26522, 52.89353 ], [ -1.26632, 52.89502 ], [ -1.26599, 52.89524 ], [ -1.26373, 52.89371 ], [ -1.26294, 52.89381 ], [ -1.26289, 52.89342 ], [ -1.26226, 52.89361 ], [ -1.26293, 52.89443 ], [ -1.26207, 52.89453 ], [ -1.26128, 52.89385 ], [ -1.26028, 52.89387 ], [ -1.2603, 52.89473 ], [ -1.26102, 52.89561 ], [ -1.26021, 52.89587 ], [ -1.26141, 52.89584 ], [ -1.26274, 52.89717 ], [ -1.26244, 52.89752 ], [ -1.26278, 52.89793 ], [ -1.26383, 52.89715 ], [ -1.26487, 52.89813 ], [ -1.26506, 52.89842 ], [ -1.26457, 52.89857 ], [ -1.2658, 52.90003 ], [ -1.26602, 52.90032 ], [ -1.26469, 52.9006 ], [ -1.26416, 52.90102 ], [ -1.26405, 52.90252 ], [ -1.26172, 52.90216 ], [ -1.26095, 52.9027 ], [ -1.26171, 52.90345 ], [ -1.26233, 52.90419 ], [ -1.25964, 52.90349 ], [ -1.2567, 52.90185 ], [ -1.25402, 52.90194 ], [ -1.25342, 52.90242 ], [ -1.25133, 52.90204 ], [ -1.25082, 52.90262 ], [ -1.2491, 52.90293 ], [ -1.24662, 52.9031 ], [ -1.24512, 52.90219 ], [ -1.24751, 52.89993 ], [ -1.24698, 52.89933 ], [ -1.24755, 52.89889 ], [ -1.24587, 52.8975 ], [ -1.24452, 52.8971 ], [ -1.24466, 52.89657 ], [ -1.24258, 52.89621 ], [ -1.24177, 52.89529 ], [ -1.24104, 52.89536 ], [ -1.24029, 52.89504 ], [ -1.24046, 52.89472 ], [ -1.23962, 52.89424 ], [ -1.23968, 52.89297 ], [ -1.23971, 52.89229 ], [ -1.24125, 52.89211 ], [ -1.24128, 52.89244 ], [ -1.24242, 52.89208 ], [ -1.24523, 52.89078 ], [ -1.24611, 52.88998 ], [ -1.24638, 52.88877 ], [ -1.24508, 52.8869 ], [ -1.24069, 52.88493 ], [ -1.23899, 52.88352 ], [ -1.23845, 52.88181 ], [ -1.23996, 52.88021 ], [ -1.24006, 52.88011 ], [ -1.24262, 52.87914 ], [ -1.24483, 52.87876 ], [ -1.25025, 52.87954 ], [ -1.25361, 52.87929 ], [ -1.25583, 52.87813 ], [ -1.25991, 52.87507 ], [ -1.2661, 52.87331 ], [ -1.26789, 52.87337 ], [ -1.27017, 52.87447 ], [ -1.27066, 52.87473 ], [ -1.27465, 52.87553 ], [ -1.27934, 52.87553 ], [ -1.28084, 52.87519 ], [ -1.286, 52.87263 ], [ -1.28836, 52.8724 ], [ -1.2906, 52.87276 ], [ -1.28697, 52.87784 ], [ -1.28599, 52.87965 ], [ -1.28694, 52.87963 ], [ -1.28714, 52.87994 ], [ -1.28807, 52.87977 ], [ -1.28903, 52.88106 ], [ -1.29021, 52.88169 ], [ -1.29026, 52.8821 ], [ -1.28991, 52.88201 ], [ -1.28926, 52.88244 ], [ -1.28984, 52.8826 ], [ -1.29007, 52.88314 ], [ -1.28948, 52.88311 ], [ -1.28912, 52.88355 ], [ -1.28852, 52.88348 ], [ -1.28852, 52.8839 ], [ -1.28987, 52.88458 ], [ -1.28988, 52.88509 ], [ -1.28798, 52.88499 ], [ -1.28638, 52.88495 ], [ -1.28432, 52.88631 ], [ -1.28301, 52.88734 ], [ -1.28242, 52.8878 ], [ -1.28102, 52.88877 ], [ -1.28046, 52.88911 ], [ -1.28045, 52.88952 ], [ -1.2796, 52.89011 ], [ -1.27918, 52.89051 ], [ -1.27698, 52.89258 ], [ -1.27639, 52.89322 ], [ -1.27612, 52.89309 ], [ -1.27518, 52.89412 ], [ -1.27391, 52.89338 ], [ -1.2728, 52.89355 ], [ -1.27314, 52.89343 ], [ -1.27234, 52.89222 ], [ -1.27143, 52.89146 ], [ -1.27104, 52.89196 ], [ -1.27017, 52.8921 ], [ -1.26979, 52.89164 ], [ -1.26898, 52.89177 ], [ -1.26875, 52.89118 ], [ -1.26833, 52.89125 ], [ -1.26796, 52.89041 ], [ -1.26971, 52.89013 ], [ -1.26875, 52.88928 ], [ -1.27022, 52.88969 ], [ -1.27179, 52.88897 ], [ -1.27245, 52.88798 ], [ -1.27259, 52.88834 ], [ -1.27305, 52.88835 ], [ -1.27449, 52.88781 ], [ -1.27425, 52.88733 ], [ -1.27316, 52.88683 ], [ -1.2726, 52.88727 ], [ -1.27193, 52.88619 ], [ -1.27159, 52.88625 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Long Eaton", "bua_code": "E35000992", "msoa_code": "E02004092", "population": 9858, "outputarea_code": "E00099654", "lsoa_code": "E01019697", "la_name": "Erewash", "bua_name": "Long Eaton BUASD", "constituency_name": "Erewash", "citytownclassification": "Medium Town in Conurbation", "urban": "Y", "longitude": -1.29468, "latitude": 52.88422, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.28984, 52.8826 ], [ -1.28926, 52.88244 ], [ -1.28991, 52.88201 ], [ -1.29026, 52.8821 ], [ -1.29021, 52.88169 ], [ -1.28903, 52.88106 ], [ -1.28807, 52.87977 ], [ -1.28714, 52.87994 ], [ -1.28694, 52.87963 ], [ -1.28599, 52.87965 ], [ -1.28697, 52.87784 ], [ -1.2906, 52.87276 ], [ -1.29646, 52.87491 ], [ -1.29901, 52.87539 ], [ -1.3012, 52.87542 ], [ -1.30246, 52.87559 ], [ -1.30438, 52.87663 ], [ -1.30625, 52.87706 ], [ -1.30746, 52.87567 ], [ -1.30769, 52.87423 ], [ -1.30903, 52.87346 ], [ -1.30915, 52.87341 ], [ -1.30933, 52.87335 ], [ -1.31041, 52.87564 ], [ -1.31094, 52.87787 ], [ -1.3106, 52.88083 ], [ -1.31095, 52.88089 ], [ -1.31005, 52.88318 ], [ -1.3091, 52.88505 ], [ -1.30594, 52.8885 ], [ -1.301, 52.88695 ], [ -1.30013, 52.88672 ], [ -1.29949, 52.88656 ], [ -1.29925, 52.88705 ], [ -1.29836, 52.88731 ], [ -1.29857, 52.88853 ], [ -1.29984, 52.88894 ], [ -1.29816, 52.88931 ], [ -1.2977, 52.88907 ], [ -1.29697, 52.88954 ], [ -1.29709, 52.89016 ], [ -1.2964, 52.89024 ], [ -1.29615, 52.89 ], [ -1.2957, 52.89057 ], [ -1.29618, 52.891 ], [ -1.2974, 52.89094 ], [ -1.297, 52.89134 ], [ -1.29754, 52.8916 ], [ -1.29716, 52.89202 ], [ -1.2957, 52.89146 ], [ -1.29513, 52.8913 ], [ -1.2939, 52.89094 ], [ -1.29351, 52.89047 ], [ -1.29225, 52.89054 ], [ -1.29164, 52.8902 ], [ -1.29046, 52.89011 ], [ -1.2906, 52.88984 ], [ -1.28987, 52.88966 ], [ -1.28979, 52.88935 ], [ -1.28919, 52.88941 ], [ -1.28954, 52.88905 ], [ -1.28936, 52.88877 ], [ -1.28752, 52.88922 ], [ -1.28726, 52.88928 ], [ -1.2881, 52.89037 ], [ -1.28773, 52.89059 ], [ -1.28943, 52.89039 ], [ -1.28955, 52.89096 ], [ -1.29032, 52.89275 ], [ -1.28893, 52.89306 ], [ -1.28799, 52.89367 ], [ -1.28447, 52.89746 ], [ -1.28325, 52.89733 ], [ -1.2821, 52.89637 ], [ -1.28092, 52.89602 ], [ -1.27887, 52.89636 ], [ -1.27569, 52.89618 ], [ -1.27586, 52.89523 ], [ -1.27639, 52.89322 ], [ -1.27698, 52.89258 ], [ -1.27918, 52.89051 ], [ -1.2796, 52.89011 ], [ -1.28045, 52.88952 ], [ -1.28046, 52.88911 ], [ -1.28102, 52.88877 ], [ -1.28242, 52.8878 ], [ -1.28301, 52.88734 ], [ -1.28432, 52.88631 ], [ -1.28638, 52.88495 ], [ -1.28798, 52.88499 ], [ -1.28988, 52.88509 ], [ -1.28987, 52.88458 ], [ -1.28852, 52.8839 ], [ -1.28852, 52.88348 ], [ -1.28912, 52.88355 ], [ -1.28948, 52.88311 ], [ -1.29007, 52.88314 ], [ -1.28984, 52.8826 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Loughborough", "bua_code": "E34000597", "msoa_code": "E02005345", "population": 4350, "outputarea_code": "E00130361", "lsoa_code": "E01033386", "la_name": "Charnwood", "bua_name": "Loughborough BUA", "constituency_name": "Loughborough", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.24562, "latitude": 52.78296, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.22878, 52.78099 ], [ -1.23053, 52.78016 ], [ -1.23073, 52.78008 ], [ -1.23345, 52.77911 ], [ -1.23403, 52.77892 ], [ -1.2349, 52.77939 ], [ -1.23733, 52.77813 ], [ -1.23841, 52.778 ], [ -1.2416, 52.77803 ], [ -1.24317, 52.77763 ], [ -1.2451, 52.77833 ], [ -1.24756, 52.77924 ], [ -1.25398, 52.78038 ], [ -1.25683, 52.78124 ], [ -1.26096, 52.78179 ], [ -1.26083, 52.78327 ], [ -1.26056, 52.78436 ], [ -1.25882, 52.78622 ], [ -1.25552, 52.78836 ], [ -1.25181, 52.79025 ], [ -1.24947, 52.78844 ], [ -1.24757, 52.78613 ], [ -1.24662, 52.78562 ], [ -1.24524, 52.78535 ], [ -1.24198, 52.78555 ], [ -1.24072, 52.78526 ], [ -1.23765, 52.78479 ], [ -1.23476, 52.78465 ], [ -1.23365, 52.78513 ], [ -1.23395, 52.78455 ], [ -1.23005, 52.78358 ], [ -1.22736, 52.78241 ], [ -1.22725, 52.78205 ], [ -1.22794, 52.78156 ], [ -1.22878, 52.78099 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Loughborough", "bua_code": "E34000597", "msoa_code": "E02005346", "population": 12384, "outputarea_code": "E00130399", "lsoa_code": "E01025701", "la_name": "Charnwood", "bua_name": "Loughborough BUA", "constituency_name": "Loughborough", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.20087, "latitude": 52.7796, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.19465, 52.76603 ], [ -1.19366, 52.76523 ], [ -1.19416, 52.76498 ], [ -1.19513, 52.76471 ], [ -1.19581, 52.76551 ], [ -1.19621, 52.76534 ], [ -1.19761, 52.76474 ], [ -1.19789, 52.76462 ], [ -1.1982, 52.76496 ], [ -1.20098, 52.76801 ], [ -1.20333, 52.77003 ], [ -1.20413, 52.77067 ], [ -1.20478, 52.7712 ], [ -1.20572, 52.77192 ], [ -1.20759, 52.77242 ], [ -1.21051, 52.77402 ], [ -1.21109, 52.77425 ], [ -1.2141, 52.7759 ], [ -1.21611, 52.77668 ], [ -1.21649, 52.77682 ], [ -1.22079, 52.77982 ], [ -1.22086, 52.77987 ], [ -1.22283, 52.78101 ], [ -1.22509, 52.78154 ], [ -1.22725, 52.78205 ], [ -1.22736, 52.78241 ], [ -1.23005, 52.78358 ], [ -1.23395, 52.78455 ], [ -1.23365, 52.78513 ], [ -1.23008, 52.79013 ], [ -1.22798, 52.79127 ], [ -1.22816, 52.79255 ], [ -1.22841, 52.79311 ], [ -1.22651, 52.79249 ], [ -1.22576, 52.79164 ], [ -1.22486, 52.79227 ], [ -1.22337, 52.7921 ], [ -1.22278, 52.79215 ], [ -1.22207, 52.79177 ], [ -1.22094, 52.79201 ], [ -1.21823, 52.79326 ], [ -1.2184, 52.79374 ], [ -1.21755, 52.79378 ], [ -1.21713, 52.79341 ], [ -1.21674, 52.7936 ], [ -1.21526, 52.79488 ], [ -1.21167, 52.79496 ], [ -1.20692, 52.79424 ], [ -1.20681, 52.79372 ], [ -1.20628, 52.79354 ], [ -1.20029, 52.79379 ], [ -1.19851, 52.79309 ], [ -1.19866, 52.79213 ], [ -1.1991, 52.79192 ], [ -1.19973, 52.79211 ], [ -1.20005, 52.79186 ], [ -1.19955, 52.79087 ], [ -1.19911, 52.79061 ], [ -1.19833, 52.7907 ], [ -1.19741, 52.79078 ], [ -1.19778, 52.79032 ], [ -1.19869, 52.79039 ], [ -1.19798, 52.78946 ], [ -1.19614, 52.79017 ], [ -1.19462, 52.78938 ], [ -1.19403, 52.78852 ], [ -1.19126, 52.78642 ], [ -1.18808, 52.78522 ], [ -1.18784, 52.78384 ], [ -1.18552, 52.78197 ], [ -1.18476, 52.7821 ], [ -1.18506, 52.78311 ], [ -1.18407, 52.78304 ], [ -1.18266, 52.78229 ], [ -1.18075, 52.78186 ], [ -1.17995, 52.78028 ], [ -1.17994, 52.77997 ], [ -1.18074, 52.77985 ], [ -1.182, 52.77774 ], [ -1.18051, 52.77601 ], [ -1.17945, 52.77558 ], [ -1.17754, 52.77647 ], [ -1.17672, 52.77646 ], [ -1.1759, 52.77472 ], [ -1.17519, 52.77215 ], [ -1.17423, 52.77073 ], [ -1.17121, 52.77012 ], [ -1.16933, 52.76851 ], [ -1.16831, 52.76696 ], [ -1.17852, 52.76362 ], [ -1.18316, 52.76356 ], [ -1.18781, 52.76482 ], [ -1.19046, 52.766 ], [ -1.19121, 52.76666 ], [ -1.19208, 52.76669 ], [ -1.19324, 52.76666 ], [ -1.19465, 52.76603 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Loughborough", "bua_code": "E34000597", "msoa_code": "E02005347", "population": 11137, "outputarea_code": "E00130487", "lsoa_code": "E01025721", "la_name": "Charnwood", "bua_name": "Loughborough BUA", "constituency_name": "Loughborough", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.21951, "latitude": 52.77294, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.21679, 52.76373 ], [ -1.21791, 52.76419 ], [ -1.21814, 52.76429 ], [ -1.22208, 52.76742 ], [ -1.22253, 52.76779 ], [ -1.22439, 52.76924 ], [ -1.22567, 52.77079 ], [ -1.22569, 52.77085 ], [ -1.22766, 52.77304 ], [ -1.22853, 52.77397 ], [ -1.22995, 52.77517 ], [ -1.23097, 52.77602 ], [ -1.23141, 52.7764 ], [ -1.23353, 52.7782 ], [ -1.23412, 52.77871 ], [ -1.23403, 52.77892 ], [ -1.23345, 52.77911 ], [ -1.23073, 52.78008 ], [ -1.23053, 52.78016 ], [ -1.22878, 52.78099 ], [ -1.22794, 52.78156 ], [ -1.22725, 52.78205 ], [ -1.22509, 52.78154 ], [ -1.22283, 52.78101 ], [ -1.22086, 52.77987 ], [ -1.22079, 52.77982 ], [ -1.21649, 52.77682 ], [ -1.21611, 52.77668 ], [ -1.2141, 52.7759 ], [ -1.21109, 52.77425 ], [ -1.21051, 52.77402 ], [ -1.20759, 52.77242 ], [ -1.20572, 52.77192 ], [ -1.20478, 52.7712 ], [ -1.20699, 52.77029 ], [ -1.20859, 52.77057 ], [ -1.20928, 52.77066 ], [ -1.20902, 52.77029 ], [ -1.21056, 52.76867 ], [ -1.20865, 52.76805 ], [ -1.20741, 52.76869 ], [ -1.20692, 52.76815 ], [ -1.20615, 52.76718 ], [ -1.20693, 52.76687 ], [ -1.20743, 52.76605 ], [ -1.20841, 52.76632 ], [ -1.20849, 52.76669 ], [ -1.20898, 52.76656 ], [ -1.20933, 52.76694 ], [ -1.20985, 52.76628 ], [ -1.21141, 52.76525 ], [ -1.21322, 52.76515 ], [ -1.21478, 52.76467 ], [ -1.21579, 52.76449 ], [ -1.21629, 52.76353 ], [ -1.21679, 52.76373 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Loughborough", "bua_code": "E34000597", "msoa_code": "E02005348", "population": 5459, "outputarea_code": "E00130379", "lsoa_code": "E01025698", "la_name": "Charnwood", "bua_name": "Loughborough BUA", "constituency_name": "Loughborough", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.25231, "latitude": 52.76913, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.25412, 52.76217 ], [ -1.25433, 52.76182 ], [ -1.26207, 52.7611 ], [ -1.27086, 52.76045 ], [ -1.27144, 52.76042 ], [ -1.27108, 52.76125 ], [ -1.27213, 52.76189 ], [ -1.27289, 52.76233 ], [ -1.27369, 52.76282 ], [ -1.27421, 52.76461 ], [ -1.27234, 52.76582 ], [ -1.27202, 52.76603 ], [ -1.27124, 52.76639 ], [ -1.2711, 52.76644 ], [ -1.26821, 52.76694 ], [ -1.26797, 52.76823 ], [ -1.27016, 52.76915 ], [ -1.26751, 52.76905 ], [ -1.26365, 52.76981 ], [ -1.26366, 52.77071 ], [ -1.25575, 52.77182 ], [ -1.25054, 52.77424 ], [ -1.24951, 52.77617 ], [ -1.24791, 52.7759 ], [ -1.24715, 52.77723 ], [ -1.24756, 52.77924 ], [ -1.2451, 52.77833 ], [ -1.24317, 52.77763 ], [ -1.2416, 52.77803 ], [ -1.23841, 52.778 ], [ -1.23733, 52.77813 ], [ -1.2349, 52.77939 ], [ -1.23403, 52.77892 ], [ -1.23412, 52.77871 ], [ -1.23353, 52.7782 ], [ -1.23141, 52.7764 ], [ -1.23097, 52.77602 ], [ -1.22995, 52.77517 ], [ -1.22853, 52.77397 ], [ -1.23079, 52.77313 ], [ -1.23232, 52.77209 ], [ -1.23332, 52.77235 ], [ -1.23249, 52.773 ], [ -1.23293, 52.77332 ], [ -1.23452, 52.77526 ], [ -1.23569, 52.77476 ], [ -1.23749, 52.77376 ], [ -1.23759, 52.7737 ], [ -1.23813, 52.77302 ], [ -1.23857, 52.77234 ], [ -1.2391, 52.77124 ], [ -1.23929, 52.76902 ], [ -1.23965, 52.76813 ], [ -1.24039, 52.76797 ], [ -1.24181, 52.7667 ], [ -1.24416, 52.76577 ], [ -1.24453, 52.76559 ], [ -1.24555, 52.76513 ], [ -1.24728, 52.76502 ], [ -1.24806, 52.7647 ], [ -1.24972, 52.76417 ], [ -1.25174, 52.76356 ], [ -1.25412, 52.76217 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Loughborough", "bua_code": "E34000597", "msoa_code": "E02005351", "population": 11973, "outputarea_code": "E00130350", "lsoa_code": "E01025690", "la_name": "Charnwood", "bua_name": "Loughborough BUA", "constituency_name": "Loughborough", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.23406, "latitude": 52.7652, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.23605, 52.75498 ], [ -1.23666, 52.75529 ], [ -1.236, 52.75553 ], [ -1.23586, 52.75606 ], [ -1.23707, 52.75597 ], [ -1.23687, 52.75622 ], [ -1.23779, 52.75642 ], [ -1.23748, 52.75801 ], [ -1.23874, 52.75775 ], [ -1.23883, 52.75812 ], [ -1.23928, 52.75814 ], [ -1.24005, 52.75788 ], [ -1.24406, 52.75953 ], [ -1.24284, 52.75926 ], [ -1.24167, 52.75911 ], [ -1.24295, 52.76016 ], [ -1.24338, 52.761 ], [ -1.24441, 52.76096 ], [ -1.24449, 52.76259 ], [ -1.24532, 52.76259 ], [ -1.25433, 52.76182 ], [ -1.25412, 52.76217 ], [ -1.25174, 52.76356 ], [ -1.24972, 52.76417 ], [ -1.24806, 52.7647 ], [ -1.24728, 52.76502 ], [ -1.24555, 52.76513 ], [ -1.24453, 52.76559 ], [ -1.24416, 52.76577 ], [ -1.24181, 52.7667 ], [ -1.24039, 52.76797 ], [ -1.23965, 52.76813 ], [ -1.23929, 52.76902 ], [ -1.2391, 52.77124 ], [ -1.23857, 52.77234 ], [ -1.23813, 52.77302 ], [ -1.23759, 52.7737 ], [ -1.23749, 52.77376 ], [ -1.23569, 52.77476 ], [ -1.23452, 52.77526 ], [ -1.23293, 52.77332 ], [ -1.23249, 52.773 ], [ -1.23332, 52.77235 ], [ -1.23232, 52.77209 ], [ -1.23079, 52.77313 ], [ -1.22853, 52.77397 ], [ -1.22766, 52.77304 ], [ -1.22569, 52.77085 ], [ -1.22567, 52.77079 ], [ -1.22439, 52.76924 ], [ -1.22253, 52.76779 ], [ -1.22208, 52.76742 ], [ -1.21814, 52.76429 ], [ -1.22299, 52.76274 ], [ -1.226, 52.76158 ], [ -1.22992, 52.75971 ], [ -1.23187, 52.75841 ], [ -1.23233, 52.75807 ], [ -1.2326, 52.75782 ], [ -1.23394, 52.75668 ], [ -1.23605, 52.75498 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Loughborough", "bua_code": "E34000597", "msoa_code": "E02005353", "population": 9880, "outputarea_code": "E00130402", "lsoa_code": "E01025702", "la_name": "Charnwood", "bua_name": "Loughborough BUA", "constituency_name": "Loughborough", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.20032, "latitude": 52.758, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.19196, 52.75774 ], [ -1.1927, 52.75764 ], [ -1.19015, 52.74759 ], [ -1.19134, 52.74699 ], [ -1.19368, 52.74607 ], [ -1.19427, 52.74598 ], [ -1.19485, 52.74633 ], [ -1.19908, 52.74458 ], [ -1.20056, 52.74422 ], [ -1.20271, 52.74605 ], [ -1.20172, 52.7465 ], [ -1.20205, 52.74727 ], [ -1.20326, 52.74785 ], [ -1.20609, 52.74916 ], [ -1.20789, 52.75003 ], [ -1.20987, 52.75011 ], [ -1.21066, 52.75094 ], [ -1.21096, 52.75165 ], [ -1.21046, 52.75239 ], [ -1.21204, 52.75422 ], [ -1.2123, 52.7545 ], [ -1.21198, 52.75496 ], [ -1.21317, 52.75561 ], [ -1.21333, 52.75545 ], [ -1.21389, 52.75579 ], [ -1.21447, 52.75614 ], [ -1.21237, 52.75764 ], [ -1.21093, 52.75869 ], [ -1.2102, 52.75922 ], [ -1.21327, 52.76067 ], [ -1.21197, 52.76166 ], [ -1.21629, 52.76353 ], [ -1.21579, 52.76449 ], [ -1.21478, 52.76467 ], [ -1.21322, 52.76515 ], [ -1.21141, 52.76525 ], [ -1.20985, 52.76628 ], [ -1.20933, 52.76694 ], [ -1.20898, 52.76656 ], [ -1.20849, 52.76669 ], [ -1.20841, 52.76632 ], [ -1.20743, 52.76605 ], [ -1.20693, 52.76687 ], [ -1.20615, 52.76718 ], [ -1.20692, 52.76815 ], [ -1.20741, 52.76869 ], [ -1.20865, 52.76805 ], [ -1.21056, 52.76867 ], [ -1.20902, 52.77029 ], [ -1.20928, 52.77066 ], [ -1.20859, 52.77057 ], [ -1.20699, 52.77029 ], [ -1.20478, 52.7712 ], [ -1.20413, 52.77067 ], [ -1.20333, 52.77003 ], [ -1.20098, 52.76801 ], [ -1.1982, 52.76496 ], [ -1.19789, 52.76462 ], [ -1.19761, 52.76474 ], [ -1.19621, 52.76534 ], [ -1.19581, 52.76551 ], [ -1.19513, 52.76471 ], [ -1.19416, 52.76498 ], [ -1.19366, 52.76523 ], [ -1.19465, 52.76603 ], [ -1.19324, 52.76666 ], [ -1.19208, 52.76669 ], [ -1.19121, 52.76666 ], [ -1.19046, 52.766 ], [ -1.18781, 52.76482 ], [ -1.18316, 52.76356 ], [ -1.17852, 52.76362 ], [ -1.18876, 52.75916 ], [ -1.19143, 52.75769 ], [ -1.19196, 52.75774 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Loughborough", "bua_code": "E34000597", "msoa_code": "E02005354", "population": 9921, "outputarea_code": "E00130437", "lsoa_code": "E01025708", "la_name": "Charnwood", "bua_name": "Loughborough BUA", "constituency_name": "Loughborough", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.23933, "latitude": 52.75035, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.2034, 52.74652 ], [ -1.20872, 52.74403 ], [ -1.21391, 52.74331 ], [ -1.22271, 52.74087 ], [ -1.22894, 52.73902 ], [ -1.23109, 52.73801 ], [ -1.2311, 52.73699 ], [ -1.23004, 52.73619 ], [ -1.23067, 52.73604 ], [ -1.23353, 52.73501 ], [ -1.23474, 52.73496 ], [ -1.23626, 52.73571 ], [ -1.2372, 52.73518 ], [ -1.24227, 52.73429 ], [ -1.24307, 52.7354 ], [ -1.24601, 52.73467 ], [ -1.24714, 52.73637 ], [ -1.24981, 52.73827 ], [ -1.25119, 52.73853 ], [ -1.25112, 52.74087 ], [ -1.25851, 52.74444 ], [ -1.26397, 52.74457 ], [ -1.26475, 52.74485 ], [ -1.26708, 52.74576 ], [ -1.26593, 52.74708 ], [ -1.26687, 52.74745 ], [ -1.26922, 52.74866 ], [ -1.2725, 52.75226 ], [ -1.2745, 52.75283 ], [ -1.27463, 52.75552 ], [ -1.27144, 52.76042 ], [ -1.27086, 52.76045 ], [ -1.26207, 52.7611 ], [ -1.25433, 52.76182 ], [ -1.24532, 52.76259 ], [ -1.24449, 52.76259 ], [ -1.24441, 52.76096 ], [ -1.24338, 52.761 ], [ -1.24295, 52.76016 ], [ -1.24167, 52.75911 ], [ -1.24284, 52.75926 ], [ -1.24406, 52.75953 ], [ -1.24005, 52.75788 ], [ -1.23928, 52.75814 ], [ -1.23883, 52.75812 ], [ -1.23874, 52.75775 ], [ -1.23748, 52.75801 ], [ -1.23779, 52.75642 ], [ -1.23687, 52.75622 ], [ -1.23707, 52.75597 ], [ -1.23586, 52.75606 ], [ -1.236, 52.75553 ], [ -1.23666, 52.75529 ], [ -1.23605, 52.75498 ], [ -1.23394, 52.75668 ], [ -1.2326, 52.75782 ], [ -1.23233, 52.75807 ], [ -1.23187, 52.75841 ], [ -1.22992, 52.75971 ], [ -1.226, 52.76158 ], [ -1.22299, 52.76274 ], [ -1.21814, 52.76429 ], [ -1.21791, 52.76419 ], [ -1.21679, 52.76373 ], [ -1.21629, 52.76353 ], [ -1.21197, 52.76166 ], [ -1.21327, 52.76067 ], [ -1.2102, 52.75922 ], [ -1.21093, 52.75869 ], [ -1.21237, 52.75764 ], [ -1.21447, 52.75614 ], [ -1.21389, 52.75579 ], [ -1.21333, 52.75545 ], [ -1.21317, 52.75561 ], [ -1.21198, 52.75496 ], [ -1.2123, 52.7545 ], [ -1.21204, 52.75422 ], [ -1.21046, 52.75239 ], [ -1.21096, 52.75165 ], [ -1.21066, 52.75094 ], [ -1.20987, 52.75011 ], [ -1.20789, 52.75003 ], [ -1.20609, 52.74916 ], [ -1.20326, 52.74785 ], [ -1.20205, 52.74727 ], [ -1.20172, 52.7465 ], [ -1.20271, 52.74605 ], [ -1.2034, 52.74652 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Louth", "bua_code": "E34001434", "msoa_code": "E02005426", "population": 9929, "outputarea_code": "E00132360", "lsoa_code": "E01026077", "la_name": "East Lindsey", "bua_name": "Louth BUA", "constituency_name": "Louth and Horncastle", "citytownclassification": "Small Town", "urban": "Y", "longitude": 0.00062, "latitude": 53.3711, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.02664, 53.35699 ], [ 0.02534, 53.35666 ], [ 0.02551, 53.35609 ], [ 0.02448, 53.35486 ], [ 0.02522, 53.35355 ], [ 0.0226, 53.35212 ], [ 0.01652, 53.34955 ], [ 0.01297, 53.34791 ], [ 0.00978, 53.35091 ], [ 0.00889, 53.35405 ], [ 0.00845, 53.35713 ], [ 0.00774, 53.35846 ], [ 0.00608, 53.35922 ], [ 0.0052, 53.35986 ], [ 0.00514, 53.35991 ], [ 0.00241, 53.36171 ], [ 0.00259, 53.36175 ], [ 0.00619, 53.36276 ], [ 0.00506, 53.36432 ], [ 0.00546, 53.36444 ], [ 0.00514, 53.36485 ], [ 0.00742, 53.36555 ], [ 0.00778, 53.36532 ], [ 0.00953, 53.36366 ], [ 0.01155, 53.36433 ], [ 0.01063, 53.36528 ], [ 0.01193, 53.36578 ], [ 0.01147, 53.36618 ], [ 0.01261, 53.36666 ], [ 0.0115, 53.36821 ], [ 0.01085, 53.3689 ], [ 0.01042, 53.36875 ], [ 0.00934, 53.36961 ], [ 0.00864, 53.37016 ], [ 0.00783, 53.36978 ], [ 0.00652, 53.3709 ], [ 0.00593, 53.37218 ], [ 0.0034, 53.37402 ], [ 0.00039, 53.37291 ], [ 0.00017, 53.37292 ], [ -0.0037, 53.3715 ], [ -0.00445, 53.37122 ], [ -0.00841, 53.36963 ], [ -0.00927, 53.36918 ], [ -0.01383, 53.36711 ], [ -0.01738, 53.36619 ], [ -0.01834, 53.36621 ], [ -0.01909, 53.36756 ], [ -0.01905, 53.37061 ], [ -0.01997, 53.37201 ], [ -0.02206, 53.37489 ], [ -0.02456, 53.37472 ], [ -0.02495, 53.37582 ], [ -0.02933, 53.37564 ], [ -0.02894, 53.38064 ], [ -0.02582, 53.38463 ], [ -0.02367, 53.38469 ], [ -0.02406, 53.38687 ], [ -0.01812, 53.38807 ], [ -0.01539, 53.38841 ], [ -0.01508, 53.38815 ], [ -0.01332, 53.38708 ], [ -0.00611, 53.38515 ], [ -0.00346, 53.38443 ], [ -0.00197, 53.38478 ], [ -0.00043, 53.38299 ], [ 0.00156, 53.38366 ], [ 0.00302, 53.38329 ], [ 0.00402, 53.38233 ], [ 0.00792, 53.38085 ], [ 0.01038, 53.37841 ], [ 0.01071, 53.37809 ], [ 0.01401, 53.37608 ], [ 0.01623, 53.37452 ], [ 0.01511, 53.37436 ], [ 0.01583, 53.37382 ], [ 0.01767, 53.37411 ], [ 0.01961, 53.3749 ], [ 0.02083, 53.3747 ], [ 0.02123, 53.3749 ], [ 0.0229, 53.37361 ], [ 0.01986, 53.37254 ], [ 0.01949, 53.37287 ], [ 0.01789, 53.37233 ], [ 0.01776, 53.37161 ], [ 0.0166, 53.37118 ], [ 0.01611, 53.37053 ], [ 0.01895, 53.36787 ], [ 0.01832, 53.36739 ], [ 0.0165, 53.36733 ], [ 0.01588, 53.36762 ], [ 0.01598, 53.36722 ], [ 0.01722, 53.36652 ], [ 0.02046, 53.36691 ], [ 0.02284, 53.36666 ], [ 0.02549, 53.36565 ], [ 0.02637, 53.36319 ], [ 0.02906, 53.36168 ], [ 0.0263, 53.35783 ], [ 0.02664, 53.35699 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Louth", "bua_code": "E34001434", "msoa_code": "E02005427", "population": 6859, "outputarea_code": "E00132383", "lsoa_code": "E01026081", "la_name": "East Lindsey", "bua_name": "Louth BUA", "constituency_name": "Louth and Horncastle", "citytownclassification": "Small Town", "urban": "Y", "longitude": -0.00494, "latitude": 53.3596, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.00742, 53.36555 ], [ 0.00514, 53.36485 ], [ 0.00546, 53.36444 ], [ 0.00506, 53.36432 ], [ 0.00619, 53.36276 ], [ 0.00259, 53.36175 ], [ 0.00241, 53.36171 ], [ 0.00514, 53.35991 ], [ 0.0052, 53.35986 ], [ 0.00608, 53.35922 ], [ 0.00774, 53.35846 ], [ 0.00845, 53.35713 ], [ 0.00889, 53.35405 ], [ 0.00978, 53.35091 ], [ 0.01297, 53.34791 ], [ 0.01131, 53.34687 ], [ 0.00882, 53.34602 ], [ 0.00511, 53.34607 ], [ 0.00296, 53.34666 ], [ -0.0041, 53.34754 ], [ -0.00959, 53.35219 ], [ -0.01187, 53.35524 ], [ -0.01901, 53.35401 ], [ -0.02404, 53.35495 ], [ -0.02594, 53.3547 ], [ -0.02602, 53.35493 ], [ -0.02683, 53.35487 ], [ -0.02815, 53.35784 ], [ -0.02754, 53.35808 ], [ -0.02777, 53.35936 ], [ -0.0273, 53.36026 ], [ -0.02527, 53.361 ], [ -0.02602, 53.36175 ], [ -0.02442, 53.36239 ], [ -0.0249, 53.36293 ], [ -0.01653, 53.36553 ], [ -0.01738, 53.36619 ], [ -0.01383, 53.36711 ], [ -0.00927, 53.36918 ], [ -0.00841, 53.36963 ], [ -0.00445, 53.37122 ], [ -0.0037, 53.3715 ], [ 0.00017, 53.37292 ], [ 0.00039, 53.37291 ], [ 0.0034, 53.37402 ], [ 0.00593, 53.37218 ], [ 0.00652, 53.3709 ], [ 0.00783, 53.36978 ], [ 0.00864, 53.37016 ], [ 0.00934, 53.36961 ], [ 0.01042, 53.36875 ], [ 0.01085, 53.3689 ], [ 0.0115, 53.36821 ], [ 0.01261, 53.36666 ], [ 0.01147, 53.36618 ], [ 0.01193, 53.36578 ], [ 0.01063, 53.36528 ], [ 0.01155, 53.36433 ], [ 0.00953, 53.36366 ], [ 0.00778, 53.36532 ], [ 0.00742, 53.36555 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Lutterworth", "bua_code": "E34000786", "msoa_code": "E02005372", "population": 598, "outputarea_code": "E00130995", "lsoa_code": "E01025816", "la_name": "Harborough", "bua_name": "Lutterworth BUA", "constituency_name": "South Leicestershire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.23526, "latitude": 52.46913, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.28437, 52.4765 ], [ -1.28318, 52.47695 ], [ -1.27968, 52.47643 ], [ -1.27962, 52.47618 ], [ -1.27723, 52.47626 ], [ -1.2769, 52.47625 ], [ -1.27613, 52.47629 ], [ -1.27597, 52.4763 ], [ -1.27451, 52.47646 ], [ -1.26251, 52.47406 ], [ -1.25893, 52.47324 ], [ -1.25415, 52.47152 ], [ -1.2511, 52.46965 ], [ -1.24785, 52.46948 ], [ -1.24761, 52.46905 ], [ -1.24093, 52.46824 ], [ -1.23983, 52.46917 ], [ -1.23613, 52.47683 ], [ -1.23002, 52.4796 ], [ -1.22415, 52.48169 ], [ -1.22254, 52.48147 ], [ -1.22117, 52.48302 ], [ -1.2199, 52.48239 ], [ -1.21809, 52.48385 ], [ -1.2176, 52.48352 ], [ -1.21514, 52.48525 ], [ -1.21338, 52.48604 ], [ -1.20318, 52.4865 ], [ -1.20255, 52.48778 ], [ -1.20009, 52.48917 ], [ -1.19822, 52.48946 ], [ -1.19821, 52.48979 ], [ -1.19678, 52.48959 ], [ -1.19656, 52.49025 ], [ -1.19392, 52.4898 ], [ -1.19305, 52.48958 ], [ -1.19325, 52.48575 ], [ -1.19403, 52.48548 ], [ -1.19486, 52.48428 ], [ -1.19836, 52.48294 ], [ -1.19982, 52.48192 ], [ -1.2, 52.48246 ], [ -1.20389, 52.47994 ], [ -1.20537, 52.47848 ], [ -1.20437, 52.47652 ], [ -1.20312, 52.47523 ], [ -1.20456, 52.47278 ], [ -1.2051, 52.46956 ], [ -1.20619, 52.46768 ], [ -1.20696, 52.46671 ], [ -1.20768, 52.46554 ], [ -1.21059, 52.46353 ], [ -1.21136, 52.46365 ], [ -1.21276, 52.46326 ], [ -1.21317, 52.46342 ], [ -1.21566, 52.46279 ], [ -1.2159, 52.46244 ], [ -1.21818, 52.46221 ], [ -1.21866, 52.46174 ], [ -1.22038, 52.46153 ], [ -1.22182, 52.46086 ], [ -1.2221, 52.46051 ], [ -1.22163, 52.46034 ], [ -1.22239, 52.45964 ], [ -1.22227, 52.45934 ], [ -1.22201, 52.45926 ], [ -1.22233, 52.45892 ], [ -1.2229, 52.45903 ], [ -1.2231, 52.45838 ], [ -1.22355, 52.45849 ], [ -1.22383, 52.4579 ], [ -1.2244, 52.45808 ], [ -1.22452, 52.45756 ], [ -1.22651, 52.45606 ], [ -1.23246, 52.45524 ], [ -1.23992, 52.45359 ], [ -1.24633, 52.45331 ], [ -1.25301, 52.45375 ], [ -1.25508, 52.45443 ], [ -1.2555, 52.4541 ], [ -1.25783, 52.45389 ], [ -1.27598, 52.46946 ], [ -1.27644, 52.46984 ], [ -1.28437, 52.4765 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Lutterworth", "bua_code": "E34000786", "msoa_code": "E02005376", "population": 9629, "outputarea_code": "E00130847", "lsoa_code": "E01025790", "la_name": "Harborough", "bua_name": "Lutterworth BUA", "constituency_name": "South Leicestershire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.21238, "latitude": 52.45589, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.25783, 52.45389 ], [ -1.2555, 52.4541 ], [ -1.25508, 52.45443 ], [ -1.25301, 52.45375 ], [ -1.24633, 52.45331 ], [ -1.23992, 52.45359 ], [ -1.23246, 52.45524 ], [ -1.22651, 52.45606 ], [ -1.22452, 52.45756 ], [ -1.2244, 52.45808 ], [ -1.22383, 52.4579 ], [ -1.22355, 52.45849 ], [ -1.2231, 52.45838 ], [ -1.2229, 52.45903 ], [ -1.22233, 52.45892 ], [ -1.22201, 52.45926 ], [ -1.22227, 52.45934 ], [ -1.22239, 52.45964 ], [ -1.22163, 52.46034 ], [ -1.2221, 52.46051 ], [ -1.22182, 52.46086 ], [ -1.22038, 52.46153 ], [ -1.21866, 52.46174 ], [ -1.21818, 52.46221 ], [ -1.2159, 52.46244 ], [ -1.21566, 52.46279 ], [ -1.21317, 52.46342 ], [ -1.21276, 52.46326 ], [ -1.21136, 52.46365 ], [ -1.21059, 52.46353 ], [ -1.20768, 52.46554 ], [ -1.20696, 52.46671 ], [ -1.20619, 52.46768 ], [ -1.2051, 52.46956 ], [ -1.20456, 52.47278 ], [ -1.20312, 52.47523 ], [ -1.20437, 52.47652 ], [ -1.20537, 52.47848 ], [ -1.20389, 52.47994 ], [ -1.2, 52.48246 ], [ -1.19982, 52.48192 ], [ -1.19836, 52.48294 ], [ -1.19678, 52.48203 ], [ -1.19407, 52.47945 ], [ -1.18936, 52.47806 ], [ -1.18681, 52.47768 ], [ -1.18668, 52.47694 ], [ -1.18798, 52.47427 ], [ -1.18549, 52.47267 ], [ -1.18425, 52.47068 ], [ -1.18412, 52.46949 ], [ -1.18368, 52.46938 ], [ -1.18224, 52.46904 ], [ -1.18309, 52.46384 ], [ -1.18252, 52.46273 ], [ -1.18128, 52.46195 ], [ -1.18428, 52.46074 ], [ -1.18492, 52.45926 ], [ -1.18469, 52.45885 ], [ -1.18726, 52.45416 ], [ -1.18851, 52.45403 ], [ -1.19149, 52.45294 ], [ -1.1914, 52.45209 ], [ -1.19153, 52.44923 ], [ -1.19357, 52.44083 ], [ -1.19721, 52.4432 ], [ -1.20029, 52.44529 ], [ -1.20595, 52.44706 ], [ -1.2059, 52.44664 ], [ -1.20527, 52.44666 ], [ -1.20539, 52.44637 ], [ -1.20476, 52.44613 ], [ -1.20573, 52.44601 ], [ -1.20627, 52.44533 ], [ -1.20585, 52.44525 ], [ -1.20665, 52.44499 ], [ -1.20664, 52.44468 ], [ -1.20868, 52.44497 ], [ -1.20953, 52.44437 ], [ -1.21265, 52.4434 ], [ -1.21539, 52.44184 ], [ -1.22002, 52.44029 ], [ -1.22217, 52.44011 ], [ -1.22281, 52.43926 ], [ -1.22609, 52.43987 ], [ -1.22597, 52.43953 ], [ -1.22723, 52.43919 ], [ -1.2281, 52.43816 ], [ -1.22856, 52.43814 ], [ -1.2292, 52.43891 ], [ -1.22989, 52.43871 ], [ -1.22997, 52.43899 ], [ -1.23082, 52.43911 ], [ -1.23265, 52.43881 ], [ -1.23305, 52.43868 ], [ -1.23239, 52.43805 ], [ -1.2352, 52.43579 ], [ -1.23644, 52.43573 ], [ -1.23675, 52.43604 ], [ -1.24074, 52.44013 ], [ -1.24157, 52.43976 ], [ -1.24292, 52.43968 ], [ -1.25292, 52.44932 ], [ -1.25783, 52.45389 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mablethorpe", "bua_code": "E34000776", "msoa_code": "E02005428", "population": 6032, "outputarea_code": "E00132322", "lsoa_code": "E01026072", "la_name": "East Lindsey", "bua_name": "Mablethorpe BUA", "constituency_name": "Louth and Horncastle", "citytownclassification": "Small Town", "urban": "Y", "longitude": 0.23949, "latitude": 53.34283, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.25914, 53.33312 ], [ 0.25177, 53.33032 ], [ 0.25198, 53.3299 ], [ 0.24984, 53.32914 ], [ 0.22648, 53.32072 ], [ 0.22535, 53.32211 ], [ 0.21894, 53.32698 ], [ 0.21565, 53.32948 ], [ 0.20571, 53.33712 ], [ 0.21528, 53.34074 ], [ 0.22358, 53.3458 ], [ 0.23005, 53.35039 ], [ 0.23654, 53.35576 ], [ 0.24008, 53.35873 ], [ 0.23816, 53.35942 ], [ 0.2379, 53.35999 ], [ 0.23887, 53.36032 ], [ 0.23907, 53.36102 ], [ 0.23618, 53.36224 ], [ 0.23638, 53.3628 ], [ 0.23472, 53.36412 ], [ 0.23474, 53.36499 ], [ 0.2334, 53.36633 ], [ 0.23179, 53.36725 ], [ 0.23318, 53.36935 ], [ 0.23557, 53.36953 ], [ 0.24367, 53.37222 ], [ 0.24643, 53.36948 ], [ 0.24839, 53.36651 ], [ 0.24832, 53.36556 ], [ 0.24906, 53.3655 ], [ 0.25286, 53.35991 ], [ 0.255, 53.35743 ], [ 0.25934, 53.3507 ], [ 0.2633, 53.34519 ], [ 0.26382, 53.34445 ], [ 0.26501, 53.34394 ], [ 0.26461, 53.34382 ], [ 0.26639, 53.34175 ], [ 0.26749, 53.33933 ], [ 0.26619, 53.33893 ], [ 0.26655, 53.33846 ], [ 0.26609, 53.33821 ], [ 0.26568, 53.33799 ], [ 0.26679, 53.33665 ], [ 0.26583, 53.33632 ], [ 0.26518, 53.33613 ], [ 0.26618, 53.33493 ], [ 0.26406, 53.33426 ], [ 0.26311, 53.33418 ], [ 0.26161, 53.3341 ], [ 0.25914, 53.33312 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mablethorpe", "bua_code": "E34000776", "msoa_code": "E02005429", "population": 6342, "outputarea_code": "E00132517", "lsoa_code": "E01026103", "la_name": "East Lindsey", "bua_name": "Mablethorpe BUA", "constituency_name": "Louth and Horncastle", "citytownclassification": "Small Town", "urban": "Y", "longitude": 0.26211, "latitude": 53.31026, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.28988, 53.30497 ], [ 0.29413, 53.29994 ], [ 0.29998, 53.29447 ], [ 0.29809, 53.2939 ], [ 0.25901, 53.28493 ], [ 0.25767, 53.28867 ], [ 0.25781, 53.29124 ], [ 0.2571, 53.29371 ], [ 0.25579, 53.29563 ], [ 0.2525, 53.29751 ], [ 0.25079, 53.29824 ], [ 0.24786, 53.29748 ], [ 0.24498, 53.29769 ], [ 0.24092, 53.30184 ], [ 0.2314, 53.30621 ], [ 0.22588, 53.30962 ], [ 0.22735, 53.31133 ], [ 0.22961, 53.31632 ], [ 0.22648, 53.32072 ], [ 0.24984, 53.32914 ], [ 0.25198, 53.3299 ], [ 0.25177, 53.33032 ], [ 0.25914, 53.33312 ], [ 0.26161, 53.3341 ], [ 0.26311, 53.33418 ], [ 0.26406, 53.33426 ], [ 0.26618, 53.33493 ], [ 0.26518, 53.33613 ], [ 0.26583, 53.33632 ], [ 0.26679, 53.33665 ], [ 0.26568, 53.33799 ], [ 0.26609, 53.33821 ], [ 0.26655, 53.33846 ], [ 0.26619, 53.33893 ], [ 0.26749, 53.33933 ], [ 0.26899, 53.33797 ], [ 0.27074, 53.33479 ], [ 0.27184, 53.33368 ], [ 0.27367, 53.33262 ], [ 0.27822, 53.32469 ], [ 0.28129, 53.31932 ], [ 0.2833, 53.31531 ], [ 0.28513, 53.31297 ], [ 0.28988, 53.30497 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mansfield", "bua_code": "E35001334", "msoa_code": "E02004051", "population": 1059, "outputarea_code": "E00098634", "lsoa_code": "E01019503", "la_name": "Bolsover", "bua_name": "Mansfield BUASD", "constituency_name": "Bolsover", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.25674, "latitude": 53.17454, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.24922, 53.17105 ], [ -1.24967, 53.17066 ], [ -1.24909, 53.16994 ], [ -1.24967, 53.16927 ], [ -1.24946, 53.16896 ], [ -1.25024, 53.16881 ], [ -1.24985, 53.16855 ], [ -1.25125, 53.16778 ], [ -1.25169, 53.16726 ], [ -1.2529, 53.16694 ], [ -1.25237, 53.16624 ], [ -1.25338, 53.1659 ], [ -1.25317, 53.16552 ], [ -1.25367, 53.1656 ], [ -1.254, 53.16501 ], [ -1.25993, 53.16448 ], [ -1.26028, 53.16476 ], [ -1.25931, 53.16562 ], [ -1.25902, 53.16698 ], [ -1.26027, 53.16956 ], [ -1.26123, 53.17033 ], [ -1.2615, 53.17171 ], [ -1.26514, 53.17472 ], [ -1.26728, 53.17788 ], [ -1.26847, 53.18368 ], [ -1.26865, 53.18505 ], [ -1.26381, 53.18326 ], [ -1.25992, 53.1811 ], [ -1.25822, 53.17975 ], [ -1.25699, 53.18003 ], [ -1.25671, 53.17967 ], [ -1.25739, 53.17898 ], [ -1.25523, 53.17791 ], [ -1.25372, 53.17876 ], [ -1.25248, 53.17789 ], [ -1.24982, 53.1772 ], [ -1.2487, 53.17624 ], [ -1.24364, 53.17786 ], [ -1.24179, 53.17992 ], [ -1.23973, 53.17928 ], [ -1.23935, 53.17888 ], [ -1.24179, 53.1781 ], [ -1.24333, 53.17702 ], [ -1.24366, 53.17631 ], [ -1.24576, 53.17538 ], [ -1.24527, 53.17521 ], [ -1.24462, 53.1734 ], [ -1.24631, 53.17212 ], [ -1.24824, 53.17165 ], [ -1.24922, 53.17105 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mansfield", "bua_code": "E35001334", "msoa_code": "E02005883", "population": 1832, "outputarea_code": "E00144051", "lsoa_code": "E01028271", "la_name": "Mansfield", "bua_name": "Mansfield BUASD", "constituency_name": "Mansfield", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.20364, "latitude": 53.15884, "pgroup": "50k" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.20374, 53.15155 ], [ -1.20651, 53.15325 ], [ -1.20733, 53.1536 ], [ -1.20992, 53.15477 ], [ -1.20954, 53.15504 ], [ -1.20994, 53.15544 ], [ -1.20851, 53.15611 ], [ -1.2086, 53.15655 ], [ -1.20923, 53.15639 ], [ -1.2097, 53.15659 ], [ -1.20953, 53.15722 ], [ -1.21069, 53.15798 ], [ -1.21206, 53.1606 ], [ -1.21099, 53.16544 ], [ -1.21395, 53.16611 ], [ -1.21155, 53.16856 ], [ -1.20466, 53.16677 ], [ -1.20618, 53.16521 ], [ -1.20633, 53.16493 ], [ -1.20244, 53.16488 ], [ -1.201, 53.16234 ], [ -1.19914, 53.16014 ], [ -1.20079, 53.15913 ], [ -1.20296, 53.15885 ], [ -1.20314, 53.15759 ], [ -1.20231, 53.15654 ], [ -1.20164, 53.1564 ], [ -1.19983, 53.15686 ], [ -1.19892, 53.15623 ], [ -1.19855, 53.15598 ], [ -1.19801, 53.15571 ], [ -1.19804, 53.15503 ], [ -1.19724, 53.15458 ], [ -1.19674, 53.15468 ], [ -1.19821, 53.15373 ], [ -1.19691, 53.15312 ], [ -1.19803, 53.15287 ], [ -1.19902, 53.15219 ], [ -1.19947, 53.15239 ], [ -1.20007, 53.15185 ], [ -1.19879, 53.1512 ], [ -1.20072, 53.15006 ], [ -1.20127, 53.15038 ], [ -1.20169, 53.1502 ], [ -1.2026, 53.1508 ], [ -1.20374, 53.15155 ] ] ], [ [ [ -1.19314, 53.15596 ], [ -1.19208, 53.15656 ], [ -1.18977, 53.15605 ], [ -1.18729, 53.15672 ], [ -1.18629, 53.15551 ], [ -1.18702, 53.15513 ], [ -1.18641, 53.15462 ], [ -1.18741, 53.15432 ], [ -1.18926, 53.15254 ], [ -1.19094, 53.15401 ], [ -1.1921, 53.15317 ], [ -1.19278, 53.15412 ], [ -1.19374, 53.15414 ], [ -1.19379, 53.15391 ], [ -1.19509, 53.15542 ], [ -1.19625, 53.15677 ], [ -1.19712, 53.15778 ], [ -1.1965, 53.15878 ], [ -1.19402, 53.15551 ], [ -1.19374, 53.15594 ], [ -1.19314, 53.15596 ] ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mansfield", "bua_code": "E35001334", "msoa_code": "E02005884", "population": 1393, "outputarea_code": "E00143892", "lsoa_code": "E01028242", "la_name": "Mansfield", "bua_name": "Mansfield BUASD", "constituency_name": "Mansfield", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.16393, "latitude": 53.16086, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.17392, 53.15096 ], [ -1.17676, 53.15129 ], [ -1.17902, 53.15052 ], [ -1.17894, 53.15087 ], [ -1.17856, 53.15157 ], [ -1.17941, 53.15175 ], [ -1.17938, 53.1527 ], [ -1.17946, 53.15413 ], [ -1.18015, 53.15431 ], [ -1.18032, 53.1554 ], [ -1.18162, 53.1567 ], [ -1.18217, 53.15682 ], [ -1.18228, 53.15794 ], [ -1.18219, 53.15807 ], [ -1.18021, 53.15873 ], [ -1.17915, 53.15986 ], [ -1.1774, 53.1609 ], [ -1.17727, 53.16139 ], [ -1.1742, 53.16304 ], [ -1.1725, 53.16339 ], [ -1.16663, 53.16596 ], [ -1.16274, 53.16722 ], [ -1.15984, 53.16721 ], [ -1.15487, 53.16636 ], [ -1.15111, 53.1669 ], [ -1.14971, 53.16752 ], [ -1.14897, 53.16655 ], [ -1.14887, 53.16449 ], [ -1.14657, 53.16205 ], [ -1.14692, 53.16013 ], [ -1.14571, 53.15915 ], [ -1.14715, 53.15825 ], [ -1.15487, 53.15932 ], [ -1.15692, 53.15974 ], [ -1.15834, 53.16024 ], [ -1.1658, 53.1606 ], [ -1.16724, 53.16126 ], [ -1.16885, 53.1622 ], [ -1.17095, 53.16109 ], [ -1.17184, 53.1602 ], [ -1.17256, 53.15949 ], [ -1.17399, 53.15806 ], [ -1.1745, 53.15794 ], [ -1.17574, 53.15844 ], [ -1.17649, 53.15755 ], [ -1.17753, 53.15763 ], [ -1.17798, 53.15719 ], [ -1.17555, 53.15638 ], [ -1.17496, 53.15617 ], [ -1.17551, 53.1556 ], [ -1.17479, 53.15517 ], [ -1.17356, 53.155 ], [ -1.17312, 53.15546 ], [ -1.17267, 53.15532 ], [ -1.17333, 53.15422 ], [ -1.1723, 53.15307 ], [ -1.17258, 53.15283 ], [ -1.17359, 53.15306 ], [ -1.17422, 53.15246 ], [ -1.17183, 53.15168 ], [ -1.17132, 53.15224 ], [ -1.16927, 53.15153 ], [ -1.16948, 53.15112 ], [ -1.17034, 53.15089 ], [ -1.16979, 53.14978 ], [ -1.17105, 53.1501 ], [ -1.17392, 53.15096 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mansfield", "bua_code": "E35001334", "msoa_code": "E02005885", "population": 8216, "outputarea_code": "E00143814", "lsoa_code": "E01028229", "la_name": "Mansfield", "bua_name": "Mansfield BUASD", "constituency_name": "Mansfield", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.23421, "latitude": 53.16179, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.21826, 53.15122 ], [ -1.21799, 53.15105 ], [ -1.21606, 53.15053 ], [ -1.21694, 53.1495 ], [ -1.22005, 53.14804 ], [ -1.22037, 53.14801 ], [ -1.22117, 53.14776 ], [ -1.22152, 53.14684 ], [ -1.22247, 53.14628 ], [ -1.22237, 53.14563 ], [ -1.22392, 53.1456 ], [ -1.22313, 53.14622 ], [ -1.22383, 53.14664 ], [ -1.22284, 53.1474 ], [ -1.2232, 53.14753 ], [ -1.22362, 53.14725 ], [ -1.22373, 53.14765 ], [ -1.2245, 53.14761 ], [ -1.22527, 53.14802 ], [ -1.22423, 53.14915 ], [ -1.22488, 53.14961 ], [ -1.22738, 53.14949 ], [ -1.22788, 53.14935 ], [ -1.22755, 53.14919 ], [ -1.22786, 53.14897 ], [ -1.22911, 53.14767 ], [ -1.23124, 53.1488 ], [ -1.23434, 53.14716 ], [ -1.23713, 53.14623 ], [ -1.23713, 53.14625 ], [ -1.23782, 53.14876 ], [ -1.23985, 53.14871 ], [ -1.24018, 53.15124 ], [ -1.24098, 53.15309 ], [ -1.24182, 53.15358 ], [ -1.24375, 53.1542 ], [ -1.24752, 53.15304 ], [ -1.25128, 53.15438 ], [ -1.25419, 53.15473 ], [ -1.25533, 53.15462 ], [ -1.25684, 53.15639 ], [ -1.25702, 53.16016 ], [ -1.258, 53.16133 ], [ -1.25865, 53.1635 ], [ -1.25993, 53.16448 ], [ -1.254, 53.16501 ], [ -1.25367, 53.1656 ], [ -1.25317, 53.16552 ], [ -1.25338, 53.1659 ], [ -1.25237, 53.16624 ], [ -1.2529, 53.16694 ], [ -1.25169, 53.16726 ], [ -1.25125, 53.16778 ], [ -1.24985, 53.16855 ], [ -1.25024, 53.16881 ], [ -1.24946, 53.16896 ], [ -1.24967, 53.16927 ], [ -1.24909, 53.16994 ], [ -1.24967, 53.17066 ], [ -1.24922, 53.17105 ], [ -1.24824, 53.17165 ], [ -1.24631, 53.17212 ], [ -1.24462, 53.1734 ], [ -1.24527, 53.17521 ], [ -1.24576, 53.17538 ], [ -1.24366, 53.17631 ], [ -1.24333, 53.17702 ], [ -1.24179, 53.1781 ], [ -1.23935, 53.17888 ], [ -1.23734, 53.17917 ], [ -1.23618, 53.17885 ], [ -1.2362, 53.17848 ], [ -1.23199, 53.17813 ], [ -1.22991, 53.17849 ], [ -1.23104, 53.17506 ], [ -1.23025, 53.1723 ], [ -1.22771, 53.171 ], [ -1.22698, 53.17073 ], [ -1.22199, 53.1692 ], [ -1.21395, 53.16611 ], [ -1.21099, 53.16544 ], [ -1.21206, 53.1606 ], [ -1.21069, 53.15798 ], [ -1.20953, 53.15722 ], [ -1.2097, 53.15659 ], [ -1.20923, 53.15639 ], [ -1.2086, 53.15655 ], [ -1.20851, 53.15611 ], [ -1.20994, 53.15544 ], [ -1.20954, 53.15504 ], [ -1.20992, 53.15477 ], [ -1.21021, 53.15491 ], [ -1.21631, 53.15664 ], [ -1.21666, 53.15678 ], [ -1.21719, 53.157 ], [ -1.21811, 53.15687 ], [ -1.2158, 53.15574 ], [ -1.21643, 53.1549 ], [ -1.21607, 53.15471 ], [ -1.21659, 53.15442 ], [ -1.21726, 53.15412 ], [ -1.21677, 53.1539 ], [ -1.21859, 53.1532 ], [ -1.21934, 53.15346 ], [ -1.21872, 53.15384 ], [ -1.21824, 53.15378 ], [ -1.21894, 53.1542 ], [ -1.21976, 53.15358 ], [ -1.21943, 53.15336 ], [ -1.22024, 53.15311 ], [ -1.22111, 53.15366 ], [ -1.22159, 53.15352 ], [ -1.22133, 53.15273 ], [ -1.22222, 53.15268 ], [ -1.22243, 53.15236 ], [ -1.21981, 53.15206 ], [ -1.21826, 53.15122 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mansfield", "bua_code": "E35001334", "msoa_code": "E02005886", "population": 11097, "outputarea_code": "E00143867", "lsoa_code": "E01028237", "la_name": "Mansfield", "bua_name": "Mansfield BUASD", "constituency_name": "Mansfield", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.1491, "latitude": 53.15627, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.15958, 53.14747 ], [ -1.16047, 53.14749 ], [ -1.16263, 53.14696 ], [ -1.16281, 53.14702 ], [ -1.16297, 53.14754 ], [ -1.16625, 53.14917 ], [ -1.1675, 53.14899 ], [ -1.16945, 53.14853 ], [ -1.17056, 53.14906 ], [ -1.17031, 53.14929 ], [ -1.16979, 53.14978 ], [ -1.17034, 53.15089 ], [ -1.16948, 53.15112 ], [ -1.16927, 53.15153 ], [ -1.17132, 53.15224 ], [ -1.17183, 53.15168 ], [ -1.17422, 53.15246 ], [ -1.17359, 53.15306 ], [ -1.17258, 53.15283 ], [ -1.1723, 53.15307 ], [ -1.17333, 53.15422 ], [ -1.17267, 53.15532 ], [ -1.17312, 53.15546 ], [ -1.17356, 53.155 ], [ -1.17479, 53.15517 ], [ -1.17551, 53.1556 ], [ -1.17496, 53.15617 ], [ -1.17555, 53.15638 ], [ -1.17798, 53.15719 ], [ -1.17753, 53.15763 ], [ -1.17649, 53.15755 ], [ -1.17574, 53.15844 ], [ -1.1745, 53.15794 ], [ -1.17399, 53.15806 ], [ -1.17256, 53.15949 ], [ -1.17184, 53.1602 ], [ -1.17095, 53.16109 ], [ -1.16885, 53.1622 ], [ -1.16724, 53.16126 ], [ -1.1658, 53.1606 ], [ -1.15834, 53.16024 ], [ -1.15692, 53.15974 ], [ -1.15487, 53.15932 ], [ -1.14715, 53.15825 ], [ -1.14571, 53.15915 ], [ -1.14692, 53.16013 ], [ -1.14657, 53.16205 ], [ -1.14887, 53.16449 ], [ -1.14897, 53.16655 ], [ -1.14971, 53.16752 ], [ -1.14868, 53.1685 ], [ -1.14626, 53.16929 ], [ -1.13616, 53.16462 ], [ -1.13559, 53.16436 ], [ -1.13247, 53.16288 ], [ -1.13163, 53.16295 ], [ -1.12958, 53.16061 ], [ -1.12875, 53.15967 ], [ -1.12802, 53.15905 ], [ -1.12596, 53.15737 ], [ -1.12202, 53.15597 ], [ -1.11897, 53.15445 ], [ -1.13239, 53.15113 ], [ -1.13671, 53.15084 ], [ -1.14243, 53.14976 ], [ -1.14912, 53.14899 ], [ -1.15037, 53.14882 ], [ -1.15958, 53.14747 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mansfield", "bua_code": "E35001334", "msoa_code": "E02005887", "population": 9868, "outputarea_code": "E00143815", "lsoa_code": "E01028228", "la_name": "Mansfield", "bua_name": "Mansfield BUASD", "constituency_name": "Mansfield", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.20262, "latitude": 53.14513, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.20072, 53.13689 ], [ -1.19969, 53.13621 ], [ -1.19967, 53.1358 ], [ -1.20094, 53.13568 ], [ -1.2066, 53.13568 ], [ -1.20838, 53.13502 ], [ -1.20942, 53.13387 ], [ -1.21198, 53.13526 ], [ -1.21347, 53.13613 ], [ -1.21201, 53.1374 ], [ -1.21071, 53.13781 ], [ -1.21182, 53.13924 ], [ -1.21075, 53.1398 ], [ -1.21136, 53.14017 ], [ -1.21058, 53.14054 ], [ -1.20987, 53.14083 ], [ -1.2107, 53.14238 ], [ -1.20973, 53.14286 ], [ -1.20942, 53.14377 ], [ -1.20728, 53.1438 ], [ -1.20681, 53.14332 ], [ -1.20607, 53.14345 ], [ -1.20603, 53.14379 ], [ -1.20729, 53.14442 ], [ -1.20708, 53.14492 ], [ -1.20773, 53.14534 ], [ -1.20784, 53.14563 ], [ -1.20826, 53.14621 ], [ -1.20661, 53.14613 ], [ -1.20697, 53.14702 ], [ -1.20653, 53.14772 ], [ -1.20947, 53.1469 ], [ -1.21263, 53.14665 ], [ -1.213, 53.14742 ], [ -1.21404, 53.14843 ], [ -1.21552, 53.14968 ], [ -1.2157, 53.15048 ], [ -1.21606, 53.15053 ], [ -1.21799, 53.15105 ], [ -1.21826, 53.15122 ], [ -1.21981, 53.15206 ], [ -1.22243, 53.15236 ], [ -1.22222, 53.15268 ], [ -1.22133, 53.15273 ], [ -1.22159, 53.15352 ], [ -1.22111, 53.15366 ], [ -1.22024, 53.15311 ], [ -1.21943, 53.15336 ], [ -1.21976, 53.15358 ], [ -1.21894, 53.1542 ], [ -1.21824, 53.15378 ], [ -1.21872, 53.15384 ], [ -1.21934, 53.15346 ], [ -1.21859, 53.1532 ], [ -1.21677, 53.1539 ], [ -1.21726, 53.15412 ], [ -1.21659, 53.15442 ], [ -1.21607, 53.15471 ], [ -1.21643, 53.1549 ], [ -1.2158, 53.15574 ], [ -1.21811, 53.15687 ], [ -1.21719, 53.157 ], [ -1.21666, 53.15678 ], [ -1.21631, 53.15664 ], [ -1.21021, 53.15491 ], [ -1.20992, 53.15477 ], [ -1.20733, 53.1536 ], [ -1.20651, 53.15325 ], [ -1.20374, 53.15155 ], [ -1.2026, 53.1508 ], [ -1.20169, 53.1502 ], [ -1.20127, 53.15038 ], [ -1.20072, 53.15006 ], [ -1.19879, 53.1512 ], [ -1.20007, 53.15185 ], [ -1.19947, 53.15239 ], [ -1.19902, 53.15219 ], [ -1.19803, 53.15287 ], [ -1.19691, 53.15312 ], [ -1.19821, 53.15373 ], [ -1.19674, 53.15468 ], [ -1.19724, 53.15458 ], [ -1.19804, 53.15503 ], [ -1.19801, 53.15571 ], [ -1.19687, 53.15511 ], [ -1.19509, 53.15542 ], [ -1.19379, 53.15391 ], [ -1.19404, 53.1517 ], [ -1.19408, 53.15148 ], [ -1.19431, 53.15008 ], [ -1.19446, 53.14918 ], [ -1.19425, 53.14742 ], [ -1.19446, 53.14636 ], [ -1.19552, 53.14495 ], [ -1.19604, 53.14443 ], [ -1.19357, 53.14369 ], [ -1.19229, 53.14391 ], [ -1.19075, 53.14344 ], [ -1.1892, 53.14283 ], [ -1.18892, 53.14275 ], [ -1.18602, 53.14192 ], [ -1.18593, 53.14189 ], [ -1.18177, 53.14042 ], [ -1.18275, 53.13943 ], [ -1.18235, 53.13889 ], [ -1.18348, 53.13768 ], [ -1.18707, 53.1372 ], [ -1.18843, 53.13708 ], [ -1.18893, 53.13745 ], [ -1.19016, 53.13831 ], [ -1.19087, 53.13879 ], [ -1.19126, 53.13855 ], [ -1.19274, 53.13898 ], [ -1.19227, 53.13961 ], [ -1.19284, 53.14053 ], [ -1.19553, 53.14064 ], [ -1.19725, 53.13827 ], [ -1.1973, 53.13796 ], [ -1.19834, 53.13848 ], [ -1.20072, 53.13689 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mansfield", "bua_code": "E35001334", "msoa_code": "E02005888", "population": 8513, "outputarea_code": "E00143846", "lsoa_code": "E01028234", "la_name": "Mansfield", "bua_name": "Mansfield BUASD", "constituency_name": "Mansfield", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.18116, "latitude": 53.14606, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.17161, 53.13561 ], [ -1.17365, 53.1362 ], [ -1.17637, 53.13767 ], [ -1.17715, 53.1378 ], [ -1.18265, 53.13769 ], [ -1.18348, 53.13768 ], [ -1.18235, 53.13889 ], [ -1.18275, 53.13943 ], [ -1.18177, 53.14042 ], [ -1.18593, 53.14189 ], [ -1.18602, 53.14192 ], [ -1.18892, 53.14275 ], [ -1.1892, 53.14283 ], [ -1.19075, 53.14344 ], [ -1.19229, 53.14391 ], [ -1.19357, 53.14369 ], [ -1.19604, 53.14443 ], [ -1.19552, 53.14495 ], [ -1.19446, 53.14636 ], [ -1.19425, 53.14742 ], [ -1.19446, 53.14918 ], [ -1.19431, 53.15008 ], [ -1.19408, 53.15148 ], [ -1.19404, 53.1517 ], [ -1.19379, 53.15391 ], [ -1.19374, 53.15414 ], [ -1.19278, 53.15412 ], [ -1.1921, 53.15317 ], [ -1.19094, 53.15401 ], [ -1.18926, 53.15254 ], [ -1.18741, 53.15432 ], [ -1.18641, 53.15462 ], [ -1.18567, 53.15484 ], [ -1.18497, 53.1538 ], [ -1.18535, 53.15278 ], [ -1.18273, 53.15235 ], [ -1.18297, 53.15154 ], [ -1.18104, 53.15079 ], [ -1.18042, 53.15133 ], [ -1.17894, 53.15087 ], [ -1.17902, 53.15052 ], [ -1.17676, 53.15129 ], [ -1.17392, 53.15096 ], [ -1.17105, 53.1501 ], [ -1.16979, 53.14978 ], [ -1.17031, 53.14929 ], [ -1.17056, 53.14906 ], [ -1.16945, 53.14853 ], [ -1.1675, 53.14899 ], [ -1.16625, 53.14917 ], [ -1.16297, 53.14754 ], [ -1.16281, 53.14702 ], [ -1.16651, 53.14636 ], [ -1.171, 53.14615 ], [ -1.17214, 53.14586 ], [ -1.17506, 53.14574 ], [ -1.17534, 53.14544 ], [ -1.17553, 53.14535 ], [ -1.17618, 53.1451 ], [ -1.18051, 53.14402 ], [ -1.17948, 53.14379 ], [ -1.17729, 53.14393 ], [ -1.17747, 53.14341 ], [ -1.17691, 53.1431 ], [ -1.17744, 53.14289 ], [ -1.17804, 53.14311 ], [ -1.17776, 53.14337 ], [ -1.1787, 53.14361 ], [ -1.17956, 53.14336 ], [ -1.18039, 53.14238 ], [ -1.18002, 53.14226 ], [ -1.18034, 53.14171 ], [ -1.17999, 53.14138 ], [ -1.17923, 53.14123 ], [ -1.17845, 53.14172 ], [ -1.17721, 53.14184 ], [ -1.1759, 53.141 ], [ -1.17445, 53.14192 ], [ -1.17454, 53.1424 ], [ -1.17264, 53.14253 ], [ -1.17256, 53.1429 ], [ -1.1716, 53.14323 ], [ -1.17106, 53.14423 ], [ -1.16797, 53.14539 ], [ -1.16734, 53.14484 ], [ -1.16944, 53.14292 ], [ -1.16786, 53.14312 ], [ -1.16873, 53.1417 ], [ -1.16948, 53.14122 ], [ -1.16976, 53.14102 ], [ -1.16861, 53.14036 ], [ -1.16813, 53.14006 ], [ -1.16845, 53.13924 ], [ -1.16993, 53.13874 ], [ -1.17142, 53.13957 ], [ -1.17239, 53.13905 ], [ -1.17435, 53.13758 ], [ -1.17295, 53.13742 ], [ -1.17147, 53.13672 ], [ -1.17162, 53.13633 ], [ -1.1711, 53.13612 ], [ -1.17161, 53.13561 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mansfield", "bua_code": "E35001334", "msoa_code": "E02005889", "population": 10227, "outputarea_code": "E00143831", "lsoa_code": "E01028231", "la_name": "Mansfield", "bua_name": "Mansfield BUASD", "constituency_name": "Mansfield", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.22336, "latitude": 53.14146, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.21624, 53.13439 ], [ -1.221, 53.13333 ], [ -1.22461, 53.13163 ], [ -1.2276, 53.13318 ], [ -1.22931, 53.13418 ], [ -1.23184, 53.13583 ], [ -1.2378, 53.13959 ], [ -1.23991, 53.13961 ], [ -1.23713, 53.14623 ], [ -1.23434, 53.14716 ], [ -1.23124, 53.1488 ], [ -1.22911, 53.14767 ], [ -1.22786, 53.14897 ], [ -1.22755, 53.14919 ], [ -1.22788, 53.14935 ], [ -1.22738, 53.14949 ], [ -1.22488, 53.14961 ], [ -1.22423, 53.14915 ], [ -1.22527, 53.14802 ], [ -1.2245, 53.14761 ], [ -1.22373, 53.14765 ], [ -1.22362, 53.14725 ], [ -1.2232, 53.14753 ], [ -1.22284, 53.1474 ], [ -1.22383, 53.14664 ], [ -1.22313, 53.14622 ], [ -1.22392, 53.1456 ], [ -1.22237, 53.14563 ], [ -1.22247, 53.14628 ], [ -1.22152, 53.14684 ], [ -1.22117, 53.14776 ], [ -1.22037, 53.14801 ], [ -1.22005, 53.14804 ], [ -1.21694, 53.1495 ], [ -1.21606, 53.15053 ], [ -1.2157, 53.15048 ], [ -1.21552, 53.14968 ], [ -1.21404, 53.14843 ], [ -1.213, 53.14742 ], [ -1.21263, 53.14665 ], [ -1.20947, 53.1469 ], [ -1.20653, 53.14772 ], [ -1.20697, 53.14702 ], [ -1.20661, 53.14613 ], [ -1.20826, 53.14621 ], [ -1.20784, 53.14563 ], [ -1.20773, 53.14534 ], [ -1.20708, 53.14492 ], [ -1.20729, 53.14442 ], [ -1.20603, 53.14379 ], [ -1.20607, 53.14345 ], [ -1.20681, 53.14332 ], [ -1.20728, 53.1438 ], [ -1.20942, 53.14377 ], [ -1.20973, 53.14286 ], [ -1.2107, 53.14238 ], [ -1.20987, 53.14083 ], [ -1.21058, 53.14054 ], [ -1.21136, 53.14017 ], [ -1.21075, 53.1398 ], [ -1.21182, 53.13924 ], [ -1.21071, 53.13781 ], [ -1.21201, 53.1374 ], [ -1.21347, 53.13613 ], [ -1.21198, 53.13526 ], [ -1.21624, 53.13439 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mansfield", "bua_code": "E35001334", "msoa_code": "E02005890", "population": 6672, "outputarea_code": "E00143845", "lsoa_code": "E01028236", "la_name": "Mansfield", "bua_name": "Mansfield BUASD", "constituency_name": "Mansfield", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.16455, "latitude": 53.14094, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.15853, 53.13423 ], [ -1.1643, 53.13294 ], [ -1.16495, 53.13263 ], [ -1.16586, 53.13292 ], [ -1.16867, 53.1345 ], [ -1.17161, 53.13561 ], [ -1.1711, 53.13612 ], [ -1.17162, 53.13633 ], [ -1.17147, 53.13672 ], [ -1.17295, 53.13742 ], [ -1.17435, 53.13758 ], [ -1.17239, 53.13905 ], [ -1.17142, 53.13957 ], [ -1.16993, 53.13874 ], [ -1.16845, 53.13924 ], [ -1.16813, 53.14006 ], [ -1.16861, 53.14036 ], [ -1.16976, 53.14102 ], [ -1.16948, 53.14122 ], [ -1.16873, 53.1417 ], [ -1.16786, 53.14312 ], [ -1.16944, 53.14292 ], [ -1.16734, 53.14484 ], [ -1.16797, 53.14539 ], [ -1.17106, 53.14423 ], [ -1.1716, 53.14323 ], [ -1.17256, 53.1429 ], [ -1.17264, 53.14253 ], [ -1.17454, 53.1424 ], [ -1.17445, 53.14192 ], [ -1.1759, 53.141 ], [ -1.17721, 53.14184 ], [ -1.17845, 53.14172 ], [ -1.17923, 53.14123 ], [ -1.17999, 53.14138 ], [ -1.18034, 53.14171 ], [ -1.18002, 53.14226 ], [ -1.18039, 53.14238 ], [ -1.17956, 53.14336 ], [ -1.1787, 53.14361 ], [ -1.17776, 53.14337 ], [ -1.17804, 53.14311 ], [ -1.17744, 53.14289 ], [ -1.17691, 53.1431 ], [ -1.17747, 53.14341 ], [ -1.17729, 53.14393 ], [ -1.17948, 53.14379 ], [ -1.18051, 53.14402 ], [ -1.17618, 53.1451 ], [ -1.17553, 53.14535 ], [ -1.17534, 53.14544 ], [ -1.17506, 53.14574 ], [ -1.17214, 53.14586 ], [ -1.171, 53.14615 ], [ -1.16651, 53.14636 ], [ -1.16281, 53.14702 ], [ -1.16263, 53.14696 ], [ -1.16047, 53.14749 ], [ -1.15958, 53.14747 ], [ -1.15037, 53.14882 ], [ -1.15003, 53.14712 ], [ -1.1527, 53.1461 ], [ -1.15304, 53.14549 ], [ -1.15434, 53.14568 ], [ -1.15424, 53.14727 ], [ -1.15585, 53.14727 ], [ -1.15627, 53.1458 ], [ -1.1555, 53.14562 ], [ -1.15558, 53.14527 ], [ -1.15611, 53.14528 ], [ -1.1554, 53.14454 ], [ -1.1565, 53.1443 ], [ -1.15679, 53.14478 ], [ -1.15869, 53.145 ], [ -1.15818, 53.14315 ], [ -1.15792, 53.1421 ], [ -1.15723, 53.13752 ], [ -1.15712, 53.13704 ], [ -1.15633, 53.13706 ], [ -1.15557, 53.13666 ], [ -1.15621, 53.13628 ], [ -1.15706, 53.13638 ], [ -1.15724, 53.13459 ], [ -1.15602, 53.13477 ], [ -1.15595, 53.13386 ], [ -1.15691, 53.13348 ], [ -1.1579, 53.13397 ], [ -1.15853, 53.13423 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mansfield", "bua_code": "E35001334", "msoa_code": "E02005891", "population": 4907, "outputarea_code": "E00143956", "lsoa_code": "E01028256", "la_name": "Mansfield", "bua_name": "Mansfield BUASD", "constituency_name": "Mansfield", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.14275, "latitude": 53.13683, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.16284, 53.12365 ], [ -1.16332, 53.12429 ], [ -1.16502, 53.12343 ], [ -1.16565, 53.12343 ], [ -1.16533, 53.12305 ], [ -1.16809, 53.12282 ], [ -1.16569, 53.12449 ], [ -1.16369, 53.12504 ], [ -1.16252, 53.12623 ], [ -1.1625, 53.12626 ], [ -1.1635, 53.12661 ], [ -1.16373, 53.12676 ], [ -1.16173, 53.1289 ], [ -1.16204, 53.1291 ], [ -1.16187, 53.12937 ], [ -1.16098, 53.13082 ], [ -1.15946, 53.13099 ], [ -1.15917, 53.13144 ], [ -1.15567, 53.13001 ], [ -1.15385, 53.13176 ], [ -1.1547, 53.1326 ], [ -1.1552, 53.1325 ], [ -1.15691, 53.13348 ], [ -1.15595, 53.13386 ], [ -1.15602, 53.13477 ], [ -1.15516, 53.1349 ], [ -1.15473, 53.13293 ], [ -1.15247, 53.13303 ], [ -1.15175, 53.13327 ], [ -1.15212, 53.13351 ], [ -1.151, 53.13382 ], [ -1.15031, 53.13363 ], [ -1.1501, 53.13339 ], [ -1.15096, 53.13329 ], [ -1.15089, 53.13286 ], [ -1.15132, 53.13268 ], [ -1.14995, 53.13293 ], [ -1.14864, 53.1328 ], [ -1.14807, 53.13425 ], [ -1.14819, 53.13718 ], [ -1.14839, 53.13855 ], [ -1.14913, 53.13849 ], [ -1.15375, 53.13813 ], [ -1.15451, 53.13761 ], [ -1.15496, 53.13579 ], [ -1.15621, 53.13628 ], [ -1.15557, 53.13666 ], [ -1.15633, 53.13706 ], [ -1.15712, 53.13704 ], [ -1.15723, 53.13752 ], [ -1.15792, 53.1421 ], [ -1.15818, 53.14315 ], [ -1.15869, 53.145 ], [ -1.15679, 53.14478 ], [ -1.1565, 53.1443 ], [ -1.1554, 53.14454 ], [ -1.15611, 53.14528 ], [ -1.15558, 53.14527 ], [ -1.1555, 53.14562 ], [ -1.15627, 53.1458 ], [ -1.15585, 53.14727 ], [ -1.15424, 53.14727 ], [ -1.15434, 53.14568 ], [ -1.15304, 53.14549 ], [ -1.1527, 53.1461 ], [ -1.15003, 53.14712 ], [ -1.15037, 53.14882 ], [ -1.14912, 53.14899 ], [ -1.14243, 53.14976 ], [ -1.13671, 53.15084 ], [ -1.13239, 53.15113 ], [ -1.11897, 53.15445 ], [ -1.11678, 53.15367 ], [ -1.11386, 53.1536 ], [ -1.11106, 53.15343 ], [ -1.11109, 53.15324 ], [ -1.11195, 53.15237 ], [ -1.11415, 53.15162 ], [ -1.11805, 53.14936 ], [ -1.12102, 53.14853 ], [ -1.12269, 53.14773 ], [ -1.12724, 53.1451 ], [ -1.1288, 53.14334 ], [ -1.1298, 53.14236 ], [ -1.13017, 53.14131 ], [ -1.12997, 53.14027 ], [ -1.12874, 53.13894 ], [ -1.12989, 53.13781 ], [ -1.13023, 53.13601 ], [ -1.12723, 53.13482 ], [ -1.12844, 53.13295 ], [ -1.13862, 53.12858 ], [ -1.13875, 53.12825 ], [ -1.14222, 53.12867 ], [ -1.14405, 53.13001 ], [ -1.14625, 53.12651 ], [ -1.13877, 53.12469 ], [ -1.13901, 53.12417 ], [ -1.13838, 53.12272 ], [ -1.13677, 53.12255 ], [ -1.13521, 53.12181 ], [ -1.13551, 53.11874 ], [ -1.1363, 53.11856 ], [ -1.1369, 53.11948 ], [ -1.14059, 53.11995 ], [ -1.14272, 53.12111 ], [ -1.14486, 53.1218 ], [ -1.14712, 53.12195 ], [ -1.15035, 53.12139 ], [ -1.15271, 53.12051 ], [ -1.15853, 53.11979 ], [ -1.16095, 53.1191 ], [ -1.16116, 53.11946 ], [ -1.16539, 53.11798 ], [ -1.1676, 53.11597 ], [ -1.16879, 53.11805 ], [ -1.16519, 53.12033 ], [ -1.16232, 53.1211 ], [ -1.16068, 53.12115 ], [ -1.16085, 53.12287 ], [ -1.16229, 53.12319 ], [ -1.16418, 53.12303 ], [ -1.16378, 53.12371 ], [ -1.16284, 53.12365 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mansfield", "bua_code": "E35001334", "msoa_code": "E02005892", "population": 12040, "outputarea_code": "E00143774", "lsoa_code": "E01028219", "la_name": "Mansfield", "bua_name": "Mansfield BUASD", "constituency_name": "Mansfield", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.18677, "latitude": 53.12803, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.16586, 53.13292 ], [ -1.16495, 53.13263 ], [ -1.1643, 53.13294 ], [ -1.15853, 53.13423 ], [ -1.1579, 53.13397 ], [ -1.15691, 53.13348 ], [ -1.1552, 53.1325 ], [ -1.1547, 53.1326 ], [ -1.15385, 53.13176 ], [ -1.15567, 53.13001 ], [ -1.15917, 53.13144 ], [ -1.15946, 53.13099 ], [ -1.16098, 53.13082 ], [ -1.16187, 53.12937 ], [ -1.16204, 53.1291 ], [ -1.16173, 53.1289 ], [ -1.16373, 53.12676 ], [ -1.1635, 53.12661 ], [ -1.1625, 53.12626 ], [ -1.16252, 53.12623 ], [ -1.16369, 53.12504 ], [ -1.16569, 53.12449 ], [ -1.16809, 53.12282 ], [ -1.16533, 53.12305 ], [ -1.16565, 53.12343 ], [ -1.16502, 53.12343 ], [ -1.16332, 53.12429 ], [ -1.16284, 53.12365 ], [ -1.16378, 53.12371 ], [ -1.16418, 53.12303 ], [ -1.16229, 53.12319 ], [ -1.16085, 53.12287 ], [ -1.16068, 53.12115 ], [ -1.16232, 53.1211 ], [ -1.16519, 53.12033 ], [ -1.16879, 53.11805 ], [ -1.1676, 53.11597 ], [ -1.16906, 53.1153 ], [ -1.17079, 53.11501 ], [ -1.17789, 53.11481 ], [ -1.18299, 53.11517 ], [ -1.18585, 53.11581 ], [ -1.18631, 53.11711 ], [ -1.18775, 53.11888 ], [ -1.18847, 53.11974 ], [ -1.19247, 53.11987 ], [ -1.19378, 53.11991 ], [ -1.19884, 53.12177 ], [ -1.20092, 53.1219 ], [ -1.20197, 53.1228 ], [ -1.20249, 53.12446 ], [ -1.21007, 53.12576 ], [ -1.21736, 53.12829 ], [ -1.22029, 53.12967 ], [ -1.22154, 53.12981 ], [ -1.22293, 53.1303 ], [ -1.22461, 53.13163 ], [ -1.221, 53.13333 ], [ -1.21624, 53.13439 ], [ -1.21198, 53.13526 ], [ -1.20942, 53.13387 ], [ -1.20838, 53.13502 ], [ -1.2066, 53.13568 ], [ -1.20094, 53.13568 ], [ -1.19967, 53.1358 ], [ -1.19969, 53.13621 ], [ -1.20072, 53.13689 ], [ -1.19834, 53.13848 ], [ -1.1973, 53.13796 ], [ -1.19725, 53.13827 ], [ -1.19553, 53.14064 ], [ -1.19284, 53.14053 ], [ -1.19227, 53.13961 ], [ -1.19274, 53.13898 ], [ -1.19126, 53.13855 ], [ -1.19087, 53.13879 ], [ -1.19016, 53.13831 ], [ -1.18893, 53.13745 ], [ -1.18843, 53.13708 ], [ -1.18707, 53.1372 ], [ -1.18348, 53.13768 ], [ -1.18265, 53.13769 ], [ -1.17715, 53.1378 ], [ -1.17637, 53.13767 ], [ -1.17365, 53.1362 ], [ -1.17161, 53.13561 ], [ -1.16867, 53.1345 ], [ -1.16586, 53.13292 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mansfield", "bua_code": "E35001334", "msoa_code": "E02005894", "population": 4767, "outputarea_code": "E00144256", "lsoa_code": "E01028314", "la_name": "Newark and Sherwood", "bua_name": "Mansfield BUASD", "constituency_name": "Sherwood", "citytownclassification": "Large Town", "urban": "Y", "longitude": -1.12497, "latitude": 53.17064, "pgroup": "50k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.11386, 53.1536 ], [ -1.11678, 53.15367 ], [ -1.11897, 53.15445 ], [ -1.12202, 53.15597 ], [ -1.12596, 53.15737 ], [ -1.12802, 53.15905 ], [ -1.12875, 53.15967 ], [ -1.12958, 53.16061 ], [ -1.13163, 53.16295 ], [ -1.13247, 53.16288 ], [ -1.13559, 53.16436 ], [ -1.13616, 53.16462 ], [ -1.14626, 53.16929 ], [ -1.15155, 53.17206 ], [ -1.152, 53.17275 ], [ -1.15298, 53.17532 ], [ -1.14605, 53.18167 ], [ -1.14541, 53.18218 ], [ -1.14192, 53.18501 ], [ -1.13971, 53.18734 ], [ -1.13612, 53.18868 ], [ -1.12966, 53.1894 ], [ -1.12774, 53.18969 ], [ -1.12779, 53.18989 ], [ -1.12392, 53.19049 ], [ -1.11957, 53.19065 ], [ -1.1205, 53.18977 ], [ -1.12265, 53.189 ], [ -1.12331, 53.1883 ], [ -1.12264, 53.18323 ], [ -1.12368, 53.18182 ], [ -1.12164, 53.17935 ], [ -1.1225, 53.17874 ], [ -1.12242, 53.17822 ], [ -1.12038, 53.17492 ], [ -1.12067, 53.17411 ], [ -1.1159, 53.1758 ], [ -1.11456, 53.17781 ], [ -1.11379, 53.17834 ], [ -1.10833, 53.17743 ], [ -1.1132, 53.17325 ], [ -1.1089, 53.17228 ], [ -1.10757, 53.17064 ], [ -1.107, 53.17008 ], [ -1.10513, 53.16874 ], [ -1.10042, 53.16783 ], [ -1.1024, 53.1648 ], [ -1.10237, 53.16449 ], [ -1.09999, 53.1632 ], [ -1.10053, 53.16257 ], [ -1.0964, 53.1614 ], [ -1.0975, 53.16038 ], [ -1.10047, 53.15883 ], [ -1.09762, 53.15455 ], [ -1.11106, 53.15343 ], [ -1.11386, 53.1536 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mansfield Woodhouse", "bua_code": "E35000388", "msoa_code": "E02005882", "population": 7683, "outputarea_code": "E00143935", "lsoa_code": "E01028253", "la_name": "Mansfield", "bua_name": "Mansfield Woodhouse BUASD", "constituency_name": "Mansfield", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.17486, "latitude": 53.17239, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.18054, 53.16294 ], [ -1.17942, 53.16299 ], [ -1.17904, 53.16387 ], [ -1.18053, 53.16381 ], [ -1.17847, 53.16498 ], [ -1.17795, 53.16449 ], [ -1.17738, 53.16466 ], [ -1.1779, 53.16519 ], [ -1.17711, 53.16545 ], [ -1.17865, 53.16709 ], [ -1.17921, 53.16727 ], [ -1.17934, 53.16797 ], [ -1.18052, 53.16855 ], [ -1.1804, 53.16869 ], [ -1.17952, 53.16973 ], [ -1.1806, 53.16969 ], [ -1.18111, 53.16911 ], [ -1.18222, 53.16951 ], [ -1.18299, 53.16785 ], [ -1.18187, 53.16772 ], [ -1.18203, 53.16715 ], [ -1.18351, 53.16723 ], [ -1.18389, 53.16692 ], [ -1.18583, 53.16795 ], [ -1.18616, 53.16754 ], [ -1.18531, 53.16703 ], [ -1.18547, 53.16687 ], [ -1.18622, 53.16664 ], [ -1.18698, 53.16727 ], [ -1.18728, 53.16764 ], [ -1.18626, 53.16877 ], [ -1.18739, 53.16913 ], [ -1.18914, 53.16881 ], [ -1.18986, 53.16956 ], [ -1.1902, 53.16945 ], [ -1.19022, 53.16828 ], [ -1.19084, 53.16727 ], [ -1.19364, 53.16605 ], [ -1.19347, 53.16657 ], [ -1.19383, 53.16734 ], [ -1.19429, 53.16745 ], [ -1.19437, 53.16824 ], [ -1.19502, 53.16914 ], [ -1.19526, 53.16998 ], [ -1.19483, 53.16999 ], [ -1.19542, 53.17098 ], [ -1.19571, 53.17148 ], [ -1.19551, 53.17154 ], [ -1.19473, 53.17176 ], [ -1.1944, 53.17228 ], [ -1.19481, 53.17288 ], [ -1.19387, 53.17309 ], [ -1.19305, 53.1748 ], [ -1.19381, 53.1749 ], [ -1.19343, 53.17537 ], [ -1.19119, 53.17742 ], [ -1.19082, 53.17785 ], [ -1.19124, 53.17816 ], [ -1.1923, 53.17773 ], [ -1.19305, 53.17798 ], [ -1.19385, 53.17888 ], [ -1.19609, 53.18363 ], [ -1.19355, 53.18422 ], [ -1.19262, 53.18408 ], [ -1.18951, 53.18249 ], [ -1.1886, 53.18106 ], [ -1.18741, 53.18048 ], [ -1.18591, 53.1807 ], [ -1.18062, 53.17977 ], [ -1.17621, 53.17877 ], [ -1.17217, 53.17825 ], [ -1.17028, 53.17831 ], [ -1.16924, 53.17836 ], [ -1.15921, 53.17578 ], [ -1.15817, 53.17524 ], [ -1.15685, 53.17358 ], [ -1.152, 53.17275 ], [ -1.15155, 53.17206 ], [ -1.14626, 53.16929 ], [ -1.14868, 53.1685 ], [ -1.14971, 53.16752 ], [ -1.15111, 53.1669 ], [ -1.15487, 53.16636 ], [ -1.15984, 53.16721 ], [ -1.16274, 53.16722 ], [ -1.16663, 53.16596 ], [ -1.1725, 53.16339 ], [ -1.1742, 53.16304 ], [ -1.17727, 53.16139 ], [ -1.18004, 53.16235 ], [ -1.18054, 53.16294 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mansfield Woodhouse", "bua_code": "E35000388", "msoa_code": "E02005883", "population": 6390, "outputarea_code": "E00144045", "lsoa_code": "E01028271", "la_name": "Mansfield", "bua_name": "Mansfield Woodhouse BUASD", "constituency_name": "Mansfield", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.20797, "latitude": 53.17242, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.19625, 53.15677 ], [ -1.19509, 53.15542 ], [ -1.19687, 53.15511 ], [ -1.19801, 53.15571 ], [ -1.19855, 53.15598 ], [ -1.19892, 53.15623 ], [ -1.19983, 53.15686 ], [ -1.20164, 53.1564 ], [ -1.20231, 53.15654 ], [ -1.20314, 53.15759 ], [ -1.20296, 53.15885 ], [ -1.20079, 53.15913 ], [ -1.19914, 53.16014 ], [ -1.201, 53.16234 ], [ -1.20244, 53.16488 ], [ -1.20633, 53.16493 ], [ -1.20618, 53.16521 ], [ -1.20466, 53.16677 ], [ -1.21155, 53.16856 ], [ -1.21395, 53.16611 ], [ -1.22199, 53.1692 ], [ -1.22698, 53.17073 ], [ -1.22771, 53.171 ], [ -1.23025, 53.1723 ], [ -1.23104, 53.17506 ], [ -1.22991, 53.17849 ], [ -1.22912, 53.17885 ], [ -1.22673, 53.17869 ], [ -1.2226, 53.18016 ], [ -1.22095, 53.17957 ], [ -1.22104, 53.17916 ], [ -1.22047, 53.17879 ], [ -1.21958, 53.17879 ], [ -1.21903, 53.17912 ], [ -1.2184, 53.17893 ], [ -1.21562, 53.18093 ], [ -1.21342, 53.18091 ], [ -1.21281, 53.18063 ], [ -1.21227, 53.18103 ], [ -1.2094, 53.18112 ], [ -1.20587, 53.18198 ], [ -1.20348, 53.18244 ], [ -1.20341, 53.18246 ], [ -1.20319, 53.18248 ], [ -1.2029, 53.18245 ], [ -1.20119, 53.18243 ], [ -1.20109, 53.18246 ], [ -1.20084, 53.18274 ], [ -1.19927, 53.18278 ], [ -1.1988, 53.18309 ], [ -1.19609, 53.18363 ], [ -1.19385, 53.17888 ], [ -1.19305, 53.17798 ], [ -1.1923, 53.17773 ], [ -1.19124, 53.17816 ], [ -1.19082, 53.17785 ], [ -1.19119, 53.17742 ], [ -1.19343, 53.17537 ], [ -1.19381, 53.1749 ], [ -1.19305, 53.1748 ], [ -1.19387, 53.17309 ], [ -1.19481, 53.17288 ], [ -1.1944, 53.17228 ], [ -1.19473, 53.17176 ], [ -1.19551, 53.17154 ], [ -1.19571, 53.17148 ], [ -1.19542, 53.17098 ], [ -1.19483, 53.16999 ], [ -1.19526, 53.16998 ], [ -1.19502, 53.16914 ], [ -1.19437, 53.16824 ], [ -1.19429, 53.16745 ], [ -1.19383, 53.16734 ], [ -1.19347, 53.16657 ], [ -1.19364, 53.16605 ], [ -1.19454, 53.16571 ], [ -1.19428, 53.1649 ], [ -1.19452, 53.16426 ], [ -1.19338, 53.16404 ], [ -1.19317, 53.16361 ], [ -1.19291, 53.16314 ], [ -1.19246, 53.16327 ], [ -1.19201, 53.16295 ], [ -1.19193, 53.16185 ], [ -1.19256, 53.16164 ], [ -1.19265, 53.16118 ], [ -1.19327, 53.15968 ], [ -1.19336, 53.15966 ], [ -1.1942, 53.15866 ], [ -1.19314, 53.15596 ], [ -1.19374, 53.15594 ], [ -1.19402, 53.15551 ], [ -1.1965, 53.15878 ], [ -1.19712, 53.15778 ], [ -1.19625, 53.15677 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mansfield Woodhouse", "bua_code": "E35000388", "msoa_code": "E02005884", "population": 4542, "outputarea_code": "E00143936", "lsoa_code": "E01028250", "la_name": "Mansfield", "bua_name": "Mansfield Woodhouse BUASD", "constituency_name": "Mansfield", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.18565, "latitude": 53.16125, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.18228, 53.15794 ], [ -1.18217, 53.15682 ], [ -1.18162, 53.1567 ], [ -1.18032, 53.1554 ], [ -1.18015, 53.15431 ], [ -1.17946, 53.15413 ], [ -1.17938, 53.1527 ], [ -1.17941, 53.15175 ], [ -1.17856, 53.15157 ], [ -1.17894, 53.15087 ], [ -1.18042, 53.15133 ], [ -1.18104, 53.15079 ], [ -1.18297, 53.15154 ], [ -1.18273, 53.15235 ], [ -1.18535, 53.15278 ], [ -1.18497, 53.1538 ], [ -1.18567, 53.15484 ], [ -1.18641, 53.15462 ], [ -1.18702, 53.15513 ], [ -1.18629, 53.15551 ], [ -1.18729, 53.15672 ], [ -1.18977, 53.15605 ], [ -1.19208, 53.15656 ], [ -1.19314, 53.15596 ], [ -1.1942, 53.15866 ], [ -1.19336, 53.15966 ], [ -1.19327, 53.15968 ], [ -1.19265, 53.16118 ], [ -1.19256, 53.16164 ], [ -1.19193, 53.16185 ], [ -1.19201, 53.16295 ], [ -1.19246, 53.16327 ], [ -1.19291, 53.16314 ], [ -1.19317, 53.16361 ], [ -1.19338, 53.16404 ], [ -1.19452, 53.16426 ], [ -1.19428, 53.1649 ], [ -1.19454, 53.16571 ], [ -1.19364, 53.16605 ], [ -1.19084, 53.16727 ], [ -1.19022, 53.16828 ], [ -1.1902, 53.16945 ], [ -1.18986, 53.16956 ], [ -1.18914, 53.16881 ], [ -1.18739, 53.16913 ], [ -1.18626, 53.16877 ], [ -1.18728, 53.16764 ], [ -1.18698, 53.16727 ], [ -1.18622, 53.16664 ], [ -1.18547, 53.16687 ], [ -1.18531, 53.16703 ], [ -1.18616, 53.16754 ], [ -1.18583, 53.16795 ], [ -1.18389, 53.16692 ], [ -1.18351, 53.16723 ], [ -1.18203, 53.16715 ], [ -1.18187, 53.16772 ], [ -1.18299, 53.16785 ], [ -1.18222, 53.16951 ], [ -1.18111, 53.16911 ], [ -1.1806, 53.16969 ], [ -1.17952, 53.16973 ], [ -1.1804, 53.16869 ], [ -1.18052, 53.16855 ], [ -1.17934, 53.16797 ], [ -1.17921, 53.16727 ], [ -1.17865, 53.16709 ], [ -1.17711, 53.16545 ], [ -1.1779, 53.16519 ], [ -1.17738, 53.16466 ], [ -1.17795, 53.16449 ], [ -1.17847, 53.16498 ], [ -1.18053, 53.16381 ], [ -1.17904, 53.16387 ], [ -1.17942, 53.16299 ], [ -1.18054, 53.16294 ], [ -1.18004, 53.16235 ], [ -1.17727, 53.16139 ], [ -1.1774, 53.1609 ], [ -1.17915, 53.15986 ], [ -1.18021, 53.15873 ], [ -1.18219, 53.15807 ], [ -1.18228, 53.15794 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Market Deeping", "bua_code": "E34000508", "msoa_code": "E02005488", "population": 6498, "outputarea_code": "E00133766", "lsoa_code": "E01026335", "la_name": "South Kesteven", "bua_name": "Market Deeping BUA", "constituency_name": "South Holland and The Deepings", "citytownclassification": "Small Town", "urban": "Y", "longitude": -0.3003, "latitude": 52.69081, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.3084, 52.67598 ], [ -0.30804, 52.6751 ], [ -0.30864, 52.67451 ], [ -0.30997, 52.67348 ], [ -0.31645, 52.67454 ], [ -0.31793, 52.67478 ], [ -0.31823, 52.67487 ], [ -0.32112, 52.67505 ], [ -0.32069, 52.6743 ], [ -0.32002, 52.67475 ], [ -0.31952, 52.6743 ], [ -0.32082, 52.67366 ], [ -0.32237, 52.67381 ], [ -0.32399, 52.67438 ], [ -0.32547, 52.6743 ], [ -0.32629, 52.67389 ], [ -0.32747, 52.67422 ], [ -0.33025, 52.67348 ], [ -0.33068, 52.67391 ], [ -0.3317, 52.67379 ], [ -0.33156, 52.67437 ], [ -0.33333, 52.67488 ], [ -0.33432, 52.67467 ], [ -0.33504, 52.67487 ], [ -0.33617, 52.67421 ], [ -0.33758, 52.67451 ], [ -0.33739, 52.67481 ], [ -0.33606, 52.6751 ], [ -0.34308, 52.68546 ], [ -0.32877, 52.68924 ], [ -0.32111, 52.69117 ], [ -0.31588, 52.69286 ], [ -0.31091, 52.69532 ], [ -0.29795, 52.7008 ], [ -0.27801, 52.71076 ], [ -0.27351, 52.70589 ], [ -0.26718, 52.69909 ], [ -0.26501, 52.70088 ], [ -0.26345, 52.70089 ], [ -0.25576, 52.69261 ], [ -0.25042, 52.69447 ], [ -0.24876, 52.69304 ], [ -0.2586, 52.68961 ], [ -0.26875, 52.69556 ], [ -0.27045, 52.69132 ], [ -0.29225, 52.688 ], [ -0.30185, 52.68776 ], [ -0.3071, 52.68776 ], [ -0.31062, 52.68707 ], [ -0.31329, 52.68572 ], [ -0.30912, 52.68117 ], [ -0.30781, 52.68145 ], [ -0.30815, 52.67926 ], [ -0.3084, 52.67598 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Market Deeping", "bua_code": "E34000508", "msoa_code": "E02005489", "population": 7232, "outputarea_code": "E00133598", "lsoa_code": "E01026306", "la_name": "South Kesteven", "bua_name": "Market Deeping BUA", "constituency_name": "South Holland and The Deepings", "citytownclassification": "Small Town", "urban": "Y", "longitude": -0.26558, "latitude": 52.67481, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.25462, 52.65406 ], [ -0.2569, 52.65298 ], [ -0.2575, 52.65222 ], [ -0.25866, 52.65165 ], [ -0.25893, 52.65193 ], [ -0.26024, 52.65144 ], [ -0.26124, 52.65148 ], [ -0.26358, 52.65251 ], [ -0.26379, 52.6539 ], [ -0.2662, 52.6547 ], [ -0.26748, 52.65585 ], [ -0.26896, 52.65635 ], [ -0.27, 52.65729 ], [ -0.26974, 52.65759 ], [ -0.27026, 52.65938 ], [ -0.27098, 52.65964 ], [ -0.27298, 52.65946 ], [ -0.27396, 52.65998 ], [ -0.27602, 52.66187 ], [ -0.27621, 52.66265 ], [ -0.27796, 52.66351 ], [ -0.27904, 52.6649 ], [ -0.27881, 52.66583 ], [ -0.28023, 52.66633 ], [ -0.28151, 52.66685 ], [ -0.28685, 52.66803 ], [ -0.2891, 52.67021 ], [ -0.29149, 52.67041 ], [ -0.29425, 52.66931 ], [ -0.29815, 52.67075 ], [ -0.30677, 52.67269 ], [ -0.30997, 52.67348 ], [ -0.30864, 52.67451 ], [ -0.30804, 52.6751 ], [ -0.3084, 52.67598 ], [ -0.30815, 52.67926 ], [ -0.30781, 52.68145 ], [ -0.30912, 52.68117 ], [ -0.31329, 52.68572 ], [ -0.31062, 52.68707 ], [ -0.3071, 52.68776 ], [ -0.30185, 52.68776 ], [ -0.29225, 52.688 ], [ -0.27045, 52.69132 ], [ -0.26875, 52.69556 ], [ -0.2586, 52.68961 ], [ -0.24876, 52.69304 ], [ -0.24809, 52.69326 ], [ -0.22321, 52.66676 ], [ -0.21991, 52.66773 ], [ -0.21561, 52.66788 ], [ -0.21426, 52.66823 ], [ -0.2125, 52.66668 ], [ -0.21817, 52.66706 ], [ -0.2245, 52.66546 ], [ -0.23007, 52.66365 ], [ -0.23835, 52.66021 ], [ -0.23885, 52.66052 ], [ -0.25462, 52.65406 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Market Harborough", "bua_code": "E34004281", "msoa_code": "E02005373", "population": 8950, "outputarea_code": "E00130877", "lsoa_code": "E01025794", "la_name": "Harborough", "bua_name": "Market Harborough BUA", "constituency_name": "Harborough", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.91586, "latitude": 52.49622, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.93048, 52.4728 ], [ -0.9293, 52.47258 ], [ -0.92856, 52.47299 ], [ -0.92834, 52.47284 ], [ -0.92701, 52.47201 ], [ -0.92708, 52.47104 ], [ -0.92801, 52.47012 ], [ -0.92802, 52.46948 ], [ -0.93031, 52.4695 ], [ -0.93058, 52.46842 ], [ -0.92978, 52.46813 ], [ -0.92922, 52.46781 ], [ -0.92928, 52.46714 ], [ -0.93103, 52.4679 ], [ -0.93138, 52.46934 ], [ -0.93198, 52.46936 ], [ -0.932, 52.46899 ], [ -0.93244, 52.46891 ], [ -0.93243, 52.46827 ], [ -0.93144, 52.46713 ], [ -0.93058, 52.46666 ], [ -0.92938, 52.46649 ], [ -0.9296, 52.46578 ], [ -0.93602, 52.46692 ], [ -0.93585, 52.46724 ], [ -0.94219, 52.46777 ], [ -0.94243, 52.46932 ], [ -0.94265, 52.47086 ], [ -0.94421, 52.47065 ], [ -0.94386, 52.47276 ], [ -0.94441, 52.47285 ], [ -0.94508, 52.4725 ], [ -0.94552, 52.47281 ], [ -0.94533, 52.47315 ], [ -0.94645, 52.47321 ], [ -0.94663, 52.47392 ], [ -0.9461, 52.4743 ], [ -0.94653, 52.47464 ], [ -0.94646, 52.47532 ], [ -0.94709, 52.4757 ], [ -0.94535, 52.47667 ], [ -0.94397, 52.4768 ], [ -0.94385, 52.47853 ], [ -0.9438, 52.47911 ], [ -0.9432, 52.4793 ], [ -0.93778, 52.47905 ], [ -0.93767, 52.47948 ], [ -0.93861, 52.48003 ], [ -0.93919, 52.48155 ], [ -0.94029, 52.48275 ], [ -0.93996, 52.48379 ], [ -0.93892, 52.48604 ], [ -0.93726, 52.48721 ], [ -0.93678, 52.48887 ], [ -0.93762, 52.4899 ], [ -0.93775, 52.49128 ], [ -0.93734, 52.49196 ], [ -0.93616, 52.49246 ], [ -0.93555, 52.4927 ], [ -0.93546, 52.4933 ], [ -0.9378, 52.49841 ], [ -0.93809, 52.4998 ], [ -0.93903, 52.49991 ], [ -0.94005, 52.50439 ], [ -0.94101, 52.50801 ], [ -0.94106, 52.50848 ], [ -0.9397, 52.50855 ], [ -0.9397, 52.50998 ], [ -0.94035, 52.50996 ], [ -0.94028, 52.51018 ], [ -0.93962, 52.51455 ], [ -0.93421, 52.51445 ], [ -0.93271, 52.51406 ], [ -0.92899, 52.5145 ], [ -0.92848, 52.5158 ], [ -0.92762, 52.51651 ], [ -0.92712, 52.51624 ], [ -0.92668, 52.51652 ], [ -0.92599, 52.51634 ], [ -0.92584, 52.5158 ], [ -0.92515, 52.5157 ], [ -0.92581, 52.51531 ], [ -0.92523, 52.51464 ], [ -0.92468, 52.51462 ], [ -0.92472, 52.51427 ], [ -0.92378, 52.51439 ], [ -0.92302, 52.51366 ], [ -0.9211, 52.51433 ], [ -0.92068, 52.51402 ], [ -0.91918, 52.5143 ], [ -0.91849, 52.51353 ], [ -0.91881, 52.51297 ], [ -0.91812, 52.51242 ], [ -0.91742, 52.51291 ], [ -0.91668, 52.51233 ], [ -0.91574, 52.51257 ], [ -0.91559, 52.51207 ], [ -0.91422, 52.51197 ], [ -0.91348, 52.51161 ], [ -0.91359, 52.51064 ], [ -0.91259, 52.51128 ], [ -0.91235, 52.51089 ], [ -0.91162, 52.51094 ], [ -0.9113, 52.51045 ], [ -0.91042, 52.51018 ], [ -0.90948, 52.51059 ], [ -0.90913, 52.51115 ], [ -0.90829, 52.51121 ], [ -0.90836, 52.51177 ], [ -0.90727, 52.5117 ], [ -0.90605, 52.51228 ], [ -0.90547, 52.51195 ], [ -0.90578, 52.51147 ], [ -0.90478, 52.51117 ], [ -0.90153, 52.51173 ], [ -0.90111, 52.51068 ], [ -0.90144, 52.51039 ], [ -0.90078, 52.51021 ], [ -0.90074, 52.50983 ], [ -0.89869, 52.50943 ], [ -0.89702, 52.50949 ], [ -0.89669, 52.50877 ], [ -0.89711, 52.50856 ], [ -0.89598, 52.50804 ], [ -0.8948, 52.50869 ], [ -0.89412, 52.50855 ], [ -0.89381, 52.50907 ], [ -0.89268, 52.50886 ], [ -0.89229, 52.5092 ], [ -0.89229, 52.50861 ], [ -0.89148, 52.50878 ], [ -0.89096, 52.50836 ], [ -0.88935, 52.50844 ], [ -0.8877, 52.51086 ], [ -0.88641, 52.51157 ], [ -0.88627, 52.51272 ], [ -0.88577, 52.51277 ], [ -0.88341, 52.51381 ], [ -0.88267, 52.51361 ], [ -0.88271, 52.51312 ], [ -0.88183, 52.51303 ], [ -0.88244, 52.51258 ], [ -0.88193, 52.51199 ], [ -0.88115, 52.51232 ], [ -0.8808, 52.5118 ], [ -0.88004, 52.51176 ], [ -0.88058, 52.51128 ], [ -0.88, 52.51019 ], [ -0.88102, 52.50926 ], [ -0.88043, 52.50873 ], [ -0.88143, 52.5077 ], [ -0.88052, 52.50702 ], [ -0.88092, 52.50618 ], [ -0.87979, 52.50612 ], [ -0.88026, 52.50549 ], [ -0.87983, 52.50492 ], [ -0.88009, 52.50445 ], [ -0.88116, 52.50444 ], [ -0.88171, 52.5038 ], [ -0.88273, 52.5034 ], [ -0.88229, 52.502 ], [ -0.88118, 52.50212 ], [ -0.88162, 52.50165 ], [ -0.88046, 52.50122 ], [ -0.88139, 52.50118 ], [ -0.88182, 52.50034 ], [ -0.88097, 52.50046 ], [ -0.87932, 52.49982 ], [ -0.87914, 52.49815 ], [ -0.87904, 52.49786 ], [ -0.87976, 52.49791 ], [ -0.88065, 52.49713 ], [ -0.88179, 52.49688 ], [ -0.88231, 52.49468 ], [ -0.88213, 52.49317 ], [ -0.88372, 52.49226 ], [ -0.88895, 52.49181 ], [ -0.89115, 52.4919 ], [ -0.89204, 52.49221 ], [ -0.89481, 52.4923 ], [ -0.8956, 52.49204 ], [ -0.89671, 52.49064 ], [ -0.89592, 52.49046 ], [ -0.89471, 52.48864 ], [ -0.89521, 52.4881 ], [ -0.89616, 52.48801 ], [ -0.89648, 52.4873 ], [ -0.89711, 52.48768 ], [ -0.89788, 52.48741 ], [ -0.90005, 52.48544 ], [ -0.9002, 52.48482 ], [ -0.9015, 52.48483 ], [ -0.90187, 52.48432 ], [ -0.90772, 52.48591 ], [ -0.90797, 52.4847 ], [ -0.90823, 52.48301 ], [ -0.90876, 52.48271 ], [ -0.91001, 52.48276 ], [ -0.91062, 52.48312 ], [ -0.91063, 52.48453 ], [ -0.91116, 52.48463 ], [ -0.91247, 52.48423 ], [ -0.91304, 52.48496 ], [ -0.91397, 52.48514 ], [ -0.91425, 52.48489 ], [ -0.9149, 52.48477 ], [ -0.91562, 52.48547 ], [ -0.91609, 52.48559 ], [ -0.91677, 52.48511 ], [ -0.91698, 52.48531 ], [ -0.91595, 52.48619 ], [ -0.91628, 52.48672 ], [ -0.91536, 52.48672 ], [ -0.9159, 52.48709 ], [ -0.91428, 52.48986 ], [ -0.9177, 52.48814 ], [ -0.91757, 52.48734 ], [ -0.9171, 52.48722 ], [ -0.91752, 52.48617 ], [ -0.91803, 52.48617 ], [ -0.91821, 52.48582 ], [ -0.91926, 52.48603 ], [ -0.91964, 52.4858 ], [ -0.92043, 52.48621 ], [ -0.92072, 52.48568 ], [ -0.91984, 52.48546 ], [ -0.91997, 52.48526 ], [ -0.92208, 52.48518 ], [ -0.92255, 52.48467 ], [ -0.9227, 52.48435 ], [ -0.92426, 52.48439 ], [ -0.92433, 52.48419 ], [ -0.92455, 52.48463 ], [ -0.92608, 52.48485 ], [ -0.92591, 52.48502 ], [ -0.92698, 52.48442 ], [ -0.92754, 52.48448 ], [ -0.92715, 52.48476 ], [ -0.92759, 52.4851 ], [ -0.92823, 52.48492 ], [ -0.92791, 52.48406 ], [ -0.9284, 52.4839 ], [ -0.9251, 52.48167 ], [ -0.92536, 52.48092 ], [ -0.92478, 52.4803 ], [ -0.92549, 52.4801 ], [ -0.92472, 52.47873 ], [ -0.92584, 52.47898 ], [ -0.92644, 52.47996 ], [ -0.92844, 52.48109 ], [ -0.92922, 52.48082 ], [ -0.93004, 52.47957 ], [ -0.92967, 52.47913 ], [ -0.9307, 52.47862 ], [ -0.93083, 52.4782 ], [ -0.9315, 52.47879 ], [ -0.93126, 52.47912 ], [ -0.93181, 52.47906 ], [ -0.93186, 52.47957 ], [ -0.9327, 52.48026 ], [ -0.93305, 52.48014 ], [ -0.93199, 52.47921 ], [ -0.93236, 52.47905 ], [ -0.93076, 52.47725 ], [ -0.9294, 52.47697 ], [ -0.92907, 52.47667 ], [ -0.92979, 52.47651 ], [ -0.92989, 52.47611 ], [ -0.93045, 52.4762 ], [ -0.93123, 52.47557 ], [ -0.93024, 52.47566 ], [ -0.93044, 52.47427 ], [ -0.9297, 52.47355 ], [ -0.93045, 52.4732 ], [ -0.93048, 52.4728 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Market Harborough", "bua_code": "E34004281", "msoa_code": "E02005374", "population": 6675, "outputarea_code": "E00130875", "lsoa_code": "E01025795", "la_name": "Harborough", "bua_name": "Market Harborough BUA", "constituency_name": "Harborough", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.91735, "latitude": 52.48001, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.92321, 52.47111 ], [ -0.92326, 52.47066 ], [ -0.92369, 52.47061 ], [ -0.92531, 52.47121 ], [ -0.92708, 52.47104 ], [ -0.92701, 52.47201 ], [ -0.92834, 52.47284 ], [ -0.92856, 52.47299 ], [ -0.9293, 52.47258 ], [ -0.93048, 52.4728 ], [ -0.93045, 52.4732 ], [ -0.9297, 52.47355 ], [ -0.93044, 52.47427 ], [ -0.93024, 52.47566 ], [ -0.93123, 52.47557 ], [ -0.93045, 52.4762 ], [ -0.92989, 52.47611 ], [ -0.92979, 52.47651 ], [ -0.92907, 52.47667 ], [ -0.9294, 52.47697 ], [ -0.93076, 52.47725 ], [ -0.93236, 52.47905 ], [ -0.93199, 52.47921 ], [ -0.93305, 52.48014 ], [ -0.9327, 52.48026 ], [ -0.93186, 52.47957 ], [ -0.93181, 52.47906 ], [ -0.93126, 52.47912 ], [ -0.9315, 52.47879 ], [ -0.93083, 52.4782 ], [ -0.9307, 52.47862 ], [ -0.92967, 52.47913 ], [ -0.93004, 52.47957 ], [ -0.92922, 52.48082 ], [ -0.92844, 52.48109 ], [ -0.92644, 52.47996 ], [ -0.92584, 52.47898 ], [ -0.92472, 52.47873 ], [ -0.92549, 52.4801 ], [ -0.92478, 52.4803 ], [ -0.92536, 52.48092 ], [ -0.9251, 52.48167 ], [ -0.9284, 52.4839 ], [ -0.92791, 52.48406 ], [ -0.92823, 52.48492 ], [ -0.92759, 52.4851 ], [ -0.92715, 52.48476 ], [ -0.92754, 52.48448 ], [ -0.92698, 52.48442 ], [ -0.92591, 52.48502 ], [ -0.92608, 52.48485 ], [ -0.92455, 52.48463 ], [ -0.92433, 52.48419 ], [ -0.92426, 52.48439 ], [ -0.9227, 52.48435 ], [ -0.92255, 52.48467 ], [ -0.92208, 52.48518 ], [ -0.91997, 52.48526 ], [ -0.91984, 52.48546 ], [ -0.92072, 52.48568 ], [ -0.92043, 52.48621 ], [ -0.91964, 52.4858 ], [ -0.91926, 52.48603 ], [ -0.91821, 52.48582 ], [ -0.91803, 52.48617 ], [ -0.91752, 52.48617 ], [ -0.9171, 52.48722 ], [ -0.91757, 52.48734 ], [ -0.9177, 52.48814 ], [ -0.91428, 52.48986 ], [ -0.9159, 52.48709 ], [ -0.91536, 52.48672 ], [ -0.91628, 52.48672 ], [ -0.91595, 52.48619 ], [ -0.91698, 52.48531 ], [ -0.91677, 52.48511 ], [ -0.91609, 52.48559 ], [ -0.91562, 52.48547 ], [ -0.9149, 52.48477 ], [ -0.91425, 52.48489 ], [ -0.91397, 52.48514 ], [ -0.91304, 52.48496 ], [ -0.91247, 52.48423 ], [ -0.91116, 52.48463 ], [ -0.91063, 52.48453 ], [ -0.91062, 52.48312 ], [ -0.91001, 52.48276 ], [ -0.90876, 52.48271 ], [ -0.90823, 52.48301 ], [ -0.90797, 52.4847 ], [ -0.90772, 52.48591 ], [ -0.90187, 52.48432 ], [ -0.9015, 52.48483 ], [ -0.9002, 52.48482 ], [ -0.90005, 52.48544 ], [ -0.89788, 52.48741 ], [ -0.89805, 52.48692 ], [ -0.89727, 52.4865 ], [ -0.89788, 52.48623 ], [ -0.89779, 52.48561 ], [ -0.89695, 52.48551 ], [ -0.90131, 52.48087 ], [ -0.90231, 52.47985 ], [ -0.90463, 52.47916 ], [ -0.91144, 52.47887 ], [ -0.91365, 52.4783 ], [ -0.91676, 52.47797 ], [ -0.91911, 52.47805 ], [ -0.92019, 52.47773 ], [ -0.91943, 52.4771 ], [ -0.91771, 52.47424 ], [ -0.91553, 52.47508 ], [ -0.91567, 52.47475 ], [ -0.91601, 52.47359 ], [ -0.91734, 52.4737 ], [ -0.91763, 52.47379 ], [ -0.91808, 52.4737 ], [ -0.92028, 52.47322 ], [ -0.92095, 52.47297 ], [ -0.92128, 52.4721 ], [ -0.92202, 52.4718 ], [ -0.92199, 52.47129 ], [ -0.92321, 52.47111 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Market Harborough", "bua_code": "E34004281", "msoa_code": "E02005375", "population": 9540, "outputarea_code": "E00130897", "lsoa_code": "E01025798", "la_name": "Harborough", "bua_name": "Market Harborough BUA", "constituency_name": "Harborough", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.90407, "latitude": 52.47217, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.92549, 52.46469 ], [ -0.9296, 52.46578 ], [ -0.92938, 52.46649 ], [ -0.93058, 52.46666 ], [ -0.93144, 52.46713 ], [ -0.93243, 52.46827 ], [ -0.93244, 52.46891 ], [ -0.932, 52.46899 ], [ -0.93198, 52.46936 ], [ -0.93138, 52.46934 ], [ -0.93103, 52.4679 ], [ -0.92928, 52.46714 ], [ -0.92922, 52.46781 ], [ -0.92978, 52.46813 ], [ -0.93058, 52.46842 ], [ -0.93031, 52.4695 ], [ -0.92802, 52.46948 ], [ -0.92801, 52.47012 ], [ -0.92708, 52.47104 ], [ -0.92531, 52.47121 ], [ -0.92369, 52.47061 ], [ -0.92326, 52.47066 ], [ -0.92321, 52.47111 ], [ -0.92199, 52.47129 ], [ -0.92202, 52.4718 ], [ -0.92128, 52.4721 ], [ -0.92095, 52.47297 ], [ -0.92028, 52.47322 ], [ -0.91808, 52.4737 ], [ -0.91763, 52.47379 ], [ -0.91734, 52.4737 ], [ -0.91601, 52.47359 ], [ -0.91567, 52.47475 ], [ -0.91553, 52.47508 ], [ -0.91771, 52.47424 ], [ -0.91943, 52.4771 ], [ -0.92019, 52.47773 ], [ -0.91911, 52.47805 ], [ -0.91676, 52.47797 ], [ -0.91365, 52.4783 ], [ -0.91144, 52.47887 ], [ -0.90463, 52.47916 ], [ -0.90231, 52.47985 ], [ -0.90131, 52.48087 ], [ -0.89695, 52.48551 ], [ -0.89543, 52.48547 ], [ -0.8934, 52.48539 ], [ -0.89274, 52.48483 ], [ -0.89163, 52.48492 ], [ -0.89044, 52.48438 ], [ -0.8905, 52.48413 ], [ -0.88785, 52.48377 ], [ -0.88805, 52.48332 ], [ -0.88886, 52.48301 ], [ -0.88453, 52.48131 ], [ -0.88525, 52.48027 ], [ -0.88509, 52.4787 ], [ -0.88404, 52.47733 ], [ -0.88222, 52.47618 ], [ -0.8824, 52.47128 ], [ -0.88483, 52.47152 ], [ -0.88493, 52.47134 ], [ -0.88619, 52.46935 ], [ -0.88956, 52.47044 ], [ -0.8927, 52.46722 ], [ -0.8955, 52.4655 ], [ -0.89753, 52.4625 ], [ -0.89968, 52.46055 ], [ -0.90128, 52.45976 ], [ -0.90154, 52.46084 ], [ -0.90458, 52.46288 ], [ -0.90658, 52.46308 ], [ -0.90772, 52.4615 ], [ -0.90988, 52.46149 ], [ -0.91126, 52.46351 ], [ -0.91423, 52.46228 ], [ -0.91675, 52.46265 ], [ -0.92231, 52.4642 ], [ -0.92379, 52.46423 ], [ -0.92549, 52.46469 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Market Warsop", "bua_code": "E34000935", "msoa_code": "E02005880", "population": 3437, "outputarea_code": "E00143796", "lsoa_code": "E01028224", "la_name": "Mansfield", "bua_name": "Market Warsop BUA", "constituency_name": "Mansfield", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.13024, "latitude": 53.20908, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.14861, 53.20244 ], [ -1.14838, 53.20315 ], [ -1.14783, 53.20322 ], [ -1.14861, 53.20397 ], [ -1.1484, 53.2043 ], [ -1.14756, 53.20362 ], [ -1.14721, 53.20387 ], [ -1.14657, 53.20358 ], [ -1.14597, 53.20398 ], [ -1.14624, 53.20507 ], [ -1.14685, 53.20519 ], [ -1.14696, 53.20554 ], [ -1.14625, 53.20566 ], [ -1.1479, 53.20697 ], [ -1.14917, 53.2077 ], [ -1.14997, 53.20807 ], [ -1.14973, 53.20967 ], [ -1.14907, 53.20969 ], [ -1.14815, 53.20888 ], [ -1.14585, 53.21035 ], [ -1.14795, 53.21179 ], [ -1.14831, 53.21173 ], [ -1.15113, 53.21096 ], [ -1.15169, 53.20875 ], [ -1.15245, 53.20842 ], [ -1.15374, 53.20855 ], [ -1.15413, 53.20817 ], [ -1.15583, 53.20815 ], [ -1.15732, 53.20856 ], [ -1.1581, 53.20793 ], [ -1.15917, 53.20769 ], [ -1.16364, 53.20697 ], [ -1.16539, 53.20623 ], [ -1.16563, 53.20695 ], [ -1.16485, 53.2079 ], [ -1.16507, 53.2087 ], [ -1.16437, 53.20943 ], [ -1.16578, 53.21061 ], [ -1.16485, 53.21117 ], [ -1.16549, 53.21199 ], [ -1.16577, 53.21377 ], [ -1.1668, 53.2148 ], [ -1.17401, 53.21916 ], [ -1.17112, 53.21896 ], [ -1.1679, 53.2197 ], [ -1.162, 53.22143 ], [ -1.1569, 53.2223 ], [ -1.15223, 53.2237 ], [ -1.15157, 53.21738 ], [ -1.1513, 53.21603 ], [ -1.14937, 53.21628 ], [ -1.14815, 53.21643 ], [ -1.14804, 53.21685 ], [ -1.14647, 53.21695 ], [ -1.14664, 53.21721 ], [ -1.14506, 53.21747 ], [ -1.14401, 53.2162 ], [ -1.14152, 53.217 ], [ -1.13838, 53.21529 ], [ -1.13796, 53.21586 ], [ -1.13749, 53.21558 ], [ -1.13676, 53.21574 ], [ -1.13687, 53.21616 ], [ -1.13589, 53.21581 ], [ -1.13605, 53.2165 ], [ -1.13559, 53.2168 ], [ -1.13426, 53.21686 ], [ -1.1341, 53.21718 ], [ -1.13292, 53.21742 ], [ -1.13248, 53.21704 ], [ -1.13203, 53.21805 ], [ -1.12998, 53.21923 ], [ -1.12994, 53.21989 ], [ -1.12882, 53.21985 ], [ -1.12821, 53.22019 ], [ -1.12788, 53.2213 ], [ -1.12675, 53.22152 ], [ -1.12078, 53.22059 ], [ -1.11931, 53.22164 ], [ -1.11763, 53.22162 ], [ -1.11723, 53.22254 ], [ -1.11598, 53.22203 ], [ -1.11555, 53.22274 ], [ -1.11191, 53.22393 ], [ -1.11111, 53.22484 ], [ -1.10998, 53.2251 ], [ -1.11001, 53.22551 ], [ -1.1093, 53.22588 ], [ -1.10811, 53.22554 ], [ -1.10735, 53.2259 ], [ -1.10465, 53.22613 ], [ -1.10312, 53.22584 ], [ -1.0988, 53.22751 ], [ -1.09714, 53.22753 ], [ -1.09642, 53.22792 ], [ -1.09525, 53.22771 ], [ -1.09732, 53.21954 ], [ -1.10285, 53.21973 ], [ -1.10394, 53.21925 ], [ -1.10359, 53.21683 ], [ -1.10389, 53.21295 ], [ -1.10456, 53.2105 ], [ -1.10499, 53.21035 ], [ -1.10424, 53.20886 ], [ -1.10728, 53.20503 ], [ -1.11122, 53.19883 ], [ -1.11348, 53.19621 ], [ -1.11696, 53.19391 ], [ -1.12013, 53.19215 ], [ -1.12484, 53.19119 ], [ -1.12779, 53.18989 ], [ -1.12774, 53.18969 ], [ -1.12966, 53.1894 ], [ -1.13612, 53.18868 ], [ -1.14303, 53.19295 ], [ -1.14795, 53.19493 ], [ -1.14661, 53.19547 ], [ -1.14585, 53.1954 ], [ -1.14595, 53.19492 ], [ -1.14531, 53.19469 ], [ -1.14483, 53.19494 ], [ -1.14409, 53.19463 ], [ -1.14313, 53.19419 ], [ -1.14306, 53.19368 ], [ -1.14064, 53.19382 ], [ -1.1406, 53.19447 ], [ -1.14231, 53.19512 ], [ -1.14323, 53.19766 ], [ -1.14362, 53.19877 ], [ -1.14448, 53.1986 ], [ -1.1447, 53.19882 ], [ -1.14453, 53.19916 ], [ -1.14384, 53.19929 ], [ -1.14413, 53.19994 ], [ -1.14663, 53.19917 ], [ -1.14731, 53.1989 ], [ -1.14859, 53.20096 ], [ -1.14877, 53.20117 ], [ -1.14793, 53.20144 ], [ -1.14861, 53.20244 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Market Warsop", "bua_code": "E34000935", "msoa_code": "E02005881", "population": 5805, "outputarea_code": "E00143794", "lsoa_code": "E01028225", "la_name": "Mansfield", "bua_name": "Market Warsop BUA", "constituency_name": "Mansfield", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.15574, "latitude": 53.2025, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.14323, 53.19766 ], [ -1.14231, 53.19512 ], [ -1.1406, 53.19447 ], [ -1.14064, 53.19382 ], [ -1.14306, 53.19368 ], [ -1.14313, 53.19419 ], [ -1.14409, 53.19463 ], [ -1.14483, 53.19494 ], [ -1.14531, 53.19469 ], [ -1.14595, 53.19492 ], [ -1.14585, 53.1954 ], [ -1.14661, 53.19547 ], [ -1.14795, 53.19493 ], [ -1.15126, 53.19601 ], [ -1.15896, 53.19858 ], [ -1.16026, 53.19746 ], [ -1.16192, 53.19823 ], [ -1.16136, 53.19885 ], [ -1.16198, 53.19909 ], [ -1.16169, 53.19939 ], [ -1.1633, 53.19999 ], [ -1.16614, 53.20086 ], [ -1.17398, 53.20246 ], [ -1.17135, 53.20476 ], [ -1.16865, 53.20559 ], [ -1.1668, 53.20559 ], [ -1.16539, 53.20623 ], [ -1.16364, 53.20697 ], [ -1.15917, 53.20769 ], [ -1.1581, 53.20793 ], [ -1.15732, 53.20856 ], [ -1.15583, 53.20815 ], [ -1.15413, 53.20817 ], [ -1.15374, 53.20855 ], [ -1.15245, 53.20842 ], [ -1.15169, 53.20875 ], [ -1.15113, 53.21096 ], [ -1.14831, 53.21173 ], [ -1.14795, 53.21179 ], [ -1.14585, 53.21035 ], [ -1.14815, 53.20888 ], [ -1.14907, 53.20969 ], [ -1.14973, 53.20967 ], [ -1.14997, 53.20807 ], [ -1.14917, 53.2077 ], [ -1.1479, 53.20697 ], [ -1.14625, 53.20566 ], [ -1.14696, 53.20554 ], [ -1.14685, 53.20519 ], [ -1.14624, 53.20507 ], [ -1.14597, 53.20398 ], [ -1.14657, 53.20358 ], [ -1.14721, 53.20387 ], [ -1.14756, 53.20362 ], [ -1.1484, 53.2043 ], [ -1.14861, 53.20397 ], [ -1.14783, 53.20322 ], [ -1.14838, 53.20315 ], [ -1.14861, 53.20244 ], [ -1.14793, 53.20144 ], [ -1.14877, 53.20117 ], [ -1.14859, 53.20096 ], [ -1.14731, 53.1989 ], [ -1.14663, 53.19917 ], [ -1.14413, 53.19994 ], [ -1.14384, 53.19929 ], [ -1.14453, 53.19916 ], [ -1.1447, 53.19882 ], [ -1.14448, 53.1986 ], [ -1.14362, 53.19877 ], [ -1.14323, 53.19766 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Matlock", "bua_code": "E34004225", "msoa_code": "E02004071", "population": 3279, "outputarea_code": "E00099186", "lsoa_code": "E01019610", "la_name": "Derbyshire Dales", "bua_name": "Matlock BUA", "constituency_name": "Derbyshire Dales", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.57751, "latitude": 53.17656, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.57977, 53.16293 ], [ -1.58172, 53.16108 ], [ -1.58319, 53.16036 ], [ -1.58471, 53.16045 ], [ -1.5865, 53.15932 ], [ -1.58766, 53.1611 ], [ -1.58733, 53.16147 ], [ -1.58812, 53.16151 ], [ -1.58892, 53.16117 ], [ -1.58911, 53.16043 ], [ -1.59168, 53.15878 ], [ -1.59496, 53.15933 ], [ -1.59589, 53.15879 ], [ -1.59787, 53.15753 ], [ -1.59258, 53.15649 ], [ -1.59096, 53.1552 ], [ -1.58966, 53.15342 ], [ -1.59351, 53.15352 ], [ -1.5959, 53.15452 ], [ -1.60093, 53.15706 ], [ -1.60339, 53.15903 ], [ -1.60642, 53.15991 ], [ -1.6087, 53.16099 ], [ -1.61172, 53.16417 ], [ -1.61098, 53.16697 ], [ -1.60452, 53.17005 ], [ -1.60496, 53.17043 ], [ -1.60579, 53.17157 ], [ -1.60601, 53.17297 ], [ -1.60248, 53.17362 ], [ -1.59956, 53.17371 ], [ -1.59842, 53.17372 ], [ -1.59876, 53.1749 ], [ -1.59756, 53.17528 ], [ -1.59783, 53.17557 ], [ -1.59594, 53.17615 ], [ -1.5968, 53.17769 ], [ -1.59677, 53.17862 ], [ -1.59248, 53.18164 ], [ -1.59197, 53.18574 ], [ -1.58747, 53.18999 ], [ -1.58173, 53.19159 ], [ -1.56877, 53.19499 ], [ -1.55299, 53.19629 ], [ -1.55175, 53.18854 ], [ -1.54779, 53.182 ], [ -1.54251, 53.17529 ], [ -1.54734, 53.17549 ], [ -1.54921, 53.17585 ], [ -1.55288, 53.17817 ], [ -1.55589, 53.17621 ], [ -1.55468, 53.1751 ], [ -1.55489, 53.17477 ], [ -1.55345, 53.17151 ], [ -1.55553, 53.17116 ], [ -1.56019, 53.1693 ], [ -1.56579, 53.16939 ], [ -1.56712, 53.16912 ], [ -1.56783, 53.16595 ], [ -1.57236, 53.16477 ], [ -1.57547, 53.165 ], [ -1.57647, 53.16448 ], [ -1.57661, 53.16386 ], [ -1.57589, 53.16311 ], [ -1.57977, 53.16293 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Matlock", "bua_code": "E34004225", "msoa_code": "E02004072", "population": 7735, "outputarea_code": "E00099184", "lsoa_code": "E01019609", "la_name": "Derbyshire Dales", "bua_name": "Matlock BUA", "constituency_name": "Derbyshire Dales", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.55332, "latitude": 53.15537, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.54641, 53.14053 ], [ -1.54529, 53.14116 ], [ -1.54634, 53.1419 ], [ -1.54616, 53.14226 ], [ -1.54816, 53.143 ], [ -1.54864, 53.14276 ], [ -1.54908, 53.1429 ], [ -1.54867, 53.14347 ], [ -1.54792, 53.14328 ], [ -1.54759, 53.14349 ], [ -1.54769, 53.14379 ], [ -1.55015, 53.14378 ], [ -1.55098, 53.14393 ], [ -1.55143, 53.14348 ], [ -1.5532, 53.14325 ], [ -1.55385, 53.14242 ], [ -1.5545, 53.14234 ], [ -1.55416, 53.14144 ], [ -1.55291, 53.14077 ], [ -1.55348, 53.14034 ], [ -1.55437, 53.14044 ], [ -1.55568, 53.13952 ], [ -1.55533, 53.13931 ], [ -1.55545, 53.13923 ], [ -1.55704, 53.13842 ], [ -1.55661, 53.1377 ], [ -1.55725, 53.13716 ], [ -1.55786, 53.13729 ], [ -1.55796, 53.13665 ], [ -1.55903, 53.13603 ], [ -1.56062, 53.1367 ], [ -1.5608, 53.13748 ], [ -1.56145, 53.13789 ], [ -1.56219, 53.13694 ], [ -1.56393, 53.13677 ], [ -1.56493, 53.13709 ], [ -1.56391, 53.13878 ], [ -1.56932, 53.1389 ], [ -1.57219, 53.13958 ], [ -1.57149, 53.14255 ], [ -1.57369, 53.14313 ], [ -1.57288, 53.14413 ], [ -1.57313, 53.14451 ], [ -1.57532, 53.14506 ], [ -1.58043, 53.14425 ], [ -1.58108, 53.1458 ], [ -1.58301, 53.14629 ], [ -1.5831, 53.147 ], [ -1.58238, 53.14771 ], [ -1.57894, 53.14786 ], [ -1.57914, 53.14925 ], [ -1.57965, 53.1502 ], [ -1.58201, 53.14981 ], [ -1.58292, 53.15019 ], [ -1.58491, 53.15408 ], [ -1.58576, 53.15493 ], [ -1.58903, 53.15555 ], [ -1.58916, 53.15518 ], [ -1.58803, 53.1543 ], [ -1.58966, 53.15342 ], [ -1.59096, 53.1552 ], [ -1.59258, 53.15649 ], [ -1.59787, 53.15753 ], [ -1.59589, 53.15879 ], [ -1.59496, 53.15933 ], [ -1.59168, 53.15878 ], [ -1.58911, 53.16043 ], [ -1.58892, 53.16117 ], [ -1.58812, 53.16151 ], [ -1.58733, 53.16147 ], [ -1.58766, 53.1611 ], [ -1.5865, 53.15932 ], [ -1.58471, 53.16045 ], [ -1.58319, 53.16036 ], [ -1.58172, 53.16108 ], [ -1.57977, 53.16293 ], [ -1.57589, 53.16311 ], [ -1.57661, 53.16386 ], [ -1.57647, 53.16448 ], [ -1.57547, 53.165 ], [ -1.57236, 53.16477 ], [ -1.56783, 53.16595 ], [ -1.56712, 53.16912 ], [ -1.56579, 53.16939 ], [ -1.56019, 53.1693 ], [ -1.55553, 53.17116 ], [ -1.55345, 53.17151 ], [ -1.55489, 53.17477 ], [ -1.55468, 53.1751 ], [ -1.55589, 53.17621 ], [ -1.55288, 53.17817 ], [ -1.54921, 53.17585 ], [ -1.54734, 53.17549 ], [ -1.54251, 53.17529 ], [ -1.53963, 53.1714 ], [ -1.51735, 53.15647 ], [ -1.51729, 53.15642 ], [ -1.51589, 53.15433 ], [ -1.51567, 53.15402 ], [ -1.52001, 53.15286 ], [ -1.52209, 53.15294 ], [ -1.52337, 53.15214 ], [ -1.52716, 53.14839 ], [ -1.52571, 53.14641 ], [ -1.52699, 53.14604 ], [ -1.52678, 53.14546 ], [ -1.52832, 53.14493 ], [ -1.52781, 53.1443 ], [ -1.52837, 53.14406 ], [ -1.52894, 53.14224 ], [ -1.52938, 53.14227 ], [ -1.52963, 53.14166 ], [ -1.53304, 53.14182 ], [ -1.53405, 53.14071 ], [ -1.534, 53.14018 ], [ -1.53442, 53.14018 ], [ -1.53563, 53.13899 ], [ -1.53711, 53.13909 ], [ -1.53796, 53.13908 ], [ -1.53864, 53.13991 ], [ -1.5403, 53.13969 ], [ -1.53965, 53.1401 ], [ -1.54001, 53.14052 ], [ -1.53971, 53.14075 ], [ -1.54147, 53.14146 ], [ -1.54042, 53.14022 ], [ -1.54184, 53.13976 ], [ -1.54314, 53.13974 ], [ -1.54348, 53.13997 ], [ -1.54436, 53.13926 ], [ -1.54517, 53.13939 ], [ -1.54641, 53.13825 ], [ -1.54761, 53.13809 ], [ -1.54718, 53.13769 ], [ -1.54682, 53.13777 ], [ -1.54687, 53.13751 ], [ -1.54701, 53.13746 ], [ -1.54752, 53.13745 ], [ -1.54755, 53.13703 ], [ -1.5494, 53.13733 ], [ -1.55225, 53.13665 ], [ -1.55315, 53.13808 ], [ -1.54861, 53.13895 ], [ -1.5479, 53.13913 ], [ -1.54641, 53.14053 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Matlock", "bua_code": "E34004225", "msoa_code": "E02004073", "population": 4505, "outputarea_code": "E00099280", "lsoa_code": "E01019623", "la_name": "Derbyshire Dales", "bua_name": "Matlock BUA", "constituency_name": "Derbyshire Dales", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.54715, "latitude": 53.12817, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.55475, 53.1188 ], [ -1.55623, 53.1214 ], [ -1.55683, 53.12317 ], [ -1.55634, 53.12337 ], [ -1.55621, 53.12401 ], [ -1.55788, 53.12387 ], [ -1.55972, 53.12563 ], [ -1.55942, 53.12673 ], [ -1.55923, 53.12762 ], [ -1.55907, 53.12864 ], [ -1.56001, 53.13063 ], [ -1.55715, 53.13164 ], [ -1.55681, 53.1333 ], [ -1.55722, 53.13293 ], [ -1.55894, 53.13282 ], [ -1.56114, 53.13161 ], [ -1.56223, 53.12986 ], [ -1.56311, 53.12948 ], [ -1.56405, 53.12835 ], [ -1.56412, 53.12748 ], [ -1.56493, 53.12693 ], [ -1.56534, 53.12598 ], [ -1.5652, 53.12534 ], [ -1.56617, 53.12467 ], [ -1.56867, 53.12438 ], [ -1.56977, 53.12392 ], [ -1.57028, 53.12424 ], [ -1.57234, 53.12424 ], [ -1.5718, 53.12456 ], [ -1.57293, 53.12568 ], [ -1.57293, 53.12658 ], [ -1.57564, 53.12776 ], [ -1.57812, 53.12958 ], [ -1.57762, 53.1299 ], [ -1.57929, 53.13126 ], [ -1.58037, 53.13141 ], [ -1.58155, 53.13116 ], [ -1.5834, 53.13185 ], [ -1.5833, 53.13453 ], [ -1.58161, 53.13469 ], [ -1.58121, 53.13446 ], [ -1.57929, 53.13498 ], [ -1.57912, 53.13622 ], [ -1.57985, 53.13684 ], [ -1.58032, 53.13805 ], [ -1.57219, 53.13958 ], [ -1.56932, 53.1389 ], [ -1.56391, 53.13878 ], [ -1.56493, 53.13709 ], [ -1.56393, 53.13677 ], [ -1.56219, 53.13694 ], [ -1.56145, 53.13789 ], [ -1.5608, 53.13748 ], [ -1.56062, 53.1367 ], [ -1.55903, 53.13603 ], [ -1.55796, 53.13665 ], [ -1.55786, 53.13729 ], [ -1.55725, 53.13716 ], [ -1.55661, 53.1377 ], [ -1.55704, 53.13842 ], [ -1.55545, 53.13923 ], [ -1.55533, 53.13931 ], [ -1.55568, 53.13952 ], [ -1.55437, 53.14044 ], [ -1.55348, 53.14034 ], [ -1.55291, 53.14077 ], [ -1.55416, 53.14144 ], [ -1.5545, 53.14234 ], [ -1.55385, 53.14242 ], [ -1.5532, 53.14325 ], [ -1.55143, 53.14348 ], [ -1.55098, 53.14393 ], [ -1.55015, 53.14378 ], [ -1.54769, 53.14379 ], [ -1.54759, 53.14349 ], [ -1.54792, 53.14328 ], [ -1.54867, 53.14347 ], [ -1.54908, 53.1429 ], [ -1.54864, 53.14276 ], [ -1.54816, 53.143 ], [ -1.54616, 53.14226 ], [ -1.54634, 53.1419 ], [ -1.54529, 53.14116 ], [ -1.54641, 53.14053 ], [ -1.5479, 53.13913 ], [ -1.54861, 53.13895 ], [ -1.55315, 53.13808 ], [ -1.55225, 53.13665 ], [ -1.5494, 53.13733 ], [ -1.54755, 53.13703 ], [ -1.54752, 53.13745 ], [ -1.54701, 53.13746 ], [ -1.54687, 53.13751 ], [ -1.54682, 53.13777 ], [ -1.54718, 53.13769 ], [ -1.54761, 53.13809 ], [ -1.54641, 53.13825 ], [ -1.54517, 53.13939 ], [ -1.54436, 53.13926 ], [ -1.54348, 53.13997 ], [ -1.54314, 53.13974 ], [ -1.54184, 53.13976 ], [ -1.54042, 53.14022 ], [ -1.54147, 53.14146 ], [ -1.53971, 53.14075 ], [ -1.54001, 53.14052 ], [ -1.53965, 53.1401 ], [ -1.5403, 53.13969 ], [ -1.53864, 53.13991 ], [ -1.53796, 53.13908 ], [ -1.53711, 53.13909 ], [ -1.53563, 53.13899 ], [ -1.53442, 53.14018 ], [ -1.534, 53.14018 ], [ -1.53347, 53.13804 ], [ -1.53497, 53.1366 ], [ -1.53449, 53.13482 ], [ -1.53458, 53.13457 ], [ -1.5353, 53.13458 ], [ -1.53452, 53.13213 ], [ -1.53492, 53.13198 ], [ -1.53419, 53.13134 ], [ -1.53307, 53.13202 ], [ -1.53219, 53.13162 ], [ -1.5307, 53.13223 ], [ -1.52779, 53.13232 ], [ -1.52636, 53.13106 ], [ -1.52594, 53.13 ], [ -1.52281, 53.12985 ], [ -1.52305, 53.12906 ], [ -1.52119, 53.12891 ], [ -1.5214, 53.12803 ], [ -1.51949, 53.12807 ], [ -1.51601, 53.12738 ], [ -1.51437, 53.12656 ], [ -1.51583, 53.12536 ], [ -1.51725, 53.12492 ], [ -1.51755, 53.12493 ], [ -1.52019, 53.12403 ], [ -1.52201, 53.12098 ], [ -1.52351, 53.12043 ], [ -1.52289, 53.11974 ], [ -1.52328, 53.1188 ], [ -1.52273, 53.11783 ], [ -1.5208, 53.11633 ], [ -1.5206, 53.11449 ], [ -1.52136, 53.11467 ], [ -1.52394, 53.11409 ], [ -1.52644, 53.11416 ], [ -1.52611, 53.11302 ], [ -1.53101, 53.11321 ], [ -1.53354, 53.11246 ], [ -1.53403, 53.11351 ], [ -1.53629, 53.11342 ], [ -1.53721, 53.11472 ], [ -1.53938, 53.11471 ], [ -1.54423, 53.11681 ], [ -1.54597, 53.11719 ], [ -1.54611, 53.11641 ], [ -1.54743, 53.11725 ], [ -1.55009, 53.11729 ], [ -1.55016, 53.11832 ], [ -1.55142, 53.11784 ], [ -1.55475, 53.1188 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Melton Mowbray", "bua_code": "E34004343", "msoa_code": "E02005392", "population": 9006, "outputarea_code": "E00131432", "lsoa_code": "E01025901", "la_name": "Melton", "bua_name": "Melton Mowbray BUA", "constituency_name": "Rutland and Melton", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.88335, "latitude": 52.77965, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.87654, 52.76464 ], [ -0.87836, 52.76482 ], [ -0.87903, 52.76531 ], [ -0.87946, 52.76563 ], [ -0.88252, 52.76658 ], [ -0.88314, 52.76671 ], [ -0.88599, 52.76686 ], [ -0.88808, 52.76688 ], [ -0.88784, 52.77013 ], [ -0.88743, 52.77202 ], [ -0.88688, 52.77371 ], [ -0.88654, 52.77446 ], [ -0.88821, 52.77512 ], [ -0.88738, 52.77556 ], [ -0.88812, 52.77639 ], [ -0.88696, 52.77686 ], [ -0.88704, 52.77776 ], [ -0.8874, 52.77795 ], [ -0.88894, 52.77753 ], [ -0.8891, 52.7772 ], [ -0.89041, 52.77729 ], [ -0.89045, 52.77852 ], [ -0.89039, 52.77883 ], [ -0.89224, 52.7789 ], [ -0.89272, 52.77809 ], [ -0.89312, 52.77796 ], [ -0.89364, 52.7783 ], [ -0.89353, 52.77724 ], [ -0.89434, 52.77691 ], [ -0.89436, 52.77657 ], [ -0.89383, 52.7766 ], [ -0.89335, 52.77602 ], [ -0.89362, 52.77571 ], [ -0.89535, 52.77566 ], [ -0.89578, 52.7761 ], [ -0.89491, 52.77478 ], [ -0.8954, 52.77473 ], [ -0.89521, 52.77431 ], [ -0.89868, 52.77418 ], [ -0.89845, 52.77369 ], [ -0.89973, 52.77365 ], [ -0.89971, 52.77317 ], [ -0.89976, 52.77318 ], [ -0.90427, 52.77426 ], [ -0.91342, 52.77627 ], [ -0.91468, 52.77705 ], [ -0.91568, 52.77718 ], [ -0.91512, 52.77762 ], [ -0.91459, 52.78006 ], [ -0.91418, 52.78129 ], [ -0.91221, 52.78272 ], [ -0.91154, 52.78623 ], [ -0.91063, 52.78701 ], [ -0.90869, 52.78854 ], [ -0.90617, 52.79339 ], [ -0.90489, 52.79319 ], [ -0.90309, 52.79362 ], [ -0.90124, 52.79283 ], [ -0.8984, 52.79314 ], [ -0.89589, 52.79269 ], [ -0.89028, 52.79341 ], [ -0.88937, 52.79338 ], [ -0.88788, 52.79314 ], [ -0.88309, 52.79072 ], [ -0.88154, 52.79034 ], [ -0.87599, 52.78785 ], [ -0.87448, 52.78753 ], [ -0.87307, 52.78736 ], [ -0.87282, 52.78762 ], [ -0.87377, 52.78869 ], [ -0.87262, 52.78882 ], [ -0.87223, 52.78932 ], [ -0.87296, 52.78956 ], [ -0.87165, 52.79027 ], [ -0.87211, 52.79066 ], [ -0.87161, 52.7908 ], [ -0.87195, 52.79105 ], [ -0.87165, 52.79201 ], [ -0.87074, 52.79197 ], [ -0.86963, 52.7929 ], [ -0.86735, 52.79358 ], [ -0.86455, 52.7943 ], [ -0.86275, 52.7943 ], [ -0.86257, 52.78877 ], [ -0.86398, 52.78405 ], [ -0.86416, 52.78259 ], [ -0.86292, 52.78213 ], [ -0.86331, 52.77865 ], [ -0.86376, 52.77754 ], [ -0.86591, 52.77514 ], [ -0.86659, 52.77377 ], [ -0.86697, 52.77369 ], [ -0.86604, 52.77241 ], [ -0.85797, 52.77008 ], [ -0.85746, 52.77018 ], [ -0.85725, 52.77065 ], [ -0.85661, 52.77065 ], [ -0.85426, 52.77044 ], [ -0.85441, 52.76999 ], [ -0.84797, 52.76949 ], [ -0.84846, 52.76587 ], [ -0.85158, 52.76557 ], [ -0.85776, 52.76576 ], [ -0.86797, 52.76394 ], [ -0.87252, 52.76424 ], [ -0.87654, 52.76464 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Melton Mowbray", "bua_code": "E34004343", "msoa_code": "E02005394", "population": 9577, "outputarea_code": "E00131404", "lsoa_code": "E01025897", "la_name": "Melton", "bua_name": "Melton Mowbray BUA", "constituency_name": "Rutland and Melton", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.90665, "latitude": 52.75958, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.88844, 52.75798 ], [ -0.88815, 52.75669 ], [ -0.88916, 52.75643 ], [ -0.88977, 52.75614 ], [ -0.88919, 52.75607 ], [ -0.88914, 52.75576 ], [ -0.88987, 52.7547 ], [ -0.89103, 52.75442 ], [ -0.89117, 52.75471 ], [ -0.8939, 52.75474 ], [ -0.8939, 52.75422 ], [ -0.89437, 52.75417 ], [ -0.89514, 52.75469 ], [ -0.89545, 52.75417 ], [ -0.8963, 52.75432 ], [ -0.89631, 52.75399 ], [ -0.89588, 52.75399 ], [ -0.89642, 52.75377 ], [ -0.89617, 52.75361 ], [ -0.89652, 52.75332 ], [ -0.89726, 52.75338 ], [ -0.89727, 52.75379 ], [ -0.89761, 52.75377 ], [ -0.89844, 52.75298 ], [ -0.8976, 52.75172 ], [ -0.89789, 52.75107 ], [ -0.89884, 52.75123 ], [ -0.89964, 52.75199 ], [ -0.90072, 52.75197 ], [ -0.90021, 52.75011 ], [ -0.89573, 52.75007 ], [ -0.89668, 52.74663 ], [ -0.89484, 52.7456 ], [ -0.8963, 52.74414 ], [ -0.89766, 52.74413 ], [ -0.8985, 52.74356 ], [ -0.8984, 52.74053 ], [ -0.90252, 52.7397 ], [ -0.9021, 52.73902 ], [ -0.9066, 52.7382 ], [ -0.90686, 52.7379 ], [ -0.91038, 52.73711 ], [ -0.9151, 52.74013 ], [ -0.91572, 52.74005 ], [ -0.9177, 52.74075 ], [ -0.91841, 52.74162 ], [ -0.91886, 52.74581 ], [ -0.91588, 52.74758 ], [ -0.91542, 52.74881 ], [ -0.91608, 52.75195 ], [ -0.91692, 52.75278 ], [ -0.91773, 52.75288 ], [ -0.91953, 52.75395 ], [ -0.92222, 52.7561 ], [ -0.92465, 52.75711 ], [ -0.92708, 52.75699 ], [ -0.92816, 52.75913 ], [ -0.92708, 52.7595 ], [ -0.92695, 52.76026 ], [ -0.92736, 52.76073 ], [ -0.92595, 52.76406 ], [ -0.92585, 52.76552 ], [ -0.9256, 52.76605 ], [ -0.92464, 52.76581 ], [ -0.92384, 52.76825 ], [ -0.9224, 52.76917 ], [ -0.92398, 52.7699 ], [ -0.918, 52.77512 ], [ -0.91568, 52.77718 ], [ -0.91468, 52.77705 ], [ -0.91342, 52.77627 ], [ -0.90427, 52.77426 ], [ -0.89976, 52.77318 ], [ -0.89971, 52.77317 ], [ -0.89973, 52.77365 ], [ -0.89845, 52.77369 ], [ -0.89868, 52.77418 ], [ -0.89521, 52.77431 ], [ -0.8954, 52.77473 ], [ -0.89491, 52.77478 ], [ -0.89578, 52.7761 ], [ -0.89535, 52.77566 ], [ -0.89362, 52.77571 ], [ -0.89335, 52.77602 ], [ -0.89383, 52.7766 ], [ -0.89436, 52.77657 ], [ -0.89434, 52.77691 ], [ -0.89353, 52.77724 ], [ -0.89364, 52.7783 ], [ -0.89312, 52.77796 ], [ -0.89272, 52.77809 ], [ -0.89224, 52.7789 ], [ -0.89039, 52.77883 ], [ -0.89045, 52.77852 ], [ -0.89041, 52.77729 ], [ -0.8891, 52.7772 ], [ -0.88894, 52.77753 ], [ -0.8874, 52.77795 ], [ -0.88704, 52.77776 ], [ -0.88696, 52.77686 ], [ -0.88812, 52.77639 ], [ -0.88738, 52.77556 ], [ -0.88821, 52.77512 ], [ -0.88654, 52.77446 ], [ -0.88688, 52.77371 ], [ -0.88743, 52.77202 ], [ -0.88784, 52.77013 ], [ -0.88808, 52.76688 ], [ -0.88802, 52.76607 ], [ -0.8875, 52.76495 ], [ -0.8893, 52.76492 ], [ -0.88971, 52.7644 ], [ -0.89146, 52.76324 ], [ -0.89164, 52.76305 ], [ -0.88844, 52.75798 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Melton Mowbray", "bua_code": "E34004343", "msoa_code": "E02005395", "population": 8856, "outputarea_code": "E00131391", "lsoa_code": "E01025893", "la_name": "Melton", "bua_name": "Melton Mowbray BUA", "constituency_name": "Rutland and Melton", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.87667, "latitude": 52.7532, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.86589, 52.75122 ], [ -0.86529, 52.74697 ], [ -0.86638, 52.74626 ], [ -0.86809, 52.74576 ], [ -0.87122, 52.74302 ], [ -0.87277, 52.74278 ], [ -0.87574, 52.74261 ], [ -0.8799, 52.74284 ], [ -0.8808, 52.73789 ], [ -0.88144, 52.73683 ], [ -0.88258, 52.73686 ], [ -0.88305, 52.73587 ], [ -0.8857, 52.73514 ], [ -0.88587, 52.73537 ], [ -0.88672, 52.73522 ], [ -0.88815, 52.73501 ], [ -0.88896, 52.73657 ], [ -0.89064, 52.73641 ], [ -0.89079, 52.73668 ], [ -0.89371, 52.73676 ], [ -0.89569, 52.74093 ], [ -0.8984, 52.74053 ], [ -0.8985, 52.74356 ], [ -0.89766, 52.74413 ], [ -0.8963, 52.74414 ], [ -0.89484, 52.7456 ], [ -0.89668, 52.74663 ], [ -0.89573, 52.75007 ], [ -0.90021, 52.75011 ], [ -0.90072, 52.75197 ], [ -0.89964, 52.75199 ], [ -0.89884, 52.75123 ], [ -0.89789, 52.75107 ], [ -0.8976, 52.75172 ], [ -0.89844, 52.75298 ], [ -0.89761, 52.75377 ], [ -0.89727, 52.75379 ], [ -0.89726, 52.75338 ], [ -0.89652, 52.75332 ], [ -0.89617, 52.75361 ], [ -0.89642, 52.75377 ], [ -0.89588, 52.75399 ], [ -0.89631, 52.75399 ], [ -0.8963, 52.75432 ], [ -0.89545, 52.75417 ], [ -0.89514, 52.75469 ], [ -0.89437, 52.75417 ], [ -0.8939, 52.75422 ], [ -0.8939, 52.75474 ], [ -0.89117, 52.75471 ], [ -0.89103, 52.75442 ], [ -0.88987, 52.7547 ], [ -0.88914, 52.75576 ], [ -0.88919, 52.75607 ], [ -0.88977, 52.75614 ], [ -0.88916, 52.75643 ], [ -0.88815, 52.75669 ], [ -0.88844, 52.75798 ], [ -0.89164, 52.76305 ], [ -0.89146, 52.76324 ], [ -0.88971, 52.7644 ], [ -0.8893, 52.76492 ], [ -0.8875, 52.76495 ], [ -0.88802, 52.76607 ], [ -0.88808, 52.76688 ], [ -0.88599, 52.76686 ], [ -0.88314, 52.76671 ], [ -0.88252, 52.76658 ], [ -0.87946, 52.76563 ], [ -0.87903, 52.76531 ], [ -0.87836, 52.76482 ], [ -0.87654, 52.76464 ], [ -0.87252, 52.76424 ], [ -0.86797, 52.76394 ], [ -0.85776, 52.76576 ], [ -0.85158, 52.76557 ], [ -0.84846, 52.76587 ], [ -0.85015, 52.75887 ], [ -0.85074, 52.75867 ], [ -0.85105, 52.75574 ], [ -0.85217, 52.75385 ], [ -0.85353, 52.75445 ], [ -0.86134, 52.75307 ], [ -0.8614, 52.75273 ], [ -0.86366, 52.75251 ], [ -0.86587, 52.75243 ], [ -0.86589, 52.75122 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mountsorrel", "bua_code": "E35001229", "msoa_code": "E02005356", "population": 1370, "outputarea_code": "E00130554", "lsoa_code": "E01025735", "la_name": "Charnwood", "bua_name": "Mountsorrel BUASD", "constituency_name": "Loughborough", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.14735, "latitude": 52.7343, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.13406, 52.72735 ], [ -1.13524, 52.72694 ], [ -1.13608, 52.72784 ], [ -1.13736, 52.72733 ], [ -1.14055, 52.7269 ], [ -1.1408, 52.72791 ], [ -1.14158, 52.7282 ], [ -1.14241, 52.72758 ], [ -1.14381, 52.72722 ], [ -1.14765, 52.72616 ], [ -1.14901, 52.72729 ], [ -1.15235, 52.72729 ], [ -1.15617, 52.72685 ], [ -1.15812, 52.72573 ], [ -1.15973, 52.72621 ], [ -1.1627, 52.72644 ], [ -1.16272, 52.72681 ], [ -1.16429, 52.72724 ], [ -1.16427, 52.72782 ], [ -1.16409, 52.72957 ], [ -1.16096, 52.72886 ], [ -1.15611, 52.73053 ], [ -1.15595, 52.73139 ], [ -1.15741, 52.73207 ], [ -1.15571, 52.73372 ], [ -1.15436, 52.7343 ], [ -1.15732, 52.73587 ], [ -1.15581, 52.73746 ], [ -1.15632, 52.73821 ], [ -1.15124, 52.74041 ], [ -1.15156, 52.74129 ], [ -1.15013, 52.74135 ], [ -1.14791, 52.7424 ], [ -1.14648, 52.7432 ], [ -1.14652, 52.74378 ], [ -1.14546, 52.74462 ], [ -1.14568, 52.74523 ], [ -1.14304, 52.7461 ], [ -1.14224, 52.74604 ], [ -1.13906, 52.74583 ], [ -1.13628, 52.74529 ], [ -1.13527, 52.74447 ], [ -1.13474, 52.74339 ], [ -1.13515, 52.74303 ], [ -1.13863, 52.74204 ], [ -1.13872, 52.74153 ], [ -1.13944, 52.74152 ], [ -1.14217, 52.73996 ], [ -1.14407, 52.73718 ], [ -1.14315, 52.73569 ], [ -1.14431, 52.73549 ], [ -1.14472, 52.73509 ], [ -1.14426, 52.73355 ], [ -1.14354, 52.73308 ], [ -1.14206, 52.7323 ], [ -1.14013, 52.73193 ], [ -1.13896, 52.7323 ], [ -1.13941, 52.73163 ], [ -1.1378, 52.73151 ], [ -1.13446, 52.73225 ], [ -1.13263, 52.73002 ], [ -1.13406, 52.72735 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mountsorrel", "bua_code": "E35001229", "msoa_code": "E02005358", "population": 11011, "outputarea_code": "E00130521", "lsoa_code": "E01025729", "la_name": "Charnwood", "bua_name": "Mountsorrel BUASD", "constituency_name": "Charnwood", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.13787, "latitude": 52.71334, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.12844, 52.70284 ], [ -1.13213, 52.70189 ], [ -1.13336, 52.70077 ], [ -1.13466, 52.69825 ], [ -1.1368, 52.69719 ], [ -1.138, 52.69737 ], [ -1.13841, 52.69707 ], [ -1.14041, 52.69468 ], [ -1.14102, 52.69278 ], [ -1.14852, 52.69511 ], [ -1.15211, 52.69689 ], [ -1.15503, 52.69883 ], [ -1.15847, 52.69986 ], [ -1.1584, 52.70009 ], [ -1.16234, 52.70162 ], [ -1.1626, 52.70262 ], [ -1.16181, 52.70335 ], [ -1.15944, 52.70289 ], [ -1.15516, 52.69978 ], [ -1.15389, 52.70105 ], [ -1.1496, 52.70299 ], [ -1.14992, 52.70587 ], [ -1.14533, 52.70701 ], [ -1.14593, 52.70755 ], [ -1.14648, 52.71037 ], [ -1.14786, 52.71296 ], [ -1.14773, 52.71352 ], [ -1.14794, 52.7168 ], [ -1.15131, 52.71559 ], [ -1.15239, 52.71543 ], [ -1.15426, 52.71839 ], [ -1.15494, 52.71956 ], [ -1.15611, 52.72229 ], [ -1.15812, 52.72573 ], [ -1.15617, 52.72685 ], [ -1.15235, 52.72729 ], [ -1.14901, 52.72729 ], [ -1.14765, 52.72616 ], [ -1.14381, 52.72722 ], [ -1.14241, 52.72758 ], [ -1.14158, 52.7282 ], [ -1.1408, 52.72791 ], [ -1.14055, 52.7269 ], [ -1.13736, 52.72733 ], [ -1.13608, 52.72784 ], [ -1.13524, 52.72694 ], [ -1.13406, 52.72735 ], [ -1.13263, 52.73002 ], [ -1.13446, 52.73225 ], [ -1.13346, 52.73286 ], [ -1.13236, 52.73278 ], [ -1.13183, 52.73225 ], [ -1.13186, 52.73154 ], [ -1.12981, 52.73036 ], [ -1.12897, 52.72903 ], [ -1.12833, 52.72875 ], [ -1.12603, 52.72933 ], [ -1.12546, 52.72832 ], [ -1.12526, 52.72753 ], [ -1.12389, 52.72707 ], [ -1.12335, 52.72626 ], [ -1.12237, 52.72668 ], [ -1.12172, 52.72634 ], [ -1.12215, 52.72529 ], [ -1.12166, 52.72438 ], [ -1.12197, 52.72305 ], [ -1.12015, 52.72177 ], [ -1.11988, 52.72055 ], [ -1.11996, 52.72011 ], [ -1.11988, 52.71904 ], [ -1.11857, 52.71894 ], [ -1.11837, 52.71854 ], [ -1.1215, 52.71557 ], [ -1.12387, 52.71415 ], [ -1.1234, 52.71261 ], [ -1.12087, 52.71131 ], [ -1.12051, 52.71048 ], [ -1.11966, 52.7102 ], [ -1.1199, 52.70915 ], [ -1.12019, 52.70587 ], [ -1.12096, 52.70579 ], [ -1.12432, 52.70343 ], [ -1.12844, 52.70284 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Mountsorrel", "bua_code": "E35001229", "msoa_code": "E02005360", "population": 670, "outputarea_code": "E00130579", "lsoa_code": "E01025738", "la_name": "Charnwood", "bua_name": "Mountsorrel BUASD", "constituency_name": "Charnwood", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.15854, "latitude": 52.71419, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.14773, 52.71352 ], [ -1.14786, 52.71296 ], [ -1.14648, 52.71037 ], [ -1.14593, 52.70755 ], [ -1.14533, 52.70701 ], [ -1.14992, 52.70587 ], [ -1.1496, 52.70299 ], [ -1.15389, 52.70105 ], [ -1.15516, 52.69978 ], [ -1.15944, 52.70289 ], [ -1.16181, 52.70335 ], [ -1.16039, 52.70468 ], [ -1.16013, 52.70566 ], [ -1.16118, 52.70709 ], [ -1.16417, 52.71128 ], [ -1.16649, 52.71477 ], [ -1.16774, 52.71561 ], [ -1.1677, 52.71642 ], [ -1.16874, 52.71797 ], [ -1.17109, 52.71992 ], [ -1.17115, 52.72056 ], [ -1.17263, 52.72106 ], [ -1.17259, 52.72309 ], [ -1.17337, 52.72335 ], [ -1.17439, 52.72336 ], [ -1.17404, 52.7239 ], [ -1.16757, 52.72468 ], [ -1.16447, 52.72618 ], [ -1.16429, 52.72724 ], [ -1.16272, 52.72681 ], [ -1.1627, 52.72644 ], [ -1.15973, 52.72621 ], [ -1.15812, 52.72573 ], [ -1.15611, 52.72229 ], [ -1.15494, 52.71956 ], [ -1.15426, 52.71839 ], [ -1.15239, 52.71543 ], [ -1.15131, 52.71559 ], [ -1.14794, 52.7168 ], [ -1.14773, 52.71352 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Narborough\/Enderby", "bua_code": "E35000487", "msoa_code": "E02005338", "population": 6644, "outputarea_code": "E00130042", "lsoa_code": "E01025627", "la_name": "Blaby", "bua_name": "Narborough\/Enderby BUASD", "constituency_name": "South Leicestershire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.20858, "latitude": 52.59915, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.19159, 52.5783 ], [ -1.19522, 52.57903 ], [ -1.19598, 52.57913 ], [ -1.19688, 52.57803 ], [ -1.20218, 52.5805 ], [ -1.20407, 52.58205 ], [ -1.20608, 52.58253 ], [ -1.20818, 52.58363 ], [ -1.20908, 52.58481 ], [ -1.21196, 52.58363 ], [ -1.21238, 52.58401 ], [ -1.21397, 52.58099 ], [ -1.21463, 52.5815 ], [ -1.21474, 52.58192 ], [ -1.21622, 52.58276 ], [ -1.21741, 52.58342 ], [ -1.21816, 52.58426 ], [ -1.21967, 52.58538 ], [ -1.22019, 52.58572 ], [ -1.21982, 52.58744 ], [ -1.21779, 52.59086 ], [ -1.21933, 52.59127 ], [ -1.22212, 52.59292 ], [ -1.22168, 52.59312 ], [ -1.22339, 52.59629 ], [ -1.2276, 52.59595 ], [ -1.23011, 52.59545 ], [ -1.23382, 52.59492 ], [ -1.23598, 52.59303 ], [ -1.23545, 52.59442 ], [ -1.23687, 52.59576 ], [ -1.23778, 52.59818 ], [ -1.2388, 52.5991 ], [ -1.23899, 52.60026 ], [ -1.24445, 52.60688 ], [ -1.24433, 52.60769 ], [ -1.24602, 52.60864 ], [ -1.24351, 52.61095 ], [ -1.24346, 52.61191 ], [ -1.24397, 52.61254 ], [ -1.24244, 52.6138 ], [ -1.2319, 52.61461 ], [ -1.22838, 52.61587 ], [ -1.22776, 52.61624 ], [ -1.22505, 52.6156 ], [ -1.22274, 52.61651 ], [ -1.22192, 52.61766 ], [ -1.22062, 52.61825 ], [ -1.21946, 52.61826 ], [ -1.21744, 52.61716 ], [ -1.21439, 52.61728 ], [ -1.21081, 52.61798 ], [ -1.20969, 52.61822 ], [ -1.20551, 52.61762 ], [ -1.20499, 52.61707 ], [ -1.20424, 52.61709 ], [ -1.20157, 52.61343 ], [ -1.19802, 52.60844 ], [ -1.19608, 52.60447 ], [ -1.19502, 52.60049 ], [ -1.1868, 52.60025 ], [ -1.18661, 52.60022 ], [ -1.18265, 52.59971 ], [ -1.18163, 52.59906 ], [ -1.18029, 52.60008 ], [ -1.18055, 52.60061 ], [ -1.17966, 52.60076 ], [ -1.17866, 52.60143 ], [ -1.17815, 52.60134 ], [ -1.17763, 52.60181 ], [ -1.16973, 52.60095 ], [ -1.16798, 52.60143 ], [ -1.16887, 52.59977 ], [ -1.17009, 52.59835 ], [ -1.17161, 52.59867 ], [ -1.17264, 52.59731 ], [ -1.17155, 52.59666 ], [ -1.17037, 52.59656 ], [ -1.1701, 52.59599 ], [ -1.17086, 52.59484 ], [ -1.1704, 52.59391 ], [ -1.17145, 52.59343 ], [ -1.17404, 52.59371 ], [ -1.17416, 52.59285 ], [ -1.17246, 52.59285 ], [ -1.17213, 52.59183 ], [ -1.17209, 52.59076 ], [ -1.17271, 52.59058 ], [ -1.17292, 52.58994 ], [ -1.17423, 52.58965 ], [ -1.17413, 52.58897 ], [ -1.17499, 52.58872 ], [ -1.17543, 52.58799 ], [ -1.17631, 52.58807 ], [ -1.17678, 52.58869 ], [ -1.1778, 52.58833 ], [ -1.18091, 52.58836 ], [ -1.18128, 52.58714 ], [ -1.18258, 52.58715 ], [ -1.18294, 52.58665 ], [ -1.18381, 52.5867 ], [ -1.18468, 52.58628 ], [ -1.18418, 52.58539 ], [ -1.18515, 52.58431 ], [ -1.18476, 52.58422 ], [ -1.18481, 52.58361 ], [ -1.18533, 52.58347 ], [ -1.18528, 52.58296 ], [ -1.18715, 52.58183 ], [ -1.18873, 52.58141 ], [ -1.18966, 52.58065 ], [ -1.19159, 52.5783 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Narborough\/Enderby", "bua_code": "E35000487", "msoa_code": "E02005339", "population": 6922, "outputarea_code": "E00130116", "lsoa_code": "E01025642", "la_name": "Blaby", "bua_name": "Narborough\/Enderby BUASD", "constituency_name": "South Leicestershire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.21389, "latitude": 52.57778, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.1933, 52.5714 ], [ -1.19365, 52.5712 ], [ -1.19828, 52.57106 ], [ -1.20127, 52.57053 ], [ -1.20213, 52.57159 ], [ -1.20354, 52.57108 ], [ -1.20328, 52.57032 ], [ -1.20779, 52.56841 ], [ -1.20836, 52.56925 ], [ -1.21325, 52.56729 ], [ -1.21399, 52.56687 ], [ -1.21642, 52.5668 ], [ -1.21684, 52.56724 ], [ -1.21781, 52.56724 ], [ -1.22505, 52.56112 ], [ -1.22885, 52.56183 ], [ -1.22957, 52.5623 ], [ -1.2257, 52.56389 ], [ -1.22517, 52.56466 ], [ -1.22503, 52.56709 ], [ -1.22328, 52.56871 ], [ -1.22491, 52.57092 ], [ -1.22529, 52.57493 ], [ -1.22496, 52.57593 ], [ -1.22386, 52.57662 ], [ -1.22339, 52.57805 ], [ -1.22461, 52.58042 ], [ -1.22793, 52.58262 ], [ -1.23012, 52.58646 ], [ -1.22986, 52.58982 ], [ -1.22886, 52.59295 ], [ -1.2303, 52.59507 ], [ -1.23011, 52.59545 ], [ -1.2276, 52.59595 ], [ -1.22339, 52.59629 ], [ -1.22168, 52.59312 ], [ -1.22212, 52.59292 ], [ -1.21933, 52.59127 ], [ -1.21779, 52.59086 ], [ -1.21982, 52.58744 ], [ -1.22019, 52.58572 ], [ -1.21967, 52.58538 ], [ -1.21816, 52.58426 ], [ -1.21741, 52.58342 ], [ -1.21622, 52.58276 ], [ -1.21474, 52.58192 ], [ -1.21463, 52.5815 ], [ -1.21397, 52.58099 ], [ -1.21238, 52.58401 ], [ -1.21196, 52.58363 ], [ -1.20908, 52.58481 ], [ -1.20818, 52.58363 ], [ -1.20608, 52.58253 ], [ -1.20407, 52.58205 ], [ -1.20218, 52.5805 ], [ -1.19688, 52.57803 ], [ -1.19598, 52.57913 ], [ -1.19522, 52.57903 ], [ -1.19159, 52.5783 ], [ -1.19072, 52.57761 ], [ -1.19059, 52.57702 ], [ -1.18861, 52.57604 ], [ -1.18839, 52.57546 ], [ -1.18862, 52.57431 ], [ -1.18947, 52.57321 ], [ -1.1911, 52.57281 ], [ -1.19184, 52.57165 ], [ -1.1933, 52.5714 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "New Mills", "bua_code": "E35000793", "msoa_code": "E02004097", "population": 4582, "outputarea_code": "E00099906", "lsoa_code": "E01019748", "la_name": "High Peak", "bua_name": "New Mills BUASD", "constituency_name": "High Peak", "citytownclassification": "Small Town", "urban": "Y", "longitude": -2.00226, "latitude": 53.36848, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.99769, 53.36398 ], [ -1.99957, 53.36339 ], [ -1.99906, 53.36278 ], [ -1.99762, 53.36263 ], [ -1.99771, 53.36048 ], [ -1.99754, 53.35949 ], [ -1.99683, 53.35748 ], [ -1.99706, 53.3572 ], [ -1.99822, 53.35713 ], [ -2.00011, 53.35774 ], [ -2.00037, 53.35754 ], [ -1.99893, 53.35689 ], [ -1.99951, 53.35643 ], [ -2.00007, 53.35633 ], [ -2.00078, 53.35679 ], [ -2.00334, 53.35578 ], [ -2.00449, 53.356 ], [ -2.00468, 53.35644 ], [ -2.00806, 53.35497 ], [ -2.00894, 53.35528 ], [ -2.01043, 53.35526 ], [ -2.01067, 53.3557 ], [ -2.01073, 53.3581 ], [ -2.00977, 53.3598 ], [ -2.009, 53.36201 ], [ -2.01047, 53.36258 ], [ -2.01148, 53.36182 ], [ -2.01223, 53.36171 ], [ -2.01368, 53.36231 ], [ -2.01602, 53.36312 ], [ -2.0154, 53.36367 ], [ -2.01465, 53.36575 ], [ -2.0124, 53.36536 ], [ -2.01003, 53.36574 ], [ -2.00697, 53.36528 ], [ -2.00797, 53.36671 ], [ -2.00675, 53.36774 ], [ -2.00909, 53.36748 ], [ -2.00903, 53.36723 ], [ -2.00985, 53.36711 ], [ -2.0099, 53.36739 ], [ -2.0139, 53.36739 ], [ -2.01357, 53.36776 ], [ -2.01386, 53.36812 ], [ -2.01428, 53.36751 ], [ -2.01533, 53.36788 ], [ -2.01728, 53.36944 ], [ -2.01571, 53.3705 ], [ -2.01603, 53.37188 ], [ -2.0157, 53.373 ], [ -2.01522, 53.37273 ], [ -2.0133, 53.37298 ], [ -2.01224, 53.37327 ], [ -2.0064, 53.37369 ], [ -2.00593, 53.37476 ], [ -2.00501, 53.37466 ], [ -2.00196, 53.37541 ], [ -1.99804, 53.37577 ], [ -1.99699, 53.37586 ], [ -1.9972, 53.37641 ], [ -1.99656, 53.37756 ], [ -1.99509, 53.37884 ], [ -1.99578, 53.38006 ], [ -1.99385, 53.38215 ], [ -1.99231, 53.383 ], [ -1.9868, 53.3845 ], [ -1.98547, 53.38435 ], [ -1.98553, 53.38362 ], [ -1.98562, 53.38106 ], [ -1.98497, 53.3801 ], [ -1.98663, 53.37997 ], [ -1.98893, 53.38035 ], [ -1.98942, 53.38067 ], [ -1.99136, 53.37888 ], [ -1.99262, 53.37828 ], [ -1.99317, 53.377 ], [ -1.99261, 53.37603 ], [ -1.99052, 53.37765 ], [ -1.98916, 53.37676 ], [ -1.98916, 53.37544 ], [ -1.99057, 53.37448 ], [ -1.99366, 53.37172 ], [ -1.9942, 53.37121 ], [ -1.99462, 53.37151 ], [ -1.99623, 53.37114 ], [ -1.99733, 53.37015 ], [ -1.99853, 53.37029 ], [ -1.99876, 53.36969 ], [ -1.99883, 53.36799 ], [ -1.99624, 53.36807 ], [ -1.99379, 53.367 ], [ -1.99398, 53.36679 ], [ -1.99428, 53.3665 ], [ -1.99259, 53.36556 ], [ -1.99497, 53.36482 ], [ -1.99769, 53.36398 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "New Mills", "bua_code": "E35000793", "msoa_code": "E02004098", "population": 3823, "outputarea_code": "E00099891", "lsoa_code": "E01019743", "la_name": "High Peak", "bua_name": "New Mills BUASD", "constituency_name": "High Peak", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.98925, "latitude": 53.36712, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.99133, 53.35789 ], [ -1.99329, 53.3569 ], [ -1.99535, 53.35927 ], [ -1.99771, 53.36048 ], [ -1.99762, 53.36263 ], [ -1.99906, 53.36278 ], [ -1.99957, 53.36339 ], [ -1.99769, 53.36398 ], [ -1.99497, 53.36482 ], [ -1.99259, 53.36556 ], [ -1.99428, 53.3665 ], [ -1.99398, 53.36679 ], [ -1.99379, 53.367 ], [ -1.99624, 53.36807 ], [ -1.99883, 53.36799 ], [ -1.99876, 53.36969 ], [ -1.99853, 53.37029 ], [ -1.99733, 53.37015 ], [ -1.99623, 53.37114 ], [ -1.99462, 53.37151 ], [ -1.9942, 53.37121 ], [ -1.99366, 53.37172 ], [ -1.99057, 53.37448 ], [ -1.98916, 53.37544 ], [ -1.98537, 53.3772 ], [ -1.98456, 53.37483 ], [ -1.98351, 53.37455 ], [ -1.98264, 53.37508 ], [ -1.98122, 53.37534 ], [ -1.981, 53.37479 ], [ -1.98091, 53.37442 ], [ -1.98214, 53.37419 ], [ -1.98369, 53.37278 ], [ -1.98329, 53.37276 ], [ -1.98029, 53.36987 ], [ -1.98289, 53.3693 ], [ -1.98452, 53.36769 ], [ -1.98431, 53.36654 ], [ -1.98152, 53.36601 ], [ -1.97993, 53.36612 ], [ -1.97975, 53.36424 ], [ -1.98032, 53.36414 ], [ -1.97865, 53.36323 ], [ -1.97837, 53.36204 ], [ -1.97939, 53.36167 ], [ -1.98019, 53.36191 ], [ -1.98093, 53.36307 ], [ -1.98515, 53.36196 ], [ -1.98871, 53.3622 ], [ -1.99079, 53.36052 ], [ -1.99067, 53.35816 ], [ -1.99133, 53.35789 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "New Ollerton", "bua_code": "E34003574", "msoa_code": "E02005893", "population": 10444, "outputarea_code": "E00144192", "lsoa_code": "E01028302", "la_name": "Newark and Sherwood", "bua_name": "New Ollerton BUA", "constituency_name": "Sherwood", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.00549, "latitude": 53.20635, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.00403, 53.19145 ], [ -1.00596, 53.18894 ], [ -1.01126, 53.1866 ], [ -1.01737, 53.18478 ], [ -1.01868, 53.18489 ], [ -1.02114, 53.18604 ], [ -1.02324, 53.18546 ], [ -1.02664, 53.18397 ], [ -1.03301, 53.18344 ], [ -1.0334, 53.1854 ], [ -1.0322, 53.18711 ], [ -1.03387, 53.18982 ], [ -1.03312, 53.19296 ], [ -1.02906, 53.19749 ], [ -1.02778, 53.1979 ], [ -1.02733, 53.19806 ], [ -1.02758, 53.19819 ], [ -1.03003, 53.19875 ], [ -1.03122, 53.1996 ], [ -1.03672, 53.19889 ], [ -1.03484, 53.20378 ], [ -1.0276, 53.20125 ], [ -1.02696, 53.20411 ], [ -1.02583, 53.20601 ], [ -1.02419, 53.21008 ], [ -1.0237, 53.21248 ], [ -1.02317, 53.21346 ], [ -1.02331, 53.21711 ], [ -1.02329, 53.22169 ], [ -1.02236, 53.22298 ], [ -1.01842, 53.22407 ], [ -1.01482, 53.22468 ], [ -1.00924, 53.22514 ], [ -1.00872, 53.22653 ], [ -1.00685, 53.22679 ], [ -1.00728, 53.22762 ], [ -1.00591, 53.22774 ], [ -1.00592, 53.22867 ], [ -1.00463, 53.22884 ], [ -1.0051, 53.22933 ], [ -1.00494, 53.22986 ], [ -1.00596, 53.23045 ], [ -1.00618, 53.23137 ], [ -1.00684, 53.23152 ], [ -1.00669, 53.23207 ], [ -1.00782, 53.23224 ], [ -1.00745, 53.23291 ], [ -1.0092, 53.23359 ], [ -1.00971, 53.23446 ], [ -1.00893, 53.23491 ], [ -1.00968, 53.23547 ], [ -1.01077, 53.23535 ], [ -1.01097, 53.23584 ], [ -1.00665, 53.23603 ], [ -1.00596, 53.23215 ], [ -1.00381, 53.22879 ], [ -1.00447, 53.22463 ], [ -0.99628, 53.22383 ], [ -0.99096, 53.22221 ], [ -0.98345, 53.221 ], [ -0.97754, 53.22056 ], [ -0.97757, 53.22026 ], [ -0.97601, 53.22001 ], [ -0.97592, 53.21965 ], [ -0.97213, 53.2195 ], [ -0.97009, 53.21869 ], [ -0.97048, 53.21822 ], [ -0.97099, 53.21843 ], [ -0.97249, 53.21783 ], [ -0.97459, 53.21794 ], [ -0.97634, 53.21733 ], [ -0.9773, 53.21753 ], [ -0.97767, 53.21728 ], [ -0.97764, 53.21475 ], [ -0.97657, 53.21447 ], [ -0.97567, 53.21312 ], [ -0.97391, 53.21232 ], [ -0.9737, 53.2115 ], [ -0.97443, 53.21001 ], [ -0.97849, 53.20802 ], [ -0.98048, 53.2056 ], [ -0.97895, 53.20585 ], [ -0.97082, 53.20286 ], [ -0.97413, 53.20141 ], [ -0.98222, 53.19934 ], [ -0.9855, 53.19848 ], [ -0.99022, 53.19775 ], [ -0.99304, 53.19601 ], [ -1.00213, 53.19245 ], [ -1.00403, 53.19145 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Newark-on-Trent", "bua_code": "E35001494", "msoa_code": "E02005899", "population": 11288, "outputarea_code": "E00144146", "lsoa_code": "E01028294", "la_name": "Newark and Sherwood", "bua_name": "Newark-on-Trent BUASD", "constituency_name": "Newark", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.8007, "latitude": 53.08474, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.79921, 53.06969 ], [ -0.80003, 53.07017 ], [ -0.80275, 53.07134 ], [ -0.8028, 53.07135 ], [ -0.80491, 53.07188 ], [ -0.80444, 53.0735 ], [ -0.80438, 53.07367 ], [ -0.80394, 53.07486 ], [ -0.80356, 53.07581 ], [ -0.80283, 53.07826 ], [ -0.80387, 53.0787 ], [ -0.8098, 53.07448 ], [ -0.80989, 53.07437 ], [ -0.81046, 53.07399 ], [ -0.81187, 53.07282 ], [ -0.81319, 53.0718 ], [ -0.81515, 53.07028 ], [ -0.81569, 53.07038 ], [ -0.81541, 53.07113 ], [ -0.81607, 53.07143 ], [ -0.81598, 53.07218 ], [ -0.81592, 53.07268 ], [ -0.81508, 53.07282 ], [ -0.81482, 53.07329 ], [ -0.81499, 53.07382 ], [ -0.81593, 53.07419 ], [ -0.81668, 53.07358 ], [ -0.81671, 53.07267 ], [ -0.81737, 53.07267 ], [ -0.81678, 53.07236 ], [ -0.81685, 53.07196 ], [ -0.81881, 53.07154 ], [ -0.81971, 53.07194 ], [ -0.81968, 53.07197 ], [ -0.82356, 53.07273 ], [ -0.82313, 53.07326 ], [ -0.82162, 53.07393 ], [ -0.81761, 53.0737 ], [ -0.81722, 53.07431 ], [ -0.81646, 53.07439 ], [ -0.81643, 53.07476 ], [ -0.81813, 53.07571 ], [ -0.81672, 53.07637 ], [ -0.81645, 53.07754 ], [ -0.81633, 53.07804 ], [ -0.81796, 53.07845 ], [ -0.82031, 53.07814 ], [ -0.82024, 53.07738 ], [ -0.82241, 53.07614 ], [ -0.82299, 53.07621 ], [ -0.82421, 53.07698 ], [ -0.82546, 53.07973 ], [ -0.82097, 53.0819 ], [ -0.81619, 53.08309 ], [ -0.81634, 53.08353 ], [ -0.81697, 53.08354 ], [ -0.81678, 53.08388 ], [ -0.82185, 53.09152 ], [ -0.82092, 53.09165 ], [ -0.81943, 53.09304 ], [ -0.81309, 53.09111 ], [ -0.80691, 53.09007 ], [ -0.80547, 53.09423 ], [ -0.80451, 53.09613 ], [ -0.80338, 53.09726 ], [ -0.7989, 53.10142 ], [ -0.79508, 53.09978 ], [ -0.79634, 53.09816 ], [ -0.79386, 53.09763 ], [ -0.79365, 53.09804 ], [ -0.79041, 53.09778 ], [ -0.79071, 53.09724 ], [ -0.79036, 53.09686 ], [ -0.78807, 53.09544 ], [ -0.78671, 53.09373 ], [ -0.7851, 53.09174 ], [ -0.78233, 53.09014 ], [ -0.7826, 53.08976 ], [ -0.78055, 53.08926 ], [ -0.78088, 53.08855 ], [ -0.78013, 53.08791 ], [ -0.77899, 53.08761 ], [ -0.77918, 53.08692 ], [ -0.7775, 53.08654 ], [ -0.77767, 53.08571 ], [ -0.77626, 53.0855 ], [ -0.77465, 53.08367 ], [ -0.77771, 53.08258 ], [ -0.78389, 53.07967 ], [ -0.78496, 53.07877 ], [ -0.7862, 53.07815 ], [ -0.78855, 53.07724 ], [ -0.78948, 53.0776 ], [ -0.78989, 53.07732 ], [ -0.79151, 53.07741 ], [ -0.79176, 53.07633 ], [ -0.79175, 53.07629 ], [ -0.79112, 53.07535 ], [ -0.79395, 53.07486 ], [ -0.79379, 53.07379 ], [ -0.79448, 53.07371 ], [ -0.79538, 53.07485 ], [ -0.79641, 53.07412 ], [ -0.79702, 53.07429 ], [ -0.79741, 53.07401 ], [ -0.79786, 53.07333 ], [ -0.79848, 53.07316 ], [ -0.79868, 53.07284 ], [ -0.79797, 53.07254 ], [ -0.79935, 53.07014 ], [ -0.79896, 53.07005 ], [ -0.79921, 53.06969 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Newark-on-Trent", "bua_code": "E35001494", "msoa_code": "E02005901", "population": 9534, "outputarea_code": "E00144144", "lsoa_code": "E01028292", "la_name": "Newark and Sherwood", "bua_name": "Newark-on-Trent BUASD", "constituency_name": "Newark", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.79184, "latitude": 53.07093, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.79624, 53.06213 ], [ -0.79676, 53.06062 ], [ -0.79777, 53.05769 ], [ -0.80567, 53.05787 ], [ -0.8048, 53.06065 ], [ -0.80742, 53.06098 ], [ -0.80818, 53.06111 ], [ -0.80813, 53.06133 ], [ -0.80901, 53.06183 ], [ -0.80852, 53.06318 ], [ -0.80783, 53.06333 ], [ -0.80755, 53.06397 ], [ -0.80823, 53.06418 ], [ -0.80906, 53.06505 ], [ -0.81002, 53.06602 ], [ -0.80968, 53.06689 ], [ -0.80951, 53.06733 ], [ -0.80836, 53.06775 ], [ -0.80839, 53.06779 ], [ -0.80875, 53.06794 ], [ -0.81203, 53.06924 ], [ -0.81479, 53.07011 ], [ -0.81515, 53.07028 ], [ -0.81319, 53.0718 ], [ -0.81187, 53.07282 ], [ -0.81046, 53.07399 ], [ -0.80989, 53.07437 ], [ -0.8098, 53.07448 ], [ -0.80387, 53.0787 ], [ -0.80283, 53.07826 ], [ -0.80356, 53.07581 ], [ -0.80394, 53.07486 ], [ -0.80438, 53.07367 ], [ -0.80444, 53.0735 ], [ -0.80491, 53.07188 ], [ -0.8028, 53.07135 ], [ -0.80275, 53.07134 ], [ -0.80003, 53.07017 ], [ -0.79921, 53.06969 ], [ -0.79896, 53.07005 ], [ -0.79935, 53.07014 ], [ -0.79797, 53.07254 ], [ -0.79868, 53.07284 ], [ -0.79848, 53.07316 ], [ -0.79786, 53.07333 ], [ -0.79741, 53.07401 ], [ -0.79702, 53.07429 ], [ -0.79641, 53.07412 ], [ -0.79538, 53.07485 ], [ -0.79448, 53.07371 ], [ -0.79379, 53.07379 ], [ -0.79395, 53.07486 ], [ -0.79112, 53.07535 ], [ -0.79175, 53.07629 ], [ -0.79176, 53.07633 ], [ -0.79151, 53.07741 ], [ -0.78989, 53.07732 ], [ -0.78948, 53.0776 ], [ -0.78855, 53.07724 ], [ -0.7862, 53.07815 ], [ -0.78496, 53.07877 ], [ -0.78389, 53.07967 ], [ -0.77771, 53.08258 ], [ -0.77465, 53.08367 ], [ -0.77427, 53.08381 ], [ -0.77422, 53.08347 ], [ -0.77354, 53.08338 ], [ -0.77276, 53.08021 ], [ -0.77244, 53.07937 ], [ -0.77206, 53.07821 ], [ -0.77147, 53.07794 ], [ -0.77092, 53.07633 ], [ -0.77071, 53.07412 ], [ -0.77067, 53.073 ], [ -0.76993, 53.07134 ], [ -0.77273, 53.07102 ], [ -0.77455, 53.06996 ], [ -0.77696, 53.0695 ], [ -0.7815, 53.06793 ], [ -0.78332, 53.06778 ], [ -0.78613, 53.06825 ], [ -0.78688, 53.06726 ], [ -0.78797, 53.0674 ], [ -0.78899, 53.06758 ], [ -0.79113, 53.06587 ], [ -0.79277, 53.06594 ], [ -0.79405, 53.06507 ], [ -0.79469, 53.0651 ], [ -0.79469, 53.06466 ], [ -0.79497, 53.06448 ], [ -0.79547, 53.06436 ], [ -0.79597, 53.06292 ], [ -0.79614, 53.0624 ], [ -0.79624, 53.06213 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Newark-on-Trent", "bua_code": "E35001494", "msoa_code": "E02005902", "population": 8436, "outputarea_code": "E00144225", "lsoa_code": "E01028308", "la_name": "Newark and Sherwood", "bua_name": "Newark-on-Trent BUASD", "constituency_name": "Newark", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.82086, "latitude": 53.06449, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.80678, 53.05714 ], [ -0.8077, 53.05727 ], [ -0.80995, 53.05689 ], [ -0.81034, 53.05694 ], [ -0.81037, 53.0573 ], [ -0.81228, 53.0575 ], [ -0.81443, 53.05763 ], [ -0.82006, 53.05798 ], [ -0.82034, 53.05845 ], [ -0.82117, 53.05849 ], [ -0.82233, 53.05854 ], [ -0.82565, 53.05849 ], [ -0.82569, 53.05826 ], [ -0.82633, 53.0583 ], [ -0.8262, 53.05861 ], [ -0.83154, 53.05849 ], [ -0.83154, 53.05929 ], [ -0.8335, 53.06015 ], [ -0.83298, 53.06071 ], [ -0.83055, 53.06163 ], [ -0.83031, 53.06213 ], [ -0.83095, 53.06241 ], [ -0.83627, 53.06469 ], [ -0.83907, 53.06599 ], [ -0.84045, 53.06681 ], [ -0.8368, 53.06701 ], [ -0.83462, 53.06757 ], [ -0.83137, 53.06872 ], [ -0.83193, 53.06903 ], [ -0.8296, 53.07032 ], [ -0.82954, 53.0713 ], [ -0.82887, 53.07123 ], [ -0.82356, 53.07273 ], [ -0.81968, 53.07197 ], [ -0.81971, 53.07194 ], [ -0.81881, 53.07154 ], [ -0.81685, 53.07196 ], [ -0.81678, 53.07236 ], [ -0.81737, 53.07267 ], [ -0.81671, 53.07267 ], [ -0.81668, 53.07358 ], [ -0.81593, 53.07419 ], [ -0.81499, 53.07382 ], [ -0.81482, 53.07329 ], [ -0.81508, 53.07282 ], [ -0.81592, 53.07268 ], [ -0.81598, 53.07218 ], [ -0.81607, 53.07143 ], [ -0.81541, 53.07113 ], [ -0.81569, 53.07038 ], [ -0.81515, 53.07028 ], [ -0.81479, 53.07011 ], [ -0.81203, 53.06924 ], [ -0.80875, 53.06794 ], [ -0.80839, 53.06779 ], [ -0.80836, 53.06775 ], [ -0.80951, 53.06733 ], [ -0.80968, 53.06689 ], [ -0.81002, 53.06602 ], [ -0.80906, 53.06505 ], [ -0.80823, 53.06418 ], [ -0.80755, 53.06397 ], [ -0.80783, 53.06333 ], [ -0.80852, 53.06318 ], [ -0.80901, 53.06183 ], [ -0.80813, 53.06133 ], [ -0.80818, 53.06111 ], [ -0.80742, 53.06098 ], [ -0.8048, 53.06065 ], [ -0.80567, 53.05787 ], [ -0.80597, 53.05726 ], [ -0.80622, 53.05709 ], [ -0.80678, 53.05714 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Newark-on-Trent", "bua_code": "E35001494", "msoa_code": "E02005903", "population": 9801, "outputarea_code": "E00144108", "lsoa_code": "E01028285", "la_name": "Newark and Sherwood", "bua_name": "Newark-on-Trent BUASD", "constituency_name": "Newark", "citytownclassification": "Medium Town", "urban": "Y", "longitude": -0.78812, "latitude": 53.0552, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.78005, 53.04942 ], [ -0.78612, 53.04602 ], [ -0.79088, 53.04461 ], [ -0.7972, 53.0428 ], [ -0.80218, 53.04571 ], [ -0.80276, 53.04784 ], [ -0.80351, 53.04868 ], [ -0.80497, 53.04907 ], [ -0.80337, 53.05174 ], [ -0.80577, 53.055 ], [ -0.80597, 53.05726 ], [ -0.80567, 53.05787 ], [ -0.79777, 53.05769 ], [ -0.79676, 53.06062 ], [ -0.79624, 53.06213 ], [ -0.79614, 53.0624 ], [ -0.79597, 53.06292 ], [ -0.79547, 53.06436 ], [ -0.79497, 53.06448 ], [ -0.79469, 53.06466 ], [ -0.79469, 53.0651 ], [ -0.79405, 53.06507 ], [ -0.79277, 53.06594 ], [ -0.79113, 53.06587 ], [ -0.78899, 53.06758 ], [ -0.78797, 53.0674 ], [ -0.78768, 53.06675 ], [ -0.78643, 53.06652 ], [ -0.78491, 53.06663 ], [ -0.78177, 53.06527 ], [ -0.77936, 53.06507 ], [ -0.77774, 53.06491 ], [ -0.776, 53.06364 ], [ -0.77585, 53.06334 ], [ -0.77657, 53.06291 ], [ -0.77336, 53.06247 ], [ -0.77394, 53.06169 ], [ -0.7745, 53.06094 ], [ -0.77297, 53.05996 ], [ -0.76846, 53.05727 ], [ -0.76752, 53.05661 ], [ -0.77089, 53.05323 ], [ -0.77351, 53.05146 ], [ -0.77775, 53.04971 ], [ -0.77854, 53.05029 ], [ -0.77904, 53.05 ], [ -0.78005, 53.04942 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "North Hykeham", "bua_code": "E35000853", "msoa_code": "E02005455", "population": 877, "outputarea_code": "E00132933", "lsoa_code": "E01032994", "la_name": "North Kesteven", "bua_name": "North Hykeham BUASD", "constituency_name": "Sleaford and North Hykeham", "citytownclassification": "Small Town", "urban": "Y", "longitude": -0.61844, "latitude": 53.17877, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.62663, 53.17534 ], [ -0.61853, 53.17878 ], [ -0.62038, 53.17939 ], [ -0.62646, 53.18155 ], [ -0.62603, 53.18836 ], [ -0.62291, 53.18832 ], [ -0.62062, 53.18789 ], [ -0.61745, 53.18806 ], [ -0.61675, 53.18638 ], [ -0.61556, 53.18345 ], [ -0.61449, 53.1805 ], [ -0.6139, 53.17974 ], [ -0.61433, 53.17779 ], [ -0.61313, 53.17717 ], [ -0.61069, 53.17555 ], [ -0.60897, 53.17516 ], [ -0.60797, 53.17449 ], [ -0.60638, 53.17393 ], [ -0.60933, 53.17179 ], [ -0.61073, 53.17014 ], [ -0.61091, 53.17057 ], [ -0.62198, 53.17167 ], [ -0.62294, 53.17275 ], [ -0.62663, 53.17534 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "North Hykeham", "bua_code": "E35000853", "msoa_code": "E02006866", "population": 7804, "outputarea_code": "E00133126", "lsoa_code": "E01032993", "la_name": "North Kesteven", "bua_name": "North Hykeham BUASD", "constituency_name": "Sleaford and North Hykeham", "citytownclassification": "Small Town", "urban": "Y", "longitude": -0.58931, "latitude": 53.17904, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.57373, 53.17494 ], [ -0.57151, 53.17528 ], [ -0.57149, 53.17506 ], [ -0.5716, 53.17423 ], [ -0.57263, 53.17329 ], [ -0.57256, 53.1726 ], [ -0.5732, 53.1718 ], [ -0.57301, 53.17104 ], [ -0.57443, 53.1691 ], [ -0.58103, 53.17069 ], [ -0.58826, 53.17146 ], [ -0.58875, 53.17111 ], [ -0.59086, 53.17139 ], [ -0.59597, 53.17189 ], [ -0.59965, 53.17193 ], [ -0.60225, 53.17217 ], [ -0.60638, 53.17393 ], [ -0.60797, 53.17449 ], [ -0.60897, 53.17516 ], [ -0.61069, 53.17555 ], [ -0.61313, 53.17717 ], [ -0.61433, 53.17779 ], [ -0.6139, 53.17974 ], [ -0.61449, 53.1805 ], [ -0.61202, 53.18153 ], [ -0.60762, 53.18336 ], [ -0.604, 53.18489 ], [ -0.60446, 53.18288 ], [ -0.59933, 53.18298 ], [ -0.59933, 53.18334 ], [ -0.59601, 53.18297 ], [ -0.59489, 53.18386 ], [ -0.59409, 53.18396 ], [ -0.59295, 53.18355 ], [ -0.59378, 53.18277 ], [ -0.58999, 53.18162 ], [ -0.5882, 53.18242 ], [ -0.5877, 53.18257 ], [ -0.58634, 53.18337 ], [ -0.58553, 53.18395 ], [ -0.58176, 53.18658 ], [ -0.58028, 53.1876 ], [ -0.57955, 53.18813 ], [ -0.57788, 53.18932 ], [ -0.57575, 53.19081 ], [ -0.57447, 53.19158 ], [ -0.565, 53.18714 ], [ -0.56671, 53.18519 ], [ -0.56976, 53.18369 ], [ -0.57009, 53.18351 ], [ -0.57274, 53.1825 ], [ -0.57569, 53.18206 ], [ -0.57656, 53.1824 ], [ -0.57732, 53.18201 ], [ -0.57973, 53.18123 ], [ -0.58098, 53.1803 ], [ -0.58157, 53.1789 ], [ -0.58132, 53.17754 ], [ -0.58031, 53.17756 ], [ -0.57937, 53.17627 ], [ -0.57788, 53.17651 ], [ -0.5749, 53.17478 ], [ -0.57373, 53.17494 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "North Hykeham", "bua_code": "E35000853", "msoa_code": "E02006867", "population": 7695, "outputarea_code": "E00133109", "lsoa_code": "E01026214", "la_name": "North Kesteven", "bua_name": "North Hykeham BUASD", "constituency_name": "Sleaford and North Hykeham", "citytownclassification": "Small Town", "urban": "Y", "longitude": -0.60017, "latitude": 53.19326, "pgroup": "10k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.58999, 53.18162 ], [ -0.59378, 53.18277 ], [ -0.59295, 53.18355 ], [ -0.59409, 53.18396 ], [ -0.59489, 53.18386 ], [ -0.59601, 53.18297 ], [ -0.59933, 53.18334 ], [ -0.59933, 53.18298 ], [ -0.60446, 53.18288 ], [ -0.604, 53.18489 ], [ -0.60762, 53.18336 ], [ -0.61202, 53.18153 ], [ -0.61449, 53.1805 ], [ -0.61556, 53.18345 ], [ -0.61675, 53.18638 ], [ -0.61745, 53.18806 ], [ -0.61217, 53.18889 ], [ -0.61582, 53.19252 ], [ -0.62027, 53.19704 ], [ -0.62242, 53.20269 ], [ -0.62269, 53.20518 ], [ -0.61972, 53.20808 ], [ -0.61758, 53.20736 ], [ -0.61486, 53.20531 ], [ -0.61501, 53.20357 ], [ -0.61371, 53.20273 ], [ -0.60812, 53.20187 ], [ -0.60671, 53.20196 ], [ -0.60289, 53.20308 ], [ -0.60049, 53.20358 ], [ -0.59992, 53.20343 ], [ -0.59247, 53.2016 ], [ -0.58822, 53.20057 ], [ -0.58896, 53.19987 ], [ -0.58674, 53.19858 ], [ -0.58432, 53.19905 ], [ -0.58411, 53.19882 ], [ -0.58319, 53.19833 ], [ -0.58346, 53.19781 ], [ -0.58286, 53.19705 ], [ -0.58073, 53.19753 ], [ -0.58008, 53.19717 ], [ -0.57825, 53.19625 ], [ -0.57788, 53.19607 ], [ -0.57811, 53.19575 ], [ -0.57422, 53.19382 ], [ -0.57505, 53.19341 ], [ -0.57434, 53.19305 ], [ -0.57455, 53.19286 ], [ -0.57499, 53.19231 ], [ -0.57409, 53.19185 ], [ -0.57447, 53.19158 ], [ -0.57575, 53.19081 ], [ -0.57788, 53.18932 ], [ -0.57955, 53.18813 ], [ -0.58028, 53.1876 ], [ -0.58176, 53.18658 ], [ -0.58553, 53.18395 ], [ -0.58634, 53.18337 ], [ -0.5877, 53.18257 ], [ -0.5882, 53.18242 ], [ -0.58999, 53.18162 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "North Wingfield", "bua_code": "E35000491", "msoa_code": "E02004113", "population": 5146, "outputarea_code": "E00100197", "lsoa_code": "E01019799", "la_name": "North East Derbyshire", "bua_name": "North Wingfield BUASD", "constituency_name": "Bolsover", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.36516, "latitude": 53.19105, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.37938, 53.18352 ], [ -1.38575, 53.18188 ], [ -1.38615, 53.18248 ], [ -1.38881, 53.18264 ], [ -1.38939, 53.18302 ], [ -1.38985, 53.1825 ], [ -1.39098, 53.1837 ], [ -1.39115, 53.1848 ], [ -1.3925, 53.1849 ], [ -1.39374, 53.18617 ], [ -1.39527, 53.18705 ], [ -1.39422, 53.18732 ], [ -1.39402, 53.18793 ], [ -1.39518, 53.18919 ], [ -1.39258, 53.19003 ], [ -1.39374, 53.19144 ], [ -1.39477, 53.19199 ], [ -1.39094, 53.19262 ], [ -1.3909, 53.19173 ], [ -1.38861, 53.19217 ], [ -1.38897, 53.19265 ], [ -1.38636, 53.19417 ], [ -1.38657, 53.19448 ], [ -1.38299, 53.1959 ], [ -1.38145, 53.19921 ], [ -1.37669, 53.19824 ], [ -1.3742, 53.19565 ], [ -1.37078, 53.19608 ], [ -1.3699, 53.19502 ], [ -1.36915, 53.19532 ], [ -1.36848, 53.19462 ], [ -1.36663, 53.19525 ], [ -1.36809, 53.19702 ], [ -1.36596, 53.19837 ], [ -1.36451, 53.19883 ], [ -1.36179, 53.1987 ], [ -1.36073, 53.19955 ], [ -1.35899, 53.19952 ], [ -1.35866, 53.19983 ], [ -1.3443, 53.19984 ], [ -1.34436, 53.19842 ], [ -1.34096, 53.19794 ], [ -1.33921, 53.19663 ], [ -1.33783, 53.1964 ], [ -1.33548, 53.19422 ], [ -1.33602, 53.19352 ], [ -1.34062, 53.19276 ], [ -1.34028, 53.19022 ], [ -1.34126, 53.18757 ], [ -1.34426, 53.18797 ], [ -1.34458, 53.1879 ], [ -1.34436, 53.18714 ], [ -1.34564, 53.18344 ], [ -1.35185, 53.18443 ], [ -1.35222, 53.18551 ], [ -1.35362, 53.18536 ], [ -1.35443, 53.18442 ], [ -1.35673, 53.18545 ], [ -1.35959, 53.18439 ], [ -1.35931, 53.18419 ], [ -1.36182, 53.18264 ], [ -1.36326, 53.18273 ], [ -1.36389, 53.18234 ], [ -1.3663, 53.18262 ], [ -1.36682, 53.18296 ], [ -1.36867, 53.18411 ], [ -1.36949, 53.18327 ], [ -1.37184, 53.18416 ], [ -1.37375, 53.18548 ], [ -1.37521, 53.18742 ], [ -1.37875, 53.18504 ], [ -1.37943, 53.18401 ], [ -1.37919, 53.18355 ], [ -1.37938, 53.18352 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "North Wingfield", "bua_code": "E35000491", "msoa_code": "E02004115", "population": 4089, "outputarea_code": "E00100240", "lsoa_code": "E01019809", "la_name": "North East Derbyshire", "bua_name": "North Wingfield BUASD", "constituency_name": "North East Derbyshire", "citytownclassification": "Small Town", "urban": "Y", "longitude": -1.38634, "latitude": 53.17918, "pgroup": "5k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.38565, 53.17277 ], [ -1.38653, 53.17268 ], [ -1.39052, 53.17073 ], [ -1.39183, 53.17077 ], [ -1.39315, 53.17127 ], [ -1.39359, 53.171 ], [ -1.39502, 53.17231 ], [ -1.39585, 53.17228 ], [ -1.39781, 53.17369 ], [ -1.39942, 53.17427 ], [ -1.39968, 53.17484 ], [ -1.4006, 53.17459 ], [ -1.40069, 53.17493 ], [ -1.40155, 53.17565 ], [ -1.40096, 53.17605 ], [ -1.40116, 53.17635 ], [ -1.40209, 53.17627 ], [ -1.40201, 53.17734 ], [ -1.40131, 53.17814 ], [ -1.40173, 53.1782 ], [ -1.40132, 53.17856 ], [ -1.4018, 53.17897 ], [ -1.40082, 53.18014 ], [ -1.40114, 53.18092 ], [ -1.39984, 53.18206 ], [ -1.39881, 53.18378 ], [ -1.3991, 53.18409 ], [ -1.39984, 53.18399 ], [ -1.40002, 53.18482 ], [ -1.4006, 53.18483 ], [ -1.40046, 53.18578 ], [ -1.39732, 53.18652 ], [ -1.39632, 53.18726 ], [ -1.39527, 53.18705 ], [ -1.39374, 53.18617 ], [ -1.3925, 53.1849 ], [ -1.39115, 53.1848 ], [ -1.39098, 53.1837 ], [ -1.38985, 53.1825 ], [ -1.38939, 53.18302 ], [ -1.38881, 53.18264 ], [ -1.38615, 53.18248 ], [ -1.38575, 53.18188 ], [ -1.37938, 53.18352 ], [ -1.37919, 53.18355 ], [ -1.37943, 53.18401 ], [ -1.37875, 53.18504 ], [ -1.37521, 53.18742 ], [ -1.37375, 53.18548 ], [ -1.37184, 53.18416 ], [ -1.36949, 53.18327 ], [ -1.36867, 53.18411 ], [ -1.36682, 53.18296 ], [ -1.3663, 53.18262 ], [ -1.36389, 53.18234 ], [ -1.36456, 53.18056 ], [ -1.36506, 53.18035 ], [ -1.36791, 53.1801 ], [ -1.36935, 53.18082 ], [ -1.37032, 53.18086 ], [ -1.37117, 53.18065 ], [ -1.37174, 53.17988 ], [ -1.37309, 53.17874 ], [ -1.37358, 53.17738 ], [ -1.37553, 53.17613 ], [ -1.37559, 53.176 ], [ -1.37703, 53.17467 ], [ -1.37744, 53.17374 ], [ -1.37827, 53.17373 ], [ -1.38241, 53.17411 ], [ -1.38325, 53.17346 ], [ -1.38463, 53.17342 ], [ -1.38565, 53.17277 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005623", "population": 5003, "outputarea_code": "E00137301", "lsoa_code": "E01026997", "la_name": "Daventry", "bua_name": "Northampton BUASD", "constituency_name": "Daventry", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.87329, "latitude": 52.29511, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.87551, 52.28232 ], [ -0.87964, 52.28032 ], [ -0.88232, 52.27809 ], [ -0.88512, 52.27539 ], [ -0.88801, 52.27618 ], [ -0.88842, 52.27631 ], [ -0.88836, 52.27773 ], [ -0.89081, 52.2788 ], [ -0.89193, 52.27926 ], [ -0.89342, 52.27984 ], [ -0.89609, 52.28049 ], [ -0.89804, 52.28067 ], [ -0.89821, 52.28032 ], [ -0.89809, 52.28003 ], [ -0.89943, 52.27875 ], [ -0.90283, 52.28015 ], [ -0.90289, 52.27908 ], [ -0.90501, 52.27923 ], [ -0.90507, 52.27823 ], [ -0.90565, 52.27734 ], [ -0.90708, 52.27723 ], [ -0.91024, 52.27672 ], [ -0.91459, 52.2765 ], [ -0.91778, 52.27634 ], [ -0.92045, 52.27658 ], [ -0.92154, 52.27661 ], [ -0.9226, 52.27667 ], [ -0.92286, 52.27515 ], [ -0.92249, 52.27385 ], [ -0.92414, 52.27365 ], [ -0.92369, 52.27449 ], [ -0.92452, 52.27522 ], [ -0.92464, 52.27607 ], [ -0.92516, 52.27604 ], [ -0.92558, 52.2755 ], [ -0.926, 52.27597 ], [ -0.92475, 52.277 ], [ -0.92604, 52.27717 ], [ -0.92554, 52.27741 ], [ -0.92592, 52.27764 ], [ -0.92519, 52.2788 ], [ -0.92578, 52.27945 ], [ -0.92565, 52.28009 ], [ -0.92534, 52.28043 ], [ -0.92396, 52.28027 ], [ -0.92346, 52.28116 ], [ -0.92504, 52.28138 ], [ -0.92451, 52.28202 ], [ -0.925, 52.28348 ], [ -0.92383, 52.28423 ], [ -0.92263, 52.28393 ], [ -0.92265, 52.28467 ], [ -0.92096, 52.28583 ], [ -0.92054, 52.28567 ], [ -0.92041, 52.28607 ], [ -0.92094, 52.28732 ], [ -0.92049, 52.28767 ], [ -0.92068, 52.2882 ], [ -0.92223, 52.28897 ], [ -0.92289, 52.28876 ], [ -0.92373, 52.28924 ], [ -0.92053, 52.29077 ], [ -0.91791, 52.29056 ], [ -0.9096, 52.29304 ], [ -0.90396, 52.29367 ], [ -0.90172, 52.29361 ], [ -0.90113, 52.29363 ], [ -0.88145, 52.29433 ], [ -0.87616, 52.29481 ], [ -0.87558, 52.30035 ], [ -0.87735, 52.30058 ], [ -0.87628, 52.30271 ], [ -0.87708, 52.30286 ], [ -0.87567, 52.30452 ], [ -0.87949, 52.30622 ], [ -0.87826, 52.30786 ], [ -0.88109, 52.30786 ], [ -0.88199, 52.31018 ], [ -0.88693, 52.31408 ], [ -0.88926, 52.31678 ], [ -0.88761, 52.31661 ], [ -0.88776, 52.31685 ], [ -0.88731, 52.31695 ], [ -0.88773, 52.31709 ], [ -0.88712, 52.31751 ], [ -0.88803, 52.31761 ], [ -0.8879, 52.31818 ], [ -0.88734, 52.31811 ], [ -0.88754, 52.31841 ], [ -0.88701, 52.31851 ], [ -0.88672, 52.31928 ], [ -0.88579, 52.31936 ], [ -0.88522, 52.31992 ], [ -0.88447, 52.3201 ], [ -0.88365, 52.31985 ], [ -0.88293, 52.32022 ], [ -0.88214, 52.32021 ], [ -0.88176, 52.31992 ], [ -0.88152, 52.32019 ], [ -0.87935, 52.32046 ], [ -0.87665, 52.32032 ], [ -0.87567, 52.32022 ], [ -0.87255, 52.31883 ], [ -0.8721, 52.31909 ], [ -0.86974, 52.3191 ], [ -0.86869, 52.31895 ], [ -0.86751, 52.31814 ], [ -0.86722, 52.31849 ], [ -0.86637, 52.31819 ], [ -0.86582, 52.31856 ], [ -0.86432, 52.31828 ], [ -0.8639, 52.31851 ], [ -0.86325, 52.31816 ], [ -0.86308, 52.31858 ], [ -0.86282, 52.31831 ], [ -0.86212, 52.31864 ], [ -0.86164, 52.31846 ], [ -0.86181, 52.31919 ], [ -0.86134, 52.31905 ], [ -0.86127, 52.31945 ], [ -0.86029, 52.31932 ], [ -0.86007, 52.31985 ], [ -0.85967, 52.31949 ], [ -0.85864, 52.31965 ], [ -0.85845, 52.31929 ], [ -0.85728, 52.31979 ], [ -0.85605, 52.31967 ], [ -0.8559, 52.32067 ], [ -0.85536, 52.32075 ], [ -0.85545, 52.32103 ], [ -0.85507, 52.32098 ], [ -0.85515, 52.32131 ], [ -0.85448, 52.32159 ], [ -0.85479, 52.32197 ], [ -0.85448, 52.32241 ], [ -0.85395, 52.32226 ], [ -0.85334, 52.32073 ], [ -0.85313, 52.32016 ], [ -0.85152, 52.31721 ], [ -0.84784, 52.31531 ], [ -0.84635, 52.31394 ], [ -0.84656, 52.31346 ], [ -0.84529, 52.31306 ], [ -0.84593, 52.3117 ], [ -0.84584, 52.30863 ], [ -0.84433, 52.30602 ], [ -0.84466, 52.30518 ], [ -0.84315, 52.30431 ], [ -0.84096, 52.30311 ], [ -0.83848, 52.29682 ], [ -0.83888, 52.29669 ], [ -0.83454, 52.29496 ], [ -0.83806, 52.28897 ], [ -0.83975, 52.2871 ], [ -0.83869, 52.2865 ], [ -0.83803, 52.28485 ], [ -0.83832, 52.28318 ], [ -0.83707, 52.28137 ], [ -0.83915, 52.28122 ], [ -0.83998, 52.28094 ], [ -0.8444, 52.28091 ], [ -0.84462, 52.28059 ], [ -0.84493, 52.27986 ], [ -0.8466, 52.28009 ], [ -0.84936, 52.27773 ], [ -0.85219, 52.27931 ], [ -0.85151, 52.2809 ], [ -0.85485, 52.28156 ], [ -0.85575, 52.28179 ], [ -0.85593, 52.2816 ], [ -0.85714, 52.28041 ], [ -0.85766, 52.27991 ], [ -0.85792, 52.28001 ], [ -0.85977, 52.2811 ], [ -0.86214, 52.27995 ], [ -0.86486, 52.27859 ], [ -0.86743, 52.28019 ], [ -0.87176, 52.28252 ], [ -0.87394, 52.28271 ], [ -0.87551, 52.28232 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005650", "population": 7079, "outputarea_code": "E00138086", "lsoa_code": "E01027145", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton North", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.8908, "latitude": 52.27302, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.89664, 52.26598 ], [ -0.89891, 52.26457 ], [ -0.89982, 52.26496 ], [ -0.89982, 52.26527 ], [ -0.89733, 52.26701 ], [ -0.89493, 52.26852 ], [ -0.89537, 52.26878 ], [ -0.8932, 52.26982 ], [ -0.89342, 52.27005 ], [ -0.89292, 52.27025 ], [ -0.89316, 52.27064 ], [ -0.89366, 52.2705 ], [ -0.89385, 52.27082 ], [ -0.89441, 52.27078 ], [ -0.89466, 52.27146 ], [ -0.89557, 52.27056 ], [ -0.8953, 52.27023 ], [ -0.89659, 52.2702 ], [ -0.89704, 52.27012 ], [ -0.89754, 52.27054 ], [ -0.89679, 52.27154 ], [ -0.89746, 52.27223 ], [ -0.89901, 52.27198 ], [ -0.899, 52.27136 ], [ -0.8995, 52.2711 ], [ -0.90058, 52.27112 ], [ -0.89983, 52.27154 ], [ -0.9002, 52.27244 ], [ -0.90081, 52.27394 ], [ -0.89993, 52.27556 ], [ -0.90029, 52.27549 ], [ -0.90018, 52.27577 ], [ -0.90123, 52.27666 ], [ -0.90275, 52.27727 ], [ -0.9031, 52.2778 ], [ -0.90442, 52.27783 ], [ -0.90507, 52.27823 ], [ -0.90501, 52.27923 ], [ -0.90289, 52.27908 ], [ -0.90283, 52.28015 ], [ -0.89943, 52.27875 ], [ -0.89809, 52.28003 ], [ -0.89821, 52.28032 ], [ -0.89804, 52.28067 ], [ -0.89609, 52.28049 ], [ -0.89342, 52.27984 ], [ -0.89193, 52.27926 ], [ -0.89081, 52.2788 ], [ -0.88836, 52.27773 ], [ -0.88842, 52.27631 ], [ -0.88801, 52.27618 ], [ -0.88512, 52.27539 ], [ -0.88232, 52.27809 ], [ -0.88053, 52.27699 ], [ -0.87797, 52.27269 ], [ -0.88079, 52.27091 ], [ -0.88156, 52.26936 ], [ -0.88255, 52.26823 ], [ -0.88293, 52.26543 ], [ -0.88615, 52.266 ], [ -0.88676, 52.2664 ], [ -0.88768, 52.26651 ], [ -0.88682, 52.2682 ], [ -0.8888, 52.26712 ], [ -0.88986, 52.26728 ], [ -0.88987, 52.26523 ], [ -0.88929, 52.26474 ], [ -0.88999, 52.26448 ], [ -0.89238, 52.2651 ], [ -0.8927, 52.26558 ], [ -0.89188, 52.26583 ], [ -0.89216, 52.2663 ], [ -0.89363, 52.26607 ], [ -0.89386, 52.26684 ], [ -0.89436, 52.26707 ], [ -0.8946, 52.26673 ], [ -0.89664, 52.26598 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005651", "population": 6337, "outputarea_code": "E00138457", "lsoa_code": "E01027222", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton North", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.86697, "latitude": 52.27341, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.86465, 52.26547 ], [ -0.86911, 52.26151 ], [ -0.86939, 52.26115 ], [ -0.87001, 52.26125 ], [ -0.86991, 52.26194 ], [ -0.87056, 52.26215 ], [ -0.87085, 52.26265 ], [ -0.86876, 52.26433 ], [ -0.86857, 52.26478 ], [ -0.86938, 52.26514 ], [ -0.87185, 52.26655 ], [ -0.87093, 52.26697 ], [ -0.87104, 52.26731 ], [ -0.87224, 52.26681 ], [ -0.87218, 52.26632 ], [ -0.87367, 52.2646 ], [ -0.87412, 52.26423 ], [ -0.8754, 52.26431 ], [ -0.87925, 52.26378 ], [ -0.88301, 52.26434 ], [ -0.88294, 52.26539 ], [ -0.88293, 52.26543 ], [ -0.88255, 52.26823 ], [ -0.88156, 52.26936 ], [ -0.88079, 52.27091 ], [ -0.87797, 52.27269 ], [ -0.88053, 52.27699 ], [ -0.88232, 52.27809 ], [ -0.87964, 52.28032 ], [ -0.87551, 52.28232 ], [ -0.87394, 52.28271 ], [ -0.87176, 52.28252 ], [ -0.86743, 52.28019 ], [ -0.86486, 52.27859 ], [ -0.86214, 52.27995 ], [ -0.85977, 52.2811 ], [ -0.85792, 52.28001 ], [ -0.85766, 52.27991 ], [ -0.85714, 52.28041 ], [ -0.85593, 52.2816 ], [ -0.85575, 52.28179 ], [ -0.85485, 52.28156 ], [ -0.85151, 52.2809 ], [ -0.85219, 52.27931 ], [ -0.84936, 52.27773 ], [ -0.8466, 52.28009 ], [ -0.84493, 52.27986 ], [ -0.84585, 52.27589 ], [ -0.84679, 52.27596 ], [ -0.84874, 52.27608 ], [ -0.8495, 52.27585 ], [ -0.85307, 52.27235 ], [ -0.85341, 52.27164 ], [ -0.85355, 52.27141 ], [ -0.85492, 52.2703 ], [ -0.85599, 52.26946 ], [ -0.85881, 52.26823 ], [ -0.85927, 52.268 ], [ -0.85996, 52.26783 ], [ -0.86321, 52.2666 ], [ -0.86396, 52.26605 ], [ -0.86465, 52.26547 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005652", "population": 5878, "outputarea_code": "E00138082", "lsoa_code": "E01027146", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton North", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.9069, "latitude": 52.27178, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.89704, 52.27012 ], [ -0.89659, 52.2702 ], [ -0.8953, 52.27023 ], [ -0.89557, 52.27056 ], [ -0.89466, 52.27146 ], [ -0.89441, 52.27078 ], [ -0.89385, 52.27082 ], [ -0.89366, 52.2705 ], [ -0.89316, 52.27064 ], [ -0.89292, 52.27025 ], [ -0.89342, 52.27005 ], [ -0.8932, 52.26982 ], [ -0.89537, 52.26878 ], [ -0.89493, 52.26852 ], [ -0.89733, 52.26701 ], [ -0.89982, 52.26527 ], [ -0.89982, 52.26496 ], [ -0.90008, 52.26278 ], [ -0.90134, 52.26407 ], [ -0.90284, 52.26486 ], [ -0.90453, 52.26569 ], [ -0.90999, 52.26828 ], [ -0.91053, 52.26857 ], [ -0.91131, 52.26898 ], [ -0.91136, 52.26901 ], [ -0.91215, 52.2694 ], [ -0.91522, 52.27088 ], [ -0.91609, 52.27124 ], [ -0.917, 52.27163 ], [ -0.91805, 52.2721 ], [ -0.91901, 52.27258 ], [ -0.92094, 52.27424 ], [ -0.92154, 52.27661 ], [ -0.92045, 52.27658 ], [ -0.91778, 52.27634 ], [ -0.91459, 52.2765 ], [ -0.91024, 52.27672 ], [ -0.90708, 52.27723 ], [ -0.90565, 52.27734 ], [ -0.90507, 52.27823 ], [ -0.90442, 52.27783 ], [ -0.9031, 52.2778 ], [ -0.90275, 52.27727 ], [ -0.90123, 52.27666 ], [ -0.90018, 52.27577 ], [ -0.90029, 52.27549 ], [ -0.89993, 52.27556 ], [ -0.90081, 52.27394 ], [ -0.9002, 52.27244 ], [ -0.89983, 52.27154 ], [ -0.90058, 52.27112 ], [ -0.8995, 52.2711 ], [ -0.899, 52.27136 ], [ -0.89901, 52.27198 ], [ -0.89746, 52.27223 ], [ -0.89679, 52.27154 ], [ -0.89754, 52.27054 ], [ -0.89704, 52.27012 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005653", "population": 8713, "outputarea_code": "E00138349", "lsoa_code": "E01027195", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton North", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.83656, "latitude": 52.27235, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.83517, 52.26105 ], [ -0.83473, 52.26059 ], [ -0.83599, 52.25978 ], [ -0.83568, 52.25892 ], [ -0.83786, 52.25805 ], [ -0.83834, 52.25744 ], [ -0.83697, 52.25691 ], [ -0.83501, 52.25464 ], [ -0.83564, 52.25445 ], [ -0.8384, 52.2571 ], [ -0.83955, 52.2587 ], [ -0.84022, 52.25998 ], [ -0.84065, 52.26073 ], [ -0.84098, 52.26129 ], [ -0.8411, 52.26152 ], [ -0.84292, 52.26488 ], [ -0.84325, 52.26555 ], [ -0.84374, 52.26778 ], [ -0.84375, 52.268 ], [ -0.84392, 52.26898 ], [ -0.84464, 52.27087 ], [ -0.84636, 52.27319 ], [ -0.84656, 52.2742 ], [ -0.84601, 52.27551 ], [ -0.84585, 52.27589 ], [ -0.84493, 52.27986 ], [ -0.84462, 52.28059 ], [ -0.8444, 52.28091 ], [ -0.83998, 52.28094 ], [ -0.83915, 52.28122 ], [ -0.83707, 52.28137 ], [ -0.83264, 52.27923 ], [ -0.83064, 52.28041 ], [ -0.82907, 52.28084 ], [ -0.82716, 52.2809 ], [ -0.82681, 52.27978 ], [ -0.82515, 52.27854 ], [ -0.82472, 52.27785 ], [ -0.82097, 52.27499 ], [ -0.8235, 52.27528 ], [ -0.82486, 52.27589 ], [ -0.82489, 52.27643 ], [ -0.8256, 52.27668 ], [ -0.82718, 52.27613 ], [ -0.82752, 52.2757 ], [ -0.82753, 52.27559 ], [ -0.8272, 52.27378 ], [ -0.82767, 52.27252 ], [ -0.82782, 52.27158 ], [ -0.82827, 52.27046 ], [ -0.82886, 52.26879 ], [ -0.82877, 52.26749 ], [ -0.82968, 52.26728 ], [ -0.83102, 52.26825 ], [ -0.83183, 52.26803 ], [ -0.83246, 52.267 ], [ -0.83557, 52.26646 ], [ -0.83562, 52.26647 ], [ -0.83582, 52.26547 ], [ -0.83852, 52.26495 ], [ -0.83797, 52.26387 ], [ -0.83723, 52.26245 ], [ -0.83559, 52.26268 ], [ -0.83676, 52.26188 ], [ -0.83742, 52.2619 ], [ -0.83767, 52.26118 ], [ -0.83569, 52.26154 ], [ -0.83517, 52.26105 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005654", "population": 8597, "outputarea_code": "E00138241", "lsoa_code": "E01027178", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton South", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.81507, "latitude": 52.26942, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.80322, 52.26564 ], [ -0.80321, 52.26543 ], [ -0.80267, 52.26299 ], [ -0.80786, 52.26194 ], [ -0.81048, 52.26144 ], [ -0.81111, 52.26154 ], [ -0.8115, 52.26164 ], [ -0.81427, 52.26194 ], [ -0.81442, 52.26347 ], [ -0.81449, 52.26553 ], [ -0.81484, 52.26688 ], [ -0.81539, 52.26865 ], [ -0.8178, 52.26837 ], [ -0.81911, 52.26921 ], [ -0.81954, 52.26892 ], [ -0.82032, 52.26846 ], [ -0.8195, 52.26806 ], [ -0.81955, 52.26772 ], [ -0.82071, 52.2681 ], [ -0.82333, 52.26824 ], [ -0.82378, 52.26694 ], [ -0.82491, 52.26619 ], [ -0.82569, 52.2673 ], [ -0.82671, 52.26676 ], [ -0.82833, 52.26653 ], [ -0.82886, 52.26879 ], [ -0.82827, 52.27046 ], [ -0.82782, 52.27158 ], [ -0.82767, 52.27252 ], [ -0.8272, 52.27378 ], [ -0.82753, 52.27559 ], [ -0.82752, 52.2757 ], [ -0.82718, 52.27613 ], [ -0.8256, 52.27668 ], [ -0.82489, 52.27643 ], [ -0.82486, 52.27589 ], [ -0.8235, 52.27528 ], [ -0.82097, 52.27499 ], [ -0.81979, 52.27425 ], [ -0.81899, 52.27425 ], [ -0.816, 52.27563 ], [ -0.81507, 52.27501 ], [ -0.80913, 52.27535 ], [ -0.80879, 52.27467 ], [ -0.80842, 52.27382 ], [ -0.8075, 52.2725 ], [ -0.80555, 52.27049 ], [ -0.80304, 52.26678 ], [ -0.80322, 52.26564 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005655", "population": 6041, "outputarea_code": "E00138211", "lsoa_code": "E01027171", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton North", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.85317, "latitude": 52.2653, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.85384, 52.25685 ], [ -0.85432, 52.25678 ], [ -0.85429, 52.25717 ], [ -0.85281, 52.25863 ], [ -0.85308, 52.25895 ], [ -0.85351, 52.25925 ], [ -0.8533, 52.25983 ], [ -0.84945, 52.26059 ], [ -0.85076, 52.26155 ], [ -0.84957, 52.26178 ], [ -0.84991, 52.26249 ], [ -0.85093, 52.26465 ], [ -0.8511, 52.26496 ], [ -0.85373, 52.26492 ], [ -0.85538, 52.26439 ], [ -0.85623, 52.26379 ], [ -0.86068, 52.26383 ], [ -0.86187, 52.26468 ], [ -0.86317, 52.26338 ], [ -0.86235, 52.26199 ], [ -0.8622, 52.26158 ], [ -0.86096, 52.26142 ], [ -0.86083, 52.2606 ], [ -0.86146, 52.26007 ], [ -0.86244, 52.25991 ], [ -0.86173, 52.25904 ], [ -0.86217, 52.25806 ], [ -0.86442, 52.25823 ], [ -0.86487, 52.25871 ], [ -0.86573, 52.25882 ], [ -0.86638, 52.2586 ], [ -0.8688, 52.25822 ], [ -0.86879, 52.25783 ], [ -0.86927, 52.2577 ], [ -0.8696, 52.25808 ], [ -0.87048, 52.25793 ], [ -0.87074, 52.25829 ], [ -0.87127, 52.25819 ], [ -0.87061, 52.25984 ], [ -0.87036, 52.26008 ], [ -0.87022, 52.2602 ], [ -0.86939, 52.26115 ], [ -0.86911, 52.26151 ], [ -0.86465, 52.26547 ], [ -0.86396, 52.26605 ], [ -0.86321, 52.2666 ], [ -0.85996, 52.26783 ], [ -0.85927, 52.268 ], [ -0.85881, 52.26823 ], [ -0.85599, 52.26946 ], [ -0.85492, 52.2703 ], [ -0.85355, 52.27141 ], [ -0.85341, 52.27164 ], [ -0.85307, 52.27235 ], [ -0.8495, 52.27585 ], [ -0.84874, 52.27608 ], [ -0.84679, 52.27596 ], [ -0.84585, 52.27589 ], [ -0.84601, 52.27551 ], [ -0.84656, 52.2742 ], [ -0.84636, 52.27319 ], [ -0.84464, 52.27087 ], [ -0.84392, 52.26898 ], [ -0.84375, 52.268 ], [ -0.84374, 52.26778 ], [ -0.84325, 52.26555 ], [ -0.84292, 52.26488 ], [ -0.8411, 52.26152 ], [ -0.84098, 52.26129 ], [ -0.84065, 52.26073 ], [ -0.84022, 52.25998 ], [ -0.84595, 52.25967 ], [ -0.84725, 52.25858 ], [ -0.84712, 52.25803 ], [ -0.84809, 52.25769 ], [ -0.85077, 52.25797 ], [ -0.85118, 52.25768 ], [ -0.85079, 52.25722 ], [ -0.85136, 52.25703 ], [ -0.8525, 52.25667 ], [ -0.85284, 52.25714 ], [ -0.85384, 52.25685 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005656", "population": 6169, "outputarea_code": "E00138348", "lsoa_code": "E01027197", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton North", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.827, "latitude": 52.26284, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.8268, 52.25869 ], [ -0.83003, 52.25664 ], [ -0.83285, 52.25539 ], [ -0.83501, 52.25464 ], [ -0.83697, 52.25691 ], [ -0.83834, 52.25744 ], [ -0.83786, 52.25805 ], [ -0.83568, 52.25892 ], [ -0.83599, 52.25978 ], [ -0.83473, 52.26059 ], [ -0.83517, 52.26105 ], [ -0.83569, 52.26154 ], [ -0.83767, 52.26118 ], [ -0.83742, 52.2619 ], [ -0.83676, 52.26188 ], [ -0.83559, 52.26268 ], [ -0.83723, 52.26245 ], [ -0.83797, 52.26387 ], [ -0.83852, 52.26495 ], [ -0.83582, 52.26547 ], [ -0.83562, 52.26647 ], [ -0.83557, 52.26646 ], [ -0.83246, 52.267 ], [ -0.83183, 52.26803 ], [ -0.83102, 52.26825 ], [ -0.82968, 52.26728 ], [ -0.82877, 52.26749 ], [ -0.82886, 52.26879 ], [ -0.82833, 52.26653 ], [ -0.82671, 52.26676 ], [ -0.82569, 52.2673 ], [ -0.82491, 52.26619 ], [ -0.82378, 52.26694 ], [ -0.82333, 52.26824 ], [ -0.82071, 52.2681 ], [ -0.81955, 52.26772 ], [ -0.8195, 52.26806 ], [ -0.82032, 52.26846 ], [ -0.81954, 52.26892 ], [ -0.81911, 52.26921 ], [ -0.8178, 52.26837 ], [ -0.81539, 52.26865 ], [ -0.81484, 52.26688 ], [ -0.81449, 52.26553 ], [ -0.81442, 52.26347 ], [ -0.81427, 52.26194 ], [ -0.81682, 52.26181 ], [ -0.81886, 52.26126 ], [ -0.81907, 52.26121 ], [ -0.82012, 52.26102 ], [ -0.82427, 52.25994 ], [ -0.8268, 52.25869 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005657", "population": 5987, "outputarea_code": "E00138323", "lsoa_code": "E01027190", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton North", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.91021, "latitude": 52.26226, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.89954, 52.25388 ], [ -0.89817, 52.25351 ], [ -0.89743, 52.25462 ], [ -0.89672, 52.25447 ], [ -0.8965, 52.25411 ], [ -0.89712, 52.25384 ], [ -0.89655, 52.25294 ], [ -0.89727, 52.25225 ], [ -0.89895, 52.25177 ], [ -0.89926, 52.25225 ], [ -0.90316, 52.2509 ], [ -0.90857, 52.25094 ], [ -0.91121, 52.25445 ], [ -0.91127, 52.25458 ], [ -0.91196, 52.25685 ], [ -0.9128, 52.25958 ], [ -0.91494, 52.26342 ], [ -0.91715, 52.26539 ], [ -0.91956, 52.26682 ], [ -0.92581, 52.26893 ], [ -0.93242, 52.27078 ], [ -0.93231, 52.27099 ], [ -0.92901, 52.26994 ], [ -0.92824, 52.27118 ], [ -0.92466, 52.27172 ], [ -0.92518, 52.27262 ], [ -0.92461, 52.27307 ], [ -0.92414, 52.27365 ], [ -0.92249, 52.27385 ], [ -0.92286, 52.27515 ], [ -0.9226, 52.27667 ], [ -0.92154, 52.27661 ], [ -0.92094, 52.27424 ], [ -0.91901, 52.27258 ], [ -0.91805, 52.2721 ], [ -0.917, 52.27163 ], [ -0.91609, 52.27124 ], [ -0.91522, 52.27088 ], [ -0.91215, 52.2694 ], [ -0.91136, 52.26901 ], [ -0.91131, 52.26898 ], [ -0.91053, 52.26857 ], [ -0.90999, 52.26828 ], [ -0.90453, 52.26569 ], [ -0.90284, 52.26486 ], [ -0.90134, 52.26407 ], [ -0.90008, 52.26278 ], [ -0.90018, 52.26242 ], [ -0.90028, 52.26206 ], [ -0.90037, 52.26134 ], [ -0.9001, 52.26001 ], [ -0.89951, 52.25935 ], [ -0.89948, 52.25933 ], [ -0.89662, 52.25779 ], [ -0.89711, 52.25746 ], [ -0.89775, 52.25769 ], [ -0.89795, 52.25596 ], [ -0.89859, 52.25612 ], [ -0.89867, 52.25422 ], [ -0.89954, 52.25448 ], [ -0.89954, 52.25388 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005658", "population": 6338, "outputarea_code": "E00138340", "lsoa_code": "E01027192", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton North", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.89192, "latitude": 52.26082, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.89207, 52.25601 ], [ -0.89119, 52.25506 ], [ -0.89596, 52.25317 ], [ -0.89655, 52.25294 ], [ -0.89712, 52.25384 ], [ -0.8965, 52.25411 ], [ -0.89672, 52.25447 ], [ -0.89743, 52.25462 ], [ -0.89817, 52.25351 ], [ -0.89954, 52.25388 ], [ -0.89954, 52.25448 ], [ -0.89867, 52.25422 ], [ -0.89859, 52.25612 ], [ -0.89795, 52.25596 ], [ -0.89775, 52.25769 ], [ -0.89711, 52.25746 ], [ -0.89662, 52.25779 ], [ -0.89948, 52.25933 ], [ -0.89951, 52.25935 ], [ -0.9001, 52.26001 ], [ -0.90037, 52.26134 ], [ -0.90028, 52.26206 ], [ -0.90018, 52.26242 ], [ -0.90008, 52.26278 ], [ -0.89982, 52.26496 ], [ -0.89891, 52.26457 ], [ -0.89664, 52.26598 ], [ -0.8946, 52.26673 ], [ -0.89436, 52.26707 ], [ -0.89386, 52.26684 ], [ -0.89363, 52.26607 ], [ -0.89216, 52.2663 ], [ -0.89188, 52.26583 ], [ -0.8927, 52.26558 ], [ -0.89238, 52.2651 ], [ -0.88999, 52.26448 ], [ -0.88929, 52.26474 ], [ -0.88987, 52.26523 ], [ -0.88986, 52.26728 ], [ -0.8888, 52.26712 ], [ -0.88682, 52.2682 ], [ -0.88768, 52.26651 ], [ -0.88676, 52.2664 ], [ -0.88615, 52.266 ], [ -0.88293, 52.26543 ], [ -0.88294, 52.26539 ], [ -0.88301, 52.26434 ], [ -0.88301, 52.26425 ], [ -0.88313, 52.26368 ], [ -0.88409, 52.26069 ], [ -0.88322, 52.25911 ], [ -0.88338, 52.25835 ], [ -0.88438, 52.25788 ], [ -0.89036, 52.25602 ], [ -0.8913, 52.25605 ], [ -0.89226, 52.2562 ], [ -0.89207, 52.25601 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005659", "population": 5538, "outputarea_code": "E00138266", "lsoa_code": "E01027179", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton North", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.8495, "latitude": 52.25586, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.85686, 52.25062 ], [ -0.85761, 52.25283 ], [ -0.85824, 52.2535 ], [ -0.85836, 52.25362 ], [ -0.85898, 52.25429 ], [ -0.85983, 52.2554 ], [ -0.86061, 52.25627 ], [ -0.86229, 52.25719 ], [ -0.86022, 52.25854 ], [ -0.85976, 52.25884 ], [ -0.8589, 52.25937 ], [ -0.85787, 52.25981 ], [ -0.8563, 52.26041 ], [ -0.85507, 52.26066 ], [ -0.85076, 52.26155 ], [ -0.84945, 52.26059 ], [ -0.8533, 52.25983 ], [ -0.85351, 52.25925 ], [ -0.85308, 52.25895 ], [ -0.85281, 52.25863 ], [ -0.85429, 52.25717 ], [ -0.85432, 52.25678 ], [ -0.85384, 52.25685 ], [ -0.85284, 52.25714 ], [ -0.8525, 52.25667 ], [ -0.85136, 52.25703 ], [ -0.85079, 52.25722 ], [ -0.85118, 52.25768 ], [ -0.85077, 52.25797 ], [ -0.84809, 52.25769 ], [ -0.84712, 52.25803 ], [ -0.84725, 52.25858 ], [ -0.84595, 52.25967 ], [ -0.84022, 52.25998 ], [ -0.83955, 52.2587 ], [ -0.8384, 52.2571 ], [ -0.83564, 52.25445 ], [ -0.83864, 52.25361 ], [ -0.8395, 52.25343 ], [ -0.84494, 52.25269 ], [ -0.84529, 52.25265 ], [ -0.84942, 52.25173 ], [ -0.85066, 52.25146 ], [ -0.85479, 52.25093 ], [ -0.85485, 52.25092 ], [ -0.85686, 52.25062 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005660", "population": 5920, "outputarea_code": "E00138060", "lsoa_code": "E01027140", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton South", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.81242, "latitude": 52.24764, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.81853, 52.24725 ], [ -0.81363, 52.24923 ], [ -0.81412, 52.2495 ], [ -0.81595, 52.24959 ], [ -0.81672, 52.25012 ], [ -0.81729, 52.25233 ], [ -0.81908, 52.25399 ], [ -0.81938, 52.25435 ], [ -0.82019, 52.25557 ], [ -0.81943, 52.25587 ], [ -0.81737, 52.25501 ], [ -0.81654, 52.25546 ], [ -0.81589, 52.25544 ], [ -0.81501, 52.25641 ], [ -0.81551, 52.25653 ], [ -0.81603, 52.25614 ], [ -0.81671, 52.25645 ], [ -0.81714, 52.25746 ], [ -0.81601, 52.25743 ], [ -0.81557, 52.25784 ], [ -0.81378, 52.25794 ], [ -0.81352, 52.25866 ], [ -0.8117, 52.25976 ], [ -0.81275, 52.25985 ], [ -0.81271, 52.26035 ], [ -0.81133, 52.26047 ], [ -0.8115, 52.26164 ], [ -0.81111, 52.26154 ], [ -0.81048, 52.26144 ], [ -0.80786, 52.26194 ], [ -0.80267, 52.26299 ], [ -0.80179, 52.26226 ], [ -0.80169, 52.26099 ], [ -0.80125, 52.26067 ], [ -0.8018, 52.25929 ], [ -0.80155, 52.25882 ], [ -0.8018, 52.25861 ], [ -0.80123, 52.25846 ], [ -0.8013, 52.25818 ], [ -0.80097, 52.25792 ], [ -0.80142, 52.25753 ], [ -0.80132, 52.25351 ], [ -0.80147, 52.25267 ], [ -0.79508, 52.25408 ], [ -0.79142, 52.24224 ], [ -0.79135, 52.24196 ], [ -0.79171, 52.2419 ], [ -0.79369, 52.24157 ], [ -0.79893, 52.24122 ], [ -0.80284, 52.24053 ], [ -0.80326, 52.24211 ], [ -0.80455, 52.24146 ], [ -0.80552, 52.24154 ], [ -0.80673, 52.24119 ], [ -0.80841, 52.24156 ], [ -0.80962, 52.2412 ], [ -0.8117, 52.24155 ], [ -0.81362, 52.24081 ], [ -0.81465, 52.2399 ], [ -0.81766, 52.23893 ], [ -0.82166, 52.23858 ], [ -0.82243, 52.238 ], [ -0.82276, 52.23827 ], [ -0.82285, 52.23801 ], [ -0.82886, 52.23847 ], [ -0.83053, 52.23797 ], [ -0.83271, 52.23788 ], [ -0.83405, 52.23817 ], [ -0.83491, 52.23746 ], [ -0.83678, 52.23797 ], [ -0.84006, 52.23738 ], [ -0.84081, 52.23816 ], [ -0.84466, 52.24019 ], [ -0.84267, 52.24162 ], [ -0.84086, 52.24277 ], [ -0.83677, 52.24501 ], [ -0.83753, 52.2456 ], [ -0.83685, 52.24574 ], [ -0.83633, 52.24551 ], [ -0.83565, 52.24485 ], [ -0.83612, 52.24436 ], [ -0.83495, 52.24378 ], [ -0.83502, 52.24297 ], [ -0.83599, 52.24233 ], [ -0.83364, 52.2414 ], [ -0.82623, 52.24497 ], [ -0.82291, 52.24595 ], [ -0.81927, 52.24581 ], [ -0.81853, 52.24725 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005661", "population": 6834, "outputarea_code": "E00138212", "lsoa_code": "E01027168", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton North", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.86196, "latitude": 52.2568, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.86874, 52.24938 ], [ -0.86904, 52.24994 ], [ -0.86911, 52.25012 ], [ -0.86952, 52.25135 ], [ -0.87009, 52.25287 ], [ -0.87038, 52.25412 ], [ -0.87076, 52.25577 ], [ -0.87113, 52.25736 ], [ -0.87127, 52.25819 ], [ -0.87074, 52.25829 ], [ -0.87048, 52.25793 ], [ -0.8696, 52.25808 ], [ -0.86927, 52.2577 ], [ -0.86879, 52.25783 ], [ -0.8688, 52.25822 ], [ -0.86638, 52.2586 ], [ -0.86573, 52.25882 ], [ -0.86487, 52.25871 ], [ -0.86442, 52.25823 ], [ -0.86217, 52.25806 ], [ -0.86173, 52.25904 ], [ -0.86244, 52.25991 ], [ -0.86146, 52.26007 ], [ -0.86083, 52.2606 ], [ -0.86096, 52.26142 ], [ -0.8622, 52.26158 ], [ -0.86235, 52.26199 ], [ -0.86317, 52.26338 ], [ -0.86187, 52.26468 ], [ -0.86068, 52.26383 ], [ -0.85623, 52.26379 ], [ -0.85538, 52.26439 ], [ -0.85373, 52.26492 ], [ -0.8511, 52.26496 ], [ -0.85093, 52.26465 ], [ -0.84991, 52.26249 ], [ -0.84957, 52.26178 ], [ -0.85076, 52.26155 ], [ -0.85507, 52.26066 ], [ -0.8563, 52.26041 ], [ -0.85787, 52.25981 ], [ -0.8589, 52.25937 ], [ -0.85976, 52.25884 ], [ -0.86022, 52.25854 ], [ -0.86229, 52.25719 ], [ -0.86061, 52.25627 ], [ -0.85983, 52.2554 ], [ -0.85898, 52.25429 ], [ -0.85836, 52.25362 ], [ -0.85824, 52.2535 ], [ -0.85761, 52.25283 ], [ -0.85686, 52.25062 ], [ -0.85694, 52.25061 ], [ -0.85984, 52.2505 ], [ -0.86273, 52.25 ], [ -0.86874, 52.24938 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005662", "population": 6779, "outputarea_code": "E00138036", "lsoa_code": "E01027136", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton North", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.87512, "latitude": 52.25727, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.86904, 52.24761 ], [ -0.87056, 52.24548 ], [ -0.87171, 52.24504 ], [ -0.87376, 52.24568 ], [ -0.87318, 52.24617 ], [ -0.87229, 52.24645 ], [ -0.87307, 52.24876 ], [ -0.87399, 52.24857 ], [ -0.87416, 52.24885 ], [ -0.87508, 52.24865 ], [ -0.8761, 52.24842 ], [ -0.87626, 52.24835 ], [ -0.87733, 52.24842 ], [ -0.87777, 52.24899 ], [ -0.8788, 52.24741 ], [ -0.87935, 52.24765 ], [ -0.87817, 52.24977 ], [ -0.87774, 52.24946 ], [ -0.87718, 52.24959 ], [ -0.87454, 52.2502 ], [ -0.87546, 52.25045 ], [ -0.87554, 52.25098 ], [ -0.87508, 52.25112 ], [ -0.87534, 52.25142 ], [ -0.87573, 52.25159 ], [ -0.87518, 52.25176 ], [ -0.87534, 52.252 ], [ -0.87459, 52.25261 ], [ -0.8754, 52.25335 ], [ -0.87566, 52.25314 ], [ -0.87645, 52.25349 ], [ -0.8754, 52.25433 ], [ -0.87571, 52.25448 ], [ -0.87871, 52.25605 ], [ -0.8785, 52.25617 ], [ -0.87853, 52.25668 ], [ -0.87911, 52.25695 ], [ -0.87936, 52.25678 ], [ -0.88088, 52.25734 ], [ -0.88154, 52.25679 ], [ -0.88236, 52.25724 ], [ -0.88318, 52.2571 ], [ -0.88318, 52.25749 ], [ -0.88356, 52.2575 ], [ -0.88438, 52.25788 ], [ -0.88338, 52.25835 ], [ -0.88322, 52.25911 ], [ -0.88409, 52.26069 ], [ -0.88313, 52.26368 ], [ -0.88301, 52.26425 ], [ -0.88301, 52.26434 ], [ -0.87925, 52.26378 ], [ -0.8754, 52.26431 ], [ -0.87412, 52.26423 ], [ -0.87367, 52.2646 ], [ -0.87218, 52.26632 ], [ -0.87224, 52.26681 ], [ -0.87104, 52.26731 ], [ -0.87093, 52.26697 ], [ -0.87185, 52.26655 ], [ -0.86938, 52.26514 ], [ -0.86857, 52.26478 ], [ -0.86876, 52.26433 ], [ -0.87085, 52.26265 ], [ -0.87056, 52.26215 ], [ -0.86991, 52.26194 ], [ -0.87001, 52.26125 ], [ -0.86939, 52.26115 ], [ -0.87022, 52.2602 ], [ -0.87036, 52.26008 ], [ -0.87061, 52.25984 ], [ -0.87127, 52.25819 ], [ -0.87113, 52.25736 ], [ -0.87076, 52.25577 ], [ -0.87038, 52.25412 ], [ -0.87009, 52.25287 ], [ -0.86952, 52.25135 ], [ -0.86911, 52.25012 ], [ -0.86904, 52.24994 ], [ -0.86874, 52.24938 ], [ -0.86846, 52.24897 ], [ -0.86904, 52.24761 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005663", "population": 5508, "outputarea_code": "E00138403", "lsoa_code": "E01027211", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton South", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.9593, "latitude": 52.2552, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.96452, 52.24962 ], [ -0.96498, 52.24971 ], [ -0.96828, 52.25029 ], [ -0.96733, 52.25188 ], [ -0.96614, 52.25389 ], [ -0.96589, 52.25532 ], [ -0.96552, 52.25616 ], [ -0.96414, 52.25737 ], [ -0.96176, 52.25947 ], [ -0.96078, 52.2602 ], [ -0.96003, 52.26084 ], [ -0.95773, 52.26154 ], [ -0.95504, 52.26196 ], [ -0.95424, 52.26089 ], [ -0.95171, 52.2597 ], [ -0.952, 52.25911 ], [ -0.95132, 52.25805 ], [ -0.95208, 52.25721 ], [ -0.95194, 52.25682 ], [ -0.95251, 52.25664 ], [ -0.95273, 52.25709 ], [ -0.95353, 52.2569 ], [ -0.95393, 52.25714 ], [ -0.9543, 52.25669 ], [ -0.95397, 52.25626 ], [ -0.9547, 52.25539 ], [ -0.9541, 52.2547 ], [ -0.95359, 52.25478 ], [ -0.95271, 52.25446 ], [ -0.95253, 52.25348 ], [ -0.95167, 52.25314 ], [ -0.95256, 52.25158 ], [ -0.95269, 52.25198 ], [ -0.95299, 52.25185 ], [ -0.95385, 52.25149 ], [ -0.95417, 52.25135 ], [ -0.9551, 52.25177 ], [ -0.95546, 52.25146 ], [ -0.95647, 52.25163 ], [ -0.95751, 52.25079 ], [ -0.95899, 52.25053 ], [ -0.95999, 52.25024 ], [ -0.96191, 52.2489 ], [ -0.96452, 52.24962 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005664", "population": 5932, "outputarea_code": "E00138294", "lsoa_code": "E01027184", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton North", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.88673, "latitude": 52.2515, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.87971, 52.24718 ], [ -0.88218, 52.24683 ], [ -0.88252, 52.24641 ], [ -0.8842, 52.24738 ], [ -0.88686, 52.24698 ], [ -0.89011, 52.24642 ], [ -0.8947, 52.24571 ], [ -0.89544, 52.24593 ], [ -0.89591, 52.24665 ], [ -0.89753, 52.24635 ], [ -0.89788, 52.2481 ], [ -0.89834, 52.25047 ], [ -0.89849, 52.25088 ], [ -0.89863, 52.25113 ], [ -0.89895, 52.25177 ], [ -0.89727, 52.25225 ], [ -0.89655, 52.25294 ], [ -0.89596, 52.25317 ], [ -0.89119, 52.25506 ], [ -0.89207, 52.25601 ], [ -0.89226, 52.2562 ], [ -0.8913, 52.25605 ], [ -0.89036, 52.25602 ], [ -0.88438, 52.25788 ], [ -0.88356, 52.2575 ], [ -0.88318, 52.25749 ], [ -0.88318, 52.2571 ], [ -0.88236, 52.25724 ], [ -0.88154, 52.25679 ], [ -0.88088, 52.25734 ], [ -0.87936, 52.25678 ], [ -0.87911, 52.25695 ], [ -0.87853, 52.25668 ], [ -0.8785, 52.25617 ], [ -0.87871, 52.25605 ], [ -0.87571, 52.25448 ], [ -0.8754, 52.25433 ], [ -0.87645, 52.25349 ], [ -0.87566, 52.25314 ], [ -0.8754, 52.25335 ], [ -0.87459, 52.25261 ], [ -0.87534, 52.252 ], [ -0.87518, 52.25176 ], [ -0.87573, 52.25159 ], [ -0.87534, 52.25142 ], [ -0.87508, 52.25112 ], [ -0.87554, 52.25098 ], [ -0.87546, 52.25045 ], [ -0.87454, 52.2502 ], [ -0.87718, 52.24959 ], [ -0.87774, 52.24946 ], [ -0.87817, 52.24977 ], [ -0.87935, 52.24765 ], [ -0.87971, 52.24718 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005665", "population": 7773, "outputarea_code": "E00138054", "lsoa_code": "E01027137", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton South", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.82624, "latitude": 52.25189, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.83753, 52.2456 ], [ -0.83812, 52.24654 ], [ -0.83808, 52.24752 ], [ -0.83795, 52.24793 ], [ -0.83743, 52.24872 ], [ -0.83819, 52.2492 ], [ -0.83901, 52.24926 ], [ -0.83994, 52.25114 ], [ -0.84031, 52.25119 ], [ -0.84025, 52.25161 ], [ -0.83978, 52.25174 ], [ -0.83718, 52.2519 ], [ -0.83692, 52.25161 ], [ -0.83654, 52.25197 ], [ -0.83791, 52.25275 ], [ -0.83864, 52.25361 ], [ -0.83564, 52.25445 ], [ -0.83501, 52.25464 ], [ -0.83285, 52.25539 ], [ -0.83003, 52.25664 ], [ -0.8268, 52.25869 ], [ -0.82427, 52.25994 ], [ -0.82012, 52.26102 ], [ -0.81907, 52.26121 ], [ -0.81886, 52.26126 ], [ -0.81682, 52.26181 ], [ -0.81427, 52.26194 ], [ -0.8115, 52.26164 ], [ -0.81133, 52.26047 ], [ -0.81271, 52.26035 ], [ -0.81275, 52.25985 ], [ -0.8117, 52.25976 ], [ -0.81352, 52.25866 ], [ -0.81378, 52.25794 ], [ -0.81557, 52.25784 ], [ -0.81601, 52.25743 ], [ -0.81714, 52.25746 ], [ -0.81671, 52.25645 ], [ -0.81603, 52.25614 ], [ -0.81551, 52.25653 ], [ -0.81501, 52.25641 ], [ -0.81589, 52.25544 ], [ -0.81654, 52.25546 ], [ -0.81737, 52.25501 ], [ -0.81943, 52.25587 ], [ -0.82019, 52.25557 ], [ -0.81938, 52.25435 ], [ -0.81908, 52.25399 ], [ -0.81729, 52.25233 ], [ -0.81672, 52.25012 ], [ -0.81595, 52.24959 ], [ -0.81412, 52.2495 ], [ -0.81363, 52.24923 ], [ -0.81853, 52.24725 ], [ -0.81927, 52.24581 ], [ -0.82291, 52.24595 ], [ -0.82623, 52.24497 ], [ -0.83364, 52.2414 ], [ -0.83599, 52.24233 ], [ -0.83502, 52.24297 ], [ -0.83495, 52.24378 ], [ -0.83612, 52.24436 ], [ -0.83565, 52.24485 ], [ -0.83633, 52.24551 ], [ -0.83685, 52.24574 ], [ -0.83753, 52.2456 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005666", "population": 8491, "outputarea_code": "E00138566", "lsoa_code": "E01027244", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton South", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.91938, "latitude": 52.25569, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.915, 52.24165 ], [ -0.91581, 52.2412 ], [ -0.91677, 52.24197 ], [ -0.91802, 52.24282 ], [ -0.91916, 52.24365 ], [ -0.91924, 52.24371 ], [ -0.92214, 52.24623 ], [ -0.92151, 52.24671 ], [ -0.92146, 52.24821 ], [ -0.92057, 52.24931 ], [ -0.92081, 52.24973 ], [ -0.92032, 52.24997 ], [ -0.9205, 52.24972 ], [ -0.91986, 52.24913 ], [ -0.91922, 52.24934 ], [ -0.91974, 52.24973 ], [ -0.91938, 52.25017 ], [ -0.91989, 52.25039 ], [ -0.91843, 52.25002 ], [ -0.91796, 52.25005 ], [ -0.91692, 52.24934 ], [ -0.9161, 52.2494 ], [ -0.91535, 52.24993 ], [ -0.91468, 52.24986 ], [ -0.91499, 52.25165 ], [ -0.91726, 52.25016 ], [ -0.9176, 52.25033 ], [ -0.91704, 52.25067 ], [ -0.9173, 52.25088 ], [ -0.91791, 52.25056 ], [ -0.91818, 52.25073 ], [ -0.91944, 52.25146 ], [ -0.92023, 52.25095 ], [ -0.92077, 52.25115 ], [ -0.92132, 52.25227 ], [ -0.922, 52.25205 ], [ -0.92314, 52.25264 ], [ -0.9246, 52.25155 ], [ -0.9273, 52.25217 ], [ -0.9291, 52.25195 ], [ -0.92979, 52.25224 ], [ -0.92795, 52.25344 ], [ -0.92639, 52.25309 ], [ -0.92583, 52.25359 ], [ -0.92639, 52.25395 ], [ -0.9258, 52.25416 ], [ -0.92589, 52.25459 ], [ -0.9264, 52.25472 ], [ -0.92593, 52.25545 ], [ -0.92556, 52.25599 ], [ -0.926, 52.25631 ], [ -0.92586, 52.25677 ], [ -0.92562, 52.25707 ], [ -0.93664, 52.26203 ], [ -0.9311, 52.26322 ], [ -0.92444, 52.2659 ], [ -0.92898, 52.26855 ], [ -0.93002, 52.26806 ], [ -0.93044, 52.26835 ], [ -0.93222, 52.26851 ], [ -0.93298, 52.26903 ], [ -0.93242, 52.27078 ], [ -0.92581, 52.26893 ], [ -0.91956, 52.26682 ], [ -0.91715, 52.26539 ], [ -0.91494, 52.26342 ], [ -0.9128, 52.25958 ], [ -0.91196, 52.25685 ], [ -0.91127, 52.25458 ], [ -0.91121, 52.25445 ], [ -0.90857, 52.25094 ], [ -0.90784, 52.24925 ], [ -0.90781, 52.24664 ], [ -0.90798, 52.24532 ], [ -0.90799, 52.24251 ], [ -0.91129, 52.2425 ], [ -0.91224, 52.24241 ], [ -0.91388, 52.24218 ], [ -0.915, 52.24165 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005667", "population": 6718, "outputarea_code": "E00138431", "lsoa_code": "E01027214", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton South", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.93574, "latitude": 52.256, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.93216, 52.2443 ], [ -0.93237, 52.24422 ], [ -0.93435, 52.24353 ], [ -0.93496, 52.24333 ], [ -0.93542, 52.24318 ], [ -0.93839, 52.24521 ], [ -0.93898, 52.2458 ], [ -0.94011, 52.24605 ], [ -0.94198, 52.24525 ], [ -0.94333, 52.24571 ], [ -0.94368, 52.24563 ], [ -0.9448, 52.24667 ], [ -0.94561, 52.2473 ], [ -0.94484, 52.24771 ], [ -0.94389, 52.24746 ], [ -0.94365, 52.24768 ], [ -0.94448, 52.24819 ], [ -0.94453, 52.24886 ], [ -0.94267, 52.25025 ], [ -0.94279, 52.25032 ], [ -0.94474, 52.25144 ], [ -0.94515, 52.25169 ], [ -0.94399, 52.25243 ], [ -0.94394, 52.25246 ], [ -0.94321, 52.2528 ], [ -0.94344, 52.25302 ], [ -0.94255, 52.25325 ], [ -0.94292, 52.25364 ], [ -0.94244, 52.25395 ], [ -0.94248, 52.25425 ], [ -0.93949, 52.25503 ], [ -0.94044, 52.25549 ], [ -0.94125, 52.25573 ], [ -0.94766, 52.2579 ], [ -0.95171, 52.2597 ], [ -0.95424, 52.26089 ], [ -0.95504, 52.26196 ], [ -0.94618, 52.26405 ], [ -0.94483, 52.26343 ], [ -0.93716, 52.26918 ], [ -0.93298, 52.26903 ], [ -0.93222, 52.26851 ], [ -0.93044, 52.26835 ], [ -0.93002, 52.26806 ], [ -0.92898, 52.26855 ], [ -0.92444, 52.2659 ], [ -0.9311, 52.26322 ], [ -0.93664, 52.26203 ], [ -0.92562, 52.25707 ], [ -0.92586, 52.25677 ], [ -0.926, 52.25631 ], [ -0.92556, 52.25599 ], [ -0.92593, 52.25545 ], [ -0.9264, 52.25472 ], [ -0.92589, 52.25459 ], [ -0.9258, 52.25416 ], [ -0.92639, 52.25395 ], [ -0.92583, 52.25359 ], [ -0.92639, 52.25309 ], [ -0.92795, 52.25344 ], [ -0.92979, 52.25224 ], [ -0.9291, 52.25195 ], [ -0.9273, 52.25217 ], [ -0.9246, 52.25155 ], [ -0.92314, 52.25264 ], [ -0.922, 52.25205 ], [ -0.92132, 52.25227 ], [ -0.92077, 52.25115 ], [ -0.92023, 52.25095 ], [ -0.91944, 52.25146 ], [ -0.91818, 52.25073 ], [ -0.91791, 52.25056 ], [ -0.9173, 52.25088 ], [ -0.91704, 52.25067 ], [ -0.9176, 52.25033 ], [ -0.91726, 52.25016 ], [ -0.91499, 52.25165 ], [ -0.91468, 52.24986 ], [ -0.91535, 52.24993 ], [ -0.9161, 52.2494 ], [ -0.91692, 52.24934 ], [ -0.91796, 52.25005 ], [ -0.91843, 52.25002 ], [ -0.91989, 52.25039 ], [ -0.91938, 52.25017 ], [ -0.91974, 52.24973 ], [ -0.91922, 52.24934 ], [ -0.91986, 52.24913 ], [ -0.9205, 52.24972 ], [ -0.92032, 52.24997 ], [ -0.92081, 52.24973 ], [ -0.92057, 52.24931 ], [ -0.92146, 52.24821 ], [ -0.92151, 52.24671 ], [ -0.92214, 52.24623 ], [ -0.92366, 52.24726 ], [ -0.9248, 52.24783 ], [ -0.92748, 52.24593 ], [ -0.92921, 52.24535 ], [ -0.93216, 52.2443 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005668", "population": 6403, "outputarea_code": "E00138405", "lsoa_code": "E01027207", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton South", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.9473, "latitude": 52.24814, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.94174, 52.2371 ], [ -0.94534, 52.23924 ], [ -0.94772, 52.24087 ], [ -0.94775, 52.2409 ], [ -0.94945, 52.24267 ], [ -0.95084, 52.24532 ], [ -0.95217, 52.24583 ], [ -0.95276, 52.24607 ], [ -0.95409, 52.24659 ], [ -0.95966, 52.24828 ], [ -0.96191, 52.2489 ], [ -0.95999, 52.25024 ], [ -0.95899, 52.25053 ], [ -0.95751, 52.25079 ], [ -0.95647, 52.25163 ], [ -0.95546, 52.25146 ], [ -0.9551, 52.25177 ], [ -0.95417, 52.25135 ], [ -0.95385, 52.25149 ], [ -0.95299, 52.25185 ], [ -0.95269, 52.25198 ], [ -0.95256, 52.25158 ], [ -0.95167, 52.25314 ], [ -0.95253, 52.25348 ], [ -0.95271, 52.25446 ], [ -0.95359, 52.25478 ], [ -0.9541, 52.2547 ], [ -0.9547, 52.25539 ], [ -0.95397, 52.25626 ], [ -0.9543, 52.25669 ], [ -0.95393, 52.25714 ], [ -0.95353, 52.2569 ], [ -0.95273, 52.25709 ], [ -0.95251, 52.25664 ], [ -0.95194, 52.25682 ], [ -0.95208, 52.25721 ], [ -0.95132, 52.25805 ], [ -0.952, 52.25911 ], [ -0.95171, 52.2597 ], [ -0.94766, 52.2579 ], [ -0.94125, 52.25573 ], [ -0.94044, 52.25549 ], [ -0.93949, 52.25503 ], [ -0.94248, 52.25425 ], [ -0.94244, 52.25395 ], [ -0.94292, 52.25364 ], [ -0.94255, 52.25325 ], [ -0.94344, 52.25302 ], [ -0.94321, 52.2528 ], [ -0.94394, 52.25246 ], [ -0.94399, 52.25243 ], [ -0.94515, 52.25169 ], [ -0.94474, 52.25144 ], [ -0.94279, 52.25032 ], [ -0.94267, 52.25025 ], [ -0.94453, 52.24886 ], [ -0.94448, 52.24819 ], [ -0.94365, 52.24768 ], [ -0.94389, 52.24746 ], [ -0.94484, 52.24771 ], [ -0.94561, 52.2473 ], [ -0.9448, 52.24667 ], [ -0.94368, 52.24563 ], [ -0.94333, 52.24571 ], [ -0.94198, 52.24525 ], [ -0.94011, 52.24605 ], [ -0.93898, 52.2458 ], [ -0.93839, 52.24521 ], [ -0.93542, 52.24318 ], [ -0.93756, 52.24208 ], [ -0.9383, 52.24062 ], [ -0.93789, 52.23736 ], [ -0.94174, 52.2371 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005669", "population": 5923, "outputarea_code": "E00138644", "lsoa_code": "E01027255", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton South", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.8514, "latitude": 52.24498, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.84929, 52.23707 ], [ -0.85132, 52.23621 ], [ -0.85328, 52.23538 ], [ -0.85976, 52.23377 ], [ -0.86165, 52.23587 ], [ -0.86153, 52.23639 ], [ -0.86098, 52.23636 ], [ -0.86071, 52.23666 ], [ -0.86122, 52.23721 ], [ -0.8607, 52.23728 ], [ -0.85666, 52.23846 ], [ -0.85755, 52.23974 ], [ -0.85695, 52.23983 ], [ -0.85704, 52.24032 ], [ -0.85673, 52.2416 ], [ -0.85601, 52.24268 ], [ -0.85648, 52.24278 ], [ -0.85578, 52.24323 ], [ -0.85683, 52.24417 ], [ -0.85735, 52.24398 ], [ -0.85792, 52.24368 ], [ -0.85871, 52.24409 ], [ -0.86035, 52.24371 ], [ -0.86126, 52.24312 ], [ -0.86107, 52.2418 ], [ -0.86158, 52.24133 ], [ -0.86122, 52.24068 ], [ -0.86177, 52.24055 ], [ -0.86376, 52.24314 ], [ -0.86536, 52.2466 ], [ -0.86846, 52.24897 ], [ -0.86874, 52.24938 ], [ -0.86273, 52.25 ], [ -0.85984, 52.2505 ], [ -0.85694, 52.25061 ], [ -0.85686, 52.25062 ], [ -0.85485, 52.25092 ], [ -0.85479, 52.25093 ], [ -0.85066, 52.25146 ], [ -0.84942, 52.25173 ], [ -0.84529, 52.25265 ], [ -0.84494, 52.25269 ], [ -0.8395, 52.25343 ], [ -0.83864, 52.25361 ], [ -0.83791, 52.25275 ], [ -0.83654, 52.25197 ], [ -0.83692, 52.25161 ], [ -0.83718, 52.2519 ], [ -0.83978, 52.25174 ], [ -0.84025, 52.25161 ], [ -0.84031, 52.25119 ], [ -0.83994, 52.25114 ], [ -0.83901, 52.24926 ], [ -0.83819, 52.2492 ], [ -0.83743, 52.24872 ], [ -0.83795, 52.24793 ], [ -0.83808, 52.24752 ], [ -0.83812, 52.24654 ], [ -0.83753, 52.2456 ], [ -0.83677, 52.24501 ], [ -0.84086, 52.24277 ], [ -0.84267, 52.24162 ], [ -0.84466, 52.24019 ], [ -0.8453, 52.23973 ], [ -0.84572, 52.23942 ], [ -0.84929, 52.23707 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005670", "population": 9406, "outputarea_code": "E00138118", "lsoa_code": "E01027152", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton South", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.90347, "latitude": 52.23963, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.89528, 52.23873 ], [ -0.89427, 52.23814 ], [ -0.89729, 52.23688 ], [ -0.89719, 52.2359 ], [ -0.8974, 52.23379 ], [ -0.89644, 52.23079 ], [ -0.89891, 52.23067 ], [ -0.90209, 52.23048 ], [ -0.9027, 52.23068 ], [ -0.90357, 52.23038 ], [ -0.90925, 52.22998 ], [ -0.91221, 52.22983 ], [ -0.91393, 52.23031 ], [ -0.91465, 52.23108 ], [ -0.91474, 52.23229 ], [ -0.91523, 52.23302 ], [ -0.91428, 52.2334 ], [ -0.91211, 52.23663 ], [ -0.91179, 52.23691 ], [ -0.91063, 52.23787 ], [ -0.90901, 52.23767 ], [ -0.90893, 52.23736 ], [ -0.9085, 52.23754 ], [ -0.90916, 52.23839 ], [ -0.90839, 52.23861 ], [ -0.90723, 52.23839 ], [ -0.90776, 52.24072 ], [ -0.90799, 52.24251 ], [ -0.90798, 52.24532 ], [ -0.90781, 52.24664 ], [ -0.90784, 52.24925 ], [ -0.90857, 52.25094 ], [ -0.90316, 52.2509 ], [ -0.89926, 52.25225 ], [ -0.89895, 52.25177 ], [ -0.89863, 52.25113 ], [ -0.89849, 52.25088 ], [ -0.89834, 52.25047 ], [ -0.89788, 52.2481 ], [ -0.89753, 52.24635 ], [ -0.89591, 52.24665 ], [ -0.89544, 52.24593 ], [ -0.8947, 52.24571 ], [ -0.89525, 52.24535 ], [ -0.89674, 52.24528 ], [ -0.89686, 52.24491 ], [ -0.89386, 52.24524 ], [ -0.89455, 52.24479 ], [ -0.8943, 52.24437 ], [ -0.89474, 52.24372 ], [ -0.89527, 52.24311 ], [ -0.89588, 52.24332 ], [ -0.89613, 52.24304 ], [ -0.89591, 52.24296 ], [ -0.89549, 52.24282 ], [ -0.89625, 52.24225 ], [ -0.89559, 52.24191 ], [ -0.89564, 52.24149 ], [ -0.89451, 52.2403 ], [ -0.89416, 52.23976 ], [ -0.89545, 52.23964 ], [ -0.89528, 52.23873 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005671", "population": 7830, "outputarea_code": "E00138025", "lsoa_code": "E01027135", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton North", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.87171, "latitude": 52.24365, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.87602, 52.2402 ], [ -0.87672, 52.24194 ], [ -0.87861, 52.24174 ], [ -0.87872, 52.242 ], [ -0.87922, 52.24322 ], [ -0.87994, 52.24497 ], [ -0.87998, 52.24505 ], [ -0.88007, 52.24527 ], [ -0.88049, 52.24629 ], [ -0.88209, 52.24606 ], [ -0.88283, 52.24595 ], [ -0.88256, 52.24634 ], [ -0.88252, 52.24641 ], [ -0.88218, 52.24683 ], [ -0.87971, 52.24718 ], [ -0.87935, 52.24765 ], [ -0.8788, 52.24741 ], [ -0.87777, 52.24899 ], [ -0.87733, 52.24842 ], [ -0.87626, 52.24835 ], [ -0.8761, 52.24842 ], [ -0.87508, 52.24865 ], [ -0.87416, 52.24885 ], [ -0.87399, 52.24857 ], [ -0.87307, 52.24876 ], [ -0.87229, 52.24645 ], [ -0.87318, 52.24617 ], [ -0.87376, 52.24568 ], [ -0.87171, 52.24504 ], [ -0.87056, 52.24548 ], [ -0.86904, 52.24761 ], [ -0.86846, 52.24897 ], [ -0.86536, 52.2466 ], [ -0.86376, 52.24314 ], [ -0.86177, 52.24055 ], [ -0.86146, 52.24015 ], [ -0.86176, 52.24012 ], [ -0.86668, 52.23961 ], [ -0.86705, 52.23959 ], [ -0.8696, 52.23944 ], [ -0.87209, 52.23908 ], [ -0.87521, 52.23862 ], [ -0.87538, 52.2386 ], [ -0.87602, 52.2402 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005672", "population": 8436, "outputarea_code": "E00138117", "lsoa_code": "E01027155", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton South", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.88856, "latitude": 52.24265, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.88264, 52.24133 ], [ -0.88203, 52.24136 ], [ -0.88135, 52.23945 ], [ -0.88098, 52.23881 ], [ -0.88122, 52.238 ], [ -0.882, 52.23796 ], [ -0.88455, 52.23783 ], [ -0.88596, 52.23776 ], [ -0.88575, 52.23832 ], [ -0.88631, 52.2387 ], [ -0.88702, 52.23866 ], [ -0.88721, 52.23948 ], [ -0.8853, 52.24022 ], [ -0.88556, 52.24069 ], [ -0.88733, 52.24026 ], [ -0.88854, 52.24086 ], [ -0.89023, 52.24025 ], [ -0.89207, 52.24073 ], [ -0.89229, 52.24081 ], [ -0.89276, 52.24044 ], [ -0.89289, 52.23945 ], [ -0.89279, 52.23854 ], [ -0.89427, 52.23814 ], [ -0.89528, 52.23873 ], [ -0.89545, 52.23964 ], [ -0.89416, 52.23976 ], [ -0.89451, 52.2403 ], [ -0.89564, 52.24149 ], [ -0.89559, 52.24191 ], [ -0.89625, 52.24225 ], [ -0.89549, 52.24282 ], [ -0.89591, 52.24296 ], [ -0.89613, 52.24304 ], [ -0.89588, 52.24332 ], [ -0.89527, 52.24311 ], [ -0.89474, 52.24372 ], [ -0.8943, 52.24437 ], [ -0.89455, 52.24479 ], [ -0.89386, 52.24524 ], [ -0.89686, 52.24491 ], [ -0.89674, 52.24528 ], [ -0.89525, 52.24535 ], [ -0.8947, 52.24571 ], [ -0.89011, 52.24642 ], [ -0.88686, 52.24698 ], [ -0.8842, 52.24738 ], [ -0.88252, 52.24641 ], [ -0.88256, 52.24634 ], [ -0.88323, 52.24624 ], [ -0.88367, 52.24574 ], [ -0.8831, 52.24541 ], [ -0.88393, 52.24457 ], [ -0.88406, 52.24435 ], [ -0.88367, 52.24431 ], [ -0.88388, 52.24387 ], [ -0.88493, 52.24269 ], [ -0.88561, 52.24233 ], [ -0.88605, 52.24147 ], [ -0.88491, 52.24184 ], [ -0.88446, 52.24219 ], [ -0.88333, 52.24217 ], [ -0.88272, 52.24141 ], [ -0.88305, 52.24126 ], [ -0.88264, 52.24133 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005673", "population": 7430, "outputarea_code": "E00138143", "lsoa_code": "E01027151", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton South", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.92457, "latitude": 52.23879, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.91063, 52.23787 ], [ -0.91179, 52.23691 ], [ -0.91211, 52.23663 ], [ -0.91428, 52.2334 ], [ -0.91523, 52.23302 ], [ -0.91474, 52.23229 ], [ -0.91736, 52.23239 ], [ -0.91871, 52.23284 ], [ -0.91937, 52.23341 ], [ -0.92157, 52.23382 ], [ -0.92387, 52.23317 ], [ -0.92755, 52.23318 ], [ -0.92802, 52.23253 ], [ -0.9297, 52.23234 ], [ -0.92976, 52.23196 ], [ -0.93069, 52.23189 ], [ -0.93104, 52.23243 ], [ -0.93609, 52.23071 ], [ -0.93674, 52.23376 ], [ -0.93789, 52.23736 ], [ -0.9383, 52.24062 ], [ -0.93756, 52.24208 ], [ -0.93542, 52.24318 ], [ -0.93496, 52.24333 ], [ -0.93435, 52.24353 ], [ -0.93237, 52.24422 ], [ -0.93216, 52.2443 ], [ -0.92921, 52.24535 ], [ -0.92748, 52.24593 ], [ -0.9248, 52.24783 ], [ -0.92366, 52.24726 ], [ -0.92214, 52.24623 ], [ -0.91924, 52.24371 ], [ -0.91916, 52.24365 ], [ -0.91802, 52.24282 ], [ -0.91677, 52.24197 ], [ -0.91581, 52.2412 ], [ -0.915, 52.24165 ], [ -0.91388, 52.24218 ], [ -0.91224, 52.24241 ], [ -0.91129, 52.2425 ], [ -0.90799, 52.24251 ], [ -0.90776, 52.24072 ], [ -0.90723, 52.23839 ], [ -0.90839, 52.23861 ], [ -0.90916, 52.23839 ], [ -0.9085, 52.23754 ], [ -0.90893, 52.23736 ], [ -0.90901, 52.23767 ], [ -0.91063, 52.23787 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005674", "population": 8595, "outputarea_code": "E00138486", "lsoa_code": "E01027223", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton South", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.87722, "latitude": 52.23639, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.88455, 52.23783 ], [ -0.882, 52.23796 ], [ -0.88122, 52.238 ], [ -0.88098, 52.23881 ], [ -0.88135, 52.23945 ], [ -0.88203, 52.24136 ], [ -0.88264, 52.24133 ], [ -0.88305, 52.24126 ], [ -0.88272, 52.24141 ], [ -0.88333, 52.24217 ], [ -0.88446, 52.24219 ], [ -0.88491, 52.24184 ], [ -0.88605, 52.24147 ], [ -0.88561, 52.24233 ], [ -0.88493, 52.24269 ], [ -0.88388, 52.24387 ], [ -0.88367, 52.24431 ], [ -0.88406, 52.24435 ], [ -0.88393, 52.24457 ], [ -0.8831, 52.24541 ], [ -0.88367, 52.24574 ], [ -0.88323, 52.24624 ], [ -0.88256, 52.24634 ], [ -0.88283, 52.24595 ], [ -0.88209, 52.24606 ], [ -0.88049, 52.24629 ], [ -0.88007, 52.24527 ], [ -0.87998, 52.24505 ], [ -0.87994, 52.24497 ], [ -0.87922, 52.24322 ], [ -0.87872, 52.242 ], [ -0.87861, 52.24174 ], [ -0.87672, 52.24194 ], [ -0.87602, 52.2402 ], [ -0.87538, 52.2386 ], [ -0.87521, 52.23862 ], [ -0.87209, 52.23908 ], [ -0.8696, 52.23944 ], [ -0.86705, 52.23959 ], [ -0.86668, 52.23961 ], [ -0.86176, 52.24012 ], [ -0.86146, 52.24015 ], [ -0.86177, 52.24055 ], [ -0.86122, 52.24068 ], [ -0.86158, 52.24133 ], [ -0.86107, 52.2418 ], [ -0.86126, 52.24312 ], [ -0.86035, 52.24371 ], [ -0.85871, 52.24409 ], [ -0.85792, 52.24368 ], [ -0.85735, 52.24398 ], [ -0.85683, 52.24417 ], [ -0.85578, 52.24323 ], [ -0.85648, 52.24278 ], [ -0.85601, 52.24268 ], [ -0.85673, 52.2416 ], [ -0.85704, 52.24032 ], [ -0.85695, 52.23983 ], [ -0.85755, 52.23974 ], [ -0.85666, 52.23846 ], [ -0.8607, 52.23728 ], [ -0.86122, 52.23721 ], [ -0.86071, 52.23666 ], [ -0.86098, 52.23636 ], [ -0.86153, 52.23639 ], [ -0.86165, 52.23587 ], [ -0.85976, 52.23377 ], [ -0.86755, 52.23117 ], [ -0.86948, 52.22991 ], [ -0.87041, 52.22851 ], [ -0.87155, 52.22972 ], [ -0.87369, 52.23059 ], [ -0.87513, 52.2302 ], [ -0.87925, 52.23112 ], [ -0.88051, 52.23043 ], [ -0.88143, 52.23057 ], [ -0.88193, 52.23108 ], [ -0.88253, 52.2317 ], [ -0.88452, 52.23186 ], [ -0.88965, 52.23205 ], [ -0.89141, 52.23236 ], [ -0.89531, 52.23102 ], [ -0.89644, 52.23079 ], [ -0.8974, 52.23379 ], [ -0.89719, 52.2359 ], [ -0.89729, 52.23688 ], [ -0.89427, 52.23814 ], [ -0.89279, 52.23854 ], [ -0.89289, 52.23945 ], [ -0.89276, 52.24044 ], [ -0.89229, 52.24081 ], [ -0.89207, 52.24073 ], [ -0.89023, 52.24025 ], [ -0.88854, 52.24086 ], [ -0.88733, 52.24026 ], [ -0.88556, 52.24069 ], [ -0.8853, 52.24022 ], [ -0.88721, 52.23948 ], [ -0.88702, 52.23866 ], [ -0.88631, 52.2387 ], [ -0.88575, 52.23832 ], [ -0.88596, 52.23776 ], [ -0.88455, 52.23783 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005675", "population": 6072, "outputarea_code": "E00138538", "lsoa_code": "E01027234", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton South", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.92472, "latitude": 52.22626, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.9145, 52.22437 ], [ -0.91495, 52.22339 ], [ -0.91601, 52.22088 ], [ -0.91662, 52.21941 ], [ -0.91637, 52.21915 ], [ -0.92035, 52.2196 ], [ -0.92197, 52.21931 ], [ -0.92244, 52.21854 ], [ -0.92359, 52.21892 ], [ -0.92712, 52.21865 ], [ -0.92751, 52.21959 ], [ -0.93047, 52.21898 ], [ -0.93048, 52.21977 ], [ -0.93102, 52.21974 ], [ -0.93198, 52.22056 ], [ -0.93287, 52.22162 ], [ -0.93348, 52.2215 ], [ -0.93362, 52.2219 ], [ -0.93459, 52.22177 ], [ -0.93487, 52.22225 ], [ -0.93556, 52.22219 ], [ -0.93563, 52.22192 ], [ -0.9366, 52.22201 ], [ -0.93628, 52.22296 ], [ -0.93686, 52.22293 ], [ -0.93675, 52.22329 ], [ -0.93652, 52.22444 ], [ -0.93586, 52.22877 ], [ -0.93609, 52.23071 ], [ -0.93104, 52.23243 ], [ -0.93069, 52.23189 ], [ -0.92976, 52.23196 ], [ -0.9297, 52.23234 ], [ -0.92802, 52.23253 ], [ -0.92755, 52.23318 ], [ -0.92387, 52.23317 ], [ -0.92157, 52.23382 ], [ -0.91937, 52.23341 ], [ -0.91871, 52.23284 ], [ -0.91736, 52.23239 ], [ -0.91474, 52.23229 ], [ -0.91465, 52.23108 ], [ -0.91393, 52.23031 ], [ -0.91221, 52.22983 ], [ -0.91402, 52.22556 ], [ -0.9145, 52.22437 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005676", "population": 6019, "outputarea_code": "E00138155", "lsoa_code": "E01027156", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton South", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.90213, "latitude": 52.22009, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.90522, 52.2147 ], [ -0.9083, 52.21548 ], [ -0.90941, 52.21581 ], [ -0.91312, 52.21649 ], [ -0.91549, 52.21829 ], [ -0.91637, 52.21915 ], [ -0.91662, 52.21941 ], [ -0.91601, 52.22088 ], [ -0.91495, 52.22339 ], [ -0.9145, 52.22437 ], [ -0.91402, 52.22556 ], [ -0.91318, 52.22546 ], [ -0.91281, 52.2248 ], [ -0.91145, 52.22514 ], [ -0.91172, 52.22424 ], [ -0.91018, 52.22378 ], [ -0.91005, 52.22429 ], [ -0.90945, 52.22442 ], [ -0.90997, 52.22516 ], [ -0.90838, 52.22507 ], [ -0.90842, 52.22545 ], [ -0.90614, 52.22526 ], [ -0.90559, 52.22488 ], [ -0.90512, 52.22538 ], [ -0.90127, 52.22553 ], [ -0.9013, 52.22586 ], [ -0.89921, 52.22596 ], [ -0.89776, 52.22602 ], [ -0.89769, 52.22573 ], [ -0.90086, 52.22557 ], [ -0.90066, 52.22522 ], [ -0.89822, 52.22541 ], [ -0.89738, 52.22423 ], [ -0.89703, 52.22429 ], [ -0.89675, 52.22572 ], [ -0.89319, 52.22562 ], [ -0.8928, 52.22386 ], [ -0.89041, 52.22162 ], [ -0.88793, 52.21995 ], [ -0.88739, 52.21807 ], [ -0.88642, 52.217 ], [ -0.8884, 52.21684 ], [ -0.89144, 52.21631 ], [ -0.89357, 52.21521 ], [ -0.8942, 52.2146 ], [ -0.89604, 52.21482 ], [ -0.89871, 52.21459 ], [ -0.90169, 52.21441 ], [ -0.90427, 52.21458 ], [ -0.90522, 52.2147 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005677", "population": 8213, "outputarea_code": "E00138154", "lsoa_code": "E01027158", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "Northampton South", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.87442, "latitude": 52.22001, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.88433, 52.20829 ], [ -0.88465, 52.20732 ], [ -0.88502, 52.206 ], [ -0.88548, 52.20612 ], [ -0.88575, 52.20628 ], [ -0.88609, 52.20582 ], [ -0.88706, 52.20626 ], [ -0.88768, 52.20583 ], [ -0.88848, 52.20583 ], [ -0.8891, 52.20628 ], [ -0.88887, 52.20653 ], [ -0.88792, 52.20645 ], [ -0.88805, 52.20685 ], [ -0.88829, 52.20722 ], [ -0.88929, 52.20747 ], [ -0.88897, 52.20771 ], [ -0.88983, 52.20797 ], [ -0.88819, 52.20941 ], [ -0.88919, 52.20958 ], [ -0.89189, 52.20731 ], [ -0.89492, 52.21142 ], [ -0.89508, 52.21286 ], [ -0.8942, 52.2146 ], [ -0.89357, 52.21521 ], [ -0.89144, 52.21631 ], [ -0.8884, 52.21684 ], [ -0.88642, 52.217 ], [ -0.88739, 52.21807 ], [ -0.88793, 52.21995 ], [ -0.89041, 52.22162 ], [ -0.8928, 52.22386 ], [ -0.89319, 52.22562 ], [ -0.89675, 52.22572 ], [ -0.89703, 52.22429 ], [ -0.89738, 52.22423 ], [ -0.89822, 52.22541 ], [ -0.90066, 52.22522 ], [ -0.90086, 52.22557 ], [ -0.89769, 52.22573 ], [ -0.89776, 52.22602 ], [ -0.89921, 52.22596 ], [ -0.9013, 52.22586 ], [ -0.90127, 52.22553 ], [ -0.90512, 52.22538 ], [ -0.90559, 52.22488 ], [ -0.90614, 52.22526 ], [ -0.90842, 52.22545 ], [ -0.90838, 52.22507 ], [ -0.90997, 52.22516 ], [ -0.90945, 52.22442 ], [ -0.91005, 52.22429 ], [ -0.91018, 52.22378 ], [ -0.91172, 52.22424 ], [ -0.91145, 52.22514 ], [ -0.91281, 52.2248 ], [ -0.91318, 52.22546 ], [ -0.91402, 52.22556 ], [ -0.91221, 52.22983 ], [ -0.90925, 52.22998 ], [ -0.90357, 52.23038 ], [ -0.9027, 52.23068 ], [ -0.90209, 52.23048 ], [ -0.89891, 52.23067 ], [ -0.89644, 52.23079 ], [ -0.89531, 52.23102 ], [ -0.89141, 52.23236 ], [ -0.88965, 52.23205 ], [ -0.88452, 52.23186 ], [ -0.88253, 52.2317 ], [ -0.88193, 52.23108 ], [ -0.88143, 52.23057 ], [ -0.88051, 52.23043 ], [ -0.87925, 52.23112 ], [ -0.87513, 52.2302 ], [ -0.87369, 52.23059 ], [ -0.87155, 52.22972 ], [ -0.87041, 52.22851 ], [ -0.86948, 52.22991 ], [ -0.86755, 52.23117 ], [ -0.85976, 52.23377 ], [ -0.85328, 52.23538 ], [ -0.85132, 52.23621 ], [ -0.84929, 52.23707 ], [ -0.84572, 52.23942 ], [ -0.8453, 52.23973 ], [ -0.84466, 52.24019 ], [ -0.84081, 52.23816 ], [ -0.84006, 52.23738 ], [ -0.84098, 52.23697 ], [ -0.84049, 52.23603 ], [ -0.84324, 52.23561 ], [ -0.8471, 52.23617 ], [ -0.85039, 52.23472 ], [ -0.8587, 52.23269 ], [ -0.85848, 52.23164 ], [ -0.86053, 52.22907 ], [ -0.85927, 52.22895 ], [ -0.85917, 52.2282 ], [ -0.85671, 52.22733 ], [ -0.856, 52.22667 ], [ -0.85508, 52.22507 ], [ -0.85545, 52.22391 ], [ -0.85524, 52.22116 ], [ -0.85371, 52.21968 ], [ -0.85405, 52.21948 ], [ -0.85018, 52.21409 ], [ -0.84732, 52.2077 ], [ -0.85104, 52.20786 ], [ -0.85434, 52.20754 ], [ -0.85586, 52.20711 ], [ -0.85657, 52.20702 ], [ -0.86561, 52.2048 ], [ -0.86567, 52.20478 ], [ -0.86675, 52.20526 ], [ -0.86811, 52.20583 ], [ -0.87106, 52.206 ], [ -0.87389, 52.20664 ], [ -0.8776, 52.20807 ], [ -0.87957, 52.20828 ], [ -0.88099, 52.20808 ], [ -0.88233, 52.20794 ], [ -0.88433, 52.20829 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005678", "population": 12080, "outputarea_code": "E00138622", "lsoa_code": "E01032975", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "South Northamptonshire", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.94607, "latitude": 52.22446, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.91429, 52.21008 ], [ -0.91429, 52.20875 ], [ -0.91492, 52.20844 ], [ -0.91404, 52.20788 ], [ -0.91531, 52.20691 ], [ -0.9158, 52.20724 ], [ -0.91789, 52.20756 ], [ -0.91998, 52.20705 ], [ -0.92321, 52.20697 ], [ -0.92582, 52.20425 ], [ -0.9338, 52.20724 ], [ -0.93659, 52.20812 ], [ -0.93673, 52.20817 ], [ -0.94092, 52.2092 ], [ -0.94157, 52.20933 ], [ -0.95146, 52.21203 ], [ -0.96064, 52.21572 ], [ -0.96766, 52.21868 ], [ -0.96735, 52.21899 ], [ -0.96778, 52.22119 ], [ -0.96573, 52.22134 ], [ -0.96678, 52.22252 ], [ -0.96715, 52.2242 ], [ -0.96848, 52.22549 ], [ -0.96718, 52.22585 ], [ -0.96786, 52.22655 ], [ -0.96938, 52.22813 ], [ -0.96754, 52.22806 ], [ -0.96855, 52.22833 ], [ -0.9692, 52.22892 ], [ -0.9694, 52.2312 ], [ -0.96822, 52.23141 ], [ -0.96715, 52.23203 ], [ -0.96523, 52.23538 ], [ -0.96784, 52.23551 ], [ -0.97103, 52.235 ], [ -0.96871, 52.23714 ], [ -0.96874, 52.23819 ], [ -0.96936, 52.23882 ], [ -0.96892, 52.24023 ], [ -0.96462, 52.24092 ], [ -0.96431, 52.24294 ], [ -0.96448, 52.24387 ], [ -0.96535, 52.24629 ], [ -0.96507, 52.24782 ], [ -0.96452, 52.24962 ], [ -0.96191, 52.2489 ], [ -0.95966, 52.24828 ], [ -0.95409, 52.24659 ], [ -0.95276, 52.24607 ], [ -0.95217, 52.24583 ], [ -0.95084, 52.24532 ], [ -0.94945, 52.24267 ], [ -0.94775, 52.2409 ], [ -0.94772, 52.24087 ], [ -0.94534, 52.23924 ], [ -0.94174, 52.2371 ], [ -0.93789, 52.23736 ], [ -0.93674, 52.23376 ], [ -0.93609, 52.23071 ], [ -0.93586, 52.22877 ], [ -0.93652, 52.22444 ], [ -0.93675, 52.22329 ], [ -0.93686, 52.22293 ], [ -0.93628, 52.22296 ], [ -0.9366, 52.22201 ], [ -0.93563, 52.22192 ], [ -0.93556, 52.22219 ], [ -0.93487, 52.22225 ], [ -0.93459, 52.22177 ], [ -0.93362, 52.2219 ], [ -0.93348, 52.2215 ], [ -0.93287, 52.22162 ], [ -0.93198, 52.22056 ], [ -0.93102, 52.21974 ], [ -0.93048, 52.21977 ], [ -0.93047, 52.21898 ], [ -0.92751, 52.21959 ], [ -0.92712, 52.21865 ], [ -0.92359, 52.21892 ], [ -0.92244, 52.21854 ], [ -0.92197, 52.21931 ], [ -0.92035, 52.2196 ], [ -0.91637, 52.21915 ], [ -0.91549, 52.21829 ], [ -0.91312, 52.21649 ], [ -0.91706, 52.2157 ], [ -0.91696, 52.21468 ], [ -0.91641, 52.21407 ], [ -0.91553, 52.21386 ], [ -0.9135, 52.21404 ], [ -0.91416, 52.2126 ], [ -0.9138, 52.21211 ], [ -0.91387, 52.21183 ], [ -0.91441, 52.21183 ], [ -0.91429, 52.21008 ] ], [ [ -0.96145, 52.24556 ], [ -0.96078, 52.24347 ], [ -0.95699, 52.24422 ], [ -0.95769, 52.24472 ], [ -0.95664, 52.2464 ], [ -0.95797, 52.2467 ], [ -0.95795, 52.24697 ], [ -0.96071, 52.24705 ], [ -0.9616, 52.24591 ], [ -0.96145, 52.24556 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005679", "population": 8803, "outputarea_code": "E00138182", "lsoa_code": "E01027164", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "South Northamptonshire", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.90616, "latitude": 52.20649, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.8928, 52.19889 ], [ -0.89279, 52.19767 ], [ -0.89278, 52.19743 ], [ -0.89346, 52.19725 ], [ -0.89492, 52.19837 ], [ -0.8959, 52.19845 ], [ -0.89628, 52.19819 ], [ -0.89671, 52.19856 ], [ -0.89794, 52.19878 ], [ -0.89897, 52.19861 ], [ -0.89925, 52.19891 ], [ -0.89999, 52.19891 ], [ -0.89996, 52.19964 ], [ -0.90105, 52.19943 ], [ -0.90141, 52.19985 ], [ -0.90202, 52.20035 ], [ -0.90274, 52.20037 ], [ -0.90284, 52.2008 ], [ -0.90422, 52.20114 ], [ -0.90474, 52.20077 ], [ -0.90546, 52.20087 ], [ -0.90519, 52.20144 ], [ -0.90656, 52.2019 ], [ -0.90688, 52.20229 ], [ -0.90656, 52.20246 ], [ -0.90769, 52.20293 ], [ -0.90898, 52.20282 ], [ -0.9099, 52.19675 ], [ -0.91015, 52.19537 ], [ -0.91421, 52.19796 ], [ -0.91572, 52.19901 ], [ -0.91653, 52.19956 ], [ -0.92064, 52.20193 ], [ -0.92582, 52.20425 ], [ -0.92321, 52.20697 ], [ -0.91998, 52.20705 ], [ -0.91789, 52.20756 ], [ -0.9158, 52.20724 ], [ -0.91531, 52.20691 ], [ -0.91404, 52.20788 ], [ -0.91492, 52.20844 ], [ -0.91429, 52.20875 ], [ -0.91429, 52.21008 ], [ -0.91441, 52.21183 ], [ -0.91387, 52.21183 ], [ -0.9138, 52.21211 ], [ -0.91416, 52.2126 ], [ -0.9135, 52.21404 ], [ -0.91553, 52.21386 ], [ -0.91641, 52.21407 ], [ -0.91696, 52.21468 ], [ -0.91706, 52.2157 ], [ -0.91312, 52.21649 ], [ -0.90941, 52.21581 ], [ -0.9083, 52.21548 ], [ -0.90522, 52.2147 ], [ -0.90427, 52.21458 ], [ -0.90169, 52.21441 ], [ -0.89871, 52.21459 ], [ -0.89604, 52.21482 ], [ -0.8942, 52.2146 ], [ -0.89508, 52.21286 ], [ -0.89492, 52.21142 ], [ -0.89189, 52.20731 ], [ -0.89167, 52.20691 ], [ -0.89125, 52.20561 ], [ -0.89118, 52.2047 ], [ -0.89145, 52.20337 ], [ -0.89181, 52.20244 ], [ -0.89265, 52.20018 ], [ -0.8928, 52.19889 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005680", "population": 7952, "outputarea_code": "E00138378", "lsoa_code": "E01027206", "la_name": "Northampton", "bua_name": "Northampton BUASD", "constituency_name": "South Northamptonshire", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.88612, "latitude": 52.20148, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.89224, 52.19696 ], [ -0.89229, 52.19695 ], [ -0.89213, 52.19488 ], [ -0.89391, 52.19599 ], [ -0.89428, 52.19689 ], [ -0.89617, 52.19657 ], [ -0.89702, 52.19724 ], [ -0.8975, 52.19687 ], [ -0.89819, 52.19706 ], [ -0.89976, 52.19679 ], [ -0.90035, 52.19703 ], [ -0.90046, 52.196 ], [ -0.90077, 52.19579 ], [ -0.90135, 52.19602 ], [ -0.9022, 52.1956 ], [ -0.90206, 52.19479 ], [ -0.90211, 52.19436 ], [ -0.90322, 52.19454 ], [ -0.90303, 52.19513 ], [ -0.90385, 52.19509 ], [ -0.90429, 52.19581 ], [ -0.90738, 52.19728 ], [ -0.9099, 52.19675 ], [ -0.90898, 52.20282 ], [ -0.90769, 52.20293 ], [ -0.90656, 52.20246 ], [ -0.90688, 52.20229 ], [ -0.90656, 52.2019 ], [ -0.90519, 52.20144 ], [ -0.90546, 52.20087 ], [ -0.90474, 52.20077 ], [ -0.90422, 52.20114 ], [ -0.90284, 52.2008 ], [ -0.90274, 52.20037 ], [ -0.90202, 52.20035 ], [ -0.90141, 52.19985 ], [ -0.90105, 52.19943 ], [ -0.89996, 52.19964 ], [ -0.89999, 52.19891 ], [ -0.89925, 52.19891 ], [ -0.89897, 52.19861 ], [ -0.89794, 52.19878 ], [ -0.89671, 52.19856 ], [ -0.89628, 52.19819 ], [ -0.8959, 52.19845 ], [ -0.89492, 52.19837 ], [ -0.89346, 52.19725 ], [ -0.89278, 52.19743 ], [ -0.89279, 52.19767 ], [ -0.8928, 52.19889 ], [ -0.89265, 52.20018 ], [ -0.89181, 52.20244 ], [ -0.89145, 52.20337 ], [ -0.89118, 52.2047 ], [ -0.89125, 52.20561 ], [ -0.89167, 52.20691 ], [ -0.89189, 52.20731 ], [ -0.88919, 52.20958 ], [ -0.88819, 52.20941 ], [ -0.88983, 52.20797 ], [ -0.88897, 52.20771 ], [ -0.88929, 52.20747 ], [ -0.88829, 52.20722 ], [ -0.88805, 52.20685 ], [ -0.88792, 52.20645 ], [ -0.88887, 52.20653 ], [ -0.8891, 52.20628 ], [ -0.88848, 52.20583 ], [ -0.88768, 52.20583 ], [ -0.88706, 52.20626 ], [ -0.88609, 52.20582 ], [ -0.88575, 52.20628 ], [ -0.88548, 52.20612 ], [ -0.88502, 52.206 ], [ -0.88465, 52.20732 ], [ -0.88433, 52.20829 ], [ -0.88233, 52.20794 ], [ -0.88099, 52.20808 ], [ -0.87957, 52.20828 ], [ -0.8776, 52.20807 ], [ -0.87389, 52.20664 ], [ -0.87106, 52.206 ], [ -0.86811, 52.20583 ], [ -0.86675, 52.20526 ], [ -0.86567, 52.20478 ], [ -0.86506, 52.20445 ], [ -0.86897, 52.20244 ], [ -0.86941, 52.20258 ], [ -0.87006, 52.20232 ], [ -0.87336, 52.20068 ], [ -0.87578, 52.19947 ], [ -0.87662, 52.1986 ], [ -0.87791, 52.19646 ], [ -0.87819, 52.19506 ], [ -0.87988, 52.1951 ], [ -0.88113, 52.19497 ], [ -0.8819, 52.19565 ], [ -0.88254, 52.19556 ], [ -0.88265, 52.19521 ], [ -0.88303, 52.19577 ], [ -0.88359, 52.19541 ], [ -0.88415, 52.19547 ], [ -0.88711, 52.19725 ], [ -0.88882, 52.19772 ], [ -0.89059, 52.19755 ], [ -0.89224, 52.19696 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Northampton", "bua_code": "E35001201", "msoa_code": "E02005682", "population": 330, "outputarea_code": "E00138741", "lsoa_code": "E01027274", "la_name": "South Northamptonshire", "bua_name": "Northampton BUASD", "constituency_name": "South Northamptonshire", "citytownclassification": "Other City", "urban": "Y", "longitude": -0.86807, "latitude": 52.19857, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.87819, 52.19506 ], [ -0.87791, 52.19646 ], [ -0.87662, 52.1986 ], [ -0.87578, 52.19947 ], [ -0.87336, 52.20068 ], [ -0.87006, 52.20232 ], [ -0.86941, 52.20258 ], [ -0.86897, 52.20244 ], [ -0.86506, 52.20445 ], [ -0.86567, 52.20478 ], [ -0.86561, 52.2048 ], [ -0.86189, 52.20337 ], [ -0.85782, 52.20235 ], [ -0.86036, 52.20011 ], [ -0.86587, 52.19225 ], [ -0.86617, 52.19293 ], [ -0.86727, 52.19291 ], [ -0.86737, 52.1934 ], [ -0.86778, 52.19345 ], [ -0.86781, 52.19307 ], [ -0.86852, 52.19296 ], [ -0.86984, 52.19366 ], [ -0.8692, 52.19418 ], [ -0.86983, 52.19473 ], [ -0.87094, 52.19423 ], [ -0.87172, 52.19431 ], [ -0.87181, 52.19382 ], [ -0.87288, 52.19469 ], [ -0.87407, 52.19475 ], [ -0.87415, 52.19512 ], [ -0.87468, 52.19469 ], [ -0.87515, 52.19549 ], [ -0.87622, 52.19531 ], [ -0.87689, 52.19442 ], [ -0.8774, 52.19454 ], [ -0.87757, 52.19502 ], [ -0.87819, 52.19506 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002868", "population": 5869, "outputarea_code": "E00070060", "lsoa_code": "E01013892", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham North", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.17504, "latitude": 53.00737, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.1677, 53.00503 ], [ -1.16807, 53.00417 ], [ -1.16813, 53.00337 ], [ -1.16686, 53.00359 ], [ -1.16686, 53.0024 ], [ -1.16611, 52.9997 ], [ -1.1664, 52.9989 ], [ -1.16936, 52.99913 ], [ -1.17295, 52.99837 ], [ -1.17335, 52.99828 ], [ -1.17496, 52.99793 ], [ -1.17463, 52.99805 ], [ -1.17598, 53.00073 ], [ -1.17877, 53.0006 ], [ -1.17875, 53.00033 ], [ -1.17965, 53.00028 ], [ -1.18073, 53.00343 ], [ -1.18075, 53.00365 ], [ -1.17657, 53.00454 ], [ -1.1765, 53.00614 ], [ -1.17531, 53.00607 ], [ -1.17501, 53.00642 ], [ -1.1761, 53.00678 ], [ -1.1763, 53.00662 ], [ -1.1774, 53.0071 ], [ -1.17784, 53.00699 ], [ -1.1783, 53.00808 ], [ -1.18061, 53.00759 ], [ -1.17945, 53.00626 ], [ -1.18111, 53.00603 ], [ -1.18203, 53.0059 ], [ -1.18477, 53.00889 ], [ -1.18532, 53.01021 ], [ -1.18611, 53.01175 ], [ -1.18641, 53.01217 ], [ -1.18476, 53.01404 ], [ -1.18448, 53.01445 ], [ -1.1782, 53.01419 ], [ -1.17351, 53.01409 ], [ -1.17079, 53.01397 ], [ -1.16777, 53.01427 ], [ -1.16736, 53.01276 ], [ -1.16712, 53.01186 ], [ -1.16678, 53.01062 ], [ -1.16804, 53.00953 ], [ -1.16956, 53.00882 ], [ -1.16943, 53.00804 ], [ -1.16892, 53.00673 ], [ -1.1681, 53.00603 ], [ -1.1677, 53.00503 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002869", "population": 7451, "outputarea_code": "E00070002", "lsoa_code": "E01013880", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham North", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.2, "latitude": 53.0098, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.1907, 53.00521 ], [ -1.19149, 53.00433 ], [ -1.19245, 53.00326 ], [ -1.19511, 53.00011 ], [ -1.19567, 52.99844 ], [ -1.19577, 52.99688 ], [ -1.19659, 52.9967 ], [ -1.19723, 52.99696 ], [ -1.19706, 52.99865 ], [ -1.198, 52.99949 ], [ -1.1981, 53.00139 ], [ -1.19915, 53.00129 ], [ -1.20026, 53.00073 ], [ -1.20127, 53.00153 ], [ -1.20206, 53.00127 ], [ -1.20551, 53.00056 ], [ -1.20677, 53.00183 ], [ -1.20699, 53.00202 ], [ -1.20936, 53.00373 ], [ -1.21088, 53.00455 ], [ -1.21359, 53.00552 ], [ -1.21389, 53.0059 ], [ -1.21288, 53.00693 ], [ -1.2117, 53.00693 ], [ -1.21018, 53.00796 ], [ -1.21704, 53.01065 ], [ -1.21256, 53.013 ], [ -1.21097, 53.01516 ], [ -1.21009, 53.01773 ], [ -1.21016, 53.01804 ], [ -1.2076, 53.01865 ], [ -1.20302, 53.01834 ], [ -1.20234, 53.01816 ], [ -1.20051, 53.01763 ], [ -1.19995, 53.01681 ], [ -1.19782, 53.01592 ], [ -1.19519, 53.01545 ], [ -1.19235, 53.01638 ], [ -1.19222, 53.01642 ], [ -1.18913, 53.01734 ], [ -1.18831, 53.01796 ], [ -1.18771, 53.01789 ], [ -1.18683, 53.01777 ], [ -1.18453, 53.01639 ], [ -1.18403, 53.01761 ], [ -1.18321, 53.01794 ], [ -1.18275, 53.01857 ], [ -1.18316, 53.01676 ], [ -1.18343, 53.01623 ], [ -1.18448, 53.01445 ], [ -1.18476, 53.01404 ], [ -1.18641, 53.01217 ], [ -1.18611, 53.01175 ], [ -1.18864, 53.0081 ], [ -1.19042, 53.00518 ], [ -1.1907, 53.00521 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002871", "population": 7897, "outputarea_code": "E00070056", "lsoa_code": "E01013889", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham North", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.18635, "latitude": 53.0001, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.19076, 52.99061 ], [ -1.19151, 52.99105 ], [ -1.19313, 52.9922 ], [ -1.19385, 52.99298 ], [ -1.19459, 52.99377 ], [ -1.19476, 52.99403 ], [ -1.19518, 52.99474 ], [ -1.19577, 52.99688 ], [ -1.19567, 52.99844 ], [ -1.19511, 53.00011 ], [ -1.19245, 53.00326 ], [ -1.19149, 53.00433 ], [ -1.1907, 53.00521 ], [ -1.19042, 53.00518 ], [ -1.18864, 53.0081 ], [ -1.18611, 53.01175 ], [ -1.18532, 53.01021 ], [ -1.18477, 53.00889 ], [ -1.18203, 53.0059 ], [ -1.18111, 53.00603 ], [ -1.17945, 53.00626 ], [ -1.18061, 53.00759 ], [ -1.1783, 53.00808 ], [ -1.17784, 53.00699 ], [ -1.1774, 53.0071 ], [ -1.1763, 53.00662 ], [ -1.1761, 53.00678 ], [ -1.17501, 53.00642 ], [ -1.17531, 53.00607 ], [ -1.1765, 53.00614 ], [ -1.17657, 53.00454 ], [ -1.18075, 53.00365 ], [ -1.18073, 53.00343 ], [ -1.17965, 53.00028 ], [ -1.17875, 53.00033 ], [ -1.17877, 53.0006 ], [ -1.17598, 53.00073 ], [ -1.17463, 52.99805 ], [ -1.17496, 52.99793 ], [ -1.17914, 52.99732 ], [ -1.17884, 52.99599 ], [ -1.18027, 52.99551 ], [ -1.18033, 52.99549 ], [ -1.18136, 52.99545 ], [ -1.18248, 52.99538 ], [ -1.1838, 52.99488 ], [ -1.1846, 52.99451 ], [ -1.18807, 52.99264 ], [ -1.18672, 52.99168 ], [ -1.18535, 52.99055 ], [ -1.18682, 52.99051 ], [ -1.18642, 52.99099 ], [ -1.18675, 52.99115 ], [ -1.18836, 52.99062 ], [ -1.19076, 52.99061 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002872", "population": 8829, "outputarea_code": "E00070005", "lsoa_code": "E01013877", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham North", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.2084, "latitude": 52.9976, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.19723, 52.99696 ], [ -1.19659, 52.9967 ], [ -1.19577, 52.99688 ], [ -1.19518, 52.99474 ], [ -1.19476, 52.99403 ], [ -1.19459, 52.99377 ], [ -1.19385, 52.99298 ], [ -1.19313, 52.9922 ], [ -1.19151, 52.99105 ], [ -1.19076, 52.99061 ], [ -1.19038, 52.99038 ], [ -1.19122, 52.99012 ], [ -1.19188, 52.99007 ], [ -1.19222, 52.99044 ], [ -1.19437, 52.99092 ], [ -1.19562, 52.99102 ], [ -1.19532, 52.99084 ], [ -1.19569, 52.99083 ], [ -1.19652, 52.99088 ], [ -1.19928, 52.99112 ], [ -1.20083, 52.98943 ], [ -1.2028, 52.98747 ], [ -1.20335, 52.98753 ], [ -1.20842, 52.98883 ], [ -1.21167, 52.99017 ], [ -1.21461, 52.99068 ], [ -1.21624, 52.99107 ], [ -1.21911, 52.9915 ], [ -1.21831, 52.99358 ], [ -1.21587, 52.99586 ], [ -1.21581, 52.99591 ], [ -1.2145, 52.99708 ], [ -1.21394, 52.9974 ], [ -1.21717, 53.00106 ], [ -1.21947, 53.00268 ], [ -1.21979, 53.00291 ], [ -1.2206, 53.00341 ], [ -1.22037, 53.00392 ], [ -1.22, 53.00537 ], [ -1.2187, 53.00648 ], [ -1.22118, 53.00743 ], [ -1.22288, 53.00737 ], [ -1.22515, 53.0081 ], [ -1.22474, 53.00861 ], [ -1.22239, 53.00838 ], [ -1.21704, 53.01065 ], [ -1.21018, 53.00796 ], [ -1.2117, 53.00693 ], [ -1.21288, 53.00693 ], [ -1.21389, 53.0059 ], [ -1.21359, 53.00552 ], [ -1.21088, 53.00455 ], [ -1.20936, 53.00373 ], [ -1.20699, 53.00202 ], [ -1.20677, 53.00183 ], [ -1.20551, 53.00056 ], [ -1.20206, 53.00127 ], [ -1.20127, 53.00153 ], [ -1.20026, 53.00073 ], [ -1.19915, 53.00129 ], [ -1.1981, 53.00139 ], [ -1.198, 52.99949 ], [ -1.19706, 52.99865 ], [ -1.19723, 52.99696 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002873", "population": 9595, "outputarea_code": "E00069858", "lsoa_code": "E01013854", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham North", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.16367, "latitude": 52.99637, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.15768, 52.99236 ], [ -1.15802, 52.99229 ], [ -1.16243, 52.99131 ], [ -1.16508, 52.99084 ], [ -1.16536, 52.98973 ], [ -1.16579, 52.98981 ], [ -1.16901, 52.99056 ], [ -1.16998, 52.99105 ], [ -1.17036, 52.99121 ], [ -1.17053, 52.99128 ], [ -1.17382, 52.99262 ], [ -1.17425, 52.99282 ], [ -1.17731, 52.99434 ], [ -1.17884, 52.99599 ], [ -1.17914, 52.99732 ], [ -1.17496, 52.99793 ], [ -1.17335, 52.99828 ], [ -1.17295, 52.99837 ], [ -1.16936, 52.99913 ], [ -1.1664, 52.9989 ], [ -1.16611, 52.9997 ], [ -1.16686, 53.0024 ], [ -1.16507, 53.00271 ], [ -1.16499, 53.00241 ], [ -1.16426, 53.00232 ], [ -1.16485, 53.00183 ], [ -1.16429, 53.00189 ], [ -1.1635, 53.00117 ], [ -1.16273, 53.00109 ], [ -1.16143, 53.00203 ], [ -1.16115, 53.00224 ], [ -1.16085, 53.00193 ], [ -1.16115, 53.00169 ], [ -1.16059, 53.00135 ], [ -1.16064, 53.00082 ], [ -1.15979, 53.00076 ], [ -1.15971, 53.0008 ], [ -1.15892, 53.00079 ], [ -1.15855, 53.00035 ], [ -1.15894, 53.00005 ], [ -1.15734, 52.99935 ], [ -1.15718, 52.99889 ], [ -1.15599, 52.99981 ], [ -1.15592, 53.00028 ], [ -1.15685, 53.00105 ], [ -1.157, 53.00239 ], [ -1.15552, 53.00274 ], [ -1.15411, 53.00246 ], [ -1.15257, 53.00331 ], [ -1.15299, 53.00257 ], [ -1.15117, 53.00254 ], [ -1.14992, 53.00188 ], [ -1.14988, 53.00108 ], [ -1.15094, 53.00006 ], [ -1.1508, 52.99958 ], [ -1.14981, 53.00009 ], [ -1.14992, 52.99926 ], [ -1.15344, 52.99744 ], [ -1.15366, 52.99718 ], [ -1.15238, 52.99664 ], [ -1.15356, 52.99626 ], [ -1.15349, 52.99614 ], [ -1.15233, 52.99385 ], [ -1.15768, 52.99236 ] ], [ [ -1.1508, 52.99958 ], [ -1.15193, 52.99959 ], [ -1.15316, 52.99828 ], [ -1.15522, 52.99813 ], [ -1.15479, 52.99751 ], [ -1.15314, 52.99823 ], [ -1.1508, 52.99958 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002874", "population": 6298, "outputarea_code": "E00070469", "lsoa_code": "E01013965", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham East", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.15071, "latitude": 52.98886, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.15302, 52.98303 ], [ -1.15275, 52.98204 ], [ -1.15779, 52.98189 ], [ -1.15821, 52.98333 ], [ -1.1583, 52.98362 ], [ -1.15834, 52.98375 ], [ -1.15936, 52.98626 ], [ -1.15945, 52.98694 ], [ -1.16011, 52.98815 ], [ -1.16536, 52.98973 ], [ -1.16508, 52.99084 ], [ -1.16243, 52.99131 ], [ -1.15802, 52.99229 ], [ -1.15768, 52.99236 ], [ -1.15233, 52.99385 ], [ -1.1498, 52.99413 ], [ -1.14534, 52.99467 ], [ -1.14338, 52.99476 ], [ -1.14187, 52.9948 ], [ -1.14181, 52.9955 ], [ -1.14067, 52.99571 ], [ -1.14049, 52.9948 ], [ -1.13825, 52.99484 ], [ -1.1387, 52.99422 ], [ -1.1392, 52.99347 ], [ -1.14004, 52.99259 ], [ -1.14, 52.99189 ], [ -1.14031, 52.98926 ], [ -1.14033, 52.98922 ], [ -1.14245, 52.98627 ], [ -1.14262, 52.98606 ], [ -1.14414, 52.98416 ], [ -1.14427, 52.984 ], [ -1.14464, 52.98408 ], [ -1.14543, 52.98421 ], [ -1.14568, 52.98398 ], [ -1.146, 52.98288 ], [ -1.14727, 52.98337 ], [ -1.14769, 52.98327 ], [ -1.1478, 52.98359 ], [ -1.14886, 52.9831 ], [ -1.15239, 52.98275 ], [ -1.15297, 52.98304 ], [ -1.15302, 52.98303 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002875", "population": 8571, "outputarea_code": "E00069743", "lsoa_code": "E01013835", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham North", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.17558, "latitude": 52.98848, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.17704, 52.98117 ], [ -1.17801, 52.98176 ], [ -1.17925, 52.98284 ], [ -1.18147, 52.98481 ], [ -1.18323, 52.98614 ], [ -1.1833, 52.98681 ], [ -1.18291, 52.98668 ], [ -1.18255, 52.98717 ], [ -1.18322, 52.98733 ], [ -1.18378, 52.98696 ], [ -1.18403, 52.98754 ], [ -1.18449, 52.98747 ], [ -1.18491, 52.98781 ], [ -1.18567, 52.98749 ], [ -1.18641, 52.98793 ], [ -1.18494, 52.98885 ], [ -1.18534, 52.98941 ], [ -1.18504, 52.98988 ], [ -1.18429, 52.99015 ], [ -1.18432, 52.99055 ], [ -1.1855, 52.99087 ], [ -1.18529, 52.99127 ], [ -1.18575, 52.99174 ], [ -1.18672, 52.99168 ], [ -1.18807, 52.99264 ], [ -1.1846, 52.99451 ], [ -1.1838, 52.99488 ], [ -1.18248, 52.99538 ], [ -1.18136, 52.99545 ], [ -1.18033, 52.99549 ], [ -1.18027, 52.99551 ], [ -1.17884, 52.99599 ], [ -1.17731, 52.99434 ], [ -1.17425, 52.99282 ], [ -1.17382, 52.99262 ], [ -1.17053, 52.99128 ], [ -1.17036, 52.99121 ], [ -1.16998, 52.99105 ], [ -1.16901, 52.99056 ], [ -1.16579, 52.98981 ], [ -1.16536, 52.98973 ], [ -1.16011, 52.98815 ], [ -1.15945, 52.98694 ], [ -1.16204, 52.98644 ], [ -1.16311, 52.98618 ], [ -1.16364, 52.98604 ], [ -1.16462, 52.98579 ], [ -1.16833, 52.98484 ], [ -1.17034, 52.98453 ], [ -1.17148, 52.98428 ], [ -1.1718, 52.98416 ], [ -1.17309, 52.98305 ], [ -1.17318, 52.98163 ], [ -1.17364, 52.98089 ], [ -1.1753, 52.97966 ], [ -1.17517, 52.98052 ], [ -1.17704, 52.98117 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002876", "population": 8256, "outputarea_code": "E00069746", "lsoa_code": "E01013831", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham North", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.18702, "latitude": 52.98193, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.1753, 52.97966 ], [ -1.17351, 52.97713 ], [ -1.1734, 52.97688 ], [ -1.17393, 52.97446 ], [ -1.17406, 52.97383 ], [ -1.17463, 52.97153 ], [ -1.17651, 52.97155 ], [ -1.1796, 52.97229 ], [ -1.18147, 52.97276 ], [ -1.18375, 52.97319 ], [ -1.18552, 52.97286 ], [ -1.18602, 52.97313 ], [ -1.18863, 52.97574 ], [ -1.18867, 52.97578 ], [ -1.19057, 52.9774 ], [ -1.19118, 52.97777 ], [ -1.19131, 52.97788 ], [ -1.1914, 52.97794 ], [ -1.19419, 52.98046 ], [ -1.19491, 52.98128 ], [ -1.19526, 52.98197 ], [ -1.19548, 52.98226 ], [ -1.19667, 52.98381 ], [ -1.19768, 52.9842 ], [ -1.20007, 52.9849 ], [ -1.20196, 52.98601 ], [ -1.20202, 52.98605 ], [ -1.20361, 52.98702 ], [ -1.20335, 52.98753 ], [ -1.2028, 52.98747 ], [ -1.20083, 52.98943 ], [ -1.19928, 52.99112 ], [ -1.19652, 52.99088 ], [ -1.19569, 52.99083 ], [ -1.19532, 52.99084 ], [ -1.19562, 52.99102 ], [ -1.19437, 52.99092 ], [ -1.19222, 52.99044 ], [ -1.19188, 52.99007 ], [ -1.19122, 52.99012 ], [ -1.19038, 52.99038 ], [ -1.19076, 52.99061 ], [ -1.18836, 52.99062 ], [ -1.18675, 52.99115 ], [ -1.18642, 52.99099 ], [ -1.18682, 52.99051 ], [ -1.18535, 52.99055 ], [ -1.18672, 52.99168 ], [ -1.18575, 52.99174 ], [ -1.18529, 52.99127 ], [ -1.1855, 52.99087 ], [ -1.18432, 52.99055 ], [ -1.18429, 52.99015 ], [ -1.18504, 52.98988 ], [ -1.18534, 52.98941 ], [ -1.18494, 52.98885 ], [ -1.18641, 52.98793 ], [ -1.18567, 52.98749 ], [ -1.18491, 52.98781 ], [ -1.18449, 52.98747 ], [ -1.18403, 52.98754 ], [ -1.18378, 52.98696 ], [ -1.18322, 52.98733 ], [ -1.18255, 52.98717 ], [ -1.18291, 52.98668 ], [ -1.1833, 52.98681 ], [ -1.18323, 52.98614 ], [ -1.18147, 52.98481 ], [ -1.17925, 52.98284 ], [ -1.17801, 52.98176 ], [ -1.17704, 52.98117 ], [ -1.17517, 52.98052 ], [ -1.1753, 52.97966 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002877", "population": 7658, "outputarea_code": "E00070316", "lsoa_code": "E01013935", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham East", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.13995, "latitude": 52.98165, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.14853, 52.978 ], [ -1.15032, 52.97543 ], [ -1.15029, 52.97621 ], [ -1.15124, 52.9764 ], [ -1.1521, 52.9763 ], [ -1.15215, 52.97599 ], [ -1.15286, 52.97606 ], [ -1.15375, 52.97662 ], [ -1.1539, 52.97703 ], [ -1.15331, 52.97709 ], [ -1.15287, 52.97776 ], [ -1.15331, 52.97845 ], [ -1.15122, 52.97847 ], [ -1.15107, 52.9787 ], [ -1.15352, 52.97879 ], [ -1.15416, 52.9792 ], [ -1.1543, 52.97971 ], [ -1.15527, 52.9789 ], [ -1.15708, 52.97933 ], [ -1.15715, 52.97953 ], [ -1.15726, 52.98001 ], [ -1.15779, 52.98189 ], [ -1.15275, 52.98204 ], [ -1.15302, 52.98303 ], [ -1.15297, 52.98304 ], [ -1.15239, 52.98275 ], [ -1.14886, 52.9831 ], [ -1.1478, 52.98359 ], [ -1.14769, 52.98327 ], [ -1.14727, 52.98337 ], [ -1.146, 52.98288 ], [ -1.14568, 52.98398 ], [ -1.14543, 52.98421 ], [ -1.14464, 52.98408 ], [ -1.14427, 52.984 ], [ -1.14414, 52.98416 ], [ -1.14262, 52.98606 ], [ -1.14245, 52.98627 ], [ -1.13982, 52.98595 ], [ -1.1378, 52.98633 ], [ -1.1362, 52.98652 ], [ -1.13594, 52.98653 ], [ -1.13282, 52.98652 ], [ -1.1312, 52.98608 ], [ -1.1273, 52.98503 ], [ -1.12485, 52.98406 ], [ -1.12373, 52.98347 ], [ -1.1228, 52.98347 ], [ -1.12344, 52.98304 ], [ -1.12567, 52.98161 ], [ -1.12527, 52.98148 ], [ -1.12546, 52.98119 ], [ -1.12584, 52.98061 ], [ -1.12487, 52.97938 ], [ -1.12432, 52.97869 ], [ -1.12572, 52.97854 ], [ -1.12754, 52.97887 ], [ -1.12955, 52.97882 ], [ -1.13029, 52.97974 ], [ -1.1296, 52.98057 ], [ -1.12853, 52.98096 ], [ -1.12867, 52.98114 ], [ -1.13194, 52.98022 ], [ -1.13176, 52.97988 ], [ -1.13281, 52.97964 ], [ -1.13333, 52.97888 ], [ -1.13403, 52.9791 ], [ -1.13468, 52.97867 ], [ -1.1348, 52.97927 ], [ -1.13554, 52.97942 ], [ -1.13688, 52.9791 ], [ -1.13731, 52.97954 ], [ -1.13791, 52.97951 ], [ -1.13714, 52.97883 ], [ -1.13873, 52.97755 ], [ -1.14121, 52.97856 ], [ -1.14235, 52.97841 ], [ -1.1426, 52.97811 ], [ -1.1457, 52.97786 ], [ -1.14557, 52.97764 ], [ -1.14626, 52.9775 ], [ -1.14667, 52.97778 ], [ -1.14741, 52.97769 ], [ -1.14763, 52.97809 ], [ -1.14853, 52.978 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002878", "population": 9565, "outputarea_code": "E00069695", "lsoa_code": "E01013826", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham North", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.21313, "latitude": 52.98088, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.21312, 52.97549 ], [ -1.2127, 52.97516 ], [ -1.21578, 52.97383 ], [ -1.21592, 52.97385 ], [ -1.21809, 52.97383 ], [ -1.2193, 52.97378 ], [ -1.21948, 52.97377 ], [ -1.22066, 52.97373 ], [ -1.22053, 52.97506 ], [ -1.22128, 52.97534 ], [ -1.22297, 52.97446 ], [ -1.22333, 52.97465 ], [ -1.22364, 52.97448 ], [ -1.22357, 52.97497 ], [ -1.22279, 52.97535 ], [ -1.22396, 52.9763 ], [ -1.22487, 52.97699 ], [ -1.22566, 52.97662 ], [ -1.22653, 52.97664 ], [ -1.2269, 52.97717 ], [ -1.22719, 52.9777 ], [ -1.22637, 52.97803 ], [ -1.22517, 52.97848 ], [ -1.22589, 52.98032 ], [ -1.22609, 52.98117 ], [ -1.22508, 52.98211 ], [ -1.22457, 52.98225 ], [ -1.2237, 52.98168 ], [ -1.22321, 52.982 ], [ -1.22201, 52.98332 ], [ -1.22405, 52.98414 ], [ -1.22259, 52.98593 ], [ -1.2175, 52.98383 ], [ -1.21521, 52.98314 ], [ -1.21398, 52.98364 ], [ -1.21316, 52.98474 ], [ -1.21098, 52.98594 ], [ -1.20706, 52.98694 ], [ -1.20547, 52.98713 ], [ -1.2053, 52.98739 ], [ -1.20361, 52.98702 ], [ -1.20202, 52.98605 ], [ -1.20196, 52.98601 ], [ -1.20007, 52.9849 ], [ -1.19768, 52.9842 ], [ -1.19667, 52.98381 ], [ -1.19548, 52.98226 ], [ -1.19561, 52.98161 ], [ -1.19625, 52.98119 ], [ -1.19673, 52.98138 ], [ -1.19732, 52.98186 ], [ -1.19764, 52.98147 ], [ -1.19826, 52.98171 ], [ -1.19984, 52.98101 ], [ -1.20108, 52.98095 ], [ -1.20149, 52.98058 ], [ -1.20324, 52.98035 ], [ -1.20313, 52.98096 ], [ -1.20682, 52.98044 ], [ -1.20699, 52.9802 ], [ -1.20713, 52.98007 ], [ -1.20859, 52.97867 ], [ -1.20888, 52.9784 ], [ -1.21055, 52.97826 ], [ -1.21172, 52.97737 ], [ -1.21173, 52.97699 ], [ -1.21122, 52.97648 ], [ -1.21312, 52.97549 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002879", "population": 9664, "outputarea_code": "E00069797", "lsoa_code": "E01013838", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham East", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.16532, "latitude": 52.9792, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.15631, 52.97645 ], [ -1.15599, 52.97542 ], [ -1.15595, 52.97532 ], [ -1.15696, 52.97507 ], [ -1.15977, 52.97437 ], [ -1.16142, 52.97396 ], [ -1.16068, 52.9733 ], [ -1.16, 52.9735 ], [ -1.15983, 52.97317 ], [ -1.16033, 52.97298 ], [ -1.16131, 52.97255 ], [ -1.16166, 52.97283 ], [ -1.16275, 52.97331 ], [ -1.16531, 52.97317 ], [ -1.16419, 52.97236 ], [ -1.1644, 52.97206 ], [ -1.16552, 52.97216 ], [ -1.16558, 52.97189 ], [ -1.16709, 52.97168 ], [ -1.16754, 52.97228 ], [ -1.16807, 52.97298 ], [ -1.16904, 52.97274 ], [ -1.16964, 52.97365 ], [ -1.17075, 52.97381 ], [ -1.17119, 52.97437 ], [ -1.17406, 52.97383 ], [ -1.17393, 52.97446 ], [ -1.1734, 52.97688 ], [ -1.17351, 52.97713 ], [ -1.1753, 52.97966 ], [ -1.17364, 52.98089 ], [ -1.17318, 52.98163 ], [ -1.17309, 52.98305 ], [ -1.1718, 52.98416 ], [ -1.17148, 52.98428 ], [ -1.17034, 52.98453 ], [ -1.16833, 52.98484 ], [ -1.16462, 52.98579 ], [ -1.16364, 52.98604 ], [ -1.16311, 52.98618 ], [ -1.16204, 52.98644 ], [ -1.15945, 52.98694 ], [ -1.15936, 52.98626 ], [ -1.15834, 52.98375 ], [ -1.1583, 52.98362 ], [ -1.15821, 52.98333 ], [ -1.15779, 52.98189 ], [ -1.15726, 52.98001 ], [ -1.15715, 52.97953 ], [ -1.15708, 52.97933 ], [ -1.15631, 52.97645 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002880", "population": 9099, "outputarea_code": "E00069693", "lsoa_code": "E01013821", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham North", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.20173, "latitude": 52.97637, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.19828, 52.97103 ], [ -1.2002, 52.97176 ], [ -1.20305, 52.97204 ], [ -1.20443, 52.97216 ], [ -1.20829, 52.97287 ], [ -1.20906, 52.97306 ], [ -1.21152, 52.97324 ], [ -1.21578, 52.97383 ], [ -1.2127, 52.97516 ], [ -1.21312, 52.97549 ], [ -1.21122, 52.97648 ], [ -1.21173, 52.97699 ], [ -1.21172, 52.97737 ], [ -1.21055, 52.97826 ], [ -1.20888, 52.9784 ], [ -1.20859, 52.97867 ], [ -1.20713, 52.98007 ], [ -1.20699, 52.9802 ], [ -1.20682, 52.98044 ], [ -1.20313, 52.98096 ], [ -1.20324, 52.98035 ], [ -1.20149, 52.98058 ], [ -1.20108, 52.98095 ], [ -1.19984, 52.98101 ], [ -1.19826, 52.98171 ], [ -1.19764, 52.98147 ], [ -1.19732, 52.98186 ], [ -1.19673, 52.98138 ], [ -1.19625, 52.98119 ], [ -1.19561, 52.98161 ], [ -1.19548, 52.98226 ], [ -1.19526, 52.98197 ], [ -1.19491, 52.98128 ], [ -1.19419, 52.98046 ], [ -1.1914, 52.97794 ], [ -1.19131, 52.97788 ], [ -1.19118, 52.97777 ], [ -1.19057, 52.9774 ], [ -1.19079, 52.97674 ], [ -1.19113, 52.97676 ], [ -1.19401, 52.97407 ], [ -1.19404, 52.97404 ], [ -1.19706, 52.97102 ], [ -1.19787, 52.97138 ], [ -1.19828, 52.97103 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002881", "population": 6486, "outputarea_code": "E00069907", "lsoa_code": "E01013866", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham North", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.23026, "latitude": 52.97541, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.21081, 52.96893 ], [ -1.21451, 52.96793 ], [ -1.21607, 52.96704 ], [ -1.21712, 52.96703 ], [ -1.22101, 52.96657 ], [ -1.22175, 52.96731 ], [ -1.22042, 52.96739 ], [ -1.22039, 52.96922 ], [ -1.22137, 52.97013 ], [ -1.22371, 52.9693 ], [ -1.22347, 52.96905 ], [ -1.22506, 52.96817 ], [ -1.22647, 52.96823 ], [ -1.2266, 52.96778 ], [ -1.22737, 52.96789 ], [ -1.22726, 52.9683 ], [ -1.22896, 52.97001 ], [ -1.22941, 52.9699 ], [ -1.22968, 52.97019 ], [ -1.22988, 52.9698 ], [ -1.23094, 52.96952 ], [ -1.23164, 52.9697 ], [ -1.23331, 52.96923 ], [ -1.23454, 52.97095 ], [ -1.23508, 52.97148 ], [ -1.23678, 52.9715 ], [ -1.23698, 52.97178 ], [ -1.23982, 52.9765 ], [ -1.23985, 52.9776 ], [ -1.24086, 52.97804 ], [ -1.24261, 52.97783 ], [ -1.24364, 52.97868 ], [ -1.24489, 52.98119 ], [ -1.24651, 52.98311 ], [ -1.24684, 52.98454 ], [ -1.24546, 52.98522 ], [ -1.24213, 52.98359 ], [ -1.23938, 52.98265 ], [ -1.23506, 52.98255 ], [ -1.2336, 52.98219 ], [ -1.23101, 52.982 ], [ -1.22844, 52.98145 ], [ -1.22609, 52.98117 ], [ -1.22589, 52.98032 ], [ -1.22517, 52.97848 ], [ -1.22637, 52.97803 ], [ -1.22719, 52.9777 ], [ -1.2269, 52.97717 ], [ -1.22653, 52.97664 ], [ -1.22566, 52.97662 ], [ -1.22487, 52.97699 ], [ -1.22396, 52.9763 ], [ -1.22279, 52.97535 ], [ -1.22357, 52.97497 ], [ -1.22364, 52.97448 ], [ -1.22333, 52.97465 ], [ -1.22297, 52.97446 ], [ -1.22128, 52.97534 ], [ -1.22053, 52.97506 ], [ -1.22066, 52.97373 ], [ -1.21948, 52.97377 ], [ -1.2193, 52.97378 ], [ -1.21809, 52.97383 ], [ -1.21592, 52.97385 ], [ -1.21695, 52.97325 ], [ -1.21723, 52.9725 ], [ -1.21683, 52.97168 ], [ -1.2158, 52.97103 ], [ -1.21418, 52.97028 ], [ -1.21081, 52.96893 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002882", "population": 8278, "outputarea_code": "E00070306", "lsoa_code": "E01013937", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham East", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.14397, "latitude": 52.97183, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.14393, 52.96631 ], [ -1.14398, 52.96617 ], [ -1.14468, 52.96474 ], [ -1.14471, 52.96468 ], [ -1.147, 52.96455 ], [ -1.14717, 52.96457 ], [ -1.1484, 52.96479 ], [ -1.14901, 52.96498 ], [ -1.15139, 52.9632 ], [ -1.15248, 52.96451 ], [ -1.15266, 52.9648 ], [ -1.15276, 52.96496 ], [ -1.15368, 52.96775 ], [ -1.15415, 52.9681 ], [ -1.15388, 52.9686 ], [ -1.15377, 52.96923 ], [ -1.15376, 52.96944 ], [ -1.15345, 52.97088 ], [ -1.15472, 52.97305 ], [ -1.15581, 52.97497 ], [ -1.15595, 52.97532 ], [ -1.15599, 52.97542 ], [ -1.15631, 52.97645 ], [ -1.15708, 52.97933 ], [ -1.15527, 52.9789 ], [ -1.1543, 52.97971 ], [ -1.15416, 52.9792 ], [ -1.15352, 52.97879 ], [ -1.15107, 52.9787 ], [ -1.15122, 52.97847 ], [ -1.15331, 52.97845 ], [ -1.15287, 52.97776 ], [ -1.15331, 52.97709 ], [ -1.1539, 52.97703 ], [ -1.15375, 52.97662 ], [ -1.15286, 52.97606 ], [ -1.15215, 52.97599 ], [ -1.1521, 52.9763 ], [ -1.15124, 52.9764 ], [ -1.15029, 52.97621 ], [ -1.15032, 52.97543 ], [ -1.14853, 52.978 ], [ -1.14763, 52.97809 ], [ -1.14741, 52.97769 ], [ -1.14667, 52.97778 ], [ -1.14626, 52.9775 ], [ -1.14557, 52.97764 ], [ -1.1457, 52.97786 ], [ -1.1426, 52.97811 ], [ -1.14235, 52.97841 ], [ -1.14121, 52.97856 ], [ -1.13873, 52.97755 ], [ -1.13714, 52.97883 ], [ -1.13791, 52.97951 ], [ -1.13731, 52.97954 ], [ -1.13688, 52.9791 ], [ -1.13554, 52.97942 ], [ -1.1348, 52.97927 ], [ -1.13468, 52.97867 ], [ -1.13403, 52.9791 ], [ -1.13333, 52.97888 ], [ -1.13422, 52.97848 ], [ -1.13402, 52.97807 ], [ -1.13527, 52.97656 ], [ -1.13352, 52.97619 ], [ -1.13349, 52.97681 ], [ -1.13297, 52.97671 ], [ -1.13234, 52.97703 ], [ -1.13206, 52.97592 ], [ -1.13337, 52.97605 ], [ -1.13404, 52.9758 ], [ -1.13307, 52.97445 ], [ -1.13457, 52.97381 ], [ -1.13524, 52.9738 ], [ -1.13566, 52.97412 ], [ -1.13724, 52.97303 ], [ -1.13697, 52.9725 ], [ -1.13438, 52.97139 ], [ -1.13047, 52.97199 ], [ -1.13074, 52.97132 ], [ -1.131, 52.97091 ], [ -1.13166, 52.97114 ], [ -1.13146, 52.97015 ], [ -1.13067, 52.96984 ], [ -1.13082, 52.96908 ], [ -1.13124, 52.96901 ], [ -1.13098, 52.96771 ], [ -1.13163, 52.96767 ], [ -1.13319, 52.96599 ], [ -1.13343, 52.96583 ], [ -1.13443, 52.9658 ], [ -1.1354, 52.96651 ], [ -1.13788, 52.96493 ], [ -1.13834, 52.96538 ], [ -1.13861, 52.96567 ], [ -1.13946, 52.96657 ], [ -1.14208, 52.9676 ], [ -1.14192, 52.96782 ], [ -1.14257, 52.96812 ], [ -1.14297, 52.96825 ], [ -1.1434, 52.96769 ], [ -1.14374, 52.96685 ], [ -1.14393, 52.96631 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002883", "population": 7681, "outputarea_code": "E00070310", "lsoa_code": "E01013940", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham East", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.12654, "latitude": 52.97152, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.11544, 52.96498 ], [ -1.11525, 52.96489 ], [ -1.11819, 52.96341 ], [ -1.12067, 52.96184 ], [ -1.12116, 52.9615 ], [ -1.12153, 52.96195 ], [ -1.12137, 52.96313 ], [ -1.12145, 52.96359 ], [ -1.12203, 52.96372 ], [ -1.1252, 52.9644 ], [ -1.12668, 52.96463 ], [ -1.12752, 52.96475 ], [ -1.13025, 52.96531 ], [ -1.13091, 52.96739 ], [ -1.13098, 52.96771 ], [ -1.13124, 52.96901 ], [ -1.13082, 52.96908 ], [ -1.13067, 52.96984 ], [ -1.13146, 52.97015 ], [ -1.13166, 52.97114 ], [ -1.131, 52.97091 ], [ -1.13074, 52.97132 ], [ -1.13047, 52.97199 ], [ -1.13438, 52.97139 ], [ -1.13697, 52.9725 ], [ -1.13724, 52.97303 ], [ -1.13566, 52.97412 ], [ -1.13524, 52.9738 ], [ -1.13457, 52.97381 ], [ -1.13307, 52.97445 ], [ -1.13404, 52.9758 ], [ -1.13337, 52.97605 ], [ -1.13206, 52.97592 ], [ -1.13234, 52.97703 ], [ -1.13297, 52.97671 ], [ -1.13349, 52.97681 ], [ -1.13352, 52.97619 ], [ -1.13527, 52.97656 ], [ -1.13402, 52.97807 ], [ -1.13422, 52.97848 ], [ -1.13333, 52.97888 ], [ -1.13281, 52.97964 ], [ -1.13176, 52.97988 ], [ -1.13194, 52.98022 ], [ -1.12867, 52.98114 ], [ -1.12853, 52.98096 ], [ -1.1296, 52.98057 ], [ -1.13029, 52.97974 ], [ -1.12955, 52.97882 ], [ -1.12754, 52.97887 ], [ -1.12572, 52.97854 ], [ -1.12432, 52.97869 ], [ -1.12426, 52.97861 ], [ -1.12354, 52.97768 ], [ -1.12283, 52.97676 ], [ -1.12277, 52.97669 ], [ -1.12132, 52.97491 ], [ -1.12125, 52.97488 ], [ -1.1205, 52.97457 ], [ -1.12046, 52.97377 ], [ -1.12001, 52.97186 ], [ -1.11999, 52.97177 ], [ -1.11993, 52.97129 ], [ -1.1198, 52.97004 ], [ -1.11996, 52.96839 ], [ -1.12079, 52.96777 ], [ -1.12144, 52.96625 ], [ -1.12124, 52.96581 ], [ -1.11986, 52.96556 ], [ -1.11723, 52.96548 ], [ -1.11677, 52.96571 ], [ -1.11544, 52.96498 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002884", "population": 6672, "outputarea_code": "E00069803", "lsoa_code": "E01013843", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham East", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.16045, "latitude": 52.97048, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.16718, 52.96808 ], [ -1.16518, 52.96853 ], [ -1.16529, 52.96873 ], [ -1.16656, 52.96841 ], [ -1.16713, 52.96973 ], [ -1.16604, 52.96997 ], [ -1.16616, 52.97016 ], [ -1.16754, 52.96989 ], [ -1.16842, 52.97136 ], [ -1.168, 52.97231 ], [ -1.16754, 52.97228 ], [ -1.16709, 52.97168 ], [ -1.16558, 52.97189 ], [ -1.16552, 52.97216 ], [ -1.1644, 52.97206 ], [ -1.16419, 52.97236 ], [ -1.16531, 52.97317 ], [ -1.16275, 52.97331 ], [ -1.16166, 52.97283 ], [ -1.16131, 52.97255 ], [ -1.16033, 52.97298 ], [ -1.15983, 52.97317 ], [ -1.16, 52.9735 ], [ -1.16068, 52.9733 ], [ -1.16142, 52.97396 ], [ -1.15977, 52.97437 ], [ -1.15696, 52.97507 ], [ -1.15595, 52.97532 ], [ -1.15581, 52.97497 ], [ -1.15472, 52.97305 ], [ -1.15345, 52.97088 ], [ -1.15376, 52.96944 ], [ -1.15377, 52.96923 ], [ -1.15388, 52.9686 ], [ -1.15415, 52.9681 ], [ -1.15524, 52.96824 ], [ -1.15578, 52.96798 ], [ -1.1601, 52.96723 ], [ -1.16393, 52.96655 ], [ -1.166, 52.96618 ], [ -1.16718, 52.96808 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002885", "population": 8973, "outputarea_code": "E00069663", "lsoa_code": "E01013810", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham East", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.17209, "latitude": 52.96755, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.16972, 52.96296 ], [ -1.16885, 52.96217 ], [ -1.16961, 52.96212 ], [ -1.17064, 52.96152 ], [ -1.17273, 52.96238 ], [ -1.17393, 52.96289 ], [ -1.17444, 52.9631 ], [ -1.17696, 52.96381 ], [ -1.17794, 52.96407 ], [ -1.17972, 52.96454 ], [ -1.17996, 52.96462 ], [ -1.18016, 52.96469 ], [ -1.18083, 52.96505 ], [ -1.18016, 52.96511 ], [ -1.17751, 52.96763 ], [ -1.17662, 52.96817 ], [ -1.17596, 52.96855 ], [ -1.17553, 52.96834 ], [ -1.17473, 52.96878 ], [ -1.17494, 52.96905 ], [ -1.17404, 52.96917 ], [ -1.17362, 52.9694 ], [ -1.17374, 52.96955 ], [ -1.17463, 52.97153 ], [ -1.17406, 52.97383 ], [ -1.17119, 52.97437 ], [ -1.17075, 52.97381 ], [ -1.16964, 52.97365 ], [ -1.16904, 52.97274 ], [ -1.16807, 52.97298 ], [ -1.16754, 52.97228 ], [ -1.168, 52.97231 ], [ -1.16842, 52.97136 ], [ -1.16754, 52.96989 ], [ -1.16616, 52.97016 ], [ -1.16604, 52.96997 ], [ -1.16713, 52.96973 ], [ -1.16656, 52.96841 ], [ -1.16529, 52.96873 ], [ -1.16518, 52.96853 ], [ -1.16718, 52.96808 ], [ -1.166, 52.96618 ], [ -1.16692, 52.96601 ], [ -1.16768, 52.96587 ], [ -1.16672, 52.96418 ], [ -1.16714, 52.96414 ], [ -1.1681, 52.96365 ], [ -1.16888, 52.96377 ], [ -1.16875, 52.9635 ], [ -1.16899, 52.96375 ], [ -1.17007, 52.96352 ], [ -1.16972, 52.96296 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002886", "population": 9338, "outputarea_code": "E00070274", "lsoa_code": "E01013932", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham South", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.18924, "latitude": 52.96625, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.18438, 52.95552 ], [ -1.19108, 52.95524 ], [ -1.19225, 52.95514 ], [ -1.1927, 52.95578 ], [ -1.19214, 52.95585 ], [ -1.19222, 52.9565 ], [ -1.19373, 52.95729 ], [ -1.19351, 52.95965 ], [ -1.19549, 52.95976 ], [ -1.19787, 52.95984 ], [ -1.19745, 52.96129 ], [ -1.2001, 52.96139 ], [ -1.20056, 52.96147 ], [ -1.19988, 52.96248 ], [ -1.19988, 52.96343 ], [ -1.20048, 52.96558 ], [ -1.19992, 52.96977 ], [ -1.19863, 52.97075 ], [ -1.19828, 52.97103 ], [ -1.19787, 52.97138 ], [ -1.19706, 52.97102 ], [ -1.19404, 52.97404 ], [ -1.19401, 52.97407 ], [ -1.19113, 52.97676 ], [ -1.19079, 52.97674 ], [ -1.19057, 52.9774 ], [ -1.18867, 52.97578 ], [ -1.18863, 52.97574 ], [ -1.18602, 52.97313 ], [ -1.18552, 52.97286 ], [ -1.18375, 52.97319 ], [ -1.18147, 52.97276 ], [ -1.1796, 52.97229 ], [ -1.17651, 52.97155 ], [ -1.17463, 52.97153 ], [ -1.17374, 52.96955 ], [ -1.17362, 52.9694 ], [ -1.17404, 52.96917 ], [ -1.17494, 52.96905 ], [ -1.17473, 52.96878 ], [ -1.17553, 52.96834 ], [ -1.17596, 52.96855 ], [ -1.17662, 52.96817 ], [ -1.17751, 52.96763 ], [ -1.18016, 52.96511 ], [ -1.18083, 52.96505 ], [ -1.18306, 52.96675 ], [ -1.1831, 52.96678 ], [ -1.18388, 52.96365 ], [ -1.1839, 52.96343 ], [ -1.1842, 52.96044 ], [ -1.1842, 52.96037 ], [ -1.18445, 52.9576 ], [ -1.18449, 52.95691 ], [ -1.18438, 52.95552 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002887", "population": 6634, "outputarea_code": "E00069910", "lsoa_code": "E01013868", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham North", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.21256, "latitude": 52.96612, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.19787, 52.95984 ], [ -1.19906, 52.95989 ], [ -1.20009, 52.95992 ], [ -1.20387, 52.96007 ], [ -1.20397, 52.96008 ], [ -1.20906, 52.96029 ], [ -1.21041, 52.96035 ], [ -1.21314, 52.96046 ], [ -1.21841, 52.96018 ], [ -1.21963, 52.96118 ], [ -1.22001, 52.96222 ], [ -1.22363, 52.96204 ], [ -1.22315, 52.9624 ], [ -1.22298, 52.96271 ], [ -1.22363, 52.96275 ], [ -1.22312, 52.96332 ], [ -1.22411, 52.96331 ], [ -1.22482, 52.96331 ], [ -1.2253, 52.9636 ], [ -1.22514, 52.96387 ], [ -1.22588, 52.96406 ], [ -1.22587, 52.96359 ], [ -1.22702, 52.96355 ], [ -1.22768, 52.9644 ], [ -1.22848, 52.96462 ], [ -1.2289, 52.9639 ], [ -1.22958, 52.96406 ], [ -1.22982, 52.96374 ], [ -1.2324, 52.96297 ], [ -1.2328, 52.96325 ], [ -1.23274, 52.96363 ], [ -1.2313, 52.96383 ], [ -1.23104, 52.96423 ], [ -1.23039, 52.96411 ], [ -1.23039, 52.96509 ], [ -1.22899, 52.96575 ], [ -1.22964, 52.966 ], [ -1.22926, 52.96637 ], [ -1.22994, 52.96661 ], [ -1.22974, 52.96698 ], [ -1.23036, 52.96719 ], [ -1.23018, 52.96758 ], [ -1.23266, 52.96841 ], [ -1.23331, 52.96923 ], [ -1.23164, 52.9697 ], [ -1.23094, 52.96952 ], [ -1.22988, 52.9698 ], [ -1.22968, 52.97019 ], [ -1.22941, 52.9699 ], [ -1.22896, 52.97001 ], [ -1.22726, 52.9683 ], [ -1.22737, 52.96789 ], [ -1.2266, 52.96778 ], [ -1.22647, 52.96823 ], [ -1.22506, 52.96817 ], [ -1.22347, 52.96905 ], [ -1.22371, 52.9693 ], [ -1.22137, 52.97013 ], [ -1.22039, 52.96922 ], [ -1.22042, 52.96739 ], [ -1.22175, 52.96731 ], [ -1.22101, 52.96657 ], [ -1.21712, 52.96703 ], [ -1.21607, 52.96704 ], [ -1.21451, 52.96793 ], [ -1.21081, 52.96893 ], [ -1.21418, 52.97028 ], [ -1.2158, 52.97103 ], [ -1.21683, 52.97168 ], [ -1.21723, 52.9725 ], [ -1.21695, 52.97325 ], [ -1.21592, 52.97385 ], [ -1.21578, 52.97383 ], [ -1.21152, 52.97324 ], [ -1.20906, 52.97306 ], [ -1.20829, 52.97287 ], [ -1.20443, 52.97216 ], [ -1.20305, 52.97204 ], [ -1.2002, 52.97176 ], [ -1.19828, 52.97103 ], [ -1.19863, 52.97075 ], [ -1.19992, 52.96977 ], [ -1.20048, 52.96558 ], [ -1.19988, 52.96343 ], [ -1.19988, 52.96248 ], [ -1.20056, 52.96147 ], [ -1.2001, 52.96139 ], [ -1.19745, 52.96129 ], [ -1.19787, 52.95984 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002888", "population": 7274, "outputarea_code": "E00070416", "lsoa_code": "E01013959", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham East", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.13016, "latitude": 52.96137, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.12016, 52.95908 ], [ -1.12058, 52.95886 ], [ -1.12058, 52.95689 ], [ -1.12181, 52.957 ], [ -1.12583, 52.95624 ], [ -1.12673, 52.95666 ], [ -1.12749, 52.95633 ], [ -1.12824, 52.95633 ], [ -1.12769, 52.95675 ], [ -1.12823, 52.95704 ], [ -1.13099, 52.95527 ], [ -1.12989, 52.95606 ], [ -1.13093, 52.95676 ], [ -1.13135, 52.95723 ], [ -1.1308, 52.95733 ], [ -1.13083, 52.95775 ], [ -1.13374, 52.95757 ], [ -1.13546, 52.95715 ], [ -1.13722, 52.95722 ], [ -1.13659, 52.95897 ], [ -1.13591, 52.95892 ], [ -1.13544, 52.95937 ], [ -1.13532, 52.95978 ], [ -1.13597, 52.95997 ], [ -1.1357, 52.96022 ], [ -1.13738, 52.96143 ], [ -1.1381, 52.96105 ], [ -1.14074, 52.96173 ], [ -1.14004, 52.96233 ], [ -1.14168, 52.9633 ], [ -1.14084, 52.96418 ], [ -1.14163, 52.96447 ], [ -1.14173, 52.96482 ], [ -1.14022, 52.96572 ], [ -1.13964, 52.96509 ], [ -1.13861, 52.96567 ], [ -1.13834, 52.96538 ], [ -1.13788, 52.96493 ], [ -1.1354, 52.96651 ], [ -1.13443, 52.9658 ], [ -1.13343, 52.96583 ], [ -1.13319, 52.96599 ], [ -1.13163, 52.96767 ], [ -1.13098, 52.96771 ], [ -1.13091, 52.96739 ], [ -1.13025, 52.96531 ], [ -1.12752, 52.96475 ], [ -1.12668, 52.96463 ], [ -1.1252, 52.9644 ], [ -1.12203, 52.96372 ], [ -1.12145, 52.96359 ], [ -1.12137, 52.96313 ], [ -1.12153, 52.96195 ], [ -1.12116, 52.9615 ], [ -1.12067, 52.96184 ], [ -1.12068, 52.96152 ], [ -1.12058, 52.96022 ], [ -1.11903, 52.95907 ], [ -1.11939, 52.95898 ], [ -1.12016, 52.95908 ] ] ] } },
{ "type": "Feature", "properties": { "region_name": "East Midlands", "Town": "Nottingham", "bua_code": "E35001316", "msoa_code": "E02002889", "population": 11930, "outputarea_code": "E00069658", "lsoa_code": "E01013814", "la_name": "Nottingham", "bua_name": "Nottingham BUASD", "constituency_name": "Nottingham East", "citytownclassification": "Core City (outside London)", "urban": "Y", "longitude": -1.15937, "latitude": 52.96128, "pgroup": "100k" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.15118, 52.9563 ], [ -1.15082, 52.95502 ], [ -1.15313, 52.95475 ], [ -1.15406, 52.95459 ], [ -1.15521, 52.95424 ], [ -1.1573, 52.95497 ], [ -1.1588, 52.95538 ], [ -1.16059, 52.95565 ], [ -1.16116, 52.95574 ], [ -1.16347, 52.95682 ], [ -1.16515, 52.95763 ], [ -1.16627, 52.95821 ], [ -1.16682, 52.95855 ], [ -1.16795, 52.95935 ], [ -1.16829, 52.95965 ], [ -1.1687, 52.96 ], [ -1.16965, 52.96084 ], [ -1.17064, 52.96152 ], [ -1.16961, 52.96212 ], [ -1.16885, 52.96217 ], [ -1.16972, 52.96296 ], [ -1.17007, 52.96352 ], [ -1.16899, 52.96375 ], [ -1.16875, 52.9635 ], [ -1.16888, 52.96377 ], [ -1.1681, 52.96365 ], [ -1.16714, 52.96414 ], [ -1.16672, 52.96418 ], [ -1.16768, 52.96587 ], [ -1.16692, 52.96601 ], [ -1.166, 52.96618 ], [ -1.16393, 52.96655 ], [ -1.1601, 52.96723 ], [ -1.15578, 52.96798 ], [ -1.15524, 52.96824 ], [ -1.15415, 52.9681 ], [ -1.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment