aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/app.py180
-rw-r--r--src/charts.json77
-rw-r--r--src/database.py434
-rw-r--r--src/insinuations.py86
-rw-r--r--src/parser.py85
-rw-r--r--src/static/scripts.js319
-rw-r--r--src/static/style.css144
-rw-r--r--src/static/ukcounties.json1
-rw-r--r--src/templates/index.html.j216
-rw-r--r--src/templates/plot.html.j28
-rw-r--r--src/templates/search.html.j216
-rw-r--r--src/templates/template.html.j295
12 files changed, 1461 insertions, 0 deletions
diff --git a/src/app.py b/src/app.py
new file mode 100644
index 0000000..aa0d2b7
--- /dev/null
+++ b/src/app.py
@@ -0,0 +1,180 @@
+from paste.translogger import TransLogger
+from waitress import serve
+import database
+import urllib.parse
+import flask
+import sys
+import json
+import os
+
+app = flask.Flask(__name__)
+
+if not os.path.exists(os.path.join(os.path.dirname(__file__), "..", ".docker")):
+ import dotenv
+ dotenv.load_dotenv(dotenv_path = os.path.join(os.path.dirname(__file__), "..", "db.env"))
+ host = "srv.home"
+else:
+ host = "db"
+
+with open(os.path.join(os.path.dirname(__file__), "static", "ukcounties.json"), "r") as f:
+ UK_GEOJSON = json.load(f)
+
+@app.route("/")
+def serve_index():
+ return flask.render_template(
+ "index.html.j2",
+ title = "UK Gender Pay Gap",
+ charts = get_charts()["index"]
+ )
+
+def get_charts():
+ with open(os.path.join(os.path.dirname(__file__), "charts.json"), "r") as f:
+ return json.load(f)
+
+@app.route("/api/charts.json")
+def serve_charts():
+ return flask.jsonify(get_charts())
+
+
+@app.route("/search_click", methods = ["POST"])
+def search_redirect():
+ return flask.redirect("/search?s=%s" % urllib.parse.quote_plus(dict(flask.request.form)["search"]))
+
+@app.route("/plot/<name>/apply_click", methods = ["POST"])
+def apply_redirect(name):
+ new_args = {}
+ res = dict(flask.request.form)
+ for k, v in res.items():
+ if k == "allyears":
+ continue
+ if k == "yearslider":
+ with database.PayGapDatabase(host = host) as db:
+ new_args["year"] = db.get_years()[int(v) - 1]
+ elif v != "No filter":
+ new_args[k] = v
+
+
+ if "allyears" in res.keys():
+ if res["allyears"] == "allyears":
+ del new_args["year"]
+
+ # print("/" + "/".join(flask.request.full_path.split("/")[1:-1]) + "?" + urllib.parse.urlencode(new_args))
+ return flask.redirect("/" + "/".join(flask.request.full_path.split("/")[1:-1]) + "?" + urllib.parse.urlencode(new_args))
+
+@app.route("/api/years")
+def api_get_years():
+ pay_type = flask.request.args.get("Pay Type")
+ sic_type = flask.request.args.get("SIC Type")
+ employer_type = flask.request.args.get("Employer Type")
+ employer_size = flask.request.args.get("Employer Size")
+ # print("sic_type", sic_type)
+ # print("employer_type", employer_type)
+ # print("employer_size", employer_size)
+ if pay_type is None or pay_type.lower() not in {'hourly', 'bonuses'}:
+ return flask.abort(400, "The key `pay type` must be equal to 'hourly' or 'bonuses'")
+ with database.PayGapDatabase(host = host) as db:
+ return flask.jsonify(db.get_pay_by_year(pay_type, sic_section_name = sic_type, employer_size = employer_size, employer_type = employer_type))
+
+@app.route("/api/sic_sec")
+def api_get_sic_section_pay():
+ pay_type = flask.request.args.get("Pay Type")
+ year = flask.request.args.get("year")
+ # print("year: '%s'" % year)
+ if pay_type is None or pay_type.lower() not in {'hourly', 'bonuses'}:
+ return flask.abort(400, "The key `pay type` must be equal to 'hourly' or 'bonuses'")
+ with database.PayGapDatabase(host = host) as db:
+ if year is not None:
+ if year not in db.get_years():
+ return flask.abort(400, "Unrecognised year '%s'. The year option must be in %s" % (year, ", ".join(db.get_years())))
+
+ return flask.jsonify(db.get_pay_by_sic_section(pay_type, year))
+
+@app.route("/api/heatmap")
+def api_get_heatmap_data():
+ # pay_type = flask.request.args.get("Pay Type")
+ year = flask.request.args.get("year")
+ # print("year: '%s'" % year)
+ # if pay_type is None or pay_type.lower() not in {'hourly', 'bonuses'}:
+ # return flask.abort(400, "The key `pay type` must be equal to 'hourly' or 'bonuses'")
+ with database.PayGapDatabase(host = host) as db:
+ if year is not None:
+ if year not in db.get_years():
+ return flask.abort(400, "Unrecognised year '%s'. The year option must be in %s" % (year, ", ".join(db.get_years())))
+
+ return flask.jsonify(db.get_heatmap_data("hourly", year))
+
+@app.route("/api/getyears")
+def api_get_year_options():
+ with database.PayGapDatabase(host = host) as db:
+ return flask.jsonify(db.get_years())
+
+@app.route("/search")
+def search():
+ with database.PayGapDatabase(host = host) as db:
+ search_text = flask.request.args.get("s")
+ companies = db.search_company(search_text)
+ if len(companies) == 1:
+ return flask.redirect("/company/%s" % companies[0][1])
+
+ return flask.render_template(
+ "search.html.j2",
+ title = "Search",
+ companies = companies
+ )
+
+def get_chart_elem(url):
+ for i in get_charts()["index"]:
+ # print(i["url"], url)
+ # if i["url"] == url:
+ # return i
+ if url.startswith(i["url"]):
+ return i
+
+def get_chart_elem_strict(url):
+ for i in get_charts()["index"]:
+ print(urllib.parse.urlsplit(i["url"]).path, urllib.parse.urlsplit(url).path)
+ if urllib.parse.urlsplit(i["url"]).path == urllib.parse.urlsplit(url).path:
+ return i
+
+@app.route("/plot/<name>")
+def serve_large_plot(name):
+ with database.PayGapDatabase(host = host) as db:
+ # print(flask.request.full_path)
+ elem = get_chart_elem(flask.request.full_path)
+ # if elem is None:
+ # elem = get_chart_elem_strict(flask.request.full_path)
+ filters = elem["filters"]
+ for k, v in filters.items():
+ if v == "<SICType>":
+ filters[k] = {"options": db.get_sic_sections()}
+ if v == "<CompanyType>":
+ filters[k] = {"options": db.get_company_types()}
+ if v == "<CompanySize>":
+ filters[k] = {"options": db.get_company_sizes()}
+ if v == "<Years>":
+ filters[k] = {"yearslider": db.get_years()}
+
+ elem["url"] = flask.request.full_path
+ # print("elem", elem)
+ current_filters = dict(flask.request.args)
+ print("filters", filters)
+ print("current_filters", current_filters)
+ return flask.render_template(
+ "plot.html.j2",
+ title = elem["title"],
+ elem = elem,
+ alt = elem["description"],
+ filters = filters,
+ current_filters = current_filters,
+ len = len
+ )
+
+if __name__ == "__main__":
+ try:
+ if sys.argv[1] == "--production":
+ #serve(TransLogger(app), host='127.0.0.1', port = 6969)
+ serve(TransLogger(app), host='0.0.0.0', port = 5006, threads = 32)
+ else:
+ app.run(host = "0.0.0.0", port = 5005, debug = True)
+ except IndexError:
+ app.run(host = "0.0.0.0", port = 5005, debug = True) \ No newline at end of file
diff --git a/src/charts.json b/src/charts.json
new file mode 100644
index 0000000..8624fec
--- /dev/null
+++ b/src/charts.json
@@ -0,0 +1,77 @@
+{
+ "index":
+ [
+ {
+ "title": "Median Hourly Pay by County or Local Authority: Choropleth Map",
+ "url": "/plot/heatmap",
+ "filters": {
+ "Year": "<Years>"
+ },
+ "description": "A chloropleth map showing gender pay inequality data in the counties or local authorities of the United Kingdom. The general trend is that women get paid 5-15% less but there are some areas in the South of England where women get paid 15% less hourly. There are some parts of South Wales, North Wales or Northern Ireland where women get paid slightly more. In some parts of Scotland hourly pay is nearly equal. The user can adjust the time frame of the data being shown, back to 2017. The default is all years. The general trend is as time continues forwards, fewer parts of the country have equal pay and more pay inequality appears on the map. As with all chloropleth maps, it is important to consider population density."
+ },
+ {
+ "title": "Median Hourly Pay Difference by Year",
+ "url": "/plot/years?Pay+Type=Hourly",
+ "filters": {
+ "Pay Type": {
+ "options": [
+ "Hourly",
+ "Bonuses"
+ ],
+ "default": "Hourly"
+ },
+ "SIC Type": "<SICType>",
+ "Employer Type": "<CompanyType>",
+ "Employer Size": "<CompanySize>"
+ },
+ "description": "A line plot showing hourly gender pay inequality data from 2017 to today. Hourly pay for women is 12-15% lower for all time periods and hasn't changed much. The user can filter down the data into SIC Categories (SIC is a system of codes to describe what an employer does), employer types (for example a private corporation or overseas entity) and the employer size. The overral trend doesn't change much with these filters, but some fields have more or less gender inequality in hourly pay. For example social work activities, and the accomodation and food industry typically have less inequality, i.e. 6-10% less. The areas with the greatest inequality are in the construction, financial services and education industries, where it can be 20-25% less per hour. Public sector employers typically have more pay inequality, from around 13% to 17%. In terms of number of employees, the general trend is that the more employees an employer has, the less pay inequality there is: From 13% to 9%."
+ },
+ {
+ "title": "Median Bonus Pay Difference by Year",
+ "url": "/plot/years?Pay+Type=Bonuses",
+ "filters": {
+ "Pay Type": {
+ "options": [
+ "Hourly",
+ "Bonuses"
+ ],
+ "default": "Bonuses"
+ },
+ "SIC Type": "<SICType>",
+ "Employer Type": "<CompanyType>",
+ "Employer Size": "<CompanySize>"
+ },
+ "description": "A line plot showing median bonus pay in a time-series from 2017 to today. In 2017 to 2018 the women received more bonuses than men but in previous years this trend has reduced (from +7% to -7% approximately). The user can filter down the plot according to SIC Categories (SIC is a system of codes to describe what an employer does), employer types (for example a private corporation or overseas entity) and the employer size. The general trend is that employers who work in traditional male dominated areas pay their female employees more in bonues than other areas, for example in waste management storage they are paid more than men. In most other fields, however, women are paid much less in bonses than men. In some field, like health and social work, as well as in education, men and women are generally paid a similar amount in bonuses. Generally private corportations pay their female employers 10% more in bonuses than public sector employers. The number of employees does not seem to have an impact upon the general trend."
+ },
+ {
+ "title": "Median Hourly Pay Difference by SIC Section",
+ "url": "/plot/sic_sec?Pay+Type=Hourly",
+ "filters": {
+ "Pay Type": {
+ "options": [
+ "Hourly",
+ "Bonuses"
+ ],
+ "default": "Hourly"
+ },
+ "Year": "<Years>"
+ },
+ "description": "A bar chart showing median hourly pay inequality by SIC Section. SIC is a system that describes the business of an employer. All employer types pay their female employees less than their male employees, but the specific amount less varies. In the human health and social works sector, and the accomodation and food industry sectors, for example, it is 5% lower, and in the construction, mining and financial services industries it is 20-24% lower. The user can filter down these results to a specific year section, from 2017 to today. Refining the year does not seem to have an effect upon the general trend."
+ },
+ {
+ "title": "Median Bonus Pay Difference by SIC Section",
+ "url": "/plot/sic_sec?Pay+Type=Bonuses",
+ "filters": {
+ "Pay Type": {
+ "options": [
+ "Hourly",
+ "Bonuses"
+ ],
+ "default": "Bonuses"
+ },
+ "Year": "<Years>"
+ },
+ "description": "A bar chart showing median bonus pay gender inequality by SIC Section. SIC is a system that describes the business of an employer. The general trend is the same as hourly median pay, but in some fields such as waste management, transportation and storage, and construction, women are sometimes paid significantly more than men in bonus pay. The user can refine the chart by filtering down to a specific year. The general trend of doing this is that during the years 2019-2020 bonus pay inequality increased, with most employers paying their female employees less, but this trend has not generally continued."
+ }
+ ]
+} \ No newline at end of file
diff --git a/src/database.py b/src/database.py
new file mode 100644
index 0000000..d67b96c
--- /dev/null
+++ b/src/database.py
@@ -0,0 +1,434 @@
+from dataclasses import dataclass
+import operator
+import datetime
+import pymysql
+import pandas
+import app
+import os
+
+@dataclass
+class PayGapDatabase:
+
+ postcode_lookup_obj = None
+ host: str = "db"
+ user: str = "root"
+ passwd: str = None
+ db: str = "paygap"
+ port: int = 3306
+
+ def __enter__(self):
+ if self.passwd is None:
+ self.passwd = os.environ["MYSQL_ROOT_PASSWORD"]
+
+ try:
+ self.__connection = self.__get_connection()
+ except Exception as e:
+ print(e)
+ if e.args[0] == 1049:
+ self.__connection = self.__build_db()
+ return self
+
+ def __exit__(self, type, value, traceback):
+ self.__connection.close()
+
+ def __get_connection(self):
+ return pymysql.connect(
+ host = self.host,
+ port = self.port,
+ user = self.user,
+ passwd = self.passwd,
+ charset = "utf8mb4",
+ database = self.db
+ )
+
+ def __build_db(self):
+ print("Building database...")
+ self.__connection = pymysql.connect(
+ host = self.host,
+ port = self.port,
+ user = self.user,
+ passwd = self.passwd,
+ charset = "utf8mb4",
+ )
+ with self.__connection.cursor() as cursor:
+ # unsafe:
+ cursor.execute("CREATE DATABASE %s" % self.db)
+ cursor.execute("USE %s" % self.db)
+
+ cursor.execute("""
+ CREATE TABLE sic_sections(
+ sic_section_id CHAR(1) NOT NULL PRIMARY KEY,
+ sic_section_name VARCHAR(128) NOT NULL
+ );
+ """)
+
+ cursor.execute("""
+ CREATE TABLE sic(
+ sic_code INT UNSIGNED NOT NULL PRIMARY KEY,
+ sic_description VARCHAR(512) NOT NULL,
+ sic_section CHAR(1) NOT NULL,
+ FOREIGN KEY (sic_section) REFERENCES sic_sections(sic_section_id)
+ );
+ """)
+
+ cursor.execute("""
+ CREATE TABLE employer(
+ company_number CHAR(8) NOT NULL PRIMARY KEY,
+ name VARCHAR(512) NOT NULL,
+ address TEXT NOT NULL,
+ postcode VARCHAR(8) NOT NULL,
+ policy_link VARCHAR(256) NULL,
+ responsible_person VARCHAR(128) NOT NULL,
+ size VARCHAR(20) NOT NULL,
+ current_name VARCHAR(512) NULL,
+ status VARCHAR(32) NULL,
+ type_ VARCHAR(128) NULL,
+ incorporated DATETIME NULL
+ )
+ """)
+
+ cursor.execute("""
+ CREATE TABLE employer_sic(
+ company_number CHAR(8) NOT NULL,
+ sic_code INT UNSIGNED NOT NULL,
+ PRIMARY KEY (company_number, sic_code),
+ FOREIGN KEY (company_number) REFERENCES employer(company_number),
+ FOREIGN KEY (sic_code) REFERENCES sic(sic_code)
+ );
+ """)
+
+ cursor.execute("""
+ CREATE TABLE pay(
+ pay_id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
+ company_number CHAR(8) NOT NULL,
+ source VARCHAR(64) NOT NULL,
+ date_submitted DATETIME NOT NULL,
+ DiffMeanHourlyPercent DECIMAL(8,3) NOT NULL,
+ DiffMedianHourlyPercent DECIMAL(8,3) NOT NULL,
+ DiffMeanBonusPercent DECIMAL(8,3) NOT NULL,
+ DiffMedianBonusPercent DECIMAL(8,3) NOT NULL,
+ MaleBonusPercent DECIMAL(8,3) NOT NULL,
+ FemaleBonusPercent DECIMAL(8,3) NOT NULL,
+ MaleLowerQuartile DECIMAL(8,3) NOT NULL,
+ FemaleLowerQuartile DECIMAL(8,3) NOT NULL,
+ MaleLowerMiddleQuartile DECIMAL(8,3) NOT NULL,
+ FemaleLowerMiddleQuartile DECIMAL(8,3) NOT NULL,
+ MaleUpperMiddleQuartile DECIMAL(8,3) NOT NULL,
+ FemaleUpperMiddleQuartile DECIMAL(8,3) NOT NULL,
+ MaleTopQuartile DECIMAL(8,3) NOT NULL,
+ FemaleTopQuartile DECIMAL(8,3) NOT NULL,
+ FOREIGN KEY (company_number) REFERENCES employer(company_number)
+ );
+ """)
+
+ self.__connection.commit()
+ return self.__connection
+
+ def _wrap_percent(self, word):
+ return "%%%s%%" % (word)
+
+ def append_sic_sections(self, section_id, description):
+ # print("Section ID: '%s', Description: '%s'" % (section_id, description))
+ with self.__connection.cursor() as cursor:
+ cursor.execute("""
+ INSERT INTO sic_sections VALUES (%s, %s) ON DUPLICATE KEY UPDATE sic_section_name = %s;
+ """, (section_id, description, description))
+ self.__connection.commit()
+
+ def append_sic(self, code, description, section_id):
+ print("Appended code %d (%s) under section %s" % (code, description, section_id))
+ with self.__connection.cursor() as cursor:
+ cursor.execute("""
+ INSERT INTO sic VALUES (%s, %s, %s) ON DUPLICATE KEY UPDATE sic_description = %s, sic_section = %s;
+ """, (code, description, section_id, description, section_id))
+ self.__connection.commit()
+
+ def append_employer(self, company_number, name, address, postcode, policy_link, responsible_person, size, current_name, \
+ status, type_, incorporated, sics):
+
+ # print("incorporated: %s" % str(incorporated))
+ # print("sics", sics)
+ # print("name: %s" % name)
+ with self.__connection.cursor() as cursor:
+ cursor.execute("""
+ INSERT INTO employer (company_number, name, address, postcode, policy_link, responsible_person, size, current_name, status, type_, incorporated)
+ VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)
+ ON DUPLICATE KEY UPDATE
+ name = %s, address = %s, postcode = %s, policy_link = %s, responsible_person = %s, size = %s,
+ current_name = %s, status = %s, type_ = %s, incorporated = %s;
+ """, (
+ company_number, name, address, postcode, policy_link, responsible_person, size, current_name, status, type_, incorporated,
+ name, address, postcode, policy_link, responsible_person, size, current_name, status, type_, incorporated
+ ))
+ # sql = """INSERT INTO employer (company_number, name, address, postcode, policy_link, responsible_person, size, current_name, status, type_, incorporated)
+ # VALUES ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s');""" % (
+ # company_number, name, address, postcode, policy_link, responsible_person, size, current_name, status, type_, incorporated
+ # )
+ # print(sql)
+
+ self.append_employer_sics(company_number, sics)
+ self.__connection.commit()
+
+ def append_pay_info(self, company_number, source, date_submitted, diff_mean_hourly_percent, diff_median_hourly_percent, \
+ diff_mean_bonus_percent, diff_median_bonus_percent, male_bonus_percent, female_bonus_percent, male_lower_quartile, \
+ female_lower_quartile, male_lower_middle_quartile, female_lower_middle_quartile, male_upper_middle_quartile, \
+ female_upper_middle_quartile, male_top_quartile, female_top_quartile):
+
+ try:
+ float(diff_mean_hourly_percent)
+ except ValueError:
+ diff_mean_hourly_percent = None
+
+
+ with self.__connection.cursor() as cursor:
+ cursor.execute("DELETE FROM pay WHERE company_number = %s AND source = %s;", (company_number, source))
+
+ try:
+ cursor.execute("""
+ INSERT INTO pay (company_number, source, date_submitted, DiffMeanHourlyPercent, DiffMedianHourlyPercent,
+ DiffMeanBonusPercent, DiffMedianBonusPercent, MaleBonusPercent, FemaleBonusPercent, MaleLowerQuartile,
+ FemaleLowerQuartile, MaleLowerMiddleQuartile, FemaleLowerMiddleQuartile, MaleUpperMiddleQuartile,
+ FemaleUpperMiddleQuartile, MaleTopQuartile, FemaleTopQuartile) VALUES (
+ %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s
+ );
+ """, (
+ company_number, source, date_submitted, diff_mean_hourly_percent, diff_median_hourly_percent,
+ diff_mean_bonus_percent, diff_median_bonus_percent, male_bonus_percent, female_bonus_percent, male_lower_quartile,
+ female_lower_quartile, male_lower_middle_quartile, female_lower_middle_quartile, male_upper_middle_quartile,
+ female_upper_middle_quartile, male_top_quartile, female_top_quartile
+ ))
+ except pymysql.err.DataError:
+ return
+
+ self.__connection.commit()
+
+
+ def append_employer_sics(self, company_number, sics):
+ with self.__connection.cursor() as cursor:
+ cursor.execute("DELETE FROM employer_sic WHERE company_number = %s", (company_number, ))
+
+ for sic in sics:
+ cursor.execute("SELECT * FROM sic WHERE sic_code = %s", (sic, ))
+ if cursor.fetchone() != None:
+ cursor.execute("INSERT INTO employer_sic VALUES (%s, %s);", (company_number, sic))
+
+ def search_company(self, company_prefix):
+ with self.__connection.cursor() as cursor:
+ cursor.execute("""
+ SELECT name, company_number FROM employer
+ WHERE name LIKE '%s' OR current_name LIKE '%s';
+ """ % (
+ self._wrap_percent(company_prefix),
+ self._wrap_percent(company_prefix)
+ ))
+
+ return [(i[0].title(), i[1]) for i in cursor.fetchall()]
+
+ def get_company_types(self):
+ with self.__connection.cursor() as cursor:
+ cursor.execute("SELECT DISTINCT type_ FROM employer WHERE type_ IS NOT NULL;")
+ return [i[0] for i in cursor.fetchall()]
+
+ def get_company_sizes(self):
+ return [
+ "Not Provided",
+ "Less than 250",
+ "250 to 499",
+ "500 to 999",
+ "1000 to 4999",
+ "5000 to 19,999",
+ "20,000 or more"
+ ]
+
+ def get_sic_sections(self):
+ with self.__connection.cursor() as cursor:
+ cursor.execute("SELECT sic_section_name FROM sic_sections")
+ return [i[0] for i in cursor.fetchall()]
+
+ def _source_name_to_year(self, source):
+ return os.path.splitext(source)[0].split("-")[-1].strip().replace("to", "-")
+
+ def get_pay_by_year(self, pay_type, sic_section_name = None, employer_type = None, employer_size = None):
+ sql = "SELECT source, -AVG("
+ if pay_type.lower() == "hourly":
+ sql += "DiffMedianHourlyPercent"
+ elif pay_type.lower() == "bonuses":
+ sql += "DiffMedianBonusPercent"
+ sql += ") FROM pay"
+
+ subqueries = []
+ args = []
+ if sic_section_name is not None:
+ subqueries.append("""
+ company_number IN (
+ SELECT DISTINCT company_number FROM employer_sic WHERE sic_code IN (
+ SELECT DISTINCT sic_code FROM sic WHERE sic_section = (
+ SELECT sic_section_id FROM sic_sections WHERE sic_section_name = %s
+ )
+ )
+ )""")
+ args.append(sic_section_name)
+ if employer_type is not None:
+ subqueries.append("""
+ company_number IN (
+ SELECT company_number FROM employer WHERE type_ = %s
+ )
+ """)
+ args.append(employer_type)
+ if employer_size is not None:
+ subqueries.append("""
+ company_number IN (
+ SELECT company_number FROM employer WHERE size = %s
+ )
+ """)
+ args.append(employer_size)
+
+ with self.__connection.cursor() as cursor:
+ if sic_section_name is not None or employer_type is not None or employer_size is not None:
+ sql += " WHERE {}".format(" OR ".join(subqueries))
+
+ sql += " GROUP BY source ORDER BY source;"
+ cursor.execute(sql, tuple(args))
+
+ else:
+ sql += " GROUP BY source ORDER BY source;"
+ cursor.execute(sql)
+
+ # print(sql)
+ # print(tuple(args))
+ return [(self._source_name_to_year(i[0]), float(i[1])) for i in cursor.fetchall()]
+
+ def get_years(self):
+ with self.__connection.cursor() as cursor:
+ cursor.execute("SELECT DISTINCT source FROM pay;")
+ return [self._source_name_to_year(i[0]) for i in cursor.fetchall()]
+
+ def get_pay_by_sic_section(self, pay_type, year = None):
+ pay = []
+ for section_name in self.get_sic_sections():
+ sql = "SELECT -AVG("
+ if pay_type.lower() == "hourly":
+ sql += "DiffMedianHourlyPercent"
+ elif pay_type.lower() == "bonuses":
+ sql += "DiffMedianBonusPercent"
+ sql += """
+ ) FROM pay WHERE company_number IN (
+ SELECT DISTINCT company_number FROM employer_sic WHERE sic_code IN (
+ SELECT DISTINCT sic_code FROM sic WHERE sic_section = (
+ SELECT sic_section_id FROM sic_sections WHERE sic_section_name = %s
+ )
+ )
+ )
+ """
+
+ if year is not None:
+ sql += " AND source LIKE %s"
+
+ sql += ";"
+
+ with self.__connection.cursor() as cursor:
+ # print(sql, (section_name, "%" + year.replace("to", "-") + "%"))
+ if year is None:
+ cursor.execute(sql, (section_name, ))
+ else:
+ cursor.execute(sql, (section_name, "%" + year.replace("-", "to") + "%"))
+
+ f = cursor.fetchone()[0]
+ if f is not None:
+ pay.append((section_name, float(f)))
+
+ return sorted(pay, key = operator.itemgetter(1), reverse = True)
+
+ def get_heatmap_data(self, pay_type, year = None):
+ sql = "SELECT insinuated_loc, COUNT(insinuated_loc), -AVG("
+ if pay_type.lower() == "hourly":
+ sql += "DiffMedianHourlyPercent"
+ elif pay_type.lower() == "bonuses":
+ sql += "DiffMedianBonusPercent"
+ sql += """
+ ) FROM employer INNER JOIN pay ON pay.company_number = employer.company_number
+ WHERE insinuated_loc_type IS NOT NULL
+ """
+ if year is not None:
+ sql += " AND source LIKE %s"
+
+ sql += " GROUP BY insinuated_loc;"
+
+ with self.__connection.cursor() as cursor:
+ if year is None:
+ cursor.execute(sql)
+ else:
+ cursor.execute(sql, ("%" + year.replace("-", "to") + "%", ))
+
+ return [[i[0], i[1], float(i[2])] for i in cursor.fetchall()]
+
+ def _get_postcode_lookup_obj(self, path_):
+ return pandas.read_csv(path_)
+
+ def _get_counties(self):
+ return {feature["properties"]["name"] for feature in app.UK_GEOJSON["features"]}
+
+ def append_counties(self, path_):
+ if self.postcode_lookup_obj is None:
+ self.postcode_lookup_obj = self._get_postcode_lookup_obj(path_)
+
+ counties = self._get_counties()
+ postcodes = self._get_postcodes()
+
+ with self.__connection.cursor() as cursor:
+
+ cursor.execute("ALTER TABLE employer ADD COLUMN IF NOT EXISTS insinuated_loc VARCHAR(69) DEFAULT NULL;")
+ cursor.execute("ALTER TABLE employer ADD COLUMN IF NOT EXISTS insinuated_loc_type VARCHAR(25) DEFAULT NULL;")
+
+ for i, j in enumerate(postcodes, 1):
+ id_, postcode = j
+ found_locations = self.postcode_lookup_obj[
+ (self.postcode_lookup_obj["Postcode 1"] == postcode) |
+ (self.postcode_lookup_obj["Postcode 2"] == postcode) |
+ (self.postcode_lookup_obj["Postcode 3"] == postcode)
+ ]
+ if len(found_locations) == 1:
+ county, la = found_locations[["County Name", "Local Authority Name"]].values[0]
+ if la in counties:
+ cursor.execute("UPDATE employer SET insinuated_loc = %s, insinuated_loc_type = 'Local Authority' WHERE company_number = %s", (la, id_))
+
+ print("[%d/%d] Using local authority '%s' for postcode '%s'" % (i, len(postcodes), la, postcode))
+ elif county in counties:
+ cursor.execute("UPDATE employer SET insinuated_loc = %s, insinuated_loc_type = 'County' WHERE company_number = %s", (county, id_))
+
+ print("[%d/%d] Using county '%s' for postcode '%s'" % (i, len(postcodes), county, postcode))
+ elif "Northamptonshire" in la:
+ print("Manually fixing Northamptonshire...")
+ cursor.execute("UPDATE employer SET insinuated_loc = %s, insinuated_loc_type = 'County' WHERE company_number = %s", ("Northamptonshire", id_))
+ elif "Bournemouth" in la:
+ print("Manually fixing Bournemouth...")
+ cursor.execute("UPDATE employer SET insinuated_loc = %s, insinuated_loc_type = 'County' WHERE company_number = %s", ("Bournemouth", id_))
+ else:
+ print("[%d/%d] Didn't recoginse the local authority '%s' or the county '%s'" % (i, len(postcodes), la, county))
+ else:
+ print("[%d/%d] Couldn't find a county for postcode '%s' (company id '%s')" % (i, len(postcodes), postcode, id_))
+
+ # break
+ self.__connection.commit()
+
+ def _get_postcodes(self):
+ with self.__connection.cursor() as cursor:
+ cursor.execute("SELECT company_number, TRIM(SUBSTRING_INDEX(address, ',', -1)) FROM employer;")
+ return cursor.fetchall()
+
+
+
+if __name__ == "__main__":
+ if not os.path.exists(".docker"):
+ import dotenv
+ dotenv.load_dotenv(dotenv_path = "db.env")
+ host = "srv.home"
+ else:
+ host = "db"
+
+ with PayGapDatabase(host = host) as db:
+ # print(db.get_years())
+ # print(db.get_pay_by_sic_section("bonuses", None))
+ print(db.get_heatmap_data("hourly", db.get_years()[0]))
+ # print(db.append_counties())
+
diff --git a/src/insinuations.py b/src/insinuations.py
new file mode 100644
index 0000000..107c84e
--- /dev/null
+++ b/src/insinuations.py
@@ -0,0 +1,86 @@
+from lxml import html
+import database
+import datetime
+import requests
+import os
+
+def get_sics(db: database.PayGapDatabase, url = "https://resources.companieshouse.gov.uk/sic/"):
+ req = requests.get(url)
+ tree = html.fromstring(req.content.decode())
+ bigtable = tree.xpath("/html/body/main/table/tbody")[0]
+ for tr_elem in bigtable.getchildren():
+ td_code, td_description = tr_elem
+
+ if td_code.getchildren() != []:
+ # if contains a <strong> element which indicates a section
+ current_section_code = td_code.getchildren()[0].text.replace("Section ", "").strip()
+ current_section_description = td_description.getchildren()[0].text.strip()
+
+ db.append_sic_sections(current_section_code, current_section_description)
+
+ else:
+ sic_code = int(td_code.text)
+ sic_desc = td_description.text.rstrip()
+ db.append_sic(sic_code, sic_desc, current_section_code)
+
+def get_companyinfo_url(company_number, url = "https://find-and-update.company-information.service.gov.uk/company/%s"):
+ if company_number.isdigit():
+ company_number = "%08d" % int(company_number)
+
+ return url % company_number
+
+def lookup_company(company_number):
+ company = {}
+ req = requests.get(
+ get_companyinfo_url(company_number),
+ headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_8) AppleWebKit/534.50.2 (KHTML, like Gecko) Version/5.0.6 Safari/533.22.3'}
+ )
+
+ if req.status_code not in [200, 404]:
+ raise ConnectionError("Couldn't connect- it %d'd. Was looking for company %s" % (req.status_code, company_number))
+
+ tree = html.fromstring(req.content.decode())
+
+ status_elem = tree.xpath('//*[@id="company-status"]')
+ if len(status_elem) == 1:
+ company["status"] = status_elem[0].text.strip()
+ else:
+ company["status"] = None
+
+ incorp_elem = tree.xpath('//*[@id="company-creation-date"]')
+ if len(incorp_elem) == 1:
+ company["incorporated"] = datetime.datetime.strptime(incorp_elem[0].text.strip(), "%d %B %Y")
+ else:
+ company["incorporated"] = None
+
+ type_elem = tree.xpath('//*[@id="company-type"]')
+ if len(type_elem) == 1:
+ company["type_"] = type_elem[0].text.strip()
+ else:
+ company["type_"] = None
+
+ company["sics"] = set()
+ for i in range(9):
+ sic_elem = tree.xpath('//*[@id="sic%d"]' % i)
+ if len(sic_elem) == 1:
+ company["sics"].add(int(sic_elem[0].text.strip().split(" - ")[0]))
+ else:
+ break
+
+ return company
+
+if __name__ == "__main__":
+ if not os.path.exists(".docker"):
+ import dotenv
+ dotenv.load_dotenv(dotenv_path = "db.env")
+ host = "localhost"
+ else:
+ host = "db"
+
+ # with database.PayGapDatabase(host = host) as db:
+ # print(db.search_company("University"))
+
+ import app
+ counties = [feature["properties"]["name"] for feature in app.UK_GEOJSON["features"]]
+ print(counties)
+ print(len(counties)) \ No newline at end of file
diff --git a/src/parser.py b/src/parser.py
new file mode 100644
index 0000000..f9e3e81
--- /dev/null
+++ b/src/parser.py
@@ -0,0 +1,85 @@
+import insinuations
+import database
+import datetime
+import time
+import json
+import csv
+import sys
+import os
+
+def parse_csv(db, csv_path):
+ insinuations.get_sics(db)
+
+ with open(csv_path, "r") as f:
+ num_lines = len(f.readlines())
+ i = 0
+
+ with open(csv_path, "r") as f:
+ reader = csv.reader(f)
+ headers = next(reader)
+
+ for name, id_, address, postcode, company_id, sic_codes, diff_mean_hourly_percent, diff_median_hourly_percent, \
+ diff_mean_bonus_percent, diff_median_bonus_percent, male_bonus_percent, female_bonus_percent, male_lower_quartile, \
+ female_lower_quartile, male_lower_middle_quartile, female_lower_middle_quartile, male_upper_middle_quartile, \
+ female_upper_middle_quartile, male_top_quartile, female_top_quartile, policy_link, responsible_person, size, \
+ current_name, submitted_after_deadline, duedate, submitted_date in reader:
+
+ if company_id.strip() != "":
+ try:
+ sic_codes = {int(i.strip()) for i in sic_codes.split(",")}
+ except ValueError:
+ sic_codes = set()
+
+ while True:
+ try:
+ company = insinuations.lookup_company(company_id)
+ except ConnectionError as e:
+ print("Couldn't connect... Error: '%s'... Waiting 20 seconds..." % str(e))
+ time.sleep(20)
+ else:
+ break
+
+ company["sics"] = company["sics"].union(sic_codes)
+ company["company_number"] = company_id
+ company["name"] = name
+ company["address"] = address
+ company["postcode"] = postcode
+ company["policy_link"] = policy_link
+ company["responsible_person"] = responsible_person
+ company["size"] = size
+ company["current_name"] = current_name
+
+ print("%.2f%%" % ((i / num_lines) * 100), company)
+ print(
+ company_id, os.path.basename(csv_path), datetime.datetime.strptime(submitted_date, "%Y/%m/%d %H:%M:%S"),
+ diff_mean_hourly_percent, diff_median_hourly_percent, diff_mean_bonus_percent, diff_median_bonus_percent,
+ male_bonus_percent, female_bonus_percent, male_lower_quartile, female_lower_quartile,
+ male_lower_middle_quartile, female_lower_middle_quartile, male_upper_middle_quartile,
+ female_upper_middle_quartile, male_top_quartile, female_top_quartile
+ )
+ db.append_employer(**company)
+ db.append_pay_info(
+ company_id, os.path.basename(csv_path), datetime.datetime.strptime(submitted_date, "%Y/%m/%d %H:%M:%S"),
+ diff_mean_hourly_percent, diff_median_hourly_percent, diff_mean_bonus_percent, diff_median_bonus_percent,
+ male_bonus_percent, female_bonus_percent, male_lower_quartile, female_lower_quartile,
+ male_lower_middle_quartile, female_lower_middle_quartile, male_upper_middle_quartile,
+ female_upper_middle_quartile, male_top_quartile, female_top_quartile
+ )
+ i += 1
+
+ # break
+
+if __name__ == "__main__":
+ if not os.path.exists(".docker"):
+ import dotenv
+ dotenv.load_dotenv(dotenv_path = "db.env")
+ host = "srv.home"
+ else:
+ host = "db"
+
+ with database.PayGapDatabase(host = host) as db:
+ p = sys.argv[1]
+ if os.path.basename(p) == "National_Statistics_Postcode_Lookup_UK.csv":
+ db.append_counties(p)
+ else:
+ parse_csv(db, p) \ No newline at end of file
diff --git a/src/static/scripts.js b/src/static/scripts.js
new file mode 100644
index 0000000..9b52215
--- /dev/null
+++ b/src/static/scripts.js
@@ -0,0 +1,319 @@
+function collapseTogglePress(elem, a_elem, num_hidden) {
+ if (getComputedStyle(document.getElementById(elem)).display === "none") {
+ document.getElementById(elem).style.display = "block";
+ document.getElementById(a_elem).innerText = `Hide ${num_hidden} filters`
+ } else {
+ document.getElementById(elem).style.display = "none";
+ document.getElementById(a_elem).innerText =`Un-hide ${num_hidden} hidden filters`
+ }
+}
+
+const PLOT_FUNC_MAPPINGS = {
+ "years": draw_plot_years,
+ "sic_sec": draw_plot_sic_sections,
+ "heatmap": draw_heatmap
+}
+
+$(document).ready(function() {
+ const filterform = document.getElementById("filterform");
+ if (filterform !== null) {
+ filterform.action = window.location.pathname + "/apply_click";
+ }
+
+ const slider = document.getElementById("yearslider");
+ if (slider !== null) {
+ slider.onchange = function() {
+ fetch("/api/getyears").then(resp => {
+ resp.json().then(years => {
+ document.getElementById("slider_val").innerHTML = "Year range: " + years[Number(this.value) - 1];
+ });
+ });
+ }
+ }
+
+ fetch("/api/charts.json").then((resp) => {
+ resp.json().then((body) => {
+ const CHARTS = body;
+
+ var minicharts = document.getElementsByClassName("minichart");
+ for (var i = 0; i < minicharts.length; i++) {
+ var theId = minicharts.item(i).id;
+ var u = new URL(window.location.origin + theId);
+ var theIdSplit = u.pathname.split("/");
+
+ CHARTS["index"].forEach(element => {
+ if (theId === "/minichart" + element.url) {
+ filters = element["filters"];
+ }
+ });
+
+ PLOT_FUNC_MAPPINGS[theIdSplit[theIdSplit.length - 1]](theId, filters);
+ }
+
+ var charts = document.getElementsByClassName("chart");
+ for (var i = 0; i < charts.length; i++) {
+ var theId = charts.item(i).id;
+ var u = new URL(window.location.origin + theId);
+ var theIdSplit = u.pathname.split("/");
+
+ CHARTS["index"].forEach(element => {
+ if (location.href.substr(location.href.indexOf(location.host)+location.host.length).startsWith(element["url"])) {
+ // console.log(location.href.substr(location.href.indexOf(location.host)+location.host.length), element["url"]);
+ filters = element["filters"];
+ // console.log(element);
+ }
+ });
+
+ PLOT_FUNC_MAPPINGS[theIdSplit[theIdSplit.length - 1]](theId, filters);
+ }
+ })
+ })
+});
+
+function form_api_url(containerName, filters) {
+ // console.log(filters);
+ // console.log(containerName);
+ var name = containerName.split("/")[containerName.split("/").length - 1];
+ var url = new URL(window.location.origin + "/api/" + name);
+ // for (const [filterName, value] of Object.entries(filters)) {
+
+ // if (typeof value === 'object' && value !== null) {
+ // if ("default" in value) {
+ // // console.log(filterName, value["default"]);
+ // url.searchParams.append(filterName, value["default"]);
+ // }
+ // }
+ // }
+ console.log("fetching ", url.toString());
+ return url.toString();
+}
+
+function draw_plot_years(containerName, filters) {
+ fetch(form_api_url(containerName, filters)).then(resp => {
+ resp.json().then((data) => {
+ if (containerName.substring(1, 6) === "chart") {
+ var yAxisTitle = true;
+ var xAxisLabels = true;
+ var showLegend = true;
+ } else {
+ var yAxisTitle = false;
+ var xAxisLabels = false;
+ var showLegend = false;
+ }
+
+ Highcharts.chart(containerName, {
+ chart: {
+ zoomType: 'x',
+ type: 'area',
+ },
+
+ title: {
+ text: null
+ },
+
+ yAxis: {
+ title: {
+ enabled: yAxisTitle,
+ text: 'Percentage Pay Difference'
+ },
+ labels: {
+ format: '{value}%'
+ },
+ // tickPositioner: function () {
+ // // var maxDeviation = Math.ceil(Math.max(Math.abs(this.dataMax), Math.abs(this.dataMin)));
+ // // var halfMaxDeviation = Math.ceil(maxDeviation / 2);
+
+ // // return [-maxDeviation, -halfMaxDeviation, 0, halfMaxDeviation, maxDeviation];
+ // return Array.from({length: -Math.floor(this.dataMin) + 2}, (x, i) => i + Math.floor(this.dataMin));
+ // },
+ },
+
+ xAxis: {
+ type: 'category',
+ labels: {
+ enabled: xAxisLabels
+ },
+ title: {
+ text: "Year Groups",
+ enabled: yAxisTitle,
+ }
+ },
+
+ plotOptions: {
+ series: {
+ fillColor: {
+ linearGradient: [0, 0, 0, 300],
+ stops: [
+ [1, "rgba(0, 255, 0, 0.3)"]
+ ]
+ },
+ negativeFillColor: {
+ linearGradient: [0, 0, 0, 300],
+ stops: [
+ [1, "rgba(255, 0, 0, 0.3)"]
+ ]
+ }
+ }
+ },
+
+ series: [{
+ data: data,
+ lineWidth: 4,
+ showInLegend: false,
+ name: "Pay Gap",
+ color: 'Green',
+ threshold: 0,
+ negativeColor: 'Red',
+ }]
+ })
+ })
+ })
+}
+
+function draw_plot_sic_sections(containerName, filters) {
+ fetch(form_api_url(containerName, filters)).then(resp => {
+ resp.json().then(data => {
+ if (containerName.substring(1, 6) === "chart") {
+ var yAxisTitle = true;
+ var xAxisLabels = true;
+ var showLegend = true;
+ } else {
+ var yAxisTitle = false;
+ var xAxisLabels = false;
+ var showLegend = false;
+ }
+
+ var categories = [];
+ var pays = [];
+ data.forEach(elem => {
+ categories.push(elem[0]);
+ pays.push(elem[1]);
+ });
+
+ Highcharts.chart(containerName, {
+ chart: {
+ type: 'bar'
+ },
+
+ title: {
+ text: null
+ },
+
+ plotOptions: {
+ bar: {
+ dataLabels: {
+ align: "center"
+ }
+ }
+ },
+
+ xAxis: {
+ categories: categories,
+ labels: {
+ enabled: xAxisLabels
+ },
+ title: {
+ text: 'SIC Section',
+ enabled: yAxisTitle
+ },
+ type: 'category'
+ },
+
+ yAxis: {
+ title: {
+ text: 'Median Pay',
+ enabled: yAxisTitle
+ },
+ labels: {
+ format: '{value}%'
+ },
+ plotLines: [{
+ value: 0,
+ width: 2,
+ color: 'black',
+ zIndex: 10
+ }]
+ },
+
+ series: [{
+ data: pays,
+ showInLegend: false,
+ negativeColor: 'Red',
+ color: 'Green',
+ name: 'Pay Gap'
+ }]
+ })
+ })
+ })
+}
+
+function draw_heatmap(containerName, filters) {
+ fetch(form_api_url(containerName, filters)).then(resp => {
+
+ const isPreview = (containerName.substring(1, 6) === "chart");
+
+ resp.json().then(data => {
+
+ var data2 = [];
+ data.forEach(row => {
+ data2.push([row[0], row[2]]);
+ });
+ console.log(data2);
+
+ $.getJSON("/static/ukcounties.json", function(geojson) {
+
+ console.log(geojson);
+
+ Highcharts.mapChart(containerName, {
+ chart: {
+ map: geojson
+ },
+
+ title: {
+ text: null
+ },
+
+ accessibility: {
+ typeDescription: 'Map of the United Kingdom.'
+ },
+
+ mapNavigation: {
+ enabled: isPreview,
+ buttonOptions: {
+ verticalAlign: 'bottom'
+ }
+ },
+
+ legend: {
+ enabled: isPreview,
+ layout: 'vertical',
+ align: 'right',
+ verticalAlign: 'middle',
+ itemMarginTop: 10,
+ itemMarginBottom: 10
+ },
+
+ colorAxis: {
+ stops: [
+ [0, '#c4463a'],
+ [0.5, '#e6ffee'],
+ [0.9, '#009933']
+ ],
+ min: -15
+ },
+
+ series: [{
+ data: data2,
+ keys: ['name', 'value'],
+ joinBy: 'name',
+ name: 'Pay Gap',
+ color: 'Green',
+ tooltip: {
+ valueSuffix: '%'
+ }
+ }]
+ });
+ });
+ });
+ })
+} \ No newline at end of file
diff --git a/src/static/style.css b/src/static/style.css
new file mode 100644
index 0000000..c363de6
--- /dev/null
+++ b/src/static/style.css
@@ -0,0 +1,144 @@
+body {
+ font-family: Helvetica, sans-serif;
+}
+
+header {
+ font-size: large;
+ padding-left: 1%;
+ /* font-weight: bold; */
+}
+
+header p {
+ font-size: small;
+}
+
+a {
+ color: black;
+ font-weight: bold;
+ padding-top: 1px;
+ text-decoration: none;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
+aside {
+ width: 15%;
+ padding-left: 15px;
+ margin-left: 15px;
+ float: right;
+ /* border-left-color: rgb(189, 189, 189);
+ border-left-width: 2px;
+ border-left-style: groove; */
+}
+
+input[type="search"] {
+ padding: 3px 5px;
+ box-sizing: border-box;
+ border: 2px solid black;
+ width: 100%;
+}
+
+input[type="submit"] {
+ padding: 3px 5px;
+ box-sizing: border-box;
+ border: 2px solid black;
+ width: 100%;
+}
+
+aside form input[type="submit"] {
+ margin-top: 3px;
+ width: 100%;
+ background-color: black;
+ color: white;
+ border-radius: 5px;
+ border: 2px solid black;
+}
+
+#filterform h5 {
+ margin-top: 10px;
+ margin-bottom: 5px;
+}
+
+label {
+ font-size: x-small;
+}
+
+aside form p {
+ font-size: x-small;
+}
+
+.collapsable {
+ display: none;
+}
+
+.collapsetoggle {
+ font-size: x-small;
+ padding-left: 5px;
+}
+
+#main_content {
+ padding-left: 2.5%;
+ padding-right: 2.5;
+}
+
+/* #multicharts ul {
+
+} */
+
+#multicharts ul li {
+ list-style-type: none;
+ width: 25%;
+ display: inline-flex;
+ /* background-color: pink; */
+ min-height: 250px;
+ margin-bottom: 7px;
+ overflow: hidden;
+ flex-direction: column;
+ justify-content: space-between;
+ /* border-color: black;
+ border-width: 2px;
+ border-radius: 1;
+ border-style: ridge; */
+}
+
+.chart_container {
+ display: flex;
+ flex-direction: row-reverse;
+}
+
+.minichart {
+ min-height: 220px;
+ width: 100%;
+ margin: 0.5rem;
+ /* background-color: red; */
+}
+
+#singlechart {
+ /* background-color: pink; */
+ width: 70%;
+ min-height: 90%;
+}
+
+.highcharts-description {
+ font-size: small;
+}
+
+.chart {
+
+}
+
+.bottom_text {
+ display: inline-flex;
+ margin: 0.5rem;
+ overflow: auto;
+}
+
+footer {
+ padding-left: 10%;
+ padding-right: 10%;
+ padding-top: 50px;
+ font-size: xx-small;
+ justify-content: center;
+}
diff --git a/src/static/ukcounties.json b/src/static/ukcounties.json
new file mode 100644
index 0000000..46ecac0
--- /dev/null
+++ b/src/static/ukcounties.json
@@ -0,0 +1 @@
+{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.2428249111399055,54.722253447539515],[-1.1752318994318216,54.69657556651009],[-1.198474214012947,54.679513501847566],[-1.1680604284451874,54.64619155249909],[-1.200687194657462,54.62303516724012],[-1.2507535888062762,54.625290961909286],[-1.3808848080865914,54.643906168335945],[-1.341208320206988,54.65023223253246],[-1.3344262331833079,54.68903626021614],[-1.2702373622636287,54.72715841922661],[-1.2428249111399055,54.722253447539515]]]},"properties":{"objectid":1,"ctyua17cd":"E06000001","name":"Hartlepool","namew":"","bng_e":447157,"bng_n":531476,"long":-1.27023005,"lat":54.67615891,"st_areasha":0.013048453237061,"st_lengths":0.760892784887385},"id":"1"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.1905456262788334,54.574957217302654],[-1.166649268947765,54.55404024736043],[-1.1461836003920212,54.502809036009126],[-1.234852612757038,54.51030367837296],[-1.2792797927274364,54.517800362197875],[-1.2815788366931429,54.56469594826035],[-1.2603944371527405,54.57168164449325],[-1.2516938677769645,54.590664446108235],[-1.1905456262788334,54.574957217302654]]]},"properties":{"objectid":2,"ctyua17cd":"E06000002","name":"Middlesbrough","namew":"","bng_e":451141,"bng_n":516887,"long":-1.21098995,"lat":54.544670100000005,"st_areasha":0.007514717997568,"st_lengths":0.496243374046194},"id":"2"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.794235713606497,54.55833881158782],[-0.8486304467369337,54.529990161717535],[-0.8564739433169848,54.48785944375925],[-0.8941962034911626,54.49689851075857],[-0.9525727236514854,54.48800212300051],[-1.0033850244984706,54.502999144595776],[-1.036836169552771,54.49403124274858],[-1.094509450449948,54.50674712408147],[-1.1461836003920212,54.502809036009126],[-1.166649268947765,54.55404024736043],[-1.1905456262788334,54.574957217302654],[-1.2008843692174196,54.57762673698528],[-1.197047985475308,54.581780312512365],[-1.1187978285561258,54.62884969795613],[-1.0595816401797151,54.61804410705082],[-1.0163788826784526,54.59823562977141],[-0.8981650178005225,54.57194341375845],[-0.8529938997478439,54.57173052264642],[-0.794235713606497,54.55833881158782]]]},"properties":{"objectid":3,"ctyua17cd":"E06000003","name":"Redcar and Cleveland","namew":"","bng_e":464359,"bng_n":519597,"long":-1.00610995,"lat":54.56752014,"st_areasha":0.034003373957289,"st_lengths":1.201926376707095},"id":"3"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.2507535888062762,54.625290961909286],[-1.212723386374364,54.621480981363106],[-1.1620305424747244,54.62260671402959],[-1.1605705920583773,54.610314025772595],[-1.2044412382717269,54.58262002389591],[-1.2304896040112112,54.58563995991716],[-1.2453742652093638,54.593812998671865],[-1.2585669383127538,54.58885368455083],[-1.2815788366931429,54.56469594826035],[-1.2792797927274364,54.517800362197875],[-1.234852612757038,54.51030367837296],[-1.2532491832023993,54.49777016066531],[-1.343616585036557,54.46414413344593],[-1.3950386873846696,54.48566866198007],[-1.4348947878633567,54.487481799546345],[-1.4225119371753294,54.520890103596344],[-1.44959702877901,54.53295645497735],[-1.4467448972583838,54.55565717803728],[-1.4113349307616545,54.564807787050654],[-1.4072797527575744,54.5937169447821],[-1.4383441240812544,54.5950683533228],[-1.3808848080865914,54.643906168335945],[-1.2507535888062762,54.625290961909286]]]},"properties":{"objectid":4,"ctyua17cd":"E06000004","name":"Stockton-on-Tees","namew":"","bng_e":444937,"bng_n":518183,"long":-1.30668998,"lat":54.556911469999996,"st_areasha":0.028399981537473,"st_lengths":1.270710897510517},"id":"4"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.4383441240812544,54.5950683533228],[-1.4072797527575744,54.5937169447821],[-1.4113349307616545,54.564807787050654],[-1.4467448972583838,54.55565717803728],[-1.44959702877901,54.53295645497735],[-1.4225119371753294,54.520890103596344],[-1.4348947878633567,54.487481799546345],[-1.4637887245691559,54.47353959457757],[-1.5551862530423364,54.484966988436724],[-1.6095114020287724,54.51989727903714],[-1.6969167976712356,54.53599605467514],[-1.7089752377162313,54.57413175927422],[-1.6793027687069753,54.58596348922458],[-1.6824133455986043,54.61776154186259],[-1.6067480210035683,54.61738519806937],[-1.583364735893042,54.580938039859575],[-1.5586351324046177,54.59210649461994],[-1.4686773735611496,54.6005479207509],[-1.4383441240812544,54.5950683533228]]]},"properties":{"objectid":5,"ctyua17cd":"E06000005","name":"Darlington","namew":"","bng_e":428029,"bng_n":515649,"long":-1.56834996,"lat":54.535350799999996,"st_areasha":0.027478330745992,"st_lengths":1.21817860469459},"id":"5"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.5952243014595524,53.322438926516156],[-2.643210652748621,53.3070435879921],[-2.701203521224727,53.30603164294689],[-2.7524317180485127,53.31474429561371],[-2.7537720244585557,53.3434310213255],[-2.675187663279246,53.354439310426756],[-2.6306224715490316,53.3640342402889],[-2.5952243014595524,53.322438926516156]]],[[[-2.693378030870633,53.36180020471659],[-2.768978892061398,53.34554253056427],[-2.789806211286816,53.32234098135211],[-2.8266610052004353,53.33164104240109],[-2.818806815681171,53.347984931860026],[-2.787300972561013,53.35627443102112],[-2.7451748717221562,53.402079571116246],[-2.690632394368663,53.38537213701545],[-2.693378030870633,53.36180020471659]]]]},"properties":{"objectid":6,"ctyua17cd":"E06000006","name":"Halton","namew":"","bng_e":354246,"bng_n":382146,"long":-2.68852997,"lat":53.334239960000005,"st_areasha":0.010686622475231,"st_lengths":0.877092541698206},"id":"6"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.449378933090486,53.415875008525745],[-2.4265908498870203,53.387444889071276],[-2.4398812019550746,53.36664630228597],[-2.4868792801538575,53.36788760952646],[-2.5183940841188814,53.34237424417694],[-2.5618763814890144,53.32332697106381],[-2.5952243014595524,53.322438926516156],[-2.6306224715490316,53.3640342402889],[-2.675187663279246,53.354439310426756],[-2.693378030870633,53.36180020471659],[-2.690632394368663,53.38537213701545],[-2.676316987837879,53.3876033451192],[-2.6771679920084352,53.452736950250994],[-2.611423472014792,53.442258574074856],[-2.576743039159112,53.44604089777016],[-2.552639010381199,53.46779762136407],[-2.4963356577635523,53.48091376216132],[-2.489714802095648,53.4602665213838],[-2.449378933090486,53.415875008525745]]]},"properties":{"objectid":7,"ctyua17cd":"E06000007","name":"Warrington","namew":"","bng_e":362744,"bng_n":388456,"long":-2.56167006,"lat":53.39162827,"st_areasha":0.024361906017378,"st_lengths":1.247115298574598},"id":"7"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.3712379601629436,53.667064635725296],[-2.37913400682811,53.6308541529977],[-2.472994656077674,53.61661589570792],[-2.51132464031906,53.626978993186924],[-2.5323463677898417,53.66488624120802],[-2.5319341284564416,53.696426986117444],[-2.5645935184753057,53.742443555026966],[-2.46580899378921,53.78079908630974],[-2.4463180869093435,53.766574990644244],[-2.433870172969307,53.719166170483334],[-2.3712379601629436,53.667064635725296]]]},"properties":{"objectid":8,"ctyua17cd":"E06000008","name":"Blackburn with Darwen","namew":"","bng_e":369490,"bng_n":422806,"long":-2.46359992,"lat":53.70080185,"st_areasha":0.01867676918865,"st_lengths":0.682360687742095},"id":"8"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.056853125470525,53.77656483529984],[-3.047956520076525,53.875718171956976],[-3.019755784401127,53.86858531606043],[-3.0106580321416345,53.826179097987904],[-2.9846142070791757,53.793762678705605],[-2.9964811841584833,53.774489711731746],[-3.056853125470525,53.77656483529984]]]},"properties":{"objectid":9,"ctyua17cd":"E06000009","name":"Blackpool","namew":"","bng_e":332763,"bng_n":436633,"long":-3.02284002,"lat":53.821609499999994,"st_areasha":0.004754796047521,"st_lengths":0.36097661805477},"id":"9"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.24730090011564698,53.74112872461188],[-0.32695350120229705,53.744610707119364],[-0.3327236359862127,53.75146261031216],[-0.32853054065111564,53.75374234313557],[-0.33615994462491017,53.75968959220182],[-0.32779821101780726,53.76496222113053],[-0.33214671369904636,53.77073367791786],[-0.3481112745149062,53.7755615795042],[-0.3480479550482869,53.787298735848935],[-0.36493543791931415,53.798463532167204],[-0.35365681710760555,53.80850467145433],[-0.3161265469017849,53.813250355220646],[-0.2782429933186563,53.782039595851586],[-0.25231732208590074,53.78130762414844],[-0.24730090011564698,53.74112872461188]]],[[[-0.4192012973011856,53.71955816787607],[-0.3874010871896303,53.77072103434921],[-0.3922133468676634,53.791112621251386],[-0.3595970415693728,53.79335944788113],[-0.34839876169269246,53.77542894569024],[-0.33239989893536404,53.77054839239531],[-0.3282231451811981,53.76492141709065],[-0.33350016010348327,53.763954877916206],[-0.33666287698935093,53.75972569278741],[-0.33615415389027703,53.758570411995834],[-0.33108306033415147,53.7397421840555],[-0.4192012973011856,53.71955816787607]]]]},"properties":{"objectid":10,"ctyua17cd":"E06000010","name":"Kingston upon Hull, City of","namew":"","bng_e":511894,"bng_n":431716,"long":-0.30379999,"lat":53.76979065,"st_areasha":0.009658701154888,"st_lengths":0.71879127126186},"id":"10"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.21252774985492806,54.15757396506734],[-0.17265460902217455,54.15147330874714],[-0.07614909230596822,54.11459265302943],[-0.10513646047843395,54.10398980978283],[-0.16479315657807092,54.09955966934422],[-0.19841080661262822,54.077898444758375],[-0.21504518428702113,54.01581442449702],[-0.15395606242151416,53.89929945900377],[-0.04432481004113242,53.795411647730305],[0.11700791008780698,53.66223528982772],[0.14178397345244775,53.62196144526541],[0.03449114095423056,53.64918787432185],[-0.049674804947471785,53.6320770861895],[-0.10354116479209097,53.63531864933714],[-0.22724779015254626,53.70847209461243],[-0.24730090011564698,53.74112872461188],[-0.25231732208590074,53.78130762414844],[-0.2782429933186563,53.782039595851586],[-0.3161265469017849,53.813250355220646],[-0.35365681710760555,53.80850467145433],[-0.3648671568929558,53.803767950331576],[-0.3653890712478187,53.798468811187604],[-0.3595970415693728,53.79335944788113],[-0.3922133468676634,53.791112621251386],[-0.3874010871896303,53.77072103434921],[-0.4192012973011856,53.71955816787607],[-0.5425472783334158,53.70842321106329],[-0.6203867373572507,53.73096955020549],[-0.6729902314132232,53.721319721229065],[-0.7001178078896828,53.70373927025207],[-0.7425933331149963,53.70696111396518],[-0.7790470716641948,53.697445999833974],[-0.7940886106000562,53.70520365612475],[-0.8427411364934301,53.70838724897328],[-0.8455828682539277,53.72833340346472],[-0.8722747636685995,53.72399082012117],[-0.9111954424149076,53.73337336069295],[-0.9610618156494297,53.73669504354234],[-0.9625463940000714,53.74671739509262],[-0.9732984869348229,53.75016807759562],[-0.9320887080266402,53.76217000064594],[-0.9200805814528508,53.81595623449357],[-0.9405523186337632,53.823431016229335],[-0.9482208691969163,53.86158764445514],[-0.9235112306579367,53.88074637864338],[-0.9402845104210087,53.89861874775795],[-0.92167108015542,53.92121490394561],[-0.9341031210613551,53.96865331090248],[-0.9252863772636601,53.99150000831963],[-0.8787093328685955,54.01684456642454],[-0.7991814623537721,54.019036526315574],[-0.7342473052681271,54.03024038198896],[-0.7304796809916638,54.01268254176682],[-0.6817887810266257,54.010336591861176],[-0.6798583646709631,54.036654888213434],[-0.5909931193361899,54.08704395641439],[-0.5246005757551302,54.08545635083084],[-0.46592983249496456,54.1076145533699],[-0.42708038545060845,54.13742412852167],[-0.43315470332606765,54.1640544383626],[-0.3907327642048699,54.1765022515786],[-0.37491327392763196,54.15409451325212],[-0.3238275432057094,54.15027783635401],[-0.3040689612127494,54.13625116256202],[-0.22167751800225233,54.13795299103862],[-0.21252774985492806,54.15757396506734]]],[[[-0.6984877435137378,53.68459069840293],[-0.7744938572049023,53.656188814063455],[-0.8653331387125718,53.63768809942718],[-0.946840117576528,53.659121888165544],[-0.9899793883373036,53.65896310296574],[-0.9910076713661056,53.67356385808654],[-0.868539580636309,53.696515129570514],[-0.8480991596476883,53.685056654242146],[-0.8118805389548811,53.70432526400066],[-0.7750377051251576,53.694682359804006],[-0.7305819447001909,53.70430772722074],[-0.6984877435137378,53.68459069840293]]],[[[-0.9909981556395451,53.661166700983415],[-1.0486591787772568,53.656037802603464],[-1.0856361761677817,53.66237423688244],[-1.0689337180158418,53.703962024228986],[-1.0390195022474131,53.693670449832325],[-0.9805750374072204,53.69669115837121],[-0.9625297547435707,53.70052621831127],[-0.9442120530429747,53.712323674199126],[-0.9236148649332563,53.718437903087704],[-0.9054381319634217,53.716670525725135],[-0.9029171218268743,53.719139355397886],[-0.9051379634454406,53.7270658306245],[-0.8607380769998372,53.72213877968187],[-0.8471797773240723,53.70857021694286],[-0.8688803355582309,53.697085037145655],[-0.9916081226159577,53.67396708351504],[-0.9909981556395451,53.661166700983415]]]]},"properties":{"objectid":11,"ctyua17cd":"E06000011","name":"East Riding of Yorkshire","namew":"","bng_e":488051,"bng_n":443608,"long":-0.66202998,"lat":53.881221769999996,"st_areasha":0.328820648514754,"st_lengths":5.869151331409252},"id":"11"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.01728008021234473,53.52533376734044],[-0.06709126365007023,53.51681285732843],[-0.0752581087738804,53.489310642173336],[-0.10781742673202643,53.469838034698455],[-0.08220658746324716,53.45112621500374],[-0.12034144669956959,53.43354041845646],[-0.1585047317071826,53.46155929052975],[-0.21060131299935847,53.486264472927985],[-0.20408211759485084,53.5117433097069],[-0.21987805912431213,53.532582884893145],[-0.18752484329604613,53.56358942711131],[-0.2921102739691719,53.61324544981858],[-0.23261138370759227,53.62398066067988],[-0.20441726434444263,53.637877636944324],[-0.07945280760014839,53.57690578667365],[-0.06184057458204961,53.58251273947229],[0.01728008021234473,53.52533376734044]]]},"properties":{"objectid":12,"ctyua17cd":"E06000012","name":"North East Lincolnshire","namew":"","bng_e":523454,"bng_n":404574,"long":-0.13926999,"lat":53.52336121,"st_areasha":0.025975995195586,"st_lengths":0.967076411302546},"id":"12"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.20441726434444263,53.637877636944324],[-0.23261138370759227,53.62398066067988],[-0.2921102739691719,53.61324544981858],[-0.33593526160223064,53.55860506507264],[-0.4196655884953202,53.56375173405621],[-0.4306616396221443,53.546316108102815],[-0.4050714757671585,53.517595351145474],[-0.4758356382033071,53.50895743304005],[-0.48662721946976717,53.48044826497636],[-0.5517905031284158,53.4594979247903],[-0.629750080101303,53.45819703116899],[-0.6244885002432738,53.51281775583567],[-0.7385765174914809,53.51982618513125],[-0.7369230788361847,53.545393166262556],[-0.7451151697284786,53.571158149330074],[-0.7262770150713891,53.60735344250827],[-0.6981027140681704,53.61416685112022],[-0.7116377644704244,53.6408475463781],[-0.6851073666108505,53.67221884282628],[-0.69139039644881,53.69675614158359],[-0.6114174748357755,53.71458236738329],[-0.5487052898164393,53.679604713088],[-0.5033970566280459,53.68083688141786],[-0.4704868897573533,53.69819975401634],[-0.4065154344389157,53.6986135734586],[-0.2893572792142436,53.713177544508994],[-0.20441726434444263,53.637877636944324]]],[[[-0.6984877435137378,53.68459069840293],[-0.6897402268292012,53.67302374325209],[-0.7129022526360131,53.645072391378676],[-0.7125353616168013,53.62368841788708],[-0.7397528379223104,53.5926338851466],[-0.7489773145505865,53.563200285965365],[-0.7385731342419604,53.52618674732145],[-0.7528919438073558,53.500817168278616],[-0.7683316189082916,53.49941943296142],[-0.7979515216445634,53.455314240860446],[-0.9004676572557742,53.475135123388156],[-0.9355611586197483,53.50249581583017],[-0.9437120146969278,53.530622289088285],[-0.8980708956544845,53.53273813395862],[-0.9011138390316091,53.568703367067656],[-0.8869914333071733,53.60966679738573],[-0.8653331387125718,53.63768809942718],[-0.7744938572049023,53.656188814063455],[-0.6984877435137378,53.68459069840293]]]]},"properties":{"objectid":13,"ctyua17cd":"E06000013","name":"North Lincolnshire","namew":"","bng_e":497798,"bng_n":410996,"long":-0.52410001,"lat":53.586448669999996,"st_areasha":0.114962710242393,"st_lengths":2.808431170639497},"id":"13"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.9252863772636601,53.99150000831963],[-0.9341031210613551,53.96865331090248],[-0.92167108015542,53.92121490394561],[-0.9402845104210087,53.89861874775795],[-0.9235112306579367,53.88074637864338],[-0.9928265591975105,53.875190948904105],[-1.0081982644375103,53.88997597601144],[-1.0649529355287086,53.87456721600512],[-1.095312271643195,53.884439658664235],[-1.1053317282758144,53.87582404554422],[-1.1500000830365593,53.893621526313325],[-1.1956314938975083,53.9223623129713],[-1.2220988043155216,53.979324467551066],[-1.1755022815042935,54.002179472005935],[-1.1407886348867464,54.02984219006595],[-1.059702256353205,54.05659044599321],[-1.0023307825387633,54.05532749566834],[-0.9706098539607524,54.02305563341167],[-0.9670363051804998,53.98590058914181],[-0.9252863772636601,53.99150000831963]]]},"properties":{"objectid":14,"ctyua17cd":"E06000014","name":"York","namew":"","bng_e":460864,"bng_n":452589,"long":-1.07375002,"lat":53.96582031,"st_areasha":0.037306301010741,"st_lengths":1.150338479426415},"id":"14"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.4800883934637454,52.968096295308726],[-1.4685558643608374,52.950643813362205],[-1.3896116079885132,52.92272123889501],[-1.423572671340878,52.86505985692776],[-1.4951950640001996,52.87035963009379],[-1.5396416369511599,52.893924278783345],[-1.5528808643595653,52.92256014063889],[-1.50803259033097,52.937433911946414],[-1.4800883934637454,52.968096295308726]]]},"properties":{"objectid":15,"ctyua17cd":"E06000015","name":"Derby","namew":"","bng_e":435609,"bng_n":335375,"long":-1.47188997,"lat":52.91463852,"st_areasha":0.01052206567704,"st_lengths":0.540088400175989},"id":"15"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.1572590526623117,52.69150391127744],[-1.1188192315215133,52.673167373276556],[-1.0750866726110075,52.669606895242964],[-1.0469708419299764,52.63460179543745],[-1.0743389456849854,52.61342331973134],[-1.1436269806997643,52.58800714861195],[-1.1906623250054622,52.64037548614073],[-1.17909233284405,52.67637880284042],[-1.1572590526623117,52.69150391127744]]]},"properties":{"objectid":16,"ctyua17cd":"E06000016","name":"Leicester","namew":"","bng_e":458946,"bng_n":304594,"long":-1.13039994,"lat":52.63592148,"st_areasha":0.009725721912269,"st_lengths":0.516641064196692},"id":"16"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.4950369984579197,52.64021791592501],[-0.5174081658533396,52.642360980575745],[-0.5625310406741733,52.586257107480435],[-0.6030319982273227,52.58857304161353],[-0.6609262551417601,52.56892788931157],[-0.7136717674372903,52.52494694664517],[-0.7648028977347394,52.581177069267255],[-0.8193625170657128,52.60966091332142],[-0.8087028798332199,52.64610759129323],[-0.7822048710571607,52.66912032244585],[-0.7858137595965218,52.69422909000144],[-0.8217615737368078,52.715655596929196],[-0.8011999142438526,52.73672283908866],[-0.753328472030546,52.736554803462354],[-0.6641110845581011,52.75669070861022],[-0.6086036922058042,52.75969375086686],[-0.5399848139471715,52.73838196865387],[-0.5424444291662667,52.72326170846202],[-0.4945415124799979,52.709633397464245],[-0.43045403022847495,52.70540213939813],[-0.46163987747752344,52.66904244565325],[-0.5066851785772997,52.65950696817299],[-0.4950369984579197,52.64021791592501]]]},"properties":{"objectid":17,"ctyua17cd":"E06000017","name":"Rutland","namew":"","bng_e":492992,"bng_n":308655,"long":-0.62629998,"lat":52.66764832,"st_areasha":0.052400379417997,"st_lengths":1.25354159502112},"id":"17"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.1827499520478568,53.01854984400103],[-1.1435160250437093,53.0064815905539],[-1.0996804353030143,52.94195477779169],[-1.152291878466599,52.93700630679655],[-1.158607577976511,52.90004207708114],[-1.246825747609364,52.95307952639996],[-1.2139402851152568,52.99737696657468],[-1.1827499520478568,53.01854984400103]]]},"properties":{"objectid":18,"ctyua17cd":"E06000018","name":"Nottingham","namew":"","bng_e":456082,"bng_n":339969,"long":-1.16666996,"lat":52.954189299999996,"st_areasha":0.009983877012133,"st_lengths":0.642725583934169},"id":"18"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.618037526110129,52.306943546708226],[-2.59896995709704,52.283528405812206],[-2.6288727388849793,52.24033661464398],[-2.495653553467889,52.25692840582218],[-2.5044699321408643,52.274461835746024],[-2.4514057064073995,52.28506962976053],[-2.4648601164004162,52.23436110797968],[-2.4230676550474186,52.237247893076756],[-2.392896489480563,52.21031540203512],[-2.4351777845263314,52.16820483158864],[-2.415197588896774,52.145228846734824],[-2.3587246223426064,52.15188465905072],[-2.339429235270188,52.0689139876913],[-2.3513816902120084,52.02134981144559],[-2.399019643241104,51.99613721176382],[-2.437294575483463,51.99715839194715],[-2.4949136065768585,51.981066870240795],[-2.490187816713558,51.95497101669997],[-2.439314567912163,51.899505879893354],[-2.5222324175911695,51.86468840654567],[-2.598366790793932,51.856486393433215],[-2.6503979760848893,51.826118788052554],[-2.697333914727551,51.8447922876349],[-2.7568762908073836,51.845900395387844],[-2.7969615745162173,51.88840083453181],[-2.8450243223138045,51.92212633666202],[-2.8886524087808425,51.9334555641239],[-2.916238585541464,51.917685815349046],[-2.9717926679963966,51.904959144849556],[-3.0259380748814237,51.95727569042168],[-3.0673615965596355,51.98313629390577],[-3.099192705578105,52.022679359265965],[-3.0907745107342635,52.05081860289715],[-3.1258895625524588,52.078303796583896],[-3.0936862106493095,52.144297457562516],[-3.1219916741756037,52.166907914769354],[-3.0946492703467356,52.1837331114948],[-3.102081013227348,52.202710966838595],[-3.0731219458203327,52.23578245499721],[-3.005502476057586,52.26426073764384],[-3.001532101424516,52.32017461456775],[-2.966802544001382,52.329436610911785],[-2.9546522831755055,52.34914186490607],[-2.905426756938482,52.3857697508742],[-2.8554423377928515,52.39528453765223],[-2.8054334328058417,52.38823867947241],[-2.7924210764707027,52.35685059358093],[-2.7327680756853283,52.35551937482023],[-2.748381335229624,52.3348893461673],[-2.714124392226097,52.308844119061746],[-2.669678386747364,52.34154540130015],[-2.641017800730083,52.332834510405235],[-2.618037526110129,52.306943546708226]]]},"properties":{"objectid":19,"ctyua17cd":"E06000019","name":"Herefordshire, County of","namew":"","bng_e":349434,"bng_n":242834,"long":-2.73931003,"lat":52.08153915,"st_areasha":0.286111868159319,"st_lengths":3.698214105020305},"id":"19"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.416347524118123,52.82699120488115],[-2.377655347815221,52.811628134931425],[-2.36882909548558,52.77726202412407],[-2.3301354838646944,52.75796400833326],[-2.3155782280519475,52.73293257977565],[-2.357930353702045,52.731197710207084],[-2.4025030169998445,52.70389063444617],[-2.4190302656334097,52.66287715505757],[-2.4182968352299667,52.63376008036437],[-2.4645648428923437,52.62378064356278],[-2.50128696072386,52.62940689311455],[-2.548460182790393,52.65469741455496],[-2.555650035020278,52.67108283380668],[-2.603334210504613,52.68934249146372],[-2.59742182815404,52.71823583191906],[-2.6582795184841643,52.73069502965285],[-2.66341807738155,52.760425951897105],[-2.5922470661483885,52.776834894715535],[-2.5812450624088683,52.8060129758191],[-2.5400282570975605,52.79380668722973],[-2.457747612161768,52.79851531982706],[-2.4729479938540067,52.820738052320166],[-2.416347524118123,52.82699120488115]]]},"properties":{"objectid":20,"ctyua17cd":"E06000020","name":"Telford and Wrekin","namew":"","bng_e":367035,"bng_n":313057,"long":-2.48940992,"lat":52.714168550000004,"st_areasha":0.038568373659527,"st_lengths":1.2382260749189},"id":"20"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.1986153920858555,53.09270223282272],[-2.16114758968871,53.070102947893645],[-2.125400487141974,53.06456203591017],[-2.123738732455706,53.02162100540602],[-2.079459581793458,52.974001110763595],[-2.1313576872066733,52.971525174648036],[-2.1816099190617138,52.946190116981256],[-2.2071698953735677,52.971757751919654],[-2.2171908898468473,53.001619041686354],[-2.202553354253098,53.02000702810278],[-2.2387613089863976,53.07332253610707],[-2.1986153920858555,53.09270223282272]]]},"properties":{"objectid":21,"ctyua17cd":"E06000021","name":"Stoke-on-Trent","namew":"","bng_e":389438,"bng_n":346652,"long":-2.15888,"lat":53.017070770000004,"st_areasha":0.012451477489117,"st_lengths":0.63461729908964},"id":"21"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.294618431494598,51.428803915369315],[-2.2785435634339137,51.41588456602085],[-2.2902908533393997,51.37262413769474],[-2.3240496573649807,51.34776338877032],[-2.2890930975675587,51.32527576996176],[-2.3628881668545887,51.30294326891766],[-2.4009186597675125,51.30480452920659],[-2.4558750078245453,51.27373707320828],[-2.5063547483721322,51.278995662820535],[-2.5578220038815402,51.30266566618849],[-2.612992342022153,51.28415240151304],[-2.6948756790685024,51.31809802350591],[-2.649877871165984,51.368950782153775],[-2.590131759971939,51.39754700549082],[-2.5345015166308826,51.41385072762989],[-2.5239029919287077,51.433875287715296],[-2.469645395517773,51.41593512230895],[-2.3432917038482515,51.439535876980074],[-2.294618431494598,51.428803915369315]]]},"properties":{"objectid":22,"ctyua17cd":"E06000022","name":"Bath and North East Somerset","namew":"","bng_e":366217,"bng_n":161999,"long":-2.48654008,"lat":51.35604095,"st_areasha":0.045244191356657,"st_lengths":1.456214299996434},"id":"22"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.5239029919287077,51.433875287715296],[-2.5345015166308826,51.41385072762989],[-2.590131759971939,51.39754700549082],[-2.627953136227461,51.401862395134344],[-2.626545019136529,51.45037479765972],[-2.6588669268663807,51.48406990810071],[-2.685401205300593,51.48113170876229],[-2.716478348795931,51.50061018970939],[-2.6738087498731034,51.54443273658245],[-2.6471591180979885,51.512167389014735],[-2.6024412367728473,51.51378403640507],[-2.5881484508894914,51.50123606299485],[-2.515864590677495,51.49386879790762],[-2.512148693606491,51.463059278263984],[-2.5239029919287077,51.433875287715296]]]},"properties":{"objectid":23,"ctyua17cd":"E06000023","name":"Bristol, City of","namew":"","bng_e":359990,"bng_n":174846,"long":-2.57742,"lat":51.47114944,"st_areasha":0.01422839402838,"st_lengths":1.11409781501472},"id":"23"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.716478348795931,51.50061018970939],[-2.685401205300593,51.48113170876229],[-2.6588669268663807,51.48406990810071],[-2.626545019136529,51.45037479765972],[-2.627953136227461,51.401862395134344],[-2.590131759971939,51.39754700549082],[-2.649877871165984,51.368950782153775],[-2.6948756790685024,51.31809802350591],[-2.8186673659054122,51.3263689507674],[-2.8102308275898054,51.301428184663905],[-2.8771394309391667,51.30006654993224],[-2.897096855734503,51.2906185216284],[-2.93642244883614,51.30301804754578],[-2.9931797405517955,51.301046809163836],[-2.983398257123042,51.350679942326394],[-2.940227750209715,51.39817193628676],[-2.9129644021845706,51.39576555823487],[-2.8791952460629204,51.431841000562656],[-2.7994202850173338,51.48538701649852],[-2.716478348795931,51.50061018970939]]]},"properties":{"objectid":24,"ctyua17cd":"E06000024","name":"North Somerset","namew":"","bng_e":347613,"bng_n":166719,"long":-2.75439,"lat":51.397071839999995,"st_areasha":0.04828954067076,"st_lengths":1.542884335555065},"id":"24"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.2725632013298878,51.57758986717954],[-2.2665058338762947,51.536262296868415],[-2.2523923422319854,51.52687410855418],[-2.3243276126283945,51.4975108012834],[-2.290561162566803,51.48685905020591],[-2.294618431494598,51.428803915369315],[-2.3432917038482515,51.439535876980074],[-2.469645395517773,51.41593512230895],[-2.5239029919287077,51.433875287715296],[-2.512148693606491,51.463059278263984],[-2.515864590677495,51.49386879790762],[-2.5881484508894914,51.50123606299485],[-2.6024412367728473,51.51378403640507],[-2.6471591180979885,51.512167389014735],[-2.6738087498731034,51.54443273658245],[-2.6277998548785604,51.605634005705724],[-2.5852048169479076,51.62601014495317],[-2.5582691962655986,51.666417131446394],[-2.534741730045994,51.67724246067195],[-2.493034437188726,51.651898770412856],[-2.460442534994172,51.6525994097359],[-2.388183908859503,51.637172627315806],[-2.396372756796495,51.60009647337449],[-2.300102044073242,51.5914808638517],[-2.2725632013298878,51.57758986717954]]]},"properties":{"objectid":25,"ctyua17cd":"E06000025","name":"South Gloucestershire","namew":"","bng_e":367559,"bng_n":183196,"long":-2.46921992,"lat":51.54671097,"st_areasha":0.064396303593343,"st_lengths":1.498536351367747},"id":"25"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.1229848456732725,50.34670315482765],[-4.125841539454655,50.35700348862105],[-4.185389949086073,50.36717640197031],[-4.205321774679362,50.39952531004593],[-4.192310470550979,50.42469567486643],[-4.163445326539772,50.42757124182026],[-4.124850681712758,50.435722833542854],[-4.084703893369181,50.42583976809175],[-4.071483063391838,50.401864405318975],[-4.039623149088243,50.40143467866841],[-4.050167657810334,50.35806418501505],[-4.0905590815355595,50.34091751393305],[-4.1229848456732725,50.34670315482765]]]},"properties":{"objectid":26,"ctyua17cd":"E06000026","name":"Plymouth","namew":"","bng_e":249944,"bng_n":58255,"long":-4.1129899,"lat":50.40494156,"st_areasha":0.010167849295185,"st_lengths":0.857933913081653},"id":"26"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.509171798039233,50.51659180636767],[-3.5147878079101815,50.481703662494965],[-3.5590724156586475,50.427678992292556],[-3.507615651640208,50.3791714964683],[-3.544240497000544,50.373498686316225],[-3.6280246734990556,50.42600403735736],[-3.588645360294322,50.45062570151583],[-3.584155447315254,50.47800984737745],[-3.509171798039233,50.51659180636767]]]},"properties":{"objectid":27,"ctyua17cd":"E06000027","name":"Torbay","namew":"","bng_e":289730,"bng_n":64608,"long":-3.5552299,"lat":50.4708786,"st_areasha":0.008063613743045,"st_lengths":0.724324472060948},"id":"27"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.8063527226991596,50.74127490281546],[-1.7634359172329823,50.71861523020965],[-1.7426974420325223,50.72154160166451],[-1.741125057474619,50.72154351901912],[-1.748852305888363,50.711012023487],[-1.8091940965294953,50.72069982273956],[-1.9009079300561211,50.709437003915525],[-1.8911471391283499,50.741952946672086],[-1.9362857709707555,50.756697294745265],[-1.919231524114707,50.77469532612935],[-1.8513560740227604,50.773619784626305],[-1.8063527226991596,50.74127490281546]]]},"properties":{"objectid":28,"ctyua17cd":"E06000028","name":"Bournemouth","namew":"","bng_e":410069,"bng_n":93928,"long":-1.85863996,"lat":50.7448616,"st_areasha":0.005859482615149,"st_lengths":0.519315923170415},"id":"28"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.919231524114707,50.77469532612935],[-1.9362857709707555,50.756697294745265],[-1.8911471391283499,50.741952946672086],[-1.9009079300561211,50.709437003915525],[-1.9321355067474428,50.696158129894684],[-1.9603897484872732,50.71194255200811],[-2.0002522251592723,50.71079180200098],[-2.026875031956365,50.729336025837824],[-2.0093269161034755,50.782598496324454],[-1.9523167116461195,50.7905134845106],[-1.919231524114707,50.77469532612935]]]},"properties":{"objectid":29,"ctyua17cd":"E06000029","name":"Poole","namew":"","bng_e":403393,"bng_n":93466,"long":-1.95326996,"lat":50.74077988,"st_areasha":0.008316260942313,"st_lengths":0.732448612669651},"id":"29"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.6028258068647006,51.51829434241091],[-1.7190930514024103,51.5007055915907],[-1.715748117480814,51.488383614213376],[-1.7978065732139612,51.48444628516887],[-1.8298646504324552,51.513683430147125],[-1.8496255086095061,51.5536268772795],[-1.8318678255388932,51.596727227180736],[-1.842389558930165,51.61211514899588],[-1.7885956673553665,51.632711521420504],[-1.7886286158171742,51.666998875898344],[-1.7110684853215048,51.67178977038253],[-1.6830722087146341,51.690106512506475],[-1.7002024707666124,51.67073848809167],[-1.659968054281478,51.634988570666906],[-1.690629996076666,51.60544865992864],[-1.6911237607521343,51.583522742381604],[-1.6550578377481884,51.576505313570294],[-1.6028258068647006,51.51829434241091]]]},"properties":{"objectid":30,"ctyua17cd":"E06000030","name":"Swindon","namew":"","bng_e":418551,"bng_n":186564,"long":-1.73367,"lat":51.577629089999995,"st_areasha":0.02986881764031,"st_lengths":1.042838847703311},"id":"30"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.03128748313002916,52.661513802620846],[-0.012858238516059828,52.59432647598703],[-0.12440905243499856,52.57666125041732],[-0.1869959394102807,52.568487821356825],[-0.19104718737696658,52.550320538462984],[-0.2694651200184808,52.520371684406655],[-0.28465590864243495,52.50609495322044],[-0.3484919917112279,52.56435212615065],[-0.41539468381677125,52.578724632436774],[-0.47882787240757807,52.57362712759078],[-0.49071875166822565,52.59051618427543],[-0.4735150815549787,52.62821625187945],[-0.4947846495911108,52.640295602960634],[-0.4504894226479337,52.65410595562628],[-0.41751159977968655,52.64675459415014],[-0.33996382057301844,52.666047573737444],[-0.27909639598107105,52.66598486491051],[-0.2586781594686727,52.65162599684322],[-0.20605184061912496,52.66805381823008],[-0.13951725002027615,52.654842600206734],[-0.10221191284870201,52.67218705648838],[-0.05803990651565982,52.67407251843292],[-0.03128748313002916,52.661513802620846]]]},"properties":{"objectid":31,"ctyua17cd":"E06000031","name":"Peterborough","namew":"","bng_e":517372,"bng_n":300777,"long":-0.26874,"lat":52.5921402,"st_areasha":0.045701588488879,"st_lengths":1.304955468723393},"id":"31"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.3856411184420381,51.91567270902925],[-0.3548582106370759,51.874006795777916],[-0.40091811068145944,51.8686434414426],[-0.4231901053382785,51.85465886221766],[-0.46664631607382034,51.888156254908154],[-0.5059484836347679,51.9006044206584],[-0.43784310747258814,51.927738898532255],[-0.3856411184420381,51.91567270902925]]]},"properties":{"objectid":32,"ctyua17cd":"E06000032","name":"Luton","namew":"","bng_e":508606,"bng_n":222559,"long":-0.42319,"lat":51.89102173,"st_areasha":0.005698297933362,"st_lengths":0.402875306426771},"id":"32"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.8212262803693875,51.54065908684828],[0.7877404043969705,51.52182733536415],[0.7204876080174927,51.53256363080783],[0.6271752889092568,51.53803524463177],[0.6439268563401583,51.57507997805948],[0.7520626045064205,51.55835746142861],[0.8212262803693875,51.54065908684828]]]},"properties":{"objectid":33,"ctyua17cd":"E06000033","name":"Southend-on-Sea","namew":"","bng_e":587776,"bng_n":186833,"long":0.70690602,"lat":51.54914093,"st_areasha":0.005449345930407,"st_lengths":0.497744157676889},"id":"33"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.49774334647906926,51.53848823044842],[0.5221652055606114,51.51596412884237],[0.4475945996118753,51.5001568333721],[0.43394998480476943,51.461498063285944],[0.3408155623891389,51.45232716286921],[0.31870705368839936,51.474115506626276],[0.2813740659611881,51.46139879431985],[0.21052539243373758,51.49024252817105],[0.26661007849315865,51.52295487566789],[0.33387406513679707,51.54249227390022],[0.3130069500115269,51.56581630358045],[0.38257564545051537,51.56582157270833],[0.4399062189976348,51.5451116734659],[0.46158785099936495,51.553694982038735],[0.49774334647906926,51.53848823044842]]]},"properties":{"objectid":34,"ctyua17cd":"E06000034","name":"Thurrock","namew":"","bng_e":562126,"bng_n":181586,"long":0.33490199,"lat":51.5099411,"st_areasha":0.021017310481078,"st_lengths":1.008356501522024},"id":"34"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.45345695177769585,51.34061079185551],[0.4012542513834205,51.35295545103418],[0.4310806033879544,51.38803318098746],[0.48920711921402926,51.415326245310894],[0.4909444969917445,51.438676778011825],[0.4592720184896848,51.45554019772288],[0.4814620615257468,51.487161770100556],[0.5857531647775431,51.48443814990162],[0.7031458389101317,51.471267902292766],[0.7102561892725134,51.43481383549101],[0.6559819140349532,51.44922164196612],[0.6108375589070647,51.41740313244952],[0.5228831361486073,51.39979715511555],[0.44853146925271403,51.365058333776005],[0.45345695177769585,51.34061079185551]]],[[[0.6268981628207939,51.37473046054322],[0.6109202839447789,51.3364740525364],[0.5634285453919006,51.338743069937664],[0.5439749226054005,51.327896510416565],[0.45694426816424993,51.36805773197966],[0.5609401608605822,51.394814499990105],[0.6268981628207939,51.37473046054322]]]]},"properties":{"objectid":35,"ctyua17cd":"E06000035","name":"Medway","namew":"","bng_e":578207,"bng_n":175196,"long":0.563173,"lat":51.447708129999995,"st_areasha":0.024960832696032,"st_lengths":1.85459349118571},"id":"35"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.6676523206972433,51.38457076323107],[-0.7352757924430762,51.3650400334717],[-0.7754834567952571,51.33195882454106],[-0.8373662231718413,51.352870965123884],[-0.7888565258072049,51.37175042923985],[-0.801819031822049,51.40753987816379],[-0.8000368552158648,51.44118064167418],[-0.7696582025631642,51.46775631770083],[-0.65677244848888,51.46149290657331],[-0.6305697150195329,51.44219134925231],[-0.6961339883920346,51.41302384057872],[-0.6676523206972433,51.38457076323107]]]},"properties":{"objectid":36,"ctyua17cd":"E06000036","name":"Bracknell Forest","namew":"","bng_e":488169,"bng_n":168792,"long":-0.73363,"lat":51.411300659999995,"st_areasha":0.014113921239604,"st_lengths":0.703804045834186},"id":"36"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.0365778662746834,51.47522511085111],[-1.0529947285230605,51.46036856695673],[-1.0011690167359006,51.42638103116059],[-1.0119052645155193,51.39286567721018],[-0.9861438004951992,51.36284730376099],[-1.0500352656142127,51.358147490814986],[-1.086638618076961,51.383915268975386],[-1.115810357161422,51.36046601859283],[-1.1769137539657777,51.35732417137433],[-1.2021023687285037,51.366189937216745],[-1.3123640179842369,51.37306248344777],[-1.3528975318947687,51.3672641827967],[-1.415646683546811,51.37188558835015],[-1.4449518712310692,51.348120688519884],[-1.498313394846491,51.32937870646305],[-1.4857261642303001,51.34772579800807],[-1.5556169959268118,51.39558594113919],[-1.5320775669253521,51.42955656158699],[-1.548404784752222,51.460656017262295],[-1.5823050719207004,51.49411147186788],[-1.5847218893029549,51.52491144430866],[-1.5563847912243318,51.55300503565479],[-1.5129536787684401,51.55075944829082],[-1.47075987157001,51.52860702209733],[-1.426607130513844,51.545598623078945],[-1.3865774608802894,51.53995823708391],[-1.3263150462016142,51.55958089554281],[-1.2567907350036194,51.53703224874022],[-1.2046698261507345,51.52839312554323],[-1.160818071096287,51.53458782846644],[-1.1027970313571132,51.49016945555684],[-1.0554429898012927,51.492035776330965],[-1.0365778662746834,51.47522511085111]]]},"properties":{"objectid":37,"ctyua17cd":"E06000037","name":"West Berkshire","namew":"","bng_e":450575,"bng_n":172095,"long":-1.27364004,"lat":51.445590970000005,"st_areasha":0.090958290218767,"st_lengths":1.846081858242059},"id":"37"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.949187851737122,51.45951228916175],[-0.9434527266611781,51.429291180644384],[-0.9647508832458698,51.411758147321564],[-1.0011690167359006,51.42638103116059],[-1.0529947285230605,51.46036856695673],[-1.0365778662746834,51.47522511085111],[-0.9618253355699835,51.493089773675024],[-0.949187851737122,51.45951228916175]]]},"properties":{"objectid":38,"ctyua17cd":"E06000038","name":"Reading","namew":"","bng_e":470226,"bng_n":173154,"long":-0.99071002,"lat":51.45301819,"st_areasha":0.005236476476839,"st_lengths":0.392363479203427},"id":"38"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.49004427812013773,51.4947462340524],[-0.5097205865350247,51.46917509355666],[-0.5243775996456748,51.47152757074173],[-0.534373541704781,51.48678400627779],[-0.6005160665624203,51.50227237067429],[-0.6422294847021135,51.50062519489774],[-0.6600965289308647,51.52752517724605],[-0.6397406666976053,51.53713003472427],[-0.527000153133713,51.509503806656255],[-0.49004427812013773,51.4947462340524]]]},"properties":{"objectid":39,"ctyua17cd":"E06000039","name":"Slough","namew":"","bng_e":498920,"bng_n":179246,"long":-0.57617003,"lat":51.50350189,"st_areasha":0.004208194617604,"st_lengths":0.48563618337953},"id":"39"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.6422294847021135,51.50062519489774],[-0.6005160665624203,51.50227237067429],[-0.534373541704781,51.48678400627779],[-0.5243775996456748,51.47152757074173],[-0.6051421243087702,51.43131139970228],[-0.6235127565076937,51.38954313910551],[-0.6676523206972433,51.38457076323107],[-0.6961339883920346,51.41302384057872],[-0.6305697150195329,51.44219134925231],[-0.65677244848888,51.46149290657331],[-0.7696582025631642,51.46775631770083],[-0.8000368552158648,51.44118064167418],[-0.8181028294811767,51.443189434845465],[-0.8293750246368745,51.4871957698698],[-0.8174092651246951,51.50723555907473],[-0.853926316845218,51.526070831404695],[-0.8427624261442475,51.54475597990546],[-0.7944893521010954,51.551155079843966],[-0.7732467160622605,51.56730727790949],[-0.7278828292283492,51.57723962351076],[-0.6941958954234337,51.562172444903354],[-0.7031829177566351,51.511104428127794],[-0.6517470800628757,51.48548184191441],[-0.6422294847021135,51.50062519489774]]]},"properties":{"objectid":40,"ctyua17cd":"E06000040","name":"Windsor and Maidenhead","namew":"","bng_e":492079,"bng_n":176541,"long":-0.67540997,"lat":51.48033905,"st_areasha":0.025537323410747,"st_lengths":1.277595880058796},"id":"40"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.8000368552158648,51.44118064167418],[-0.801819031822049,51.40753987816379],[-0.7888565258072049,51.37175042923985],[-0.8373662231718413,51.352870965123884],[-0.8778743240400217,51.352590608670596],[-0.9177672508571391,51.364555694590535],[-0.9861438004951992,51.36284730376099],[-1.0119052645155193,51.39286567721018],[-1.0011690167359006,51.42638103116059],[-0.9647508832458698,51.411758147321564],[-0.9434527266611781,51.429291180644384],[-0.949187851737122,51.45951228916175],[-0.8976708187524878,51.4870437511691],[-0.8782373407798332,51.52301570491176],[-0.8969017446190151,51.544860167263835],[-0.8427624261442475,51.54475597990546],[-0.853926316845218,51.526070831404695],[-0.8174092651246951,51.50723555907473],[-0.8293750246368745,51.4871957698698],[-0.8181028294811767,51.443189434845465],[-0.8000368552158648,51.44118064167418]]]},"properties":{"objectid":41,"ctyua17cd":"E06000041","name":"Wokingham","namew":"","bng_e":476624,"bng_n":169902,"long":-0.89934999,"lat":51.422958369999996,"st_areasha":0.023238805098298,"st_lengths":0.924396718415149},"id":"41"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.5918297793200509,52.11068042446294],[-0.6689973512459346,52.04870603605565],[-0.6403512856824705,52.02365036447367],[-0.6617117841706772,51.999726387163946],[-0.6530013429368182,51.969219452516654],[-0.7134057263923523,51.98980686409641],[-0.8035251473668268,51.985494134647524],[-0.8122630314129538,52.0060059941822],[-0.871343514790567,52.04024038128949],[-0.8314369659424301,52.07193522772951],[-0.8714668397220748,52.11174073684646],[-0.7653495074729904,52.171086995969006],[-0.7054731285812181,52.191557922860795],[-0.6681533752772566,52.195021302891746],[-0.6274651177201918,52.18153338325993],[-0.640800740760767,52.15276163384323],[-0.6072687844260258,52.133857757630324],[-0.5918297793200509,52.11068042446294]]]},"properties":{"objectid":42,"ctyua17cd":"E06000042","name":"Milton Keynes","namew":"","bng_e":486408,"bng_n":242308,"long":-0.74070001,"lat":52.07241058,"st_areasha":0.040474992829537,"st_lengths":1.116066169238241},"id":"42"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.13503764596975998,50.88664026793492],[-0.08495532662618643,50.873125175287555],[-0.07080691610548229,50.8458244667267],[-0.03687074688662051,50.841244578375495],[-0.03823079431487031,50.799525564654004],[-0.09188862116212704,50.811707090410835],[-0.2160654552557162,50.82757860197182],[-0.2397803051161418,50.86195875209563],[-0.18776228679928408,50.868576713745256],[-0.18245024238393626,50.88833070919577],[-0.13503764596975998,50.88664026793492]]]},"properties":{"objectid":43,"ctyua17cd":"E06000043","name":"Brighton and Hove","namew":"","bng_e":530279,"bng_n":106849,"long":-0.15079001,"lat":50.84648895,"st_areasha":0.010608435277035,"st_lengths":0.649294118282881},"id":"43"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.0441869042014673,50.83167768667681],[-1.0321117295718523,50.786795929989125],[-1.0892359473802458,50.77771169274138],[-1.1098032555150326,50.79184526804562],[-1.0766217406999772,50.836806601244575],[-1.0441869042014673,50.83167768667681]]],[[[-1.0206407518683704,50.83906876221454],[-1.0218815869648665,50.83732293530613],[-1.0220775888088838,50.83582726381809],[-1.1160634254858905,50.843859636913635],[-1.1158620268102482,50.85828097998416],[-1.022644136516874,50.8520828182684],[-1.0206407518683704,50.83906876221454]]]]},"properties":{"objectid":44,"ctyua17cd":"E06000044","name":"Portsmouth","namew":"","bng_e":465607,"bng_n":101357,"long":-1,"lat":50,"st_areasha":0.005181083317632,"st_lengths":0.594501665496852},"id":"44"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.3651206467995962,50.880048483751466],[-1.4409724503175312,50.90809170047254],[-1.47732986158303,50.92857218805693],[-1.4210474739609253,50.95168530513365],[-1.3669285233318647,50.94687696919772],[-1.3219879788613298,50.90096281688142],[-1.3651206467995962,50.880048483751466]]]},"properties":{"objectid":45,"ctyua17cd":"E06000045","name":"Southampton","namew":"","bng_e":442253,"bng_n":113608,"long":-1.40024996,"lat":50.92037964,"st_areasha":0.006435788633125,"st_lengths":0.575787769491873},"id":"45"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.2829314557212683,50.72973127787708],[-1.277324680089123,50.76630897987644],[-1.2170280498038437,50.7348210530501],[-1.1601868711263705,50.73319812389525],[-1.1096020376031106,50.721506305072865],[-1.0979388738791158,50.66523512210415],[-1.1335651282272465,50.66189561199383],[-1.1660474849026627,50.64398288580247],[-1.1851448736362045,50.597258129559975],[-1.2490773676256026,50.581096400479396],[-1.3027275996981302,50.57567788892436],[-1.3893041855388901,50.62680939513842],[-1.4472785774435692,50.643498998381006],[-1.4851339282873255,50.66699163115976],[-1.5489869132146623,50.677875674423774],[-1.534641752613993,50.700739213444876],[-1.470127649070946,50.70965008208657],[-1.4255639367254958,50.72676277858028],[-1.3542343858074446,50.7387116758041],[-1.300722634041506,50.766797766804416],[-1.2829314557212683,50.72973127787708]]]},"properties":{"objectid":46,"ctyua17cd":"E06000046","name":"Isle of Wight","namew":"","bng_e":447186,"bng_n":85950,"long":-1.33361995,"lat":50.671298979999996,"st_areasha":0.048358218037773,"st_lengths":1.845340348744053},"id":"46"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.5593987899213744,54.882028925895156],[-1.5199486452129918,54.87601854801852],[-1.5191967625197549,54.87594819765212],[-1.5042668501342291,54.83122092200887],[-1.4818429258095875,54.80964225968347],[-1.437517945695845,54.80051780385452],[-1.412999252112968,54.823296892038854],[-1.4135664329436963,54.84485293641484],[-1.347434144169597,54.860621489091386],[-1.3126142903164464,54.8117714603855],[-1.2923124908279533,54.76095092264791],[-1.2428249111399055,54.722253447539515],[-1.2702373622636287,54.72715841922661],[-1.3344262331833079,54.68903626021614],[-1.341208320206988,54.65023223253246],[-1.3808848080865914,54.643906168335945],[-1.4383441240812544,54.5950683533228],[-1.4686773735611496,54.6005479207509],[-1.5586351324046177,54.59210649461994],[-1.583364735893042,54.580938039859575],[-1.6067480210035683,54.61738519806937],[-1.6824133455986043,54.61776154186259],[-1.6793027687069753,54.58596348922458],[-1.7089752377162313,54.57413175927422],[-1.6969167976712356,54.53599605467514],[-1.733081592140934,54.527726127459744],[-1.7796867817187945,54.53186300707307],[-1.7929683456118255,54.484482301517914],[-1.8394250921934372,54.5084275594852],[-1.8591225157906592,54.48184807482971],[-1.9425365556167549,54.45338543948736],[-2.061282446826624,54.480548116503314],[-2.0863901378937157,54.468383342418235],[-2.170207028131017,54.458189265323256],[-2.159361058565196,54.471134504354836],[-2.1723922494019803,54.532435156658096],[-2.3045091178007056,54.59618954890948],[-2.3249322160481256,54.63164226108239],[-2.2879727977056064,54.65047231374723],[-2.303311227130621,54.66962234699463],[-2.3515878606904153,54.685728957526294],[-2.3084801327511286,54.773535859992876],[-2.3120828474446284,54.79100815130607],[-2.282670931817222,54.79824514869557],[-2.2188994677354117,54.78237032673013],[-2.19859326336757,54.80672905160537],[-2.1431228007758136,54.826952134334476],[-2.138154202953274,54.84236239620856],[-2.082467598200253,54.83821469235511],[-2.011760335870008,54.86670386309373],[-1.8876391725090116,54.843580257224005],[-1.866591016661289,54.85537793074786],[-1.845438760689433,54.89689586505307],[-1.8210027489768663,54.90565459088759],[-1.6748261414124954,54.90929484867928],[-1.6436779056100477,54.87879598814527],[-1.5937579022046293,54.901738895934216],[-1.5593987899213744,54.882028925895156]]]},"properties":{"objectid":47,"ctyua17cd":"E06000047","name":"County Durham","namew":"","bng_e":410381,"bng_n":532242,"long":-1.8405,"lat":54.68513107,"st_areasha":0.311233077377734,"st_lengths":3.554001209258993},"id":"47"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.3139994529116166,53.35740830525003],[-2.2879339290067833,53.343072435545366],[-2.240791191259632,53.35955787649573],[-2.1511910073583067,53.34811613755062],[-2.0949543862351447,53.366020285109016],[-2.0611639755362035,53.358421932027454],[-2.0310593013448397,53.37024640534827],[-2.0143199125330966,53.34004246848605],[-1.9997337740935563,53.245031652889395],[-1.9874113830280749,53.21356748165488],[-2.0016690261038548,53.193036693189754],[-2.0464207111460837,53.19266352849996],[-2.0582447932617924,53.17630304025403],[-2.173280924374353,53.14758734018454],[-2.24658026126923,53.090169186159926],[-2.329009123471451,53.07656336091128],[-2.3861702332688424,53.03354749602107],[-2.380793384606193,52.99839461512033],[-2.438168091483419,52.98555176840034],[-2.434613718047842,52.969505504176595],[-2.5068971366927144,52.96489702637757],[-2.5295160870969084,52.94714962795388],[-2.561262953921357,52.964936721553386],[-2.5976936716248247,52.96299081167757],[-2.6077339466634726,52.98834736134256],[-2.6992928962493465,52.99542463733809],[-2.6787708132216608,53.0326433976756],[-2.7182633249916535,53.0441982155761],[-2.7529285206339296,53.06921042022566],[-2.706054074934798,53.118493574120066],[-2.671145179205837,53.1158540854986],[-2.626859247655318,53.15001960702017],[-2.54225155026802,53.149744722042215],[-2.496195457953206,53.164266053536494],[-2.4690747001365025,53.15274602590932],[-2.4431246374912234,53.20134720590977],[-2.406580509881792,53.17412063925701],[-2.372561348526574,53.195534857848315],[-2.4101625572553758,53.205680160212125],[-2.3962909274835056,53.23434603514232],[-2.3463546229666576,53.24092059461066],[-2.4644589378289083,53.28726341057887],[-2.4980075774868737,53.28989295269855],[-2.5183940841188814,53.34237424417694],[-2.4868792801538575,53.36788760952646],[-2.4398812019550746,53.36664630228597],[-2.4265908498870203,53.387444889071276],[-2.3650287529737284,53.36308944672152],[-2.3139994529116166,53.35740830525003]]]},"properties":{"objectid":48,"ctyua17cd":"E06000049","name":"Cheshire East","namew":"","bng_e":380510,"bng_n":363462,"long":-2.29298997,"lat":53.167930600000005,"st_areasha":0.157204597603242,"st_lengths":3.119702177157722},"id":"48"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.6992928962493465,52.99542463733809],[-2.7268411494986253,52.98325857362522],[-2.835996123621385,52.997134327688],[-2.8587020987220626,53.019883834472296],[-2.8592356242238566,53.05414850175288],[-2.910231414647228,53.112623326806045],[-2.963812088656141,53.13274205850013],[-2.9709251216962116,53.160766885884016],[-2.9204543195104407,53.18215939663975],[-2.9203527509778837,53.18293590816654],[-2.9495096692350558,53.2112639599647],[-3.0360640283314524,53.25179061384671],[-3.073914907745973,53.25361029847744],[-3.074525878365762,53.25370732993025],[-3.0824252884954717,53.255489350953724],[-3.0933245132148954,53.26061264925528],[-3.0950923941978203,53.261800093400495],[-3.0952026996440622,53.26188894731797],[-3.101358193924682,53.266898550628525],[-3.1090139390412332,53.29724169444955],[-3.0959080154417506,53.3047025843577],[-3.0955231514714683,53.30490831956422],[-3.0726502073403594,53.31583848725734],[-3.0297604957494855,53.29897629152356],[-2.9285719960000165,53.30823263742718],[-2.878389821332348,53.290766924654804],[-2.842997419494509,53.307520838416906],[-2.7889660997049077,53.29543543130103],[-2.7524317180485127,53.31474429561371],[-2.701203521224727,53.30603164294689],[-2.643210652748621,53.3070435879921],[-2.5952243014595524,53.322438926516156],[-2.5618763814890144,53.32332697106381],[-2.5183940841188814,53.34237424417694],[-2.4980075774868737,53.28989295269855],[-2.4644589378289083,53.28726341057887],[-2.3463546229666576,53.24092059461066],[-2.3962909274835056,53.23434603514232],[-2.4101625572553758,53.205680160212125],[-2.372561348526574,53.195534857848315],[-2.406580509881792,53.17412063925701],[-2.4431246374912234,53.20134720590977],[-2.4690747001365025,53.15274602590932],[-2.496195457953206,53.164266053536494],[-2.54225155026802,53.149744722042215],[-2.626859247655318,53.15001960702017],[-2.671145179205837,53.1158540854986],[-2.706054074934798,53.118493574120066],[-2.7529285206339296,53.06921042022566],[-2.7182633249916535,53.0441982155761],[-2.6787708132216608,53.0326433976756],[-2.6992928962493465,52.99542463733809]]]},"properties":{"objectid":49,"ctyua17cd":"E06000050","name":"Cheshire West and Chester","namew":"","bng_e":353097,"bng_n":363145,"long":-2.70298004,"lat":53.1633606,"st_areasha":0.123042006325203,"st_lengths":3.254400512925707},"id":"49"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.416347524118123,52.82699120488115],[-2.4729479938540067,52.820738052320166],[-2.457747612161768,52.79851531982706],[-2.5400282570975605,52.79380668722973],[-2.5812450624088683,52.8060129758191],[-2.5922470661483885,52.776834894715535],[-2.66341807738155,52.760425951897105],[-2.6582795184841643,52.73069502965285],[-2.59742182815404,52.71823583191906],[-2.603334210504613,52.68934249146372],[-2.555650035020278,52.67108283380668],[-2.548460182790393,52.65469741455496],[-2.50128696072386,52.62940689311455],[-2.4645648428923437,52.62378064356278],[-2.4182968352299667,52.63376008036437],[-2.4190302656334097,52.66287715505757],[-2.4025030169998445,52.70389063444617],[-2.357930353702045,52.731197710207084],[-2.3155782280519475,52.73293257977565],[-2.3248359750993473,52.7053210700123],[-2.303043423414465,52.6829379614187],[-2.247732732578754,52.68305938518341],[-2.236891380132249,52.636051911767254],[-2.255808151724011,52.609968291704206],[-2.309604819505978,52.60738645682045],[-2.2608401922202574,52.56314283027831],[-2.2609474885349528,52.52408786836139],[-2.3127527974028794,52.489194439172934],[-2.2873865503482307,52.455302709953],[-2.3117539842581323,52.437517022893246],[-2.3635311722250094,52.43941167680839],[-2.366024338451666,52.40780287840107],[-2.4263398598957906,52.36581885425767],[-2.4838926415313836,52.360478097187354],[-2.4817987482128387,52.33106425701078],[-2.53915243163857,52.34412558772664],[-2.5748552884400056,52.3175625894429],[-2.618037526110129,52.306943546708226],[-2.641017800730083,52.332834510405235],[-2.669678386747364,52.34154540130015],[-2.714124392226097,52.308844119061746],[-2.748381335229624,52.3348893461673],[-2.7327680756853283,52.35551937482023],[-2.7924210764707027,52.35685059358093],[-2.8054334328058417,52.38823867947241],[-2.8554423377928515,52.39528453765223],[-2.905426756938482,52.3857697508742],[-2.9546522831755055,52.34914186490607],[-3.041058729875658,52.34429431403231],[-3.1544454737787646,52.38770172125834],[-3.1788351982849576,52.40938355290956],[-3.2195425394558015,52.421239076223344],[-3.2355407690903917,52.44248944193515],[-3.1972388751731273,52.47597477561635],[-3.180590790931433,52.47382173118888],[-3.1081246426373355,52.4992859449913],[-3.0292039592944775,52.50125304918981],[-2.9943095723280635,52.553033185134325],[-3.006486313691596,52.57383429361869],[-3.1114959941439793,52.54134885586592],[-3.1174147904594065,52.58574827016747],[-3.0511152484691024,52.647350871646324],[-3.018382212068616,52.721251627461584],[-2.9919950096611387,52.74374154763524],[-3.0106155121953293,52.76153634123011],[-3.1584261735282553,52.79347369255777],[-3.1678877456221244,52.81925219873091],[-3.1277133741720604,52.867088440580005],[-3.147503734608847,52.89015460764995],[-3.1168951298055845,52.89967892634229],[-3.095954400674259,52.93026746187479],[-3.0348757541119653,52.92955669978278],[-3.008614289517027,52.95657623530593],[-2.9728287445500996,52.96044702980748],[-2.928889325381249,52.938663581060325],[-2.8982925655486724,52.950259938646184],[-2.8410158038354894,52.942608359189364],[-2.800468818080674,52.89550017339519],[-2.7553281762534994,52.924613588747036],[-2.7285434060525517,52.92516382455182],[-2.7268411494986253,52.98325857362522],[-2.6992928962493465,52.99542463733809],[-2.6077339466634726,52.98834736134256],[-2.5976936716248247,52.96299081167757],[-2.561262953921357,52.964936721553386],[-2.5295160870969084,52.94714962795388],[-2.5068971366927144,52.96489702637757],[-2.434613718047842,52.969505504176595],[-2.438168091483419,52.98555176840034],[-2.380793384606193,52.99839461512033],[-2.370268984725044,52.98214566708981],[-2.3937665188090023,52.95056364060048],[-2.4371231116414833,52.94358369193475],[-2.470841812199069,52.905854091494064],[-2.457594659065421,52.879089620790296],[-2.3855551923174403,52.88797345850924],[-2.3937571145983725,52.83660523814217],[-2.416347524118123,52.82699120488115]]]},"properties":{"objectid":50,"ctyua17cd":"E06000051","name":"Shropshire","namew":"","bng_e":350227,"bng_n":302960,"long":-2.73667002,"lat":52.6221199,"st_areasha":0.424548906492801,"st_lengths":6.154333905576775},"id":"50"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.206157153129311,50.51905851903632],[-4.200336096932517,50.492509717450446],[-4.2206285416730225,50.498892417352124],[-4.2254529035278665,50.490216976832926],[-4.211288540832697,50.44567280405761],[-4.211954109293913,50.39928773254377],[-4.170111195074753,50.34297888506842],[-4.220317080368147,50.32606442523394],[-4.282674071850124,50.35684911459589],[-4.386937984999179,50.36570747452123],[-4.436470673781741,50.36106288534478],[-4.452404254751741,50.344914102904454],[-4.53887546882703,50.323725230136176],[-4.684692314298047,50.32012176720673],[-4.705921101676665,50.34024973853553],[-4.756794102265189,50.33104719996925],[-4.753872412680892,50.30589754473681],[-4.781147617367822,50.290168965126554],[-4.785394049694844,50.24563220096621],[-4.798189184682315,50.23017809894105],[-4.862890493800421,50.23597882866096],[-4.910888952662219,50.20026671693637],[-4.957549210426919,50.20223925843595],[-4.972466153689254,50.16467370332964],[-5.008748857373064,50.13944649236265],[-5.028161810118604,50.15852526962641],[-5.034861162212053,50.203374074255066],[-5.057802499784714,50.19831725563773],[-5.055012876542207,50.14833443818469],[-5.093343257384618,50.126182780911506],[-5.1048541478998,50.094518221839394],[-5.061475654776814,50.06151196060944],[-5.068587755219937,50.035364262051985],[-5.096567888996049,50.02647531978113],[-5.101329562708315,50.00422046979975],[-5.156678043955765,50.00764911171808],[-5.188764947143795,49.97366021344902],[-5.218827170636587,49.97099296095729],[-5.255000215486746,49.988247880736026],[-5.255870771817854,50.02164196920245],[-5.296904890647397,50.07033531352482],[-5.334841764135319,50.09141826863913],[-5.448352605487571,50.11056080423867],[-5.46285809272598,50.12309074444323],[-5.527915227604865,50.125094720845595],[-5.548526967644648,50.106640827613035],[-5.5331647781312085,50.08852551833894],[-5.550437417252169,50.062193423688484],[-5.6191098501386705,50.05123848327031],[-5.679159527489389,50.03495825232238],[-5.7169756454089224,50.06877426851861],[-5.688964683772326,50.08851140527804],[-5.700424903785461,50.11944841551286],[-5.693079300668387,50.14894684861912],[-5.629053904912951,50.167737834734226],[-5.614849588936579,50.181828462914154],[-5.538636414438145,50.216214967647545],[-5.498436919527421,50.21988271501618],[-5.469123252135546,50.20018698664103],[-5.433581328114997,50.193680870077],[-5.391602608173002,50.22871995346401],[-5.340768180406371,50.23826030976642],[-5.242581426990455,50.28716988258492],[-5.235644683554483,50.31834630044233],[-5.200601552318972,50.32059018449036],[-5.15382059474382,50.34615315464532],[-5.15756290310469,50.38947131405081],[-5.123830762179125,50.41302418521889],[-5.074645128968712,50.41694622398995],[-5.04241790546115,50.44415828098079],[-5.02417976498333,50.53867482018774],[-4.98376158282997,50.54223087985213],[-4.97209399174352,50.557767554030306],[-4.931102177922355,50.564505853063565],[-4.849393362412911,50.59883653597825],[-4.7999914539416295,50.597171362069616],[-4.770394027061911,50.62238794574802],[-4.757014802190554,50.67201516586812],[-4.729795466986388,50.67361789445118],[-4.655163692749397,50.71538732416661],[-4.61042850846809,50.762202757252396],[-4.558466954985192,50.78826403186048],[-4.5543664790289995,50.83300628121583],[-4.564423985977385,50.9149922165185],[-4.545925113152634,50.928357019861494],[-4.470942995422092,50.931261292275735],[-4.433626980599854,50.86551825976079],[-4.445990217074041,50.80941868182765],[-4.474411524071741,50.79732340375301],[-4.384903174441149,50.747725196661406],[-4.361475166045238,50.71879679523681],[-4.331083804173431,50.640428875692976],[-4.300077215190527,50.633417428272594],[-4.312142080891533,50.58950687284482],[-4.234415288034313,50.53206470872027],[-4.206157153129311,50.51905851903632]]]},"properties":{"objectid":51,"ctyua17cd":"E06000052","name":"Cornwall","namew":"","bng_e":212501,"bng_n":64494,"long":-4.64248991,"lat":50.45022964,"st_areasha":0.448853275379686,"st_lengths":10.256056288000874},"id":"51"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.275518091286074,49.92147085179931],[-6.287763878099668,49.91002835382636],[-6.309028929740521,49.91662439360181],[-6.290309473902312,49.93625019698993],[-6.275518091286074,49.92147085179931]]]},"properties":{"objectid":52,"ctyua17cd":"E06000053","name":"Isles of Scilly","namew":"","bng_e":91327,"bng_n":11447,"long":-6.302169800000001,"lat":49.92332077,"st_areasha":0.002043273590595,"st_lengths":0.912655183005789},"id":"52"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.6028258068647006,51.51829434241091],[-1.5847218893029549,51.52491144430866],[-1.5823050719207004,51.49411147186788],[-1.548404784752222,51.460656017262295],[-1.5320775669253521,51.42955656158699],[-1.5556169959268118,51.39558594113919],[-1.4857261642303001,51.34772579800807],[-1.498313394846491,51.32937870646305],[-1.525238331582898,51.30706972988503],[-1.5451711149542007,51.2451022320833],[-1.6074374826528697,51.252773591229186],[-1.6335522732180152,51.21752001953422],[-1.6897998211040317,51.214772728279684],[-1.6539979147711392,51.15597454568967],[-1.662986840969097,51.12719740303862],[-1.626261142037265,51.11734386322962],[-1.63497199605996,51.04089314270527],[-1.599408692456393,51.02373549180044],[-1.6288158290864203,50.99910118946923],[-1.614429689977385,50.97950171733129],[-1.6616694223051809,50.94528562872972],[-1.719626263040766,50.976788051728136],[-1.800322637079205,50.99140155743686],[-1.8358210249195395,51.00942863332568],[-1.956828450271928,50.98983640162953],[-1.994043678072444,50.97573437274406],[-2.037215036643829,50.971976015981284],[-2.067289588043252,50.951826951953194],[-2.1028673590405447,50.94561430125992],[-2.1197703435257154,50.978196969215674],[-2.1481532099019205,50.98628439161229],[-2.1886091446954765,51.0185387314782],[-2.193214007219865,51.03771875621658],[-2.2446938046745117,51.072316731133185],[-2.3258562217864096,51.079681781190175],[-2.3625312160419867,51.10162961161819],[-2.364529467360228,51.11888464291286],[-2.298468805090465,51.17532801367781],[-2.245344960600619,51.25388097143059],[-2.253499989532088,51.28983896499716],[-2.2799968921420373,51.29224950780946],[-2.2890930975675587,51.32527576996176],[-2.3240496573649807,51.34776338877032],[-2.2902908533393997,51.37262413769474],[-2.2785435634339137,51.41588456602085],[-2.294618431494598,51.428803915369315],[-2.290561162566803,51.48685905020591],[-2.3243276126283945,51.4975108012834],[-2.2523923422319854,51.52687410855418],[-2.2665058338762947,51.536262296868415],[-2.2725632013298878,51.57758986717954],[-2.2229488352197677,51.59610901521978],[-2.1525426991854033,51.590340521698636],[-2.0571808287314184,51.67243971222388],[-2.0155997728104467,51.65051231079542],[-1.9630651497360532,51.65865281567585],[-1.8504951863029646,51.65628177648375],[-1.7886286158171742,51.666998875898344],[-1.7885956673553665,51.632711521420504],[-1.842389558930165,51.61211514899588],[-1.8318678255388932,51.596727227180736],[-1.8496255086095061,51.5536268772795],[-1.8298646504324552,51.513683430147125],[-1.7978065732139612,51.48444628516887],[-1.715748117480814,51.488383614213376],[-1.7190930514024103,51.5007055915907],[-1.6028258068647006,51.51829434241091]]]},"properties":{"objectid":53,"ctyua17cd":"E06000054","name":"Wiltshire","namew":"","bng_e":405209,"bng_n":158863,"long":-1.92660999,"lat":51.32883072,"st_areasha":0.419851764580348,"st_lengths":4.273690283082411},"id":"53"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.4653831544082436,52.32293844795191],[-0.43577958695755115,52.296642475470776],[-0.381987544388835,52.26869341866728],[-0.37439607831555577,52.23298487635191],[-0.3434894597699554,52.24186106983342],[-0.28571492060626724,52.237388422038975],[-0.299986217189371,52.21804491674044],[-0.2649338777953858,52.20570844768764],[-0.249807374509885,52.1843587167823],[-0.28913897508283526,52.19091312873883],[-0.36205550385761853,52.14290825141558],[-0.34482684518195583,52.115944333565096],[-0.3970403428367604,52.07099211049842],[-0.44005658993887664,52.06327646333904],[-0.4715496968602224,52.08799728224972],[-0.5178386659208627,52.06787957308478],[-0.5918297793200509,52.11068042446294],[-0.6072687844260258,52.133857757630324],[-0.640800740760767,52.15276163384323],[-0.6274651177201918,52.18153338325993],[-0.6681533752772566,52.195021302891746],[-0.6373485824702811,52.22730425558785],[-0.6536713540489245,52.268275336438535],[-0.6106327246197338,52.27948386229133],[-0.5657099849270253,52.25345466739992],[-0.5312077392449623,52.2703885373021],[-0.5420562439996388,52.28971784140617],[-0.5140679965400068,52.31468228665915],[-0.4653831544082436,52.32293844795191]]]},"properties":{"objectid":54,"ctyua17cd":"E06000055","name":"Bedford","namew":"","bng_e":505721,"bng_n":256463,"long":-0.45462999,"lat":52.19628143,"st_areasha":0.062467654120344,"st_lengths":1.443664233068798},"id":"54"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.1573072484299587,52.08053634557683],[-0.19500838262990783,52.062404541837054],[-0.21951905336078426,52.03673123745756],[-0.20128254874981621,52.009815313726676],[-0.260282594065643,51.979696294449354],[-0.28340245965495114,51.996651320902686],[-0.31158256308401633,51.98210111217753],[-0.35874773621821987,51.98553721307286],[-0.35025115916283767,51.957568774979904],[-0.4058504802146672,51.943422050688014],[-0.3856411184420381,51.91567270902925],[-0.43784310747258814,51.927738898532255],[-0.5059484836347679,51.9006044206584],[-0.46664631607382034,51.888156254908154],[-0.4231901053382785,51.85465886221766],[-0.40091811068145944,51.8686434414426],[-0.3548582106370759,51.874006795777916],[-0.3395104066790964,51.8495978599542],[-0.374079260648557,51.829187378295785],[-0.42152536310419464,51.85019733274163],[-0.45408747165868135,51.853024274251766],[-0.5018436171883423,51.83678634831227],[-0.5197530428678192,51.805087220199994],[-0.5536538831194093,51.82670422422149],[-0.5835892581369535,51.87031523975742],[-0.654852815004574,51.887881083945786],[-0.7021812051976326,51.90910983175428],[-0.6530013429368182,51.969219452516654],[-0.6617117841706772,51.999726387163946],[-0.6403512856824705,52.02365036447367],[-0.6689973512459346,52.04870603605565],[-0.5918297793200509,52.11068042446294],[-0.5178386659208627,52.06787957308478],[-0.4715496968602224,52.08799728224972],[-0.44005658993887664,52.06327646333904],[-0.3970403428367604,52.07099211049842],[-0.34482684518195583,52.115944333565096],[-0.36205550385761853,52.14290825141558],[-0.28913897508283526,52.19091312873883],[-0.249807374509885,52.1843587167823],[-0.25442142091100095,52.17217262966403],[-0.20622771473642842,52.144437237389525],[-0.14441756142048234,52.137450184979],[-0.1573072484299587,52.08053634557683]]]},"properties":{"objectid":55,"ctyua17cd":"E06000056","name":"Central Bedfordshire","namew":"","bng_e":504615,"bng_n":234492,"long":-0.47753999,"lat":51.99903107,"st_areasha":0.0937945684452,"st_lengths":2.530732455635508},"id":"55"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.4617583926349198,55.07431423881201],[-1.4925639660533534,55.05440632709127],[-1.5597949502759434,55.0545167962141],[-1.637879660716976,55.06476199167349],[-1.6476672991057626,55.07938227647179],[-1.7045995872003914,55.07092670580374],[-1.7086397492242327,55.04225459677315],[-1.75023159161384,55.02401427723805],[-1.76983514667387,54.981377535046136],[-1.7849590500193244,54.98451710697981],[-1.8128009382119217,54.9763146684881],[-1.8248465485285692,54.940311256460234],[-1.852711075355046,54.91740620473348],[-1.8210027489768663,54.90565459088759],[-1.845438760689433,54.89689586505307],[-1.866591016661289,54.85537793074786],[-1.8876391725090116,54.843580257224005],[-2.011760335870008,54.86670386309373],[-2.082467598200253,54.83821469235511],[-2.138154202953274,54.84236239620856],[-2.1431228007758136,54.826952134334476],[-2.19859326336757,54.80672905160537],[-2.2188994677354117,54.78237032673013],[-2.282670931817222,54.79824514869557],[-2.3120828474446284,54.79100815130607],[-2.3927198671273686,54.834508403640825],[-2.401616157758667,54.85147716454043],[-2.4955784780635213,54.81023584730747],[-2.5296168984003202,54.80594294701035],[-2.567843019938607,54.82356790003951],[-2.573346605560573,54.8535391517114],[-2.605424390522387,54.88437514829536],[-2.5764079014027175,54.89671009749395],[-2.560183953625767,54.934089577472946],[-2.5731798622600195,55.01610939203573],[-2.483042856841564,55.04001409327674],[-2.503699979369742,55.090746181791815],[-2.5569404686269195,55.08103478882538],[-2.5935518340490944,55.1051163786189],[-2.5988960544085558,55.12457227938813],[-2.65693362008966,55.13612849753309],[-2.6897849542114614,55.188981337619566],[-2.666809317395291,55.22157764739143],[-2.635799929722168,55.22976319841382],[-2.646765712366914,55.260041389599394],[-2.520263512050633,55.32304496125687],[-2.4950146346168935,55.34748963434009],[-2.4443995290142198,55.35918152241027],[-2.399795963212341,55.3483308359003],[-2.3374700064348417,55.36727917009853],[-2.3323593175276756,55.40990935713205],[-2.2606038368967347,55.43293282349197],[-2.2312742227263698,55.42842803482688],[-2.1942118014326866,55.44525690078626],[-2.2026416604834367,55.48954072972185],[-2.2288381706442237,55.509518595207965],[-2.232241505640161,55.54483014799388],[-2.2885294150996174,55.580050800005324],[-2.295128387564205,55.60862365625769],[-2.3360062599800813,55.63205627277972],[-2.2184455511204533,55.66426191705477],[-2.218651981502944,55.67590903687346],[-2.150497684020081,55.72320241466065],[-2.1365371301835694,55.740403640416616],[-2.107269767984576,55.759451340707756],[-2.086527592973198,55.76151995858015],[-2.0460250580092065,55.75799012944185],[-2.0134111898736933,55.77126175132969],[-1.960761292598761,55.73326937348372],[-1.884081163114388,55.69446202999961],[-1.8700125980021767,55.665916590479185],[-1.8131733043037457,55.633706808423426],[-1.6920004594527995,55.60616095006873],[-1.6265009165832112,55.55767650746577],[-1.6380944017344632,55.540907704527854],[-1.6142568097031926,55.498154112523196],[-1.5954716359064491,55.49127173130631],[-1.5788298100468978,55.40889615213666],[-1.6114057537716917,55.38516589688959],[-1.5885826977324768,55.34525141152437],[-1.5493790284186275,55.32172057914232],[-1.5699428247007745,55.29183157496817],[-1.554352781155103,55.24729663643154],[-1.4990094710094581,55.18543316321086],[-1.525063447619175,55.162626630415616],[-1.494556542649491,55.10239352014577],[-1.4617583926349198,55.07431423881201]]],[[[-2.085661768874729,55.76272816897074],[-2.0861144417272612,55.79304860401078],[-2.0343828682739513,55.81107190904231],[-1.9999775056565454,55.78593145117645],[-2.04526000834187,55.75919352486221],[-2.085661768874729,55.76272816897074]]]]},"properties":{"objectid":56,"ctyua17cd":"E06000057","name":"Northumberland","namew":"","bng_e":395323,"bng_n":600699,"long":-2.07521009,"lat":55.30036926,"st_areasha":0.710359688166845,"st_lengths":6.514213694792623},"id":"56"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.37913400682811,53.6308541529977],[-2.366716556523045,53.55333084973984],[-2.3381957080646885,53.53359737232182],[-2.354390446760874,53.5262240170257],[-2.4357702569909634,53.54196694531919],[-2.4510983702927547,53.528588268135024],[-2.5073095226155715,53.53778368227205],[-2.5537014271782823,53.53617202701838],[-2.5678298700516393,53.57143391654296],[-2.6259081786187153,53.59366817384807],[-2.574004515395245,53.59427546803937],[-2.51132464031906,53.626978993186924],[-2.472994656077674,53.61661589570792],[-2.37913400682811,53.6308541529977]]]},"properties":{"objectid":57,"ctyua17cd":"E08000001","name":"Bolton","namew":"","bng_e":368352,"bng_n":409873,"long":-2.47952008,"lat":53.58449173,"st_areasha":0.019065669865408,"st_lengths":0.872253072352254},"id":"57"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.2717895937139474,53.614498192838255],[-2.2372319911626732,53.538844339095874],[-2.256968306841088,53.51792973437068],[-2.290797773297811,53.51200435951449],[-2.3381957080646885,53.53359737232182],[-2.366716556523045,53.55333084973984],[-2.37913400682811,53.6308541529977],[-2.3712379601629436,53.667064635725296],[-2.3155612155768495,53.655061636186474],[-2.2717895937139474,53.614498192838255]]]},"properties":{"objectid":58,"ctyua17cd":"E08000002","name":"Bury","namew":"","bng_e":379658,"bng_n":410768,"long":-2.30879998,"lat":53.5931015,"st_areasha":0.013565827004698,"st_lengths":0.720574554786045},"id":"58"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.2372319911626732,53.538844339095874],[-2.18601633448543,53.52904333678151],[-2.163031628006422,53.49283304740817],[-2.158452766681023,53.4549204969843],[-2.2468276863478422,53.3960437819959],[-2.240791191259632,53.35955787649573],[-2.2879339290067833,53.343072435545366],[-2.3139994529116166,53.35740830525003],[-2.286343732476439,53.37583088049166],[-2.299865028647332,53.43341722842331],[-2.2653212270921586,53.47271219331401],[-2.2462433311640098,53.48718853802154],[-2.256968306841088,53.51792973437068],[-2.2372319911626732,53.538844339095874]]]},"properties":{"objectid":59,"ctyua17cd":"E08000003","name":"Manchester","namew":"","bng_e":384591,"bng_n":397063,"long":-2.23358989,"lat":53.47008896,"st_areasha":0.015730246288621,"st_lengths":0.890248948511676},"id":"59"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.026816946544045,53.624152084951675],[-2.0094719605617115,53.61676459231302],[-1.9816477917113957,53.58932253191023],[-1.9128860156762926,53.551627794588],[-1.9096223085219322,53.53837478596853],[-1.9633882644560003,53.50981031679362],[-2.026801748900766,53.5294091998756],[-2.092124217957462,53.520598527401035],[-2.1362265753953125,53.49188783115943],[-2.163031628006422,53.49283304740817],[-2.18601633448543,53.52904333678151],[-2.171839556649388,53.558211123345586],[-2.136719396681997,53.58306781542825],[-2.098024937000446,53.596338381512055],[-2.035828188519247,53.60291676759567],[-2.026816946544045,53.624152084951675]]]},"properties":{"objectid":60,"ctyua17cd":"E08000004","name":"Oldham","namew":"","bng_e":396603,"bng_n":406784,"long":-2.0527401,"lat":53.55767822,"st_areasha":0.019257989819385,"st_lengths":0.799787768642613},"id":"60"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.026816946544045,53.624152084951675],[-2.035828188519247,53.60291676759567],[-2.098024937000446,53.596338381512055],[-2.136719396681997,53.58306781542825],[-2.171839556649388,53.558211123345586],[-2.18601633448543,53.52904333678151],[-2.2372319911626732,53.538844339095874],[-2.2717895937139474,53.614498192838255],[-2.269867633683532,53.646120498163384],[-2.2365761551646415,53.6669914291121],[-2.2003901717682197,53.652874191791454],[-2.1638537819256953,53.65485060757044],[-2.146327983648689,53.68221621660604],[-2.0871216131711208,53.67079434908089],[-2.0567146453637974,53.683035650975455],[-2.0357099087844404,53.659312448211836],[-2.026816946544045,53.624152084951675]]]},"properties":{"objectid":61,"ctyua17cd":"E08000005","name":"Rochdale","namew":"","bng_e":390315,"bng_n":412326,"long":-2.14784002,"lat":53.60741043,"st_areasha":0.021529331929797,"st_lengths":0.893537028672455},"id":"61"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.3381957080646885,53.53359737232182],[-2.290797773297811,53.51200435951449],[-2.256968306841088,53.51792973437068],[-2.2462433311640098,53.48718853802154],[-2.2653212270921586,53.47271219331401],[-2.3192038295922544,53.47963451072502],[-2.3956458743567737,53.45882379118592],[-2.422388068853479,53.42732256068854],[-2.449378933090486,53.415875008525745],[-2.489714802095648,53.4602665213838],[-2.4344708958143997,53.46502852964386],[-2.438508173712421,53.49238558342887],[-2.4182733629245377,53.51810308409097],[-2.4510983702927547,53.528588268135024],[-2.4357702569909634,53.54196694531919],[-2.354390446760874,53.5262240170257],[-2.3381957080646885,53.53359737232182]]]},"properties":{"objectid":62,"ctyua17cd":"E08000006","name":"Salford","namew":"","bng_e":374556,"bng_n":398128,"long":-2.38485003,"lat":53.47927094,"st_areasha":0.013098987094028,"st_lengths":0.739935951428599},"id":"62"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.158452766681023,53.4549204969843],[-2.083008589873714,53.426815234236585],[-2.026256869458166,53.4298489109994],[-1.9923315820360585,53.415176938565764],[-2.004644221752642,53.386311212693215],[-2.0310593013448397,53.37024640534827],[-2.0611639755362035,53.358421932027454],[-2.0949543862351447,53.366020285109016],[-2.1511910073583067,53.34811613755062],[-2.240791191259632,53.35955787649573],[-2.2468276863478422,53.3960437819959],[-2.158452766681023,53.4549204969843]]]},"properties":{"objectid":63,"ctyua17cd":"E08000007","name":"Stockport","namew":"","bng_e":391806,"bng_n":388264,"long":-2.12467003,"lat":53.39115906,"st_areasha":0.01703488515247,"st_lengths":0.748963089249227},"id":"63"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.9633882644560003,53.50981031679362],[-1.9870776374222032,53.48164186947764],[-1.9869036249015721,53.45429987933687],[-2.026256869458166,53.4298489109994],[-2.083008589873714,53.426815234236585],[-2.158452766681023,53.4549204969843],[-2.163031628006422,53.49283304740817],[-2.1362265753953125,53.49188783115943],[-2.092124217957462,53.520598527401035],[-2.026801748900766,53.5294091998756],[-1.9633882644560003,53.50981031679362]]]},"properties":{"objectid":64,"ctyua17cd":"E08000008","name":"Tameside","namew":"","bng_e":394987,"bng_n":397995,"long":-2.0769999,"lat":53.47866821,"st_areasha":0.013937067203979,"st_lengths":0.586436506753333},"id":"64"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.2653212270921586,53.47271219331401],[-2.299865028647332,53.43341722842331],[-2.286343732476439,53.37583088049166],[-2.3139994529116166,53.35740830525003],[-2.3650287529737284,53.36308944672152],[-2.4265908498870203,53.387444889071276],[-2.449378933090486,53.415875008525745],[-2.422388068853479,53.42732256068854],[-2.3956458743567737,53.45882379118592],[-2.3192038295922544,53.47963451072502],[-2.2653212270921586,53.47271219331401]]]},"properties":{"objectid":65,"ctyua17cd":"E08000009","name":"Trafford","namew":"","bng_e":375790,"bng_n":391162,"long":-2.36572003,"lat":53.4167099,"st_areasha":0.014333304358359,"st_lengths":0.684325756049284},"id":"65"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.6259081786187153,53.59366817384807],[-2.5678298700516393,53.57143391654296],[-2.5537014271782823,53.53617202701838],[-2.5073095226155715,53.53778368227205],[-2.4510983702927547,53.528588268135024],[-2.4182733629245377,53.51810308409097],[-2.438508173712421,53.49238558342887],[-2.4344708958143997,53.46502852964386],[-2.489714802095648,53.4602665213838],[-2.4963356577635523,53.48091376216132],[-2.552639010381199,53.46779762136407],[-2.576743039159112,53.44604089777016],[-2.6121390167014624,53.48112249750619],[-2.6455403950723735,53.480236601438946],[-2.6663213191727095,53.49975274419472],[-2.7305206474091506,53.52058426775068],[-2.7047386635576345,53.56184458046397],[-2.719223473583611,53.57609773232542],[-2.6893141663148867,53.60428638650848],[-2.636162870019632,53.60827510641195],[-2.6259081786187153,53.59366817384807]]]},"properties":{"objectid":66,"ctyua17cd":"E08000010","name":"Wigan","namew":"","bng_e":362136,"bng_n":402126,"long":-2.57246995,"lat":53.51445007,"st_areasha":0.025391644333457,"st_lengths":0.947956710461397},"id":"66"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.8249650609879495,53.48519340195486],[-2.804408068976386,53.46722050842067],[-2.8050301974848253,53.438643827351655],[-2.776202257527359,53.42667109179837],[-2.7867762316369635,53.40117172349716],[-2.7451748717221562,53.402079571116246],[-2.787300972561013,53.35627443102112],[-2.818806815681171,53.347984931860026],[-2.8404055931428047,53.34731523730926],[-2.875354172356367,53.40098916202112],[-2.8684325546178684,53.44993171747569],[-2.922616109844796,53.47496734496792],[-2.8879955394617696,53.5038129763887],[-2.8249650609879495,53.48519340195486]]]},"properties":{"objectid":67,"ctyua17cd":"E08000011","name":"Knowsley","namew":"","bng_e":344762,"bng_n":393778,"long":-2.8329699,"lat":53.43788147,"st_areasha":0.011838799087369,"st_lengths":0.754104599457639},"id":"67"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.922616109844796,53.47496734496792],[-2.8684325546178684,53.44993171747569],[-2.875354172356367,53.40098916202112],[-2.8404055931428047,53.34731523730926],[-2.818806815681171,53.347984931860026],[-2.8266610052004353,53.33164104240109],[-2.8549727999539414,53.32745583501969],[-2.9692998021433255,53.375787281358896],[-3.0017633872697047,53.41103196955066],[-3.0087561260935445,53.43836501143704],[-2.9753078246955624,53.443230734012104],[-2.9698427039767807,53.46596136312735],[-2.922616109844796,53.47496734496792]]]},"properties":{"objectid":68,"ctyua17cd":"E08000012","name":"Liverpool","namew":"","bng_e":339361,"bng_n":390553,"long":-2.91364002,"lat":53.40829849,"st_areasha":0.014996403688641,"st_lengths":0.686285750413762},"id":"68"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.7305206474091506,53.52058426775068],[-2.6663213191727095,53.49975274419472],[-2.6455403950723735,53.480236601438946],[-2.6121390167014624,53.48112249750619],[-2.576743039159112,53.44604089777016],[-2.611423472014792,53.442258574074856],[-2.6771679920084352,53.452736950250994],[-2.676316987837879,53.3876033451192],[-2.690632394368663,53.38537213701545],[-2.7451748717221562,53.402079571116246],[-2.7867762316369635,53.40117172349716],[-2.776202257527359,53.42667109179837],[-2.8050301974848253,53.438643827351655],[-2.804408068976386,53.46722050842067],[-2.8249650609879495,53.48519340195486],[-2.8167409164593096,53.512158425971506],[-2.7305206474091506,53.52058426775068]]]},"properties":{"objectid":69,"ctyua17cd":"E08000013","name":"St. Helens","namew":"","bng_e":353412,"bng_n":395992,"long":-2.70309997,"lat":53.45861816,"st_areasha":0.018341024203988,"st_lengths":0.835344763742073},"id":"69"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.9448436285298385,53.6787640807986],[-2.940144702315365,53.65859484048042],[-2.981824915686502,53.62218903309832],[-3.0321508568757167,53.598513625704186],[-3.022622701675516,53.569581765487044],[-3.046701095278536,53.54294200826797],[-2.975995299742465,53.515275026522204],[-2.947850941666786,53.544323892134855],[-2.8879955394617696,53.5038129763887],[-2.922616109844796,53.47496734496792],[-2.9698427039767807,53.46596136312735],[-2.9753078246955624,53.443230734012104],[-3.0087561260935445,53.43836501143704],[-3.0414798293298304,53.46559640654988],[-3.0709309958679682,53.5215236581912],[-3.101481910960615,53.54079143877482],[-3.1005214763841877,53.56937750426931],[-3.002369859480609,53.67694166762482],[-2.964594443977603,53.69346366151967],[-2.9448436285298385,53.6787640807986]]]},"properties":{"objectid":70,"ctyua17cd":"E08000014","name":"Sefton","namew":"","bng_e":334264,"bng_n":398832,"long":-2.99203992,"lat":53.48210144,"st_areasha":0.020982910095885,"st_lengths":1.202935643728273},"id":"70"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.9285719960000165,53.30823263742718],[-3.0297604957494855,53.29897629152356],[-3.0726502073403594,53.31583848725734],[-3.0955231514714683,53.30490831956422],[-3.1905718105398364,53.36822609725749],[-3.1776073143252574,53.3997097298211],[-3.0403218487734875,53.4428807817236],[-2.995348531208947,53.36798886959161],[-2.9285719960000165,53.30823263742718]]]},"properties":{"objectid":71,"ctyua17cd":"E08000015","name":"Wirral","namew":"","bng_e":329242,"bng_n":386937,"long":-3.06502008,"lat":53.37453842,"st_areasha":0.021279424714546,"st_lengths":0.791105862267164},"id":"71"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.3487315187437616,53.583330116192826],[-1.3268043592329946,53.55816695943855],[-1.2757245145738807,53.529818053261465],[-1.3124410718971262,53.51377539172188],[-1.3790491496976642,53.514507366122984],[-1.4552184723538062,53.47173262386241],[-1.4952398214597906,53.48033864841085],[-1.5148138976424548,53.46364888778686],[-1.559267776685715,53.48355263834452],[-1.6690523931525831,53.5006531796015],[-1.7110093036356488,53.501242803913215],[-1.7387080539327258,53.47713565448777],[-1.8014715030066668,53.48097560134386],[-1.796288902510014,53.503136900248705],[-1.8222295546494252,53.52107503588513],[-1.7558186882810105,53.53666520353727],[-1.723176360200057,53.55991085999909],[-1.6694638995385276,53.55321130465893],[-1.615629614014665,53.563011484093636],[-1.586450211807005,53.60715757286465],[-1.5354009584866048,53.593861778998814],[-1.4476275188940804,53.61272228630543],[-1.4001813256068658,53.598651897368086],[-1.3767011610289615,53.6064615920298],[-1.3487315187437616,53.583330116192826]]]},"properties":{"objectid":72,"ctyua17cd":"E08000016","name":"Barnsley","namew":"","bng_e":429979,"bng_n":403327,"long":-1.54925001,"lat":53.52576828,"st_areasha":0.044534628583946,"st_lengths":1.463143392002684},"id":"72"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.9909981556395451,53.661166700983415],[-0.9899793883373036,53.65896310296574],[-0.946840117576528,53.659121888165544],[-0.8653331387125718,53.63768809942718],[-0.8869914333071733,53.60966679738573],[-0.9011138390316091,53.568703367067656],[-0.8980708956544845,53.53273813395862],[-0.9437120146969278,53.530622289088285],[-0.9355611586197483,53.50249581583017],[-0.9859762990661238,53.47165292953997],[-0.9956684231584063,53.43690645946646],[-1.0732673746887826,53.428037731257234],[-1.1160405764106827,53.407329766456485],[-1.1459453223179707,53.41230509750318],[-1.1700026034365578,53.43520998555334],[-1.2380981365189427,53.43273507826217],[-1.2593201295195513,53.46412855468998],[-1.2500061145897234,53.47630757133828],[-1.313227573992549,53.50196977808372],[-1.3124410718971262,53.51377539172188],[-1.2757245145738807,53.529818053261465],[-1.3268043592329946,53.55816695943855],[-1.3487315187437616,53.583330116192826],[-1.3078168892372446,53.575348897434594],[-1.2580251237596372,53.59197950784892],[-1.2328411701830646,53.62109441607538],[-1.1903103447457966,53.63589881278091],[-1.0486591787772568,53.656037802603464],[-0.9909981556395451,53.661166700983415]]]},"properties":{"objectid":73,"ctyua17cd":"E08000017","name":"Doncaster","namew":"","bng_e":459167,"bng_n":403735,"long":-1.10894001,"lat":53.52696991,"st_areasha":0.077040148550116,"st_lengths":1.97126363389592},"id":"73"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.3124410718971262,53.51377539172188],[-1.313227573992549,53.50196977808372],[-1.2500061145897234,53.47630757133828],[-1.2593201295195513,53.46412855468998],[-1.2380981365189427,53.43273507826217],[-1.1700026034365578,53.43520998555334],[-1.1459453223179707,53.41230509750318],[-1.1160405764106827,53.407329766456485],[-1.1449152352490728,53.37123121425009],[-1.1486204609647075,53.338486855384986],[-1.1997439587158851,53.31141888147715],[-1.2542947565969484,53.30173340157614],[-1.3246686033725155,53.32879093705304],[-1.3320762192412872,53.35239591044382],[-1.3911806272832905,53.38330068717789],[-1.3757982282048715,53.393656280713685],[-1.4429291178836934,53.4472603559816],[-1.4552184723538062,53.47173262386241],[-1.3790491496976642,53.514507366122984],[-1.3124410718971262,53.51377539172188]]]},"properties":{"objectid":74,"ctyua17cd":"E08000018","name":"Rotherham","namew":"","bng_e":447542,"bng_n":388980,"long":-1.28650999,"lat":53.3955307,"st_areasha":0.038852548624187,"st_lengths":1.166130640621005},"id":"74"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.4552184723538062,53.47173262386241],[-1.4429291178836934,53.4472603559816],[-1.3757982282048715,53.393656280713685],[-1.3911806272832905,53.38330068717789],[-1.3320762192412872,53.35239591044382],[-1.3246686033725155,53.32879093705304],[-1.3402591172636562,53.31551535724884],[-1.3850776534101783,53.31776185562609],[-1.4087476459862387,53.341946300882],[-1.4743875550408347,53.31847259883227],[-1.5367699244915798,53.30473092289469],[-1.5990944342599391,53.311300857149774],[-1.6123042772197778,53.3432013911322],[-1.663951790142164,53.366875847942936],[-1.6535313482922902,53.38483502231935],[-1.7467195330791583,53.42614846607978],[-1.7468250028707644,53.463393532486464],[-1.8014715030066668,53.48097560134386],[-1.7387080539327258,53.47713565448777],[-1.7110093036356488,53.501242803913215],[-1.6690523931525831,53.5006531796015],[-1.559267776685715,53.48355263834452],[-1.5148138976424548,53.46364888778686],[-1.4952398214597906,53.48033864841085],[-1.4552184723538062,53.47173262386241]]]},"properties":{"objectid":75,"ctyua17cd":"E08000019","name":"Sheffield","namew":"","bng_e":430511,"bng_n":389736,"long":-1.54253995,"lat":53.40357971,"st_areasha":0.049684425479169,"st_lengths":1.498896784442594},"id":"75"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.637879660716976,55.06476199167349],[-1.6384943572280122,55.041544535253024],[-1.592623630475373,55.03893306141259],[-1.5791997866400038,55.00978469121145],[-1.5308312468637268,54.98400791173668],[-1.5540177585119181,54.95999832166615],[-1.5884213287804982,54.97057685983515],[-1.5954276113943138,54.97110836186232],[-1.6064880036176419,54.96838646836176],[-1.6340964376996112,54.96013968160196],[-1.76983514667387,54.981377535046136],[-1.75023159161384,55.02401427723805],[-1.7086397492242327,55.04225459677315],[-1.7045995872003914,55.07092670580374],[-1.6476672991057626,55.07938227647179],[-1.637879660716976,55.06476199167349]]]},"properties":{"objectid":76,"ctyua17cd":"E08000021","name":"Newcastle upon Tyne","namew":"","bng_e":422287,"bng_n":569662,"long":-1.65296996,"lat":55.02101135,"st_areasha":0.015916634214299,"st_lengths":0.770084822972286},"id":"76"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.5308312468637268,54.98400791173668],[-1.5791997866400038,55.00978469121145],[-1.592623630475373,55.03893306141259],[-1.6384943572280122,55.041544535253024],[-1.637879660716976,55.06476199167349],[-1.5597949502759434,55.0545167962141],[-1.4925639660533534,55.05440632709127],[-1.4617583926349198,55.07431423881201],[-1.4167099196262711,55.01440041215022],[-1.4564922514154546,54.988558403048785],[-1.5308312468637268,54.98400791173668]]]},"properties":{"objectid":77,"ctyua17cd":"E08000022","name":"North Tyneside","namew":"","bng_e":431471,"bng_n":570602,"long":-1.50923002,"lat":55.02896118,"st_areasha":0.011549425810111,"st_lengths":0.727173557026633},"id":"77"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.3639560283472179,54.94411082375643],[-1.4193571837861896,54.92991620516966],[-1.5112042401827352,54.93165805707463],[-1.5341597915403327,54.96509109607814],[-1.5283753251603116,54.982105012836996],[-1.4490813242429113,54.98536909410933],[-1.4238162221401467,55.0081519342653],[-1.3607267868109716,54.97132363078185],[-1.3639560283472179,54.94411082375643]]]},"properties":{"objectid":78,"ctyua17cd":"E08000023","name":"South Tyneside","namew":"","bng_e":435503,"bng_n":564057,"long":-1.44695997,"lat":54.96987915,"st_areasha":0.009046560668385,"st_lengths":0.546960229450446},"id":"78"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.347434144169597,54.860621489091386],[-1.4135664329436963,54.84485293641484],[-1.412999252112968,54.823296892038854],[-1.437517945695845,54.80051780385452],[-1.4818429258095875,54.80964225968347],[-1.5042668501342291,54.83122092200887],[-1.5191967625197549,54.87594819765212],[-1.4811946836869083,54.8951513565508],[-1.4723253232542675,54.90326030691858],[-1.4592780228616675,54.89934512907536],[-1.4517912954311214,54.907869360283655],[-1.421455676237656,54.916456446908455],[-1.350365304514355,54.905831321159496],[-1.3616264218210858,54.89828923326246],[-1.347434144169597,54.860621489091386]]],[[[-1.3639560283472179,54.94411082375643],[-1.370979359409091,54.911690139889004],[-1.39055049031208,54.91200012810435],[-1.4138708138861489,54.917433771652156],[-1.4285788572276488,54.91666540438581],[-1.4524238686657895,54.90843402301266],[-1.4583938292110474,54.90458031293201],[-1.473457731588212,54.90360588400529],[-1.4812325154674113,54.89590645162235],[-1.5199486452129918,54.87601854801852],[-1.5593987899213744,54.882028925895156],[-1.5566921938888072,54.92997036863852],[-1.5112042401827352,54.93165805707463],[-1.4193571837861896,54.92991620516966],[-1.3639560283472179,54.94411082375643]]]]},"properties":{"objectid":79,"ctyua17cd":"E08000024","name":"Sunderland","namew":"","bng_e":436470,"bng_n":551525,"long":-1.43343997,"lat":54.85720062,"st_areasha":0.019358306709014,"st_lengths":1.132413453999222},"id":"79"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.753530572876798,52.51295181527496],[-1.7613987306660874,52.450908381417605],[-1.8059710018594046,52.45407958790361],[-1.8436156244607105,52.41050929007258],[-1.8687537207068203,52.40472327775797],[-1.904594820393811,52.40313126279847],[-1.9973303718983288,52.38105293984222],[-2.0206949879824947,52.39934242261563],[-1.997068115200534,52.41741154181011],[-2.0169969910174927,52.43266824894147],[-2.013249527742687,52.462175744515946],[-1.9817201034991854,52.466276368860235],[-1.938137839289027,52.49840975260895],[-1.9630309188410138,52.50488208793894],[-1.9602434081060096,52.53133574844696],[-1.9181630117128066,52.5472910381518],[-1.8725711620286916,52.584929032749585],[-1.8278684531657632,52.60867308539548],[-1.7880885045800028,52.58784668527721],[-1.7560056033750584,52.555366769361854],[-1.753530572876798,52.51295181527496]]]},"properties":{"objectid":80,"ctyua17cd":"E08000025","name":"Birmingham","namew":"","bng_e":408150,"bng_n":287352,"long":-1.88141,"lat":52.48403931,"st_areasha":0.035405211118332,"st_lengths":1.136477101618147},"id":"80"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.6010774060965787,52.389283722266896],[-1.5954960713857531,52.45590388965371],[-1.5196636716403304,52.45332528963132],[-1.463929196874119,52.45830015392988],[-1.4241542035528596,52.43398198847893],[-1.4322571122750674,52.39585972154981],[-1.4666185340173001,52.37718699538448],[-1.6010774060965787,52.389283722266896]]]},"properties":{"objectid":81,"ctyua17cd":"E08000026","name":"Coventry","namew":"","bng_e":432807,"bng_n":279689,"long":-1.51908004,"lat":52.414230350000004,"st_areasha":0.012993034891701,"st_lengths":0.57290090327493},"id":"81"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.073947495779464,52.54986426652363],[-2.059022630389279,52.46196025166523],[-2.013249527742687,52.462175744515946],[-2.0169969910174927,52.43266824894147],[-2.037887520891559,52.44154277687858],[-2.136032248988272,52.426253904594944],[-2.164856423484366,52.430189814509276],[-2.1675183627813794,52.471201238946946],[-2.1879876484104557,52.508348364686185],[-2.148786796672539,52.51468009101433],[-2.133492813541693,52.55405153964779],[-2.073947495779464,52.54986426652363]]]},"properties":{"objectid":82,"ctyua17cd":"E08000027","name":"Dudley","namew":"","bng_e":393191,"bng_n":288584,"long":-2.10171008,"lat":52.49512863,"st_areasha":0.012878237625905,"st_lengths":0.740212272204727},"id":"82"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.9181630117128066,52.5472910381518],[-1.9602434081060096,52.53133574844696],[-1.9630309188410138,52.50488208793894],[-1.938137839289027,52.49840975260895],[-1.9817201034991854,52.466276368860235],[-2.013249527742687,52.462175744515946],[-2.059022630389279,52.46196025166523],[-2.073947495779464,52.54986426652363],[-2.0509875809113396,52.55271362543442],[-2.010983715525242,52.56904972406642],[-1.9181630117128066,52.5472910381518]]]},"properties":{"objectid":83,"ctyua17cd":"E08000028","name":"Sandwell","namew":"","bng_e":399573,"bng_n":290764,"long":-2.00770998,"lat":52.51477051,"st_areasha":0.011296156585059,"st_lengths":0.627550836663792},"id":"83"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.5954960713857531,52.45590388965371],[-1.6010774060965787,52.389283722266896],[-1.6513206816033517,52.35640544535596],[-1.7102793311254345,52.355005661383075],[-1.7792325809180625,52.36452480177911],[-1.8720417922940555,52.36758427199749],[-1.8456050597249032,52.39941277657931],[-1.8687537207068203,52.40472327775797],[-1.8436156244607105,52.41050929007258],[-1.8059710018594046,52.45407958790361],[-1.7613987306660874,52.450908381417605],[-1.753530572876798,52.51295181527496],[-1.6771619775424256,52.43634163056271],[-1.5954960713857531,52.45590388965371]]]},"properties":{"objectid":84,"ctyua17cd":"E08000029","name":"Solihull","namew":"","bng_e":419434,"bng_n":281483,"long":-1.71557999,"lat":52.43099976,"st_areasha":0.02357452344176,"st_lengths":1.050653559797885},"id":"84"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.8725711620286916,52.584929032749585],[-1.9181630117128066,52.5472910381518],[-2.010983715525242,52.56904972406642],[-2.0509875809113396,52.55271362543442],[-2.05072400670673,52.62050670032488],[-1.96023639699132,52.644322189718196],[-1.9335264962500105,52.66151288711097],[-1.885148971347121,52.61265554331959],[-1.8725711620286916,52.584929032749585]]]},"properties":{"objectid":85,"ctyua17cd":"E08000030","name":"Walsall","namew":"","bng_e":402098,"bng_n":300804,"long":-1.97044003,"lat":52.60503006,"st_areasha":0.013914539225885,"st_lengths":0.645876313803482},"id":"85"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.05072400670673,52.62050670032488],[-2.0509875809113396,52.55271362543442],[-2.073947495779464,52.54986426652363],[-2.133492813541693,52.55405153964779],[-2.173054553324164,52.55462593124264],[-2.1898772571288987,52.59927330302145],[-2.1316492348234988,52.63760738007744],[-2.099254541363166,52.63274596075843],[-2.0810081693907136,52.611889245393286],[-2.05072400670673,52.62050670032488]]]},"properties":{"objectid":86,"ctyua17cd":"E08000031","name":"Wolverhampton","namew":"","bng_e":391463,"bng_n":300016,"long":-2.12746,"lat":52.59788132,"st_areasha":0.009206063096195,"st_lengths":0.564710955523652},"id":"86"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.7272122459475554,53.91018207054702],[-1.7036753476383524,53.84233260906359],[-1.7119921565119967,53.783054715503624],[-1.6406194210485978,53.77996089208244],[-1.681617376340057,53.75645342048989],[-1.7222140631276943,53.75881834788936],[-1.770083470175166,53.7262372303648],[-1.8087818823771613,53.76387333458763],[-1.8555531749382794,53.75080539025748],[-1.8733490998802154,53.77858050828473],[-1.9269766177758925,53.78747459108047],[-1.9808467268941286,53.78633839570131],[-2.009655719934699,53.807087267064674],[-2.061248211434986,53.825621275502385],[-2.046127578024482,53.85012727965119],[-2.021627771103965,53.87148311425523],[-1.976976745379659,53.875586794495916],[-1.9807071440186519,53.89699192633725],[-1.9532229665658178,53.91169206823531],[-1.9661715771557624,53.95154719474817],[-1.9062699488982275,53.95836409812557],[-1.8621036910316775,53.940554722023705],[-1.8050858045654081,53.93900813272006],[-1.7272122459475554,53.91018207054702]]]},"properties":{"objectid":87,"ctyua17cd":"E08000032","name":"Bradford","namew":"","bng_e":408395,"bng_n":438626,"long":-1.87389004,"lat":53.843818660000004,"st_areasha":0.050172455181752,"st_lengths":1.52821070948657},"id":"87"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.770083470175166,53.7262372303648],[-1.7395368889154952,53.69943967450229],[-1.8750233776259506,53.658054769712805],[-1.9341525386079752,53.64832532645357],[-2.0094719605617115,53.61676459231302],[-2.026816946544045,53.624152084951675],[-2.0357099087844404,53.659312448211836],[-2.0567146453637974,53.683035650975455],[-2.0871216131711208,53.67079434908089],[-2.146327983648689,53.68221621660604],[-2.173293593124015,53.72299699191859],[-2.129520820128903,53.754576150469916],[-2.1283568941545354,53.79901678429809],[-2.061248211434986,53.825621275502385],[-2.009655719934699,53.807087267064674],[-1.9808467268941286,53.78633839570131],[-1.9269766177758925,53.78747459108047],[-1.8733490998802154,53.77858050828473],[-1.8555531749382794,53.75080539025748],[-1.8087818823771613,53.76387333458763],[-1.770083470175166,53.7262372303648]]]},"properties":{"objectid":88,"ctyua17cd":"E08000033","name":"Calderdale","namew":"","bng_e":402617,"bng_n":424896,"long":-1.96182001,"lat":53.72048187,"st_areasha":0.049529901120146,"st_lengths":1.226092753351208},"id":"88"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.681617376340057,53.75645342048989],[-1.6386409889896072,53.74614003843294],[-1.623368148020802,53.718531887637425],[-1.5711189319923164,53.70638866040929],[-1.6140901095700997,53.67375123633144],[-1.6231618660264644,53.6380923168079],[-1.586450211807005,53.60715757286465],[-1.615629614014665,53.563011484093636],[-1.6694638995385276,53.55321130465893],[-1.723176360200057,53.55991085999909],[-1.7558186882810105,53.53666520353727],[-1.8222295546494252,53.52107503588513],[-1.8734937207577786,53.54041386740698],[-1.9096223085219322,53.53837478596853],[-1.9128860156762926,53.551627794588],[-1.9816477917113957,53.58932253191023],[-2.0094719605617115,53.61676459231302],[-1.9341525386079752,53.64832532645357],[-1.8750233776259506,53.658054769712805],[-1.7395368889154952,53.69943967450229],[-1.770083470175166,53.7262372303648],[-1.7222140631276943,53.75881834788936],[-1.681617376340057,53.75645342048989]]]},"properties":{"objectid":89,"ctyua17cd":"E08000034","name":"Kirklees","namew":"","bng_e":414586,"bng_n":416223,"long":-1.78085005,"lat":53.64233017,"st_areasha":0.055549450469698,"st_lengths":1.418552113009192},"id":"89"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.3020395796620505,53.741707037250876],[-1.394484038606663,53.723759417364136],[-1.513218308777084,53.72751714190349],[-1.5711189319923164,53.70638866040929],[-1.623368148020802,53.718531887637425],[-1.6386409889896072,53.74614003843294],[-1.681617376340057,53.75645342048989],[-1.6406194210485978,53.77996089208244],[-1.7119921565119967,53.783054715503624],[-1.7036753476383524,53.84233260906359],[-1.7272122459475554,53.91018207054702],[-1.7070789191560038,53.91911616058326],[-1.6205320487142671,53.903379960118],[-1.4987749116320401,53.91529112898337],[-1.450921929802405,53.907116920210626],[-1.3971764505319584,53.94251884407032],[-1.3395334632978688,53.940793039667994],[-1.2941748545850373,53.927046947159795],[-1.3210481189747156,53.90346274720895],[-1.312598388504,53.86529922118302],[-1.3384246810533682,53.85172672121212],[-1.3096696617246835,53.82287754556319],[-1.3138067643698719,53.781538713941416],[-1.2919579843726865,53.76717715869984],[-1.3020395796620505,53.741707037250876]]]},"properties":{"objectid":90,"ctyua17cd":"E08000035","name":"Leeds","namew":"","bng_e":432528,"bng_n":436384,"long":-1.50735998,"lat":53.82273102,"st_areasha":0.075293521712933,"st_lengths":1.822339233782506},"id":"90"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.3020395796620505,53.741707037250876],[-1.2444136858421189,53.692410970890535],[-1.2536590132520473,53.64118026046157],[-1.2328411701830646,53.62109441607538],[-1.2580251237596372,53.59197950784892],[-1.3078168892372446,53.575348897434594],[-1.3487315187437616,53.583330116192826],[-1.3767011610289615,53.6064615920298],[-1.4001813256068658,53.598651897368086],[-1.4476275188940804,53.61272228630543],[-1.5354009584866048,53.593861778998814],[-1.586450211807005,53.60715757286465],[-1.6231618660264644,53.6380923168079],[-1.6140901095700997,53.67375123633144],[-1.5711189319923164,53.70638866040929],[-1.513218308777084,53.72751714190349],[-1.394484038606663,53.723759417364136],[-1.3020395796620505,53.741707037250876]]]},"properties":{"objectid":91,"ctyua17cd":"E08000036","name":"Wakefield","namew":"","bng_e":438366,"bng_n":418235,"long":-1.42092001,"lat":53.65922165,"st_areasha":0.04616501403431,"st_lengths":1.238669100559776},"id":"91"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.7849590500193244,54.98451710697981],[-1.7097507204185831,54.96619090758526],[-1.6373811116481534,54.95782650658896],[-1.6151906774070426,54.9622596507632],[-1.594076394409285,54.96992099685747],[-1.5790215194267603,54.96376730571751],[-1.5524201857421644,54.95802986848457],[-1.5341597915403327,54.96509109607814],[-1.5112042401827352,54.93165805707463],[-1.5566921938888072,54.92997036863852],[-1.5593987899213744,54.882028925895156],[-1.5937579022046293,54.901738895934216],[-1.6436779056100477,54.87879598814527],[-1.6748261414124954,54.90929484867928],[-1.8210027489768663,54.90565459088759],[-1.852711075355046,54.91740620473348],[-1.8248465485285692,54.940311256460234],[-1.8128009382119217,54.9763146684881],[-1.7849590500193244,54.98451710697981]]]},"properties":{"objectid":92,"ctyua17cd":"E08000037","name":"Gateshead","namew":"","bng_e":420168,"bng_n":559658,"long":-1.6868,"lat":54.93119812,"st_areasha":0.01981854222569,"st_lengths":1.001259789115181},"id":"92"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.07847140533027641,51.521510127391366],[-0.07937941482731503,51.50784275523989],[-0.11157435087477552,51.51075492190307],[-0.11160678762234966,51.51533798935765],[-0.10534987949250763,51.51854098777727],[-0.08521782614093354,51.520334527317516],[-0.07847140533027641,51.521510127391366]]]},"properties":{"objectid":93,"ctyua17cd":"E09000001","name":"City of London","namew":"","bng_e":532382,"bng_n":181358,"long":-0.09351,"lat":51.51564026,"st_areasha":0.0003796992236,"st_lengths":0.0973304731488},"id":"93"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.15869287187933878,51.51218593573327],[0.10904721026133757,51.51424937890664],[0.06971457996473873,51.54406234450255],[0.12931657749885517,51.56653150562539],[0.14817979446274876,51.59895996772923],[0.1469835999140514,51.57567892564282],[0.19017973390839416,51.552678965762595],[0.15869287187933878,51.51218593573327]]],[[[0.07316566806196079,51.52937018768495],[0.06832713738828033,51.544414146696454],[0.06936703965794777,51.54412870997294],[0.07316566806196079,51.52937018768495]]]]},"properties":{"objectid":94,"ctyua17cd":"E09000002","name":"Barking and Dagenham","namew":"","bng_e":547759,"bng_n":185107,"long":0.12950601,"lat":51.54552078,"st_areasha":0.004668224069105,"st_lengths":0.413213405194822},"id":"94"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.18211040027392755,51.66860072404512],[-0.12914725384189296,51.63226632733006],[-0.1387855193354426,51.610192184422715],[-0.1712851951548373,51.57242968498292],[-0.2135013603986522,51.555186083172146],[-0.2671558399692344,51.60037038438668],[-0.3044827851516061,51.63634730328636],[-0.2554826559989465,51.64328461509382],[-0.24937292102265474,51.6560543262471],[-0.18211040027392755,51.66860072404512]]]},"properties":{"objectid":95,"ctyua17cd":"E09000003","name":"Barnet","namew":"","bng_e":523472,"bng_n":191753,"long":-0.21821,"lat":51.611080169999994,"st_areasha":0.011288389753238,"st_lengths":0.520103906464062},"id":"95"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.20308081263021904,51.45797004538224],[0.15584895206831106,51.43087652713092],[0.148876715089159,51.408483499015176],[0.1044756388404835,51.41522022063759],[0.07534319563279723,51.43199077005892],[0.08229558907100909,51.466641081921296],[0.12416076600737824,51.476823547869344],[0.12021091300402986,51.51144468482528],[0.16440240404853057,51.50454195554772],[0.17517039879567164,51.485255296395735],[0.20081707245077496,51.47865691028909],[0.20308081263021904,51.45797004538224]]]},"properties":{"objectid":96,"ctyua17cd":"E09000004","name":"Bexley","namew":"","bng_e":549202,"bng_n":175433,"long":0.146212,"lat":51.45820999,"st_areasha":0.007846415536367,"st_lengths":0.460650711527728},"id":"96"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.2135013603986522,51.555186083172146],[-0.19148348177645858,51.536289357468775],[-0.2160288933179686,51.52792815356236],[-0.2285031115285392,51.53035269162433],[-0.24631136347784377,51.53275236972701],[-0.30273155061973966,51.531982482606395],[-0.3355843938039129,51.556583003703565],[-0.3265860346169802,51.578233267352346],[-0.2671558399692344,51.60037038438668],[-0.2135013603986522,51.555186083172146]]]},"properties":{"objectid":97,"ctyua17cd":"E09000005","name":"Brent","namew":"","bng_e":519615,"bng_n":186468,"long":-0.27568001,"lat":51.56441116,"st_areasha":0.005622026651979,"st_lengths":0.427265382381426},"id":"97"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.07534319563279723,51.43199077005892],[0.1044756388404835,51.41522022063759],[0.148876715089159,51.408483499015176],[0.15320986274576853,51.37803626046599],[0.1369309717877627,51.34417422146407],[0.08500075428219134,51.31602326146526],[0.08155265733006445,51.29183655711233],[0.0423690851659444,51.2926742396254],[0.012130977663332487,51.299599022977475],[0.002266077618230611,51.32913825652622],[-0.036525005224007145,51.388461675566816],[-0.0785485815509901,51.41984779554025],[-0.07830662974635061,51.42060915888652],[-0.0739356287254509,51.426153362388675],[-0.007692005680723923,51.41448302207476],[0.02935900501489641,51.44170525489454],[0.07534319563279723,51.43199077005892]]]},"properties":{"objectid":98,"ctyua17cd":"E09000006","name":"Bromley","namew":"","bng_e":542036,"bng_n":165708,"long":0.039246,"lat":51.37266922,"st_areasha":0.01933206782244,"st_lengths":0.775910537504196},"id":"98"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.10534987949250763,51.51854098777727],[-0.11160678762234966,51.51533798935765],[-0.15273242146326993,51.537519136300034],[-0.19148348177645858,51.536289357468775],[-0.2135013603986522,51.555186083172146],[-0.1712851951548373,51.57242968498292],[-0.1424158054442728,51.56912024910116],[-0.10534987949250763,51.51854098777727]]]},"properties":{"objectid":99,"ctyua17cd":"E09000007","name":"Camden","namew":"","bng_e":527492,"bng_n":184284,"long":-0.16289,"lat":51.5430603,"st_areasha":0.002762365415946,"st_lengths":0.278821483250146},"id":"99"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.0785485815509901,51.41984779554025],[-0.036525005224007145,51.388461675566816],[0.002266077618230611,51.32913825652622],[-0.04789557811761824,51.3252459205637],[-0.12431957618667866,51.28676013237515],[-0.1577612306954279,51.30442962612727],[-0.15656881959455404,51.321510564861626],[-0.12837200046664066,51.34745169004441],[-0.13437899599307457,51.39088610571014],[-0.1277517434473907,51.412316997732205],[-0.0785485815509901,51.41984779554025]]]},"properties":{"objectid":100,"ctyua17cd":"E09000008","name":"Croydon","namew":"","bng_e":533922,"bng_n":164745,"long":-0.07761,"lat":51.365978240000004,"st_areasha":0.011224652414007,"st_lengths":0.588214398539893},"id":"100"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.3355843938039129,51.556583003703565],[-0.30273155061973966,51.531982482606395],[-0.24631136347784377,51.53275236972701],[-0.25308393027836473,51.501399893391294],[-0.37187249611798734,51.49047039119654],[-0.40690517992931063,51.4996937769472],[-0.37637719125353897,51.52888661502618],[-0.37780804140714963,51.55498651731483],[-0.3355843938039129,51.556583003703565]]]},"properties":{"objectid":101,"ctyua17cd":"E09000009","name":"Ealing","namew":"","bng_e":517057,"bng_n":181960,"long":-0.31406999,"lat":51.52442932,"st_areasha":0.007177825519784,"st_lengths":0.539249017234421},"id":"101"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.011945070507749733,51.68087508142082],[-0.012286013388006722,51.64622746842383],[-0.04144788601030314,51.60563461634541],[-0.1387855193354426,51.610192184422715],[-0.12914725384189296,51.63226632733006],[-0.18211040027392755,51.66860072404512],[-0.1635285074338526,51.685919349099606],[-0.10580464956410651,51.691872761219884],[-0.011945070507749733,51.68087508142082]]]},"properties":{"objectid":102,"ctyua17cd":"E09000010","name":"Enfield","namew":"","bng_e":532829,"bng_n":196197,"long":-0.08147,"lat":51.64888,"st_areasha":0.010699832705227,"st_lengths":0.477692715632793},"id":"102"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.07534319563279723,51.43199077005892],[0.02935900501489641,51.44170525489454],[0.018123597526823687,51.47385319237185],[-0.02276761723095433,51.47535391265387],[0.002447121038642308,51.48994473296398],[0.07620739645500407,51.49589119242552],[0.12021091300402986,51.51144468482528],[0.12416076600737824,51.476823547869344],[0.08229558907100909,51.466641081921296],[0.07534319563279723,51.43199077005892]]]},"properties":{"objectid":103,"ctyua17cd":"E09000011","name":"Greenwich","namew":"","bng_e":542508,"bng_n":175881,"long":0.050108,"lat":51.46395874,"st_areasha":0.006111042899233,"st_lengths":0.494316690248489},"id":"103"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.01716781134462053,51.55157549401474],[-0.016571508667368562,51.54336416662392],[-0.06247035632105735,51.535516284050175],[-0.07847140533027641,51.521510127391366],[-0.08521782614093354,51.520334527317516],[-0.07946132687789031,51.551664863243786],[-0.10439114643344283,51.56477125628936],[-0.06118416391723258,51.57778428621674],[-0.01716781134462053,51.55157549401474]]]},"properties":{"objectid":104,"ctyua17cd":"E09000012","name":"Hackney","namew":"","bng_e":534560,"bng_n":185787,"long":-0.06045,"lat":51.554920200000005,"st_areasha":0.002488074453016,"st_lengths":0.278253201543166},"id":"104"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.18388087849893964,51.47741873089063],[-0.2166877231590547,51.46956920525554],[-0.22762137032913188,51.48744739837963],[-0.23439690219447584,51.49042807179899],[-0.24456233228499968,51.48870215857869],[-0.25308393027836473,51.501399893391294],[-0.24631136347784377,51.53275236972701],[-0.2285031115285392,51.53035269162433],[-0.2170404723391357,51.50450035920517],[-0.18388087849893964,51.47741873089063]]]},"properties":{"objectid":105,"ctyua17cd":"E09000013","name":"Hammersmith and Fulham","namew":"","bng_e":523866,"bng_n":177998,"long":-0.21736,"lat":51.487369539999996,"st_areasha":0.002085434198629,"st_lengths":0.244114391635765},"id":"105"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.04144788601030314,51.60563461634541],[-0.06118416391723258,51.57778428621674],[-0.10439114643344283,51.56477125628936],[-0.1424158054442728,51.56912024910116],[-0.1712851951548373,51.57242968498292],[-0.1387855193354426,51.610192184422715],[-0.04144788601030314,51.60563461634541]]]},"properties":{"objectid":106,"ctyua17cd":"E09000014","name":"Haringey","namew":"","bng_e":531262,"bng_n":189349,"long":-0.10667,"lat":51.58771133,"st_areasha":0.003889706555277,"st_lengths":0.327215021910446},"id":"106"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.3355843938039129,51.556583003703565],[-0.37780804140714963,51.55498651731483],[-0.4040719017959873,51.61318040585195],[-0.3166961792844063,51.640531747143314],[-0.3044827851516061,51.63634730328636],[-0.2671558399692344,51.60037038438668],[-0.3265860346169802,51.578233267352346],[-0.3355843938039129,51.556583003703565]]]},"properties":{"objectid":107,"ctyua17cd":"E09000015","name":"Harrow","namew":"","bng_e":515356,"bng_n":189736,"long":-0.33603001,"lat":51.59466934,"st_areasha":0.006550477193425,"st_lengths":0.378988223674302},"id":"107"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.3130069500115269,51.56581630358045],[0.33387406513679707,51.54249227390022],[0.26661007849315865,51.52295487566789],[0.21052539243373758,51.49024252817105],[0.18765643949393507,51.48785845870185],[0.15869287187933878,51.51218593573327],[0.19017973390839416,51.552678965762595],[0.1469835999140514,51.57567892564282],[0.14817979446274876,51.59895996772923],[0.13815692580232053,51.62354298172414],[0.22406010289228107,51.6317344844598],[0.26323140560572256,51.609189657077934],[0.29017357694982593,51.564495407238155],[0.3130069500115269,51.56581630358045]]]},"properties":{"objectid":108,"ctyua17cd":"E09000016","name":"Havering","namew":"","bng_e":555032,"bng_n":187514,"long":0.235368,"lat":51.56518936,"st_areasha":0.014591585312657,"st_lengths":0.684942697113387},"id":"108"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.4040719017959873,51.61318040585195],[-0.37780804140714963,51.55498651731483],[-0.37637719125353897,51.52888661502618],[-0.40690517992931063,51.4996937769472],[-0.4111545251603843,51.469881835679075],[-0.4586609541389066,51.45631527573033],[-0.5097205865350247,51.46917509355666],[-0.49004427812013773,51.4947462340524],[-0.49551046633411033,51.53842744437196],[-0.47735088073773113,51.55527015449496],[-0.5006168348982101,51.59968735199061],[-0.49706355413889014,51.631694758707056],[-0.4571519025374755,51.61229119398433],[-0.4040719017959873,51.61318040585195]]]},"properties":{"objectid":109,"ctyua17cd":"E09000017","name":"Hillingdon","namew":"","bng_e":508166,"bng_n":183120,"long":-0.44182,"lat":51.53662872,"st_areasha":0.015029693431521,"st_lengths":0.648861228423038},"id":"109"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.25308393027836473,51.501399893391294],[-0.24456233228499968,51.48870215857869],[-0.24973347002281798,51.485691439709115],[-0.2552347947491853,51.472576134381995],[-0.27710714327923824,51.483498025614324],[-0.2989867322510804,51.48525535665033],[-0.3217344862567302,51.465406873929],[-0.36959151413623204,51.456968360702206],[-0.39136341468901037,51.422325767720906],[-0.45649591545333124,51.438224965810434],[-0.4586609541389066,51.45631527573033],[-0.4111545251603843,51.469881835679075],[-0.40690517992931063,51.4996937769472],[-0.37187249611798734,51.49047039119654],[-0.25308393027836473,51.501399893391294]]]},"properties":{"objectid":110,"ctyua17cd":"E09000018","name":"Hounslow","namew":"","bng_e":512744,"bng_n":174965,"long":-0.37843999,"lat":51.462429050000004,"st_areasha":0.007288656720173,"st_lengths":0.644478709036696},"id":"110"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.08521782614093354,51.520334527317516],[-0.10534987949250763,51.51854098777727],[-0.1424158054442728,51.56912024910116],[-0.10439114643344283,51.56477125628936],[-0.07946132687789031,51.551664863243786],[-0.08521782614093354,51.520334527317516]]]},"properties":{"objectid":111,"ctyua17cd":"E09000019","name":"Islington","namew":"","bng_e":531158,"bng_n":184647,"long":-0.10992,"lat":51.54547882,"st_areasha":0.001951584664024,"st_lengths":0.217277127688998},"id":"111"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.1500038190201849,51.48548425659408],[-0.18388087849893964,51.47741873089063],[-0.2170404723391357,51.50450035920517],[-0.2285031115285392,51.53035269162433],[-0.2160288933179686,51.52792815356236],[-0.1500038190201849,51.48548425659408]]]},"properties":{"objectid":112,"ctyua17cd":"E09000020","name":"Kensington and Chelsea","namew":"","bng_e":525757,"bng_n":179053,"long":-0.18976,"lat":51.49644089,"st_areasha":0.001559231119776,"st_lengths":0.219710002338429},"id":"112"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.23970689705481618,51.389294642934374],[-0.24505423266589332,51.38003514490691],[-0.32794692021337823,51.35218632024339],[-0.3083259722649814,51.3800835518154],[-0.31772016085591304,51.39366799298443],[-0.30653700128078754,51.42270458105247],[-0.2540905459410965,51.437290688915084],[-0.2510840170129427,51.43256616889448],[-0.23970689705481618,51.389294642934374]]]},"properties":{"objectid":113,"ctyua17cd":"E09000021","name":"Kingston upon Thames","namew":"","bng_e":519508,"bng_n":167389,"long":-0.28367001,"lat":51.39295959,"st_areasha":0.004816844817562,"st_lengths":0.36887689160085},"id":"113"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.07830662974635061,51.42060915888652],[-0.0785485815509901,51.41984779554025],[-0.1277517434473907,51.412316997732205],[-0.14040540968107962,51.419249420825054],[-0.15061865132889807,51.46761496765754],[-0.12845557896099535,51.48504873201432],[-0.10892479704091329,51.508440734253384],[-0.09114620653139127,51.467613190597206],[-0.10076629852505903,51.45035694701642],[-0.07830662974635061,51.42060915888652]]]},"properties":{"objectid":114,"ctyua17cd":"E09000022","name":"Lambeth","namew":"","bng_e":531118,"bng_n":175626,"long":-0.11385,"lat":51.464420319999995,"st_areasha":0.003438749743604,"st_lengths":0.34276034190703},"id":"114"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.024847252697725253,51.485546175816296],[-0.017116518511727463,51.480409458730435],[-0.02276761723095433,51.47535391265387],[0.018123597526823687,51.47385319237185],[0.02935900501489641,51.44170525489454],[-0.007692005680723923,51.41448302207476],[-0.0739356287254509,51.426153362388675],[-0.046150782731615436,51.44987308477596],[-0.053977484472511605,51.487935186160826],[-0.0324128129001906,51.493055496914565],[-0.024847252697725253,51.485546175816296]]]},"properties":{"objectid":115,"ctyua17cd":"E09000023","name":"Lewisham","namew":"","bng_e":537889,"bng_n":173344,"long":-0.01733,"lat":51.442310330000005,"st_areasha":0.004596967281364,"st_lengths":0.403633418194111},"id":"115"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.14040540968107962,51.419249420825054],[-0.1277517434473907,51.412316997732205],[-0.13437899599307457,51.39088610571014],[-0.21813625848074025,51.380150471268166],[-0.23970689705481618,51.389294642934374],[-0.2510840170129427,51.43256616889448],[-0.19003968768060986,51.44147459048088],[-0.18193985733773843,51.42473554970678],[-0.14040540968107962,51.419249420825054]]]},"properties":{"objectid":116,"ctyua17cd":"E09000024","name":"Merton","namew":"","bng_e":526069,"bng_n":169507,"long":-0.18866999,"lat":51.410568239999996,"st_areasha":0.004830422435895,"st_lengths":0.353607873283263},"id":"116"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.06832713738828033,51.544414146696454],[0.07316566806196079,51.52937018768495],[0.06863427295417068,51.499086113134524],[0.024414931704541232,51.498306674314506],[-0.007857008793109799,51.52300908680087],[-0.016571508667368562,51.54336416662392],[-0.01716781134462053,51.55157549401474],[0.02034161437484272,51.5562672751156],[0.06832713738828033,51.544414146696454]]]},"properties":{"objectid":117,"ctyua17cd":"E09000025","name":"Newham","namew":"","bng_e":540721,"bng_n":183327,"long":0.027369,"lat":51.531318660000004,"st_areasha":0.004705116398667,"st_lengths":0.354314095337847},"id":"117"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.021792768522288952,51.6288313847615],[0.08711847513831117,51.604465489591576],[0.13815692580232053,51.62354298172414],[0.14817979446274876,51.59895996772923],[0.12931657749885517,51.56653150562539],[0.06971457996473873,51.54406234450255],[0.06936703965794777,51.54412870997294],[0.06832713738828033,51.544414146696454],[0.02034161437484272,51.5562672751156],[0.012536633059994529,51.595360979826296],[0.021792768522288952,51.6288313847615]]]},"properties":{"objectid":118,"ctyua17cd":"E09000026","name":"Redbridge","namew":"","bng_e":543512,"bng_n":189478,"long":0.070085,"lat":51.58589172,"st_areasha":0.007284521676788,"st_lengths":0.501968171156081},"id":"118"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.22342509768930086,51.471521154978234],[-0.2529154827624893,51.465216383130496],[-0.2540905459410965,51.437290688915084],[-0.30653700128078754,51.42270458105247],[-0.31772016085591304,51.39366799298443],[-0.39136341468901037,51.422325767720906],[-0.36959151413623204,51.456968360702206],[-0.3217344862567302,51.465406873929],[-0.2954088001751529,51.48475912783243],[-0.2705491673094116,51.47266366899407],[-0.2602381297850229,51.47031428187955],[-0.2515038529196545,51.4736356616574],[-0.24854384861890821,51.483734026604964],[-0.23552858657421893,51.48894964121388],[-0.22803468255375492,51.4851092653812],[-0.22342509768930086,51.471521154978234]]]},"properties":{"objectid":119,"ctyua17cd":"E09000027","name":"Richmond upon Thames","namew":"","bng_e":519005,"bng_n":172648,"long":-0.28913999,"lat":51.44033051,"st_areasha":0.007311466586353,"st_lengths":0.728866806097754},"id":"119"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.0324128129001906,51.493055496914565],[-0.053977484472511605,51.487935186160826],[-0.046150782731615436,51.44987308477596],[-0.0739356287254509,51.426153362388675],[-0.07830662974635061,51.42060915888652],[-0.10076629852505903,51.45035694701642],[-0.09114620653139127,51.467613190597206],[-0.10892479704091329,51.508440734253384],[-0.0324128129001906,51.493055496914565]]]},"properties":{"objectid":120,"ctyua17cd":"E09000028","name":"Southwark","namew":"","bng_e":533945,"bng_n":175863,"long":-0.07309,"lat":51.46588898,"st_areasha":0.003683119402872,"st_lengths":0.341916097046878},"id":"120"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.13437899599307457,51.39088610571014],[-0.12837200046664066,51.34745169004441],[-0.15656881959455404,51.321510564861626],[-0.2172894730299504,51.34338829763277],[-0.24505423266589332,51.38003514490691],[-0.23970689705481618,51.389294642934374],[-0.21813625848074025,51.380150471268166],[-0.13437899599307457,51.39088610571014]]]},"properties":{"objectid":121,"ctyua17cd":"E09000029","name":"Sutton","namew":"","bng_e":527356,"bng_n":163640,"long":-0.17227,"lat":51.357559200000004,"st_areasha":0.005713444337715,"st_lengths":0.407792952411949},"id":"121"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.016571508667368562,51.54336416662392],[-0.007857008793109799,51.52300908680087],[-0.05975437766159075,51.502844454608805],[-0.07937941482731503,51.50784275523989],[-0.07847140533027641,51.521510127391366],[-0.06247035632105735,51.535516284050175],[-0.016571508667368562,51.54336416662392]]]},"properties":{"objectid":122,"ctyua17cd":"E09000030","name":"Tower Hamlets","namew":"","bng_e":536345,"bng_n":181451,"long":-0.0364,"lat":51.51552963,"st_areasha":0.002542547949733,"st_lengths":0.284531331165211},"id":"122"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.02034161437484272,51.5562672751156],[-0.01716781134462053,51.55157549401474],[-0.06118416391723258,51.57778428621674],[-0.04144788601030314,51.60563461634541],[-0.012286013388006722,51.64622746842383],[0.021792768522288952,51.6288313847615],[0.012536633059994529,51.595360979826296],[0.02034161437484272,51.5562672751156]]]},"properties":{"objectid":123,"ctyua17cd":"E09000031","name":"Waltham Forest","namew":"","bng_e":537327,"bng_n":190277,"long":-0.01881,"lat":51.59460831,"st_areasha":0.005050015453456,"st_lengths":0.331371092512861},"id":"123"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.14040540968107962,51.419249420825054],[-0.18193985733773843,51.42473554970678],[-0.19003968768060986,51.44147459048088],[-0.2510840170129427,51.43256616889448],[-0.2540905459410965,51.437290688915084],[-0.2529154827624893,51.465216383130496],[-0.22342509768930086,51.471521154978234],[-0.1951260769060923,51.46060552302737],[-0.16626613637225773,51.481326976759476],[-0.12845557896099535,51.48504873201432],[-0.15061865132889807,51.46761496765754],[-0.14040540968107962,51.419249420825054]]]},"properties":{"objectid":124,"ctyua17cd":"E09000032","name":"Wandsworth","namew":"","bng_e":525152,"bng_n":174137,"long":-0.20021001,"lat":51.45238876,"st_areasha":0.004482669381788,"st_lengths":0.420074464790285},"id":"124"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.11160678762234966,51.51533798935765],[-0.11157435087477552,51.51075492190307],[-0.1500038190201849,51.48548425659408],[-0.2160288933179686,51.52792815356236],[-0.19148348177645858,51.536289357468775],[-0.15273242146326993,51.537519136300034],[-0.11160678762234966,51.51533798935765]]]},"properties":{"objectid":125,"ctyua17cd":"E09000033","name":"Westminster","namew":"","bng_e":528268,"bng_n":180871,"long":-0.15295,"lat":51.51221085,"st_areasha":0.002790496851025,"st_lengths":0.283624882457925},"id":"125"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.871343514790567,52.04024038128949],[-0.8122630314129538,52.0060059941822],[-0.8035251473668268,51.985494134647524],[-0.7134057263923523,51.98980686409641],[-0.6530013429368182,51.969219452516654],[-0.7021812051976326,51.90910983175428],[-0.654852815004574,51.887881083945786],[-0.5835892581369535,51.87031523975742],[-0.5536538831194093,51.82670422422149],[-0.6118940876411898,51.812036637781546],[-0.6672394230600958,51.815802312327776],[-0.6923949193891872,51.85706158092813],[-0.7457017084662425,51.84208590743958],[-0.6826751582311203,51.79720183949422],[-0.6734946863298887,51.76846493251156],[-0.6129598427217502,51.74742082271371],[-0.5864031630746922,51.75210923585348],[-0.5504360404900694,51.72303692581443],[-0.5487182625369655,51.682666693713884],[-0.5051294989264079,51.673072532772096],[-0.5374129471489937,51.64290375400594],[-0.5178573367458625,51.60024708013958],[-0.5006168348982101,51.59968735199061],[-0.47735088073773113,51.55527015449496],[-0.49551046633411033,51.53842744437196],[-0.49004427812013773,51.4947462340524],[-0.527000153133713,51.509503806656255],[-0.6397406666976053,51.53713003472427],[-0.6600965289308647,51.52752517724605],[-0.6422294847021135,51.50062519489774],[-0.6517470800628757,51.48548184191441],[-0.7031829177566351,51.511104428127794],[-0.6941958954234337,51.562172444903354],[-0.7278828292283492,51.57723962351076],[-0.7732467160622605,51.56730727790949],[-0.7944893521010954,51.551155079843966],[-0.8427624261442475,51.54475597990546],[-0.8969017446190151,51.544860167263835],[-0.9393597735339085,51.57401063198603],[-0.9431757813364356,51.605030385245016],[-0.9249106647945382,51.665424026298695],[-0.8841563322480965,51.67377115851309],[-0.8877052144233062,51.71833908957825],[-0.9240960049258433,51.7477023860572],[-0.953695698996512,51.75784929281156],[-1.031547435564903,51.757226989834635],[-1.0828212657879703,51.76410915341563],[-1.1219637731088028,51.78707506046658],[-1.1101173140619949,51.81729908278737],[-1.1212026300964908,51.84533516338803],[-1.0619278409962476,51.832377911212575],[-1.0701853881443526,51.88205596730995],[-1.0935392393436132,51.893929379937845],[-1.0621318081356321,51.935128679046215],[-1.0952549677417664,51.95711386371477],[-1.0531899596480798,52.00252587327134],[-1.1181037587806486,52.015415580965225],[-1.1172409438136697,52.04733396379231],[-1.0529761872004428,52.059649022685164],[-1.0263351484475152,52.07567049080143],[-0.9678233909359051,52.07089931934905],[-0.9060486790025379,52.021209972263364],[-0.871343514790567,52.04024038128949]]]},"properties":{"objectid":126,"ctyua17cd":"E10000002","name":"Buckinghamshire","namew":"","bng_e":482506,"bng_n":208561,"long":-0.80568999,"lat":51.769660949999995,"st_areasha":0.204077555791902,"st_lengths":3.864861692854272},"id":"126"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.2455645072969901,52.50054077893475],[0.24568547600472357,52.500342429860154],[0.30934016941409936,52.51360442990142],[0.3671228690259909,52.495925397939686],[0.42850633899718105,52.454634866207016],[0.42932076953871956,52.4364091624538],[0.3747541283012197,52.409711968233694],[0.4076663950888815,52.36149564950557],[0.44247519987141004,52.3488151106298],[0.4307552862283046,52.31711287266188],[0.5046727397559607,52.28634995318873],[0.4987748418862452,52.27300530095482],[0.4241784424819457,52.25585606140902],[0.3607102963439388,52.29779811958849],[0.33997483836890297,52.26767272231922],[0.37122092670523443,52.22654088585415],[0.42693684306169644,52.25358725984512],[0.5144549957022946,52.22676383408458],[0.4874349241832192,52.16978289986184],[0.44449235673766907,52.17106759129723],[0.4182522249610088,52.13434223950367],[0.3895588163870798,52.117457746878415],[0.4046082855447821,52.06549077228226],[0.37169271015125105,52.037358627899266],[0.3219184796549257,52.074290244600036],[0.27620016640537415,52.092626502012365],[0.2519814201072563,52.07708196686019],[0.20343046004853704,52.09266252615561],[0.186345507639885,52.0566505004212],[0.10112864996801818,52.03884643571536],[0.0680988390909647,52.005778988210636],[0.04027768926476938,52.05331686108519],[0.007157135893919531,52.04952283721008],[-0.024441424631220343,52.06330556629979],[-0.10772209769584151,52.02834548385795],[-0.15514794921767816,52.053050863207716],[-0.1573072484299587,52.08053634557683],[-0.14441756142048234,52.137450184979],[-0.20622771473642842,52.144437237389525],[-0.25442142091100095,52.17217262966403],[-0.249807374509885,52.1843587167823],[-0.2649338777953858,52.20570844768764],[-0.299986217189371,52.21804491674044],[-0.28571492060626724,52.237388422038975],[-0.3434894597699554,52.24186106983342],[-0.37439607831555577,52.23298487635191],[-0.381987544388835,52.26869341866728],[-0.43577958695755115,52.296642475470776],[-0.4653831544082436,52.32293844795191],[-0.49871625535007524,52.36008040169014],[-0.48477723488065294,52.38161556740545],[-0.44377837666991127,52.383841325617595],[-0.3718822078967605,52.437042639507126],[-0.3416080420766434,52.46692515417345],[-0.3543621113215636,52.506477103936106],[-0.4118622970065644,52.5247355142335],[-0.4020756262883083,52.54830343825398],[-0.41539468381677125,52.578724632436774],[-0.3484919917112279,52.56435212615065],[-0.28465590864243495,52.50609495322044],[-0.2694651200184808,52.520371684406655],[-0.19104718737696658,52.550320538462984],[-0.1869959394102807,52.568487821356825],[-0.12440905243499856,52.57666125041732],[0.06195493167558652,52.605610884835414],[0.13040329127966288,52.64204514676703],[0.15836475513015102,52.66500790709017],[0.1540466225544037,52.68214520723643],[0.18470127714306273,52.6778751569139],[0.17204384994454358,52.64867542733003],[0.21928353101094444,52.62179374438671],[0.2015018486322333,52.60311764666301],[0.2038530451827114,52.54538680735618],[0.2455645072969901,52.50054077893475]]],[[[0.1712119779512591,52.73820306831789],[0.1557489069872986,52.70769279358848],[0.1509644309645637,52.66292739658303],[0.12347001922682921,52.63854797021361],[0.061423513285319586,52.60668646770722],[-0.012858238516059828,52.59432647598703],[-0.03128748313002916,52.661513802620846],[0.021483738984159118,52.6648682207927],[0.047996921121807645,52.681030440003724],[0.04413469895803246,52.71436254989271],[0.13296091731331217,52.739284842122686],[0.1712119779512591,52.73820306831789]]]]},"properties":{"objectid":127,"ctyua17cd":"E10000003","name":"Cambridgeshire","namew":"","bng_e":520312,"bng_n":273864,"long":-0.23506001,"lat":52.34965897,"st_areasha":0.402592771539447,"st_lengths":5.65108874046905},"id":"127"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.3120828474446284,54.79100815130607],[-2.3084801327511286,54.773535859992876],[-2.3515878606904153,54.685728957526294],[-2.303311227130621,54.66962234699463],[-2.2879727977056064,54.65047231374723],[-2.3249322160481256,54.63164226108239],[-2.3045091178007056,54.59618954890948],[-2.1723922494019803,54.532435156658096],[-2.159361058565196,54.471134504354836],[-2.170207028131017,54.458189265323256],[-2.189309970178158,54.448968858127216],[-2.2495341429855102,54.45193384737007],[-2.2928604493494618,54.439297829432235],[-2.3082089071145333,54.41647839766085],[-2.2974358950497162,54.37688844794445],[-2.3607448324072493,54.35493720548857],[-2.309837310442731,54.32430391609381],[-2.3230283395853917,54.3110715675997],[-2.315510636805641,54.27027315388386],[-2.325643075266896,54.24142656378581],[-2.396775876104982,54.23936994286947],[-2.4119667915333594,54.22667553644777],[-2.460859457097456,54.22670513133767],[-2.520067047955081,54.21643587451695],[-2.5507490302427414,54.20028202439681],[-2.62495643419129,54.195558143794244],[-2.6757750482790357,54.16374803844218],[-2.7364898992885855,54.16901638030265],[-2.7992303248188364,54.197721867670964],[-2.837217621495199,54.17416236939874],[-2.8694923480925922,54.176676702069074],[-2.905004518942576,54.194716704813004],[-2.9356183425117024,54.158159598187865],[-2.968382349764795,54.146015887124406],[-3.0052937461086913,54.15625965715839],[-3.0126580245473633,54.17971282678644],[-3.0531357184378294,54.19887911438053],[-3.060856434176287,54.161989003190854],[-3.104650729746595,54.11999520251749],[-3.1647954483504463,54.08321510629304],[-3.2393119034207984,54.10413098445832],[-3.237698117673176,54.15591193878589],[-3.217153333059059,54.17745542412945],[-3.2000486998867927,54.23769810948107],[-3.250993445690142,54.21985385137509],[-3.2539816797099093,54.19163004359257],[-3.3143071971186373,54.18855369309938],[-3.3942155123352222,54.25443083071917],[-3.4227302148267427,54.2928471300919],[-3.4352852290292617,54.34337403648351],[-3.4764516651114263,54.3863542621404],[-3.57785118718175,54.4647860308516],[-3.6195735913473754,54.49089624027022],[-3.6388948546130564,54.517372628445],[-3.6136063008892734,54.525025442670994],[-3.580390612735755,54.57189590797071],[-3.5690600416867824,54.61611904705728],[-3.5717430251197015,54.65083825867964],[-3.5189807053944264,54.692968198724316],[-3.5098807686817395,54.71761636230622],[-3.445411359645732,54.752162180141454],[-3.4378544832969737,54.80162087450469],[-3.3986515874000247,54.86904717348921],[-3.366986779215665,54.89146412716866],[-3.277942130823874,54.88630709349849],[-3.2745761986318485,54.90308542115622],[-3.3134741236310674,54.91888731619764],[-3.283304359207989,54.94211762932605],[-3.2043892309774265,54.9538695021767],[-3.1379613404427005,54.92745641907942],[-3.104020247435642,54.97136807257942],[-3.075680882166182,54.967591525229636],[-3.0534489118369947,54.99279890254826],[-3.025872178857128,55.03645349023731],[-3.0275495017073126,55.05527521338132],[-2.9586934056753194,55.04926877453522],[-2.858537237702535,55.10834443035213],[-2.8254994120674155,55.1383102015555],[-2.7848711851562484,55.14177156530644],[-2.6897849542114614,55.188981337619566],[-2.65693362008966,55.13612849753309],[-2.5988960544085558,55.12457227938813],[-2.5935518340490944,55.1051163786189],[-2.5569404686269195,55.08103478882538],[-2.503699979369742,55.090746181791815],[-2.483042856841564,55.04001409327674],[-2.5731798622600195,55.01610939203573],[-2.560183953625767,54.934089577472946],[-2.5764079014027175,54.89671009749395],[-2.605424390522387,54.88437514829536],[-2.573346605560573,54.8535391517114],[-2.567843019938607,54.82356790003951],[-2.5296168984003202,54.80594294701035],[-2.4955784780635213,54.81023584730747],[-2.401616157758667,54.85147716454043],[-2.3927198671273686,54.834508403640825],[-2.3120828474446284,54.79100815130607]]]},"properties":{"objectid":128,"ctyua17cd":"E10000006","name":"Cumbria","namew":"","bng_e":341868,"bng_n":527389,"long":-2.90217996,"lat":54.63825989,"st_areasha":0.948279650035582,"st_lengths":9.731872681778283},"id":"128"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.8222295546494252,53.52107503588513],[-1.796288902510014,53.503136900248705],[-1.8014715030066668,53.48097560134386],[-1.7468250028707644,53.463393532486464],[-1.7467195330791583,53.42614846607978],[-1.6535313482922902,53.38483502231935],[-1.663951790142164,53.366875847942936],[-1.6123042772197778,53.3432013911322],[-1.5990944342599391,53.311300857149774],[-1.5367699244915798,53.30473092289469],[-1.4743875550408347,53.31847259883227],[-1.4087476459862387,53.341946300882],[-1.3850776534101783,53.31776185562609],[-1.3402591172636562,53.31551535724884],[-1.3246686033725155,53.32879093705304],[-1.2542947565969484,53.30173340157614],[-1.1997439587158851,53.31141888147715],[-1.166488773237461,53.277634524114944],[-1.2026187513534978,53.26109808440998],[-1.2094260859443011,53.217677823173915],[-1.1988033460967245,53.1830707552121],[-1.2531739198396963,53.16549958973519],[-1.325618086904342,53.15758879238979],[-1.303237831859633,53.08806458101651],[-1.343836987286295,53.06871048350297],[-1.333113086299079,53.03386335501074],[-1.2877527445926944,52.969643030302564],[-1.2819412248068716,52.91073712871645],[-1.2474284867344636,52.898679881172484],[-1.2678944952339748,52.87334936778001],[-1.3060005653729831,52.87706150748352],[-1.3811311584753412,52.84603037330402],[-1.417711913673088,52.80159746465222],[-1.5039502042376967,52.76744478544941],[-1.5624991055484543,52.750569634981616],[-1.55008630204037,52.72026134528579],[-1.5975472127328771,52.70040461128474],[-1.655048211405017,52.698781559822066],[-1.6566142773262413,52.72173127637825],[-1.6969583751280766,52.72717738093229],[-1.682072552905197,52.770174275523345],[-1.6269629891498312,52.77975501048627],[-1.591831210840894,52.80947302026459],[-1.5912909898864314,52.836243655820965],[-1.6426363656749459,52.85630909908656],[-1.758588398734787,52.87720309674643],[-1.811055973753355,52.880635817989514],[-1.8565782932528236,52.923373434437394],[-1.8287585310805525,52.94774795590439],[-1.8261154298823499,52.977469750029854],[-1.7625735690141937,52.999651405089196],[-1.7590414861748513,53.03753453868893],[-1.7787380671072697,53.04299587236255],[-1.7942428468290927,53.08837623297768],[-1.7837293053623284,53.10281018903993],[-1.8221606189165982,53.138044953212955],[-1.8120276066878773,53.15272637392394],[-1.8739768437555426,53.19534245688982],[-1.9376959978711739,53.211759659081906],[-1.9874113830280749,53.21356748165488],[-1.9997337740935563,53.245031652889395],[-2.0143199125330966,53.34004246848605],[-2.0310593013448397,53.37024640534827],[-2.004644221752642,53.386311212693215],[-1.9923315820360585,53.415176938565764],[-2.026256869458166,53.4298489109994],[-1.9869036249015721,53.45429987933687],[-1.9870776374222032,53.48164186947764],[-1.9633882644560003,53.50981031679362],[-1.9096223085219322,53.53837478596853],[-1.8734937207577786,53.54041386740698],[-1.8222295546494252,53.52107503588513]],[[-1.4800883934637454,52.968096295308726],[-1.50803259033097,52.937433911946414],[-1.5528808643595653,52.92256014063889],[-1.5396416369511599,52.893924278783345],[-1.4951950640001996,52.87035963009379],[-1.423572671340878,52.86505985692776],[-1.3896116079885132,52.92272123889501],[-1.4685558643608374,52.950643813362205],[-1.4800883934637454,52.968096295308726]]]},"properties":{"objectid":129,"ctyua17cd":"E10000007","name":"Derbyshire","namew":"","bng_e":426752,"bng_n":353556,"long":-1.60210001,"lat":53.07857895,"st_areasha":0.342612364089545,"st_lengths":4.863807892168071},"id":"129"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.720764895182981,51.23309275023115],[-3.733185289868402,51.22272595024333],[-3.7252785421701446,51.17936178062263],[-3.786287054203399,51.171928648289395],[-3.839802982420906,51.176674573074024],[-3.8347195519649517,51.1413841471616],[-3.8042710489689284,51.115687575522145],[-3.719937366015813,51.08081809078317],[-3.6923905112122952,51.080595267558465],[-3.600314183451985,51.05064586401636],[-3.6097285087628848,51.00798801023939],[-3.5350337783853547,51.003352324351226],[-3.5204129845707826,51.025875559010785],[-3.4836761061665698,51.0338380610786],[-3.426801330616115,51.031409851084675],[-3.3804746520827393,51.01849083718332],[-3.3786506039414235,50.97751434511184],[-3.333707707743713,50.982803339903114],[-3.2938356784729876,50.95514507258798],[-3.254819254304323,50.94185242365137],[-3.16393516767306,50.945979090563526],[-3.1878603590674857,50.91042814544346],[-3.1528653721384217,50.89380611276283],[-3.0524153309019653,50.9082720900858],[-3.0547783103698976,50.87462700083637],[-3.032624712359791,50.861648085791444],[-2.9735839268559516,50.8556664961128],[-2.95431570200725,50.82118208848351],[-2.890254446684537,50.80347560831359],[-2.897452386517614,50.786149813863744],[-2.9543276000379137,50.767720678967066],[-2.9350577797918618,50.75427686298775],[-2.9477557996896167,50.718276535634516],[-3.022752174372556,50.69841473035643],[-3.0798662379357324,50.70228539895294],[-3.095954826053571,50.68523548323191],[-3.18470178445898,50.68496417036107],[-3.2618196697411577,50.671881652517186],[-3.3060809715587993,50.62949536521984],[-3.3854497367151453,50.606733506247224],[-3.4564013772209705,50.656125507786896],[-3.443189868716672,50.592106032268475],[-3.509171798039233,50.51659180636767],[-3.584155447315254,50.47800984737745],[-3.588645360294322,50.45062570151583],[-3.6280246734990556,50.42600403735736],[-3.544240497000544,50.373498686316225],[-3.507615651640208,50.3791714964683],[-3.517912619271158,50.34652126064856],[-3.610363741292815,50.31925967439537],[-3.6461605169934614,50.28302777341395],[-3.658983894290486,50.236376615889014],[-3.708199102605704,50.20542484688008],[-3.7733895997494074,50.22410552575036],[-3.7899577621402045,50.20994809682816],[-3.8706762010450575,50.241104024532035],[-3.858062837029479,50.26079792458546],[-3.8797833521192047,50.28463403992993],[-3.9918553483448136,50.307508437365414],[-4.038641860132941,50.29294014866986],[-4.1189688646205695,50.31935521477226],[-4.1229848456732725,50.34670315482765],[-4.0905590815355595,50.34091751393305],[-4.050167657810334,50.35806418501505],[-4.039623149088243,50.40143467866841],[-4.071483063391838,50.401864405318975],[-4.084703893369181,50.42583976809175],[-4.124850681712758,50.435722833542854],[-4.163445326539772,50.42757124182026],[-4.185070354312586,50.43428319791218],[-4.215673788014101,50.468287462897024],[-4.220749996914037,50.49778375741539],[-4.198259497576942,50.49148318540159],[-4.206157153129311,50.51905851903632],[-4.234415288034313,50.53206470872027],[-4.312142080891533,50.58950687284482],[-4.300077215190527,50.633417428272594],[-4.331083804173431,50.640428875692976],[-4.361475166045238,50.71879679523681],[-4.384903174441149,50.747725196661406],[-4.474411524071741,50.79732340375301],[-4.445990217074041,50.80941868182765],[-4.433626980599854,50.86551825976079],[-4.470942995422092,50.931261292275735],[-4.545925113152634,50.928357019861494],[-4.533000228476965,50.965379308908894],[-4.526019152960714,51.02219043134426],[-4.427690501814368,51.01333583777961],[-4.374925655893492,50.990107002237266],[-4.303558934196644,50.997349493585205],[-4.256675365774697,51.038406440805545],[-4.210332854676665,51.051940236653536],[-4.22253364840833,51.11779863509986],[-4.201235610534184,51.200670263223],[-4.072354983095181,51.217388912769025],[-3.958212947168988,51.21921517683984],[-3.9256400152737,51.231966506749814],[-3.720764895182981,51.23309275023115]]]},"properties":{"objectid":130,"ctyua17cd":"E10000008","name":"Devon","namew":"","bng_e":283141,"bng_n":93082,"long":-3.65701008,"lat":50.725559229999995,"st_areasha":0.836844598826553,"st_lengths":10.131756667555297},"id":"130"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.956828450271928,50.98983640162953],[-1.8804078300564697,50.92496412599456],[-1.810665301061988,50.92721090585957],[-1.8249603505389018,50.8957787325034],[-1.8485629632093605,50.889895558334274],[-1.8509510751312064,50.85873355301197],[-1.8055725482336697,50.85922713602446],[-1.7975300298861612,50.783847120449195],[-1.7490659785112825,50.779521175462776],[-1.744175625304024,50.74746625576404],[-1.6925548096559169,50.73736253445435],[-1.7423196089619637,50.7235425068821],[-1.8063527226991596,50.74127490281546],[-1.8513560740227604,50.773619784626305],[-1.919231524114707,50.77469532612935],[-1.9523167116461195,50.7905134845106],[-2.0093269161034755,50.782598496324454],[-2.026875031956365,50.729336025837824],[-2.0244628352908194,50.68764642714183],[-1.9523047569581422,50.656430107264555],[-1.943813815054682,50.629179057468434],[-1.9609937439652754,50.590807296120715],[-2.026689733843341,50.58889244792903],[-2.103049307178992,50.59720057025106],[-2.1577773731264642,50.615421636200495],[-2.324208299572547,50.62525419122886],[-2.33874466323482,50.63199524488556],[-2.423369464828113,50.635907155491736],[-2.472405502111428,50.58453546464091],[-2.6525509647544254,50.67003596578809],[-2.7768012473788417,50.71409073919716],[-2.894451963986114,50.73276536113343],[-2.9477557996896167,50.718276535634516],[-2.9350577797918618,50.75427686298775],[-2.9543276000379137,50.767720678967066],[-2.897452386517614,50.786149813863744],[-2.890254446684537,50.80347560831359],[-2.95431570200725,50.82118208848351],[-2.9416773296442216,50.83590516489238],[-2.886176807213076,50.850606948053155],[-2.8289552476857125,50.84866784244787],[-2.7230904531610918,50.86619903755644],[-2.660609964977084,50.887112975884065],[-2.611237281774322,50.88502604961343],[-2.624064072897852,50.90787466078791],[-2.5998816619083414,50.967408177646234],[-2.5265292182480152,50.99193075809893],[-2.490345717879734,50.972778125810805],[-2.4149296862552205,50.96059003410369],[-2.344560094172209,50.97883603735414],[-2.38175948401215,51.00195280477902],[-2.330018692507849,51.04135084096947],[-2.349980778489339,51.068806964970406],[-2.3258562217864096,51.079681781190175],[-2.2446938046745117,51.072316731133185],[-2.193214007219865,51.03771875621658],[-2.1886091446954765,51.0185387314782],[-2.1481532099019205,50.98628439161229],[-2.1197703435257154,50.978196969215674],[-2.1028673590405447,50.94561430125992],[-2.067289588043252,50.951826951953194],[-2.037215036643829,50.971976015981284],[-1.994043678072444,50.97573437274406],[-1.956828450271928,50.98983640162953]]]},"properties":{"objectid":131,"ctyua17cd":"E10000009","name":"Dorset","namew":"","bng_e":370871,"bng_n":99796,"long":-2.41466999,"lat":50.796970370000004,"st_areasha":0.324676908140553,"st_lengths":5.828942901328785},"id":"131"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.8547016711460174,50.923726134554386],[0.788054904511057,50.93328866813846],[0.7497427439333251,50.922182873641646],[0.6695022919980147,50.87349664205732],[0.5973599464052199,50.85475479310014],[0.42727019476450323,50.83213093059891],[0.34993459710477737,50.809827374234885],[0.32872055590974014,50.78489418222165],[0.25819440714701614,50.73765615051184],[0.20991479413328307,50.73840519314609],[0.1489147438211944,50.75908930792616],[0.1239304343428671,50.758116151540094],[0.05269620886377879,50.779788924320314],[-0.03823079431487031,50.799525564654004],[-0.03687074688662051,50.841244578375495],[-0.07080691610548229,50.8458244667267],[-0.08495532662618643,50.873125175287555],[-0.13503764596975998,50.88664026793492],[-0.12841404377229537,50.918940024463495],[-0.09309383681028294,50.979232685141255],[-0.02010203118300069,50.985408020264856],[-0.0015920778113240885,51.035758619965236],[-0.03282879251395343,51.09239212090057],[0.018591451834879535,51.103579063923576],[0.027334026744767925,51.139853986673074],[0.04998951120779793,51.14265337745235],[0.1259062529720154,51.14694918795561],[0.1625715291535812,51.116400804454486],[0.22741825325061882,51.124243255123076],[0.2756430525856217,51.11235760901735],[0.32454452251249677,51.11213370480755],[0.3646609200662283,51.088161243247725],[0.39161409281695114,51.085786202072484],[0.41823896355816714,51.062629651338284],[0.47137238762638844,51.049080138038846],[0.46734924257430066,51.03301034755043],[0.537570831429548,51.02167628713187],[0.571983685399573,51.00345794253093],[0.6276317200286599,51.017854448125206],[0.6620749620906281,51.01747561141127],[0.6991889010477621,50.998493858405766],[0.7405791630987437,51.00067953293501],[0.778923467245022,50.989494366073075],[0.8134297059170308,50.94901289952662],[0.855932831335906,50.95313005341018],[0.8547016711460174,50.923726134554386]]]},"properties":{"objectid":132,"ctyua17cd":"E10000011","name":"East Sussex","namew":"","bng_e":564120,"bng_n":118026,"long":0.33453,"lat":50.938320159999996,"st_areasha":0.219218654876295,"st_lengths":3.70016248781594},"id":"132"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.0538895865360018,51.95298707449484],[1.1194082768712974,51.94002738605593],[1.1705944690603474,51.94798563073317],[1.227382816164834,51.939460895904574],[1.2452299152292312,51.9484335659572],[1.2901013629883096,51.93815319621399],[1.1989855660318653,51.8847750099597],[1.2431087184933745,51.85920589563648],[1.2871975087588226,51.85925111714624],[1.2387316650351181,51.821234701321316],[1.124344373195072,51.77542431008476],[1.0426513389889465,51.76989957960285],[1.0297392534645837,51.800376622584],[0.9822926195096215,51.81734858686872],[0.927447083217146,51.807544752589195],[0.8995715163132445,51.78877798971337],[0.8826817068960509,51.75764371408707],[0.8524020965803061,51.74160432967699],[0.7631493549595803,51.73870426608994],[0.7178073774093718,51.71623528033484],[0.7691576787846657,51.708352431220646],[0.8196982027106969,51.72107368690206],[0.8512125165452176,51.71563044668869],[0.8994948383169685,51.744876994078936],[0.9277182926658725,51.74810709356842],[0.9506617040752303,51.72287177341451],[0.9500276784354469,51.6834889285721],[0.9370984815105317,51.63621728290224],[0.8657167798063483,51.615564234302894],[0.8624961016146244,51.596046975488434],[0.8042149554566436,51.58933504817486],[0.8212262803693875,51.54065908684828],[0.7520626045064205,51.55835746142861],[0.6439268563401583,51.57507997805948],[0.6271752889092568,51.53803524463177],[0.5475554735071455,51.54768542524312],[0.5131916289913079,51.53186733790824],[0.5092095910505918,51.5355482036876],[0.49774334647906926,51.53848823044842],[0.46158785099936495,51.553694982038735],[0.4399062189976348,51.5451116734659],[0.38257564545051537,51.56582157270833],[0.3130069500115269,51.56581630358045],[0.29017357694982593,51.564495407238155],[0.26323140560572256,51.609189657077934],[0.22406010289228107,51.6317344844598],[0.13815692580232053,51.62354298172414],[0.08711847513831117,51.604465489591576],[0.021792768522288952,51.6288313847615],[-0.012286013388006722,51.64622746842383],[-0.011945070507749733,51.68087508142082],[-0.013006229153347704,51.74274629150909],[0.02677219058494984,51.77417416880377],[0.09922748496126133,51.783224833460224],[0.15073990262521875,51.797043039005985],[0.17932167835357404,51.895546127152954],[0.12473501281141353,51.884577617763796],[0.11798487150542769,51.94805892817794],[0.0964330755268179,51.98431646793159],[0.0680988390909647,52.005778988210636],[0.10112864996801818,52.03884643571536],[0.186345507639885,52.0566505004212],[0.20343046004853704,52.09266252615561],[0.2519814201072563,52.07708196686019],[0.27620016640537415,52.092626502012365],[0.3219184796549257,52.074290244600036],[0.37169271015125105,52.037358627899266],[0.4046082855447821,52.06549077228226],[0.4666364336253537,52.07844366184645],[0.5110236738043454,52.059819217583765],[0.5427001309071215,52.057907713071415],[0.634543116972111,52.08626917468359],[0.6882227901504621,52.084761609661484],[0.7031465619650703,52.06525960424824],[0.6986619369995992,52.036742001443145],[0.7611172729446025,51.99747151340057],[0.7871285227639078,51.96312294117172],[0.9618748047792565,51.97691784528325],[0.9714543364493124,51.96226311645057],[1.0538895865360018,51.95298707449484]]],[[[0.9552862131890265,51.613158668338826],[0.929836417317631,51.5924407804186],[0.8535862635960143,51.55693563687106],[0.8326947354744902,51.575764390914856],[0.8667954806277294,51.59518113969875],[0.8743444096675717,51.6141452911732],[0.9552862131890265,51.613158668338826]]],[[[0.5564907911179375,51.54443320782718],[0.6279235284488891,51.52739438614293],[0.5733027893930398,51.507826377686115],[0.5413098833452636,51.52012304634246],[0.5564907911179375,51.54443320782718]]],[[[0.9933059816865466,51.803521118305866],[0.9965833315563373,51.79123555447819],[0.9457615662441299,51.77471657870808],[0.9018432784453694,51.78614701947032],[0.9435822993844454,51.80692588951911],[0.9933059816865466,51.803521118305866]]]]},"properties":{"objectid":133,"ctyua17cd":"E10000012","name":"Essex","namew":"","bng_e":575269,"bng_n":215407,"long":0.54104602,"lat":51.80981827,"st_areasha":0.451527543814105,"st_lengths":10.91849022630155},"id":"133"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.665766220034186,51.98747834395135],[-1.662540859971898,51.96399513426894],[-1.6152019216305575,51.93767243483592],[-1.6455423414051324,51.92228532690723],[-1.6863634522107418,51.866284504427256],[-1.683765641770151,51.80133118099013],[-1.7007173524230552,51.77057846252694],[-1.6855214565491679,51.73062910235211],[-1.6830722087146341,51.690106512506475],[-1.7110684853215048,51.67178977038253],[-1.7886286158171742,51.666998875898344],[-1.8504951863029646,51.65628177648375],[-1.9630651497360532,51.65865281567585],[-2.0155997728104467,51.65051231079542],[-2.0571808287314184,51.67243971222388],[-2.1525426991854033,51.590340521698636],[-2.2229488352197677,51.59610901521978],[-2.2725632013298878,51.57758986717954],[-2.300102044073242,51.5914808638517],[-2.396372756796495,51.60009647337449],[-2.388183908859503,51.637172627315806],[-2.460442534994172,51.6525994097359],[-2.493034437188726,51.651898770412856],[-2.534741730045994,51.67724246067195],[-2.4900470719140344,51.700146774954646],[-2.4818546977352867,51.725646471508355],[-2.432622444569347,51.73622023157935],[-2.3820376784952373,51.75916744622157],[-2.404640085870426,51.77280682967239],[-2.477574821420035,51.74004086549445],[-2.505334085298955,51.71037965869522],[-2.609987243915384,51.672406096465124],[-2.6487523039748453,51.63138201317031],[-2.679213041347964,51.646860135188035],[-2.68252415806262,51.6685919250782],[-2.668059205966756,51.70576968352498],[-2.6870889405013827,51.730758159562356],[-2.66953510226233,51.742694717188385],[-2.680448687356204,51.76892505804591],[-2.6503979760848893,51.826118788052554],[-2.598366790793932,51.856486393433215],[-2.5222324175911695,51.86468840654567],[-2.439314567912163,51.899505879893354],[-2.490187816713558,51.95497101669997],[-2.4949136065768585,51.981066870240795],[-2.437294575483463,51.99715839194715],[-2.399019643241104,51.99613721176382],[-2.3513816902120084,52.02134981144559],[-2.3247136673010687,52.003558241020926],[-2.312623472194673,51.97649649851553],[-2.2513653434350545,51.966556588716514],[-2.2206197431058285,51.995487450686255],[-2.185090751336304,51.99055175815806],[-2.1806863638837513,52.04171819224172],[-2.1581412028534146,52.050195565174135],[-2.118061574081537,52.014375344147766],[-2.03826059205187,52.0095528690706],[-1.9841443771604759,52.03586923098118],[-1.9317390747976333,52.02994925565457],[-1.9134549501849847,52.044450856023104],[-1.8390600762606937,52.00677302775398],[-1.8297611843303798,52.03906076574265],[-1.863458692363963,52.05340679688709],[-1.7894277695750702,52.10636218306922],[-1.767659419545737,52.11257967211509],[-1.693992808520477,52.039515830791856],[-1.661077814089026,52.0316021385288],[-1.6244306844277503,52.03896958168178],[-1.665766220034186,51.98747834395135]]]},"properties":{"objectid":134,"ctyua17cd":"E10000013","name":"Gloucestershire","namew":"","bng_e":389595,"bng_n":213465,"long":-2.15234995,"lat":51.81970978,"st_areasha":0.346056637689257,"st_lengths":5.643094236110422},"id":"134"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.9861438004951992,51.36284730376099],[-0.9177672508571391,51.364555694590535],[-0.8778743240400217,51.352590608670596],[-0.8373662231718413,51.352870965123884],[-0.7754834567952571,51.33195882454106],[-0.745670820351279,51.310033310789606],[-0.7305084188276396,51.254901956461026],[-0.7455579896086988,51.23045850825446],[-0.7758743399280092,51.24191191680245],[-0.8207952620908827,51.239272471348386],[-0.8455485366348512,51.20013660192359],[-0.7692997300976572,51.11714715451848],[-0.7535002488365876,51.086461002074486],[-0.796953742720234,51.063894407501834],[-0.8501304025951981,51.05934149251681],[-0.8528287149724179,51.0448486785246],[-0.898524957959637,51.01767302339226],[-0.9575972503120624,50.890638437015184],[-0.9264656726518297,50.86410118182499],[-0.9324933004246532,50.84605935885327],[-1.0206407518683704,50.83906876221454],[-1.022644136516874,50.8520828182684],[-1.1158620268102482,50.85828097998416],[-1.1160634254858905,50.843859636913635],[-1.1523406765801383,50.84111031049338],[-1.116428633873511,50.78801877954396],[-1.1379889851027656,50.77384022105031],[-1.1919413030478836,50.79094835798128],[-1.214158888720931,50.80930674950781],[-1.3064179020636857,50.84068947454057],[-1.3651206467995962,50.880048483751466],[-1.3219879788613298,50.90096281688142],[-1.3669285233318647,50.94687696919772],[-1.4210474739609253,50.95168530513365],[-1.47732986158303,50.92857218805693],[-1.474077916661713,50.91171472365647],[-1.4303794717343976,50.898048066466],[-1.3723787000161565,50.85525838646629],[-1.323469990546812,50.827674678344636],[-1.342021899989902,50.7860089377632],[-1.3883510534575407,50.78592013960366],[-1.4192074151892484,50.76648457070729],[-1.513795011629668,50.753240004023894],[-1.5455445755209212,50.72702026077735],[-1.5837061320315229,50.718978397136254],[-1.6925548096559169,50.73736253445435],[-1.744175625304024,50.74746625576404],[-1.7490659785112825,50.779521175462776],[-1.7975300298861612,50.783847120449195],[-1.8055725482336697,50.85922713602446],[-1.8509510751312064,50.85873355301197],[-1.8485629632093605,50.889895558334274],[-1.8249603505389018,50.8957787325034],[-1.810665301061988,50.92721090585957],[-1.8804078300564697,50.92496412599456],[-1.956828450271928,50.98983640162953],[-1.8358210249195395,51.00942863332568],[-1.800322637079205,50.99140155743686],[-1.719626263040766,50.976788051728136],[-1.6616694223051809,50.94528562872972],[-1.614429689977385,50.97950171733129],[-1.6288158290864203,50.99910118946923],[-1.599408692456393,51.02373549180044],[-1.63497199605996,51.04089314270527],[-1.626261142037265,51.11734386322962],[-1.662986840969097,51.12719740303862],[-1.6539979147711392,51.15597454568967],[-1.6897998211040317,51.214772728279684],[-1.6335522732180152,51.21752001953422],[-1.6074374826528697,51.252773591229186],[-1.5451711149542007,51.2451022320833],[-1.525238331582898,51.30706972988503],[-1.498313394846491,51.32937870646305],[-1.4449518712310692,51.348120688519884],[-1.415646683546811,51.37188558835015],[-1.3528975318947687,51.3672641827967],[-1.3123640179842369,51.37306248344777],[-1.2021023687285037,51.366189937216745],[-1.1769137539657777,51.35732417137433],[-1.115810357161422,51.36046601859283],[-1.086638618076961,51.383915268975386],[-1.0500352656142127,51.358147490814986],[-0.9861438004951992,51.36284730376099]]],[[[-0.9691185963453108,50.834543259464795],[-0.9464718982586646,50.77713757094307],[-0.9949116931193203,50.79814690125943],[-0.9691185963453108,50.834543259464795]]]]},"properties":{"objectid":135,"ctyua17cd":"E10000014","name":"Hampshire","namew":"","bng_e":452858,"bng_n":127535,"long":-1.24735999,"lat":51.044731139999996,"st_areasha":0.472104834304588,"st_lengths":6.729423957254472},"id":"135"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.0680988390909647,52.005778988210636],[0.0964330755268179,51.98431646793159],[0.11798487150542769,51.94805892817794],[0.12473501281141353,51.884577617763796],[0.17932167835357404,51.895546127152954],[0.15073990262521875,51.797043039005985],[0.09922748496126133,51.783224833460224],[0.02677219058494984,51.77417416880377],[-0.013006229153347704,51.74274629150909],[-0.011945070507749733,51.68087508142082],[-0.10580464956410651,51.691872761219884],[-0.1635285074338526,51.685919349099606],[-0.18211040027392755,51.66860072404512],[-0.24937292102265474,51.6560543262471],[-0.2554826559989465,51.64328461509382],[-0.3044827851516061,51.63634730328636],[-0.3166961792844063,51.640531747143314],[-0.4040719017959873,51.61318040585195],[-0.4571519025374755,51.61229119398433],[-0.49706355413889014,51.631694758707056],[-0.5006168348982101,51.59968735199061],[-0.5178573367458625,51.60024708013958],[-0.5374129471489937,51.64290375400594],[-0.5051294989264079,51.673072532772096],[-0.5487182625369655,51.682666693713884],[-0.5504360404900694,51.72303692581443],[-0.5864031630746922,51.75210923585348],[-0.6129598427217502,51.74742082271371],[-0.6734946863298887,51.76846493251156],[-0.6826751582311203,51.79720183949422],[-0.7457017084662425,51.84208590743958],[-0.6923949193891872,51.85706158092813],[-0.6672394230600958,51.815802312327776],[-0.6118940876411898,51.812036637781546],[-0.5536538831194093,51.82670422422149],[-0.5197530428678192,51.805087220199994],[-0.5018436171883423,51.83678634831227],[-0.45408747165868135,51.853024274251766],[-0.42152536310419464,51.85019733274163],[-0.374079260648557,51.829187378295785],[-0.3395104066790964,51.8495978599542],[-0.3548582106370759,51.874006795777916],[-0.3856411184420381,51.91567270902925],[-0.4058504802146672,51.943422050688014],[-0.35025115916283767,51.957568774979904],[-0.35874773621821987,51.98553721307286],[-0.31158256308401633,51.98210111217753],[-0.28340245965495114,51.996651320902686],[-0.260282594065643,51.979696294449354],[-0.20128254874981621,52.009815313726676],[-0.21951905336078426,52.03673123745756],[-0.19500838262990783,52.062404541837054],[-0.1573072484299587,52.08053634557683],[-0.15514794921767816,52.053050863207716],[-0.10772209769584151,52.02834548385795],[-0.024441424631220343,52.06330556629979],[0.007157135893919531,52.04952283721008],[0.04027768926476938,52.05331686108519],[0.0680988390909647,52.005778988210636]]]},"properties":{"objectid":136,"ctyua17cd":"E10000015","name":"Hertfordshire","namew":"","bng_e":518883,"bng_n":213642,"long":-0.27699,"lat":51.8087883,"st_areasha":0.214037712014287,"st_lengths":3.276151252740182},"id":"136"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.4592720184896848,51.45554019772288],[0.4909444969917445,51.438676778011825],[0.48920711921402926,51.415326245310894],[0.4310806033879544,51.38803318098746],[0.4012542513834205,51.35295545103418],[0.45345695177769585,51.34061079185551],[0.45694426816424993,51.36805773197966],[0.5439749226054005,51.327896510416565],[0.5634285453919006,51.338743069937664],[0.6109202839447789,51.3364740525364],[0.6268981628207939,51.37473046054322],[0.6952560910965531,51.37982088412741],[0.6958645139370105,51.4072812691162],[0.7584800596079049,51.38326483430558],[0.7647630840498891,51.363079896321096],[0.8975994496556723,51.344404983004495],[0.9977325284342555,51.34755808703699],[1.0248037075259049,51.36393310832722],[1.1993123607776397,51.37985056805019],[1.263130812637712,51.37767450277698],[1.4248993010627373,51.393781662794424],[1.449559851007166,51.37748958327859],[1.4363603178751987,51.342672270909475],[1.3675724812858334,51.31338599147125],[1.4025392699721806,51.23873378014076],[1.4010341511059892,51.1651733421769],[1.3795480604954378,51.14217136421803],[1.2676620341763396,51.10168873664679],[1.2211048656978392,51.09810551475863],[1.162980139522631,51.07284018602667],[1.0755645024007094,51.06348133449694],[0.9973130396658689,51.025078074394514],[0.9641048842338478,50.9680806232231],[0.9783785613223586,50.91284159846191],[0.937191731314158,50.91230625902756],[0.8547016711460174,50.923726134554386],[0.855932831335906,50.95313005341018],[0.8134297059170308,50.94901289952662],[0.778923467245022,50.989494366073075],[0.7405791630987437,51.00067953293501],[0.6991889010477621,50.998493858405766],[0.6620749620906281,51.01747561141127],[0.6276317200286599,51.017854448125206],[0.571983685399573,51.00345794253093],[0.537570831429548,51.02167628713187],[0.46734924257430066,51.03301034755043],[0.47137238762638844,51.049080138038846],[0.41823896355816714,51.062629651338284],[0.39161409281695114,51.085786202072484],[0.3646609200662283,51.088161243247725],[0.32454452251249677,51.11213370480755],[0.2756430525856217,51.11235760901735],[0.22741825325061882,51.124243255123076],[0.1625715291535812,51.116400804454486],[0.1259062529720154,51.14694918795561],[0.04998951120779793,51.14265337745235],[0.052573758972641826,51.1806268524482],[0.033572629174329904,51.214340365716225],[0.05758116523941226,51.244916349410914],[0.0423690851659444,51.2926742396254],[0.08155265733006445,51.29183655711233],[0.08500075428219134,51.31602326146526],[0.1369309717877627,51.34417422146407],[0.15320986274576853,51.37803626046599],[0.148876715089159,51.408483499015176],[0.15584895206831106,51.43087652713092],[0.20308081263021904,51.45797004538224],[0.2172303940682241,51.47950776607149],[0.2764912265896555,51.45356901959548],[0.30991824733007434,51.46695963797782],[0.3284534851410399,51.45084397397113],[0.40653516846407456,51.44329601350114],[0.4592720184896848,51.45554019772288]]],[[[0.901989494720226,51.4164863365761],[0.9509942293010454,51.373475495298806],[0.8971373528074196,51.35433258558129],[0.7880748361855581,51.37338923412676],[0.7310035884456738,51.401372265518546],[0.7454549589800195,51.440422166950384],[0.7915727996457917,51.43926678183743],[0.815443470540572,51.42793061970326],[0.901989494720226,51.4164863365761]]]]},"properties":{"objectid":137,"ctyua17cd":"E10000016","name":"Kent","namew":"","bng_e":590262,"bng_n":147263,"long":0.72155303,"lat":51.19290161,"st_areasha":0.45590158571489,"st_lengths":6.889388298234008},"id":"137"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.046127578024482,53.85012727965119],[-2.061248211434986,53.825621275502385],[-2.1283568941545354,53.79901678429809],[-2.129520820128903,53.754576150469916],[-2.173293593124015,53.72299699191859],[-2.146327983648689,53.68221621660604],[-2.1638537819256953,53.65485060757044],[-2.2003901717682197,53.652874191791454],[-2.2365761551646415,53.6669914291121],[-2.269867633683532,53.646120498163384],[-2.2717895937139474,53.614498192838255],[-2.3155612155768495,53.655061636186474],[-2.3712379601629436,53.667064635725296],[-2.433870172969307,53.719166170483334],[-2.4463180869093435,53.766574990644244],[-2.46580899378921,53.78079908630974],[-2.5645935184753057,53.742443555026966],[-2.5319341284564416,53.696426986117444],[-2.5323463677898417,53.66488624120802],[-2.51132464031906,53.626978993186924],[-2.574004515395245,53.59427546803937],[-2.6259081786187153,53.59366817384807],[-2.636162870019632,53.60827510641195],[-2.6893141663148867,53.60428638650848],[-2.719223473583611,53.57609773232542],[-2.7047386635576345,53.56184458046397],[-2.7305206474091506,53.52058426775068],[-2.8167409164593096,53.512158425971506],[-2.8249650609879495,53.48519340195486],[-2.8879955394617696,53.5038129763887],[-2.947850941666786,53.544323892134855],[-2.975995299742465,53.515275026522204],[-3.046701095278536,53.54294200826797],[-3.022622701675516,53.569581765487044],[-3.0321508568757167,53.598513625704186],[-2.981824915686502,53.62218903309832],[-2.940144702315365,53.65859484048042],[-2.9448436285298385,53.6787640807986],[-2.944445303507109,53.679026019136415],[-2.9503289309345746,53.691549869132075],[-2.950485670176704,53.69171765114959],[-2.955215649082106,53.696487027555236],[-2.935904436639646,53.725413345250615],[-3.0390205144843208,53.74748041499009],[-3.056853125470525,53.77656483529984],[-2.9964811841584833,53.774489711731746],[-2.9846142070791757,53.793762678705605],[-3.0106580321416345,53.826179097987904],[-3.019755784401127,53.86858531606043],[-3.047956520076525,53.875718171956976],[-3.0501824932266572,53.91918479504318],[-2.9276326271432254,53.94938134217614],[-2.876478928359063,53.944776288995456],[-2.8681458498502934,53.99313752717609],[-2.9002329275068064,53.99202146222166],[-2.906027911458125,54.039647438079726],[-2.8894807644249454,54.06644082738319],[-2.821404141387177,54.08891289601428],[-2.8085812758044426,54.10813746417358],[-2.8694923480925922,54.176676702069074],[-2.837217621495199,54.17416236939874],[-2.7992303248188364,54.197721867670964],[-2.7364898992885855,54.16901638030265],[-2.6757750482790357,54.16374803844218],[-2.62495643419129,54.195558143794244],[-2.5507490302427414,54.20028202439681],[-2.520067047955081,54.21643587451695],[-2.460859457097456,54.22670513133767],[-2.4799553088896005,54.20230154468146],[-2.5605027102311055,54.15304079739582],[-2.56341261419999,54.12468131519148],[-2.46688419894582,54.0757266800432],[-2.469547885625616,54.04619995876203],[-2.4258244323508507,54.03808250530432],[-2.361997009753395,54.040657211262214],[-2.3523555579618005,53.994660837528556],[-2.318826180882752,53.99371557181712],[-2.2845022689637062,53.97379691949317],[-2.234574890218198,53.98177008572179],[-2.1960148935716575,53.96956196251551],[-2.169784526633805,53.93699632142403],[-2.1243468171510926,53.92318655421701],[-2.0748468241208116,53.86235332094992],[-2.046127578024482,53.85012727965119]]]},"properties":{"objectid":138,"ctyua17cd":"E10000017","name":"Lancashire","namew":"","bng_e":369784,"bng_n":440758,"long":-2.46091008,"lat":53.862159729999995,"st_areasha":0.395967813899009,"st_lengths":8.221012402727633},"id":"138"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.6641110845581011,52.75669070861022],[-0.753328472030546,52.736554803462354],[-0.8011999142438526,52.73672283908866],[-0.8217615737368078,52.715655596929196],[-0.7858137595965218,52.69422909000144],[-0.7822048710571607,52.66912032244585],[-0.8087028798332199,52.64610759129323],[-0.8193625170657128,52.60966091332142],[-0.7648028977347394,52.581177069267255],[-0.7136717674372903,52.52494694664517],[-0.7561696911774902,52.51097775122315],[-0.8501336383558851,52.52164919385615],[-0.8834213370242878,52.51379114804399],[-0.9045911513597389,52.46286250819912],[-0.9471016404275474,52.47568306612152],[-1.0007049512716435,52.47092358045978],[-1.0445230015344578,52.44573149071664],[-1.1257164524515133,52.41768027542531],[-1.138549041504234,52.40202699874794],[-1.2016265940912376,52.396714994802096],[-1.2364563674665874,52.43571006636739],[-1.305958091292041,52.493377585308224],[-1.4189677017971576,52.53775060630636],[-1.5228769196332905,52.57058300340384],[-1.5607652225361903,52.59613848940069],[-1.5646175863317353,52.63122463341102],[-1.5428106023265968,52.64760290125383],[-1.551777676797542,52.66743797508343],[-1.5896512766842648,52.687243697739405],[-1.5975472127328771,52.70040461128474],[-1.55008630204037,52.72026134528579],[-1.5624991055484543,52.750569634981616],[-1.5039502042376967,52.76744478544941],[-1.417711913673088,52.80159746465222],[-1.3811311584753412,52.84603037330402],[-1.3060005653729831,52.87706150748352],[-1.2678944952339748,52.87334936778001],[-1.274369354061605,52.83611017574492],[-1.2553701973758962,52.804132419676364],[-1.1961433835095363,52.79014476297135],[-1.119169289929971,52.81912983607401],[-1.0744420295752093,52.82470575866478],[-1.0497731024458972,52.81342734289848],[-0.9750576166148903,52.8292077153647],[-0.9169298093623865,52.878910649407885],[-0.8576378558016131,52.90562136673361],[-0.8339136422000024,52.94585933014491],[-0.7782841704772636,52.976901487314706],[-0.7553182049703651,52.9513569658522],[-0.7745474028395734,52.907321382176974],[-0.766597205295966,52.886777253168646],[-0.7336790947136365,52.8669011612605],[-0.6820494863938507,52.81177520915952],[-0.6641110845581011,52.75669070861022]],[[-1.1572590526623117,52.69150391127744],[-1.17909233284405,52.67637880284042],[-1.1906623250054622,52.64037548614073],[-1.1436269806997643,52.58800714861195],[-1.0743389456849854,52.61342331973134],[-1.0469708419299764,52.63460179543745],[-1.0750866726110075,52.669606895242964],[-1.1188192315215133,52.673167373276556],[-1.1572590526623117,52.69150391127744]]]},"properties":{"objectid":139,"ctyua17cd":"E10000018","name":"Leicestershire","namew":"","bng_e":442147,"bng_n":310191,"long":-1.3779,"lat":52.68778992,"st_areasha":0.276921113802614,"st_lengths":3.837977137554244},"id":"139"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.2921102739691719,53.61324544981858],[-0.18752484329604613,53.56358942711131],[-0.21987805912431213,53.532582884893145],[-0.20408211759485084,53.5117433097069],[-0.21060131299935847,53.486264472927985],[-0.1585047317071826,53.46155929052975],[-0.12034144669956959,53.43354041845646],[-0.08220658746324716,53.45112621500374],[-0.10781742673202643,53.469838034698455],[-0.0752581087738804,53.489310642173336],[-0.06709126365007023,53.51681285732843],[0.01728008021234473,53.52533376734044],[0.0565824645099724,53.52124603118034],[0.08492328398318705,53.49696904388719],[0.16816913439885184,53.476771579245906],[0.18780784395767114,53.43768215800611],[0.22854179247059392,53.40253306504985],[0.24366959707504066,53.3721907045383],[0.3221790249428409,53.26644408722575],[0.35562564640730443,53.19203127362533],[0.3482088682454787,53.10915710042076],[0.239191177431735,53.045920194262465],[0.15141685380558556,53.00808120478473],[0.05166480878472157,52.917171784251366],[0.08837099782408586,52.89510225036946],[0.1763192988973401,52.87409326359415],[0.21506628528163674,52.82845841552438],[0.20583885797771018,52.78754837166093],[0.1712119779512591,52.73820306831789],[0.13296091731331217,52.739284842122686],[0.04413469895803246,52.71436254989271],[0.047996921121807645,52.681030440003724],[0.021483738984159118,52.6648682207927],[-0.03128748313002916,52.661513802620846],[-0.05803990651565982,52.67407251843292],[-0.10221191284870201,52.67218705648838],[-0.13951725002027615,52.654842600206734],[-0.20605184061912496,52.66805381823008],[-0.2586781594686727,52.65162599684322],[-0.27909639598107105,52.66598486491051],[-0.33996382057301844,52.666047573737444],[-0.41751159977968655,52.64675459415014],[-0.4504894226479337,52.65410595562628],[-0.4947846495911108,52.640295602960634],[-0.4950369984579197,52.64021791592501],[-0.5066851785772997,52.65950696817299],[-0.46163987747752344,52.66904244565325],[-0.43045403022847495,52.70540213939813],[-0.4945415124799979,52.709633397464245],[-0.5424444291662667,52.72326170846202],[-0.5399848139471715,52.73838196865387],[-0.6086036922058042,52.75969375086686],[-0.6641110845581011,52.75669070861022],[-0.6820494863938507,52.81177520915952],[-0.7336790947136365,52.8669011612605],[-0.766597205295966,52.886777253168646],[-0.7745474028395734,52.907321382176974],[-0.7553182049703651,52.9513569658522],[-0.7782841704772636,52.976901487314706],[-0.8001953193576696,53.002171701164],[-0.7884189579677354,53.02583188393521],[-0.7608314232307976,53.02938898771254],[-0.6984862479411618,53.075446443399585],[-0.7296214192922434,53.09788116858198],[-0.7168858239207907,53.11942315025908],[-0.7181621633523605,53.17726677534233],[-0.7641400569172561,53.18152276206672],[-0.7305701401990063,53.21073533756669],[-0.6758732231699014,53.21762308144099],[-0.6665778565820233,53.23968122450981],[-0.6880277081114059,53.258370084512705],[-0.7765112110227506,53.24675176548254],[-0.7500925988935023,53.293735664070596],[-0.746225734429288,53.30348632863212],[-0.7532967916127973,53.31348636530447],[-0.7485120898602418,53.32265485104148],[-0.7659321917164448,53.330100497440924],[-0.7580914758401036,53.35385685461108],[-0.7728290565149223,53.364158070639405],[-0.7904077448207545,53.363461016913334],[-0.7851549540370684,53.374575878375026],[-0.7751517148789162,53.377076015246814],[-0.7839823028401725,53.38616318608308],[-0.777237794887526,53.38940502622194],[-0.7757197707500154,53.39123348733648],[-0.7776096555603544,53.398068451798565],[-0.7852487937959722,53.40223196573356],[-0.7940806596938614,53.4149079387513],[-0.8172204497631128,53.42633165438326],[-0.785220993952862,53.461913857239665],[-0.7672330295798133,53.49888402068194],[-0.7510554481496001,53.500516631038636],[-0.7385765174914809,53.51982618513125],[-0.6244885002432738,53.51281775583567],[-0.629750080101303,53.45819703116899],[-0.5517905031284158,53.4594979247903],[-0.48662721946976717,53.48044826497636],[-0.4758356382033071,53.50895743304005],[-0.4050714757671585,53.517595351145474],[-0.4306616396221443,53.546316108102815],[-0.4196655884953202,53.56375173405621],[-0.33593526160223064,53.55860506507264],[-0.2921102739691719,53.61324544981858]]],[[[0.2687399509887882,52.81580513060322],[0.24506944939639652,52.78450342459428],[0.272193521214831,52.772785432802436],[0.17204237055977956,52.7378632765699],[0.20568103415320138,52.78234045524874],[0.21679924199224843,52.82086173158456],[0.2687399509887882,52.81580513060322]]]]},"properties":{"objectid":140,"ctyua17cd":"E10000019","name":"Lincolnshire","namew":"","bng_e":517985,"bng_n":358543,"long":-0.23882,"lat":53.11104965,"st_areasha":0.796638941757894,"st_lengths":7.622544187882402},"id":"140"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.4800506940850937,52.47184266240987],[1.4321928343326817,52.44515634818782],[1.3579123011126057,52.42422307623491],[1.3163432655301222,52.387386374882226],[1.281244334958899,52.3885412554755],[1.214050543998212,52.35539181588052],[1.0299283961793435,52.378716297919766],[0.967442219783436,52.3700936799803],[0.9367263690275536,52.38665425119365],[0.8668454523565856,52.3903269637193],[0.8382888522495477,52.40070540992764],[0.8081449631203554,52.3895057253099],[0.6843292499956988,52.39918237566701],[0.6684379416585102,52.40915722772479],[0.7175272304980922,52.44670044367149],[0.6661320871269254,52.46248720312286],[0.6149946579778884,52.44905810544816],[0.5547972984574017,52.45600986486431],[0.5238118858106873,52.448182221533216],[0.4455155028389868,52.44735405474677],[0.42932076953871956,52.4364091624538],[0.42850633899718105,52.454634866207016],[0.3671228690259909,52.495925397939686],[0.30934016941409936,52.51360442990142],[0.24568547600472357,52.500342429860154],[0.342193593560296,52.58381041551917],[0.36488916440424646,52.61010344361995],[0.36255607030722103,52.669678776255466],[0.3733801476764711,52.68762927037545],[0.3721511494567835,52.693128062610924],[0.36147820675466846,52.69973605617497],[0.35435992796914206,52.71028907248365],[0.3955060654533895,52.74754608728301],[0.35774983428825635,52.81252589575439],[0.4326552245597668,52.85296572099213],[0.46545316143505033,52.8980922110876],[0.48999899925524915,52.94774953601319],[0.5364274585612065,52.97449386819841],[0.64433760819486,52.97160176720871],[0.7722177155759482,52.97882081053291],[0.844181821834411,52.97717738313065],[0.8509786541424091,52.95775306745105],[0.9196845642920266,52.9656196145545],[1.0154325325861464,52.9554623323217],[1.0280133240564737,52.97042980219453],[1.1150484643159757,52.95281481994891],[1.2419693700911694,52.94240111492047],[1.3431129073356374,52.91994727105066],[1.4138647814353362,52.89056121273069],[1.4971172823375127,52.844430768066445],[1.5864512561213928,52.801677408986166],[1.6975466587521169,52.723512018565714],[1.74521129196836,52.626249990345684],[1.6578992297664854,52.60385771046589],[1.5918996422554983,52.5582867646234],[1.574296655167302,52.55825344833892],[1.6462737422402256,52.515159332538076],[1.6820389427438158,52.49523455583102],[1.6757729046966006,52.48425641560203],[1.6690584853616315,52.48193487779332],[1.6710577951819232,52.477056945122854],[1.662776970881339,52.474745954563105],[1.653696169943089,52.46840791589352],[1.6434874374960486,52.47270962954667],[1.6335219806557006,52.46287147443991],[1.6072032265485063,52.466734236197],[1.5872286390912222,52.47885535988786],[1.5676682829657125,52.47466609836266],[1.5574445534242045,52.4577724290553],[1.5299072548168056,52.468412104036304],[1.4800506940850937,52.47184266240987]]],[[[0.2455645072969901,52.50054077893475],[0.2038530451827114,52.54538680735618],[0.2015018486322333,52.60311764666301],[0.21928353101094444,52.62179374438671],[0.17204384994454358,52.64867542733003],[0.18470127714306273,52.6778751569139],[0.1540466225544037,52.68214520723643],[0.17204237055977956,52.7378632765699],[0.272193521214831,52.772785432802436],[0.24506944939639652,52.78450342459428],[0.2687399509887882,52.81580513060322],[0.33451079413868,52.81722755860585],[0.35190755229251636,52.80942292263069],[0.3922216666973668,52.747991019670735],[0.35428480490065795,52.71697490686739],[0.35423221884263967,52.706101543952],[0.3603580939516746,52.69953036953183],[0.3712750254229036,52.69214385175826],[0.3717058591388991,52.68617015093264],[0.3597399134670809,52.666220967524566],[0.3641792791512444,52.610827046232146],[0.3402871989958385,52.58310714028323],[0.2455645072969901,52.50054077893475]]],[[[1.7404337542151893,52.532084956556446],[1.6656534605396018,52.54962925568651],[1.6288391271248202,52.52609357416003],[1.6280714046724256,52.55555455320098],[1.6501990716306523,52.593987472045114],[1.713418316003299,52.611514905289596],[1.724935494578233,52.60331210976699],[1.7404337542151893,52.532084956556446]]]]},"properties":{"objectid":141,"ctyua17cd":"E10000020","name":"Norfolk","namew":"","bng_e":600546,"bng_n":312278,"long":0.96466202,"lat":52.67110825,"st_areasha":0.713697463945706,"st_lengths":10.09220615537683},"id":"141"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.4950369984579197,52.64021791592501],[-0.4947846495911108,52.640295602960634],[-0.4735150815549787,52.62821625187945],[-0.49071875166822565,52.59051618427543],[-0.47882787240757807,52.57362712759078],[-0.41539468381677125,52.578724632436774],[-0.4020756262883083,52.54830343825398],[-0.4118622970065644,52.5247355142335],[-0.3543621113215636,52.506477103936106],[-0.3416080420766434,52.46692515417345],[-0.3718822078967605,52.437042639507126],[-0.44377837666991127,52.383841325617595],[-0.48477723488065294,52.38161556740545],[-0.49871625535007524,52.36008040169014],[-0.4653831544082436,52.32293844795191],[-0.5140679965400068,52.31468228665915],[-0.5420562439996388,52.28971784140617],[-0.5312077392449623,52.2703885373021],[-0.5657099849270253,52.25345466739992],[-0.6106327246197338,52.27948386229133],[-0.6536713540489245,52.268275336438535],[-0.6373485824702811,52.22730425558785],[-0.6681533752772566,52.195021302891746],[-0.7054731285812181,52.191557922860795],[-0.7653495074729904,52.171086995969006],[-0.8714668397220748,52.11174073684646],[-0.8314369659424301,52.07193522772951],[-0.871343514790567,52.04024038128949],[-0.9060486790025379,52.021209972263364],[-0.9678233909359051,52.07089931934905],[-1.0263351484475152,52.07567049080143],[-1.0529761872004428,52.059649022685164],[-1.1172409438136697,52.04733396379231],[-1.1181037587806486,52.015415580965225],[-1.1343466372866828,51.997286235072636],[-1.1962782152666023,51.9774216230104],[-1.2416301582044298,51.986283418346034],[-1.2808822191382774,51.98235418859588],[-1.2781809380990126,52.01426247743234],[-1.3129358914773661,52.05144211995878],[-1.320839876458308,52.087617205370634],[-1.2529432248491048,52.10386286727845],[-1.2768449070659926,52.117064574971096],[-1.331910852802821,52.16847136366346],[-1.3131481242857035,52.19045347714717],[-1.2547945934948643,52.198875211722566],[-1.2846578950450294,52.238562576003005],[-1.2179120824758343,52.26178801570529],[-1.2235818313356503,52.28682249836055],[-1.2092756716341455,52.31469517754135],[-1.2652791992748007,52.32836059636537],[-1.224206553488841,52.348078290681485],[-1.1721403252150253,52.361284473400644],[-1.2016265940912376,52.396714994802096],[-1.138549041504234,52.40202699874794],[-1.1257164524515133,52.41768027542531],[-1.0445230015344578,52.44573149071664],[-1.0007049512716435,52.47092358045978],[-0.9471016404275474,52.47568306612152],[-0.9045911513597389,52.46286250819912],[-0.8834213370242878,52.51379114804399],[-0.8501336383558851,52.52164919385615],[-0.7561696911774902,52.51097775122315],[-0.7136717674372903,52.52494694664517],[-0.6609262551417601,52.56892788931157],[-0.6030319982273227,52.58857304161353],[-0.5625310406741733,52.586257107480435],[-0.5174081658533396,52.642360980575745],[-0.4950369984579197,52.64021791592501]]]},"properties":{"objectid":142,"ctyua17cd":"E10000021","name":"Northamptonshire","namew":"","bng_e":477359,"bng_n":268708,"long":-0.86668003,"lat":52.31105042,"st_areasha":0.312166796272491,"st_lengths":3.909320301180709},"id":"142"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.21252774985492806,54.15757396506734],[-0.22167751800225233,54.13795299103862],[-0.3040689612127494,54.13625116256202],[-0.3238275432057094,54.15027783635401],[-0.37491327392763196,54.15409451325212],[-0.3907327642048699,54.1765022515786],[-0.43315470332606765,54.1640544383626],[-0.42708038545060845,54.13742412852167],[-0.46592983249496456,54.1076145533699],[-0.5246005757551302,54.08545635083084],[-0.5909931193361899,54.08704395641439],[-0.6798583646709631,54.036654888213434],[-0.6817887810266257,54.010336591861176],[-0.7304796809916638,54.01268254176682],[-0.7342473052681271,54.03024038198896],[-0.7991814623537721,54.019036526315574],[-0.8787093328685955,54.01684456642454],[-0.9252863772636601,53.99150000831963],[-0.9670363051804998,53.98590058914181],[-0.9706098539607524,54.02305563341167],[-1.0023307825387633,54.05532749566834],[-1.059702256353205,54.05659044599321],[-1.1407886348867464,54.02984219006595],[-1.1755022815042935,54.002179472005935],[-1.2220988043155216,53.979324467551066],[-1.1956314938975083,53.9223623129713],[-1.1500000830365593,53.893621526313325],[-1.1053317282758144,53.87582404554422],[-1.1271689241057175,53.86511086717371],[-1.127859230218462,53.86207804386754],[-1.1185817169718462,53.85490678602031],[-1.1265161440040288,53.832705492465436],[-1.104109138625006,53.8370776176389],[-1.0835850312233788,53.82133069185886],[-1.0565940185982754,53.8120705148433],[-1.048396616309958,53.80357539289099],[-1.047093894366924,53.79004031640841],[-1.0681392713095192,53.78610878799111],[-1.0375868381612463,53.777304337026465],[-1.034056101607007,53.76472547370258],[-1.0245408777585112,53.75950262224916],[-1.0014832191744176,53.76857893467104],[-0.9820628784981977,53.753222530496316],[-0.963902666973695,53.74650537542368],[-0.9615288659636008,53.73564288621117],[-0.9363252478111121,53.7313195321716],[-0.9116727728793421,53.73232337162722],[-0.9123432462429832,53.72813723254819],[-0.9039285686477001,53.72117084206167],[-0.9235541606951188,53.718857991703885],[-0.9616473768241462,53.707636627129546],[-0.9802880412592572,53.697100363391996],[-1.0388714135840473,53.69405394953105],[-1.0689337180158418,53.703962024228986],[-1.0856361761677817,53.66237423688244],[-1.0486591787772568,53.656037802603464],[-1.1903103447457966,53.63589881278091],[-1.2328411701830646,53.62109441607538],[-1.2536590132520473,53.64118026046157],[-1.2444136858421189,53.692410970890535],[-1.3020395796620505,53.741707037250876],[-1.2919579843726865,53.76717715869984],[-1.3138067643698719,53.781538713941416],[-1.3096696617246835,53.82287754556319],[-1.3384246810533682,53.85172672121212],[-1.312598388504,53.86529922118302],[-1.3210481189747156,53.90346274720895],[-1.2941748545850373,53.927046947159795],[-1.3395334632978688,53.940793039667994],[-1.3971764505319584,53.94251884407032],[-1.450921929802405,53.907116920210626],[-1.4987749116320401,53.91529112898337],[-1.6205320487142671,53.903379960118],[-1.7070789191560038,53.91911616058326],[-1.7272122459475554,53.91018207054702],[-1.8050858045654081,53.93900813272006],[-1.8621036910316775,53.940554722023705],[-1.9062699488982275,53.95836409812557],[-1.9661715771557624,53.95154719474817],[-1.9532229665658178,53.91169206823531],[-1.9807071440186519,53.89699192633725],[-1.976976745379659,53.875586794495916],[-2.021627771103965,53.87148311425523],[-2.046127578024482,53.85012727965119],[-2.0748468241208116,53.86235332094992],[-2.1243468171510926,53.92318655421701],[-2.169784526633805,53.93699632142403],[-2.1960148935716575,53.96956196251551],[-2.234574890218198,53.98177008572179],[-2.2845022689637062,53.97379691949317],[-2.318826180882752,53.99371557181712],[-2.3523555579618005,53.994660837528556],[-2.361997009753395,54.040657211262214],[-2.4258244323508507,54.03808250530432],[-2.469547885625616,54.04619995876203],[-2.46688419894582,54.0757266800432],[-2.56341261419999,54.12468131519148],[-2.5605027102311055,54.15304079739582],[-2.4799553088896005,54.20230154468146],[-2.460859457097456,54.22670513133767],[-2.4119667915333594,54.22667553644777],[-2.396775876104982,54.23936994286947],[-2.325643075266896,54.24142656378581],[-2.315510636805641,54.27027315388386],[-2.3230283395853917,54.3110715675997],[-2.309837310442731,54.32430391609381],[-2.3607448324072493,54.35493720548857],[-2.2974358950497162,54.37688844794445],[-2.3082089071145333,54.41647839766085],[-2.2928604493494618,54.439297829432235],[-2.2495341429855102,54.45193384737007],[-2.189309970178158,54.448968858127216],[-2.170207028131017,54.458189265323256],[-2.0863901378937157,54.468383342418235],[-2.061282446826624,54.480548116503314],[-1.9425365556167549,54.45338543948736],[-1.8591225157906592,54.48184807482971],[-1.8394250921934372,54.5084275594852],[-1.7929683456118255,54.484482301517914],[-1.7796867817187945,54.53186300707307],[-1.733081592140934,54.527726127459744],[-1.6969167976712356,54.53599605467514],[-1.6095114020287724,54.51989727903714],[-1.5551862530423364,54.484966988436724],[-1.4637887245691559,54.47353959457757],[-1.4348947878633567,54.487481799546345],[-1.3950386873846696,54.48566866198007],[-1.343616585036557,54.46414413344593],[-1.2532491832023993,54.49777016066531],[-1.234852612757038,54.51030367837296],[-1.1461836003920212,54.502809036009126],[-1.094509450449948,54.50674712408147],[-1.036836169552771,54.49403124274858],[-1.0033850244984706,54.502999144595776],[-0.9525727236514854,54.48800212300051],[-0.8941962034911626,54.49689851075857],[-0.8564739433169848,54.48785944375925],[-0.8486304467369337,54.529990161717535],[-0.794235713606497,54.55833881158782],[-0.7446411109976339,54.52852615715739],[-0.7129645351843124,54.533628047996956],[-0.6702622153281368,54.50074053324994],[-0.5933155672587986,54.48782268576929],[-0.5214602879610766,54.44695280742707],[-0.522768445406598,54.4162596060969],[-0.47170508442127357,54.397002870087306],[-0.43261773881675936,54.340127185322274],[-0.3965815734800344,54.27438333442427],[-0.3638742486967885,54.24507675189153],[-0.27537931180495434,54.21765024526354],[-0.2830680143765676,54.19498295180273],[-0.261303762557759,54.174822910649766],[-0.21252774985492806,54.15757396506734]]],[[[-0.9235112306579367,53.88074637864338],[-0.9482208691969163,53.86158764445514],[-0.9405523186337632,53.823431016229335],[-0.9200805814528508,53.81595623449357],[-0.9320887080266402,53.76217000064594],[-0.9732984869348229,53.75016807759562],[-0.9861786186475001,53.765207523809124],[-1.000933382668677,53.76956666097357],[-1.0216484431203412,53.77076286721348],[-1.0364713415783058,53.77764591572736],[-1.0476538761246843,53.789171076684795],[-1.0462515659561973,53.79012150630342],[-1.0462234810279938,53.79267602248137],[-1.0475416038611343,53.80384815367029],[-1.0422586992787046,53.8105878169751],[-1.0838576436145217,53.822550695059476],[-1.1047991137872373,53.8375725748154],[-1.1262526165641589,53.83317190605953],[-1.118070715889985,53.85491651128888],[-1.1270591258771674,53.864542987569735],[-1.100430455500316,53.87634111615051],[-1.095312271643195,53.884439658664235],[-1.0649529355287086,53.87456721600512],[-1.0081982644375103,53.88997597601144],[-0.9928265591975105,53.875190948904105],[-0.9235112306579367,53.88074637864338]]]]},"properties":{"objectid":143,"ctyua17cd":"E10000023","name":"North Yorkshire","namew":"","bng_e":429509,"bng_n":466515,"long":-1.55032003,"lat":54.09371185,"st_areasha":1.107149363570779,"st_lengths":10.105655066954052},"id":"143"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.7979515216445634,53.455314240860446],[-0.8182978294804002,53.425958504082644],[-0.7920524627501209,53.41146258473145],[-0.7861463450769293,53.40191535580993],[-0.7776485161652431,53.39687237685962],[-0.7782157104858243,53.3896149549671],[-0.7907388545137337,53.386105385755855],[-0.7865327208075996,53.374647404155326],[-0.791501735915574,53.36351253637537],[-0.7809157423668012,53.36089421779485],[-0.7744088254061694,53.36409521792092],[-0.7591480254602061,53.35363949206982],[-0.7669530877140005,53.33005443416573],[-0.7543626761957398,53.320184693969395],[-0.7540956063263593,53.31023252820955],[-0.7478709047176721,53.30444568761931],[-0.7637371930162544,53.299899865587236],[-0.7791193151035145,53.283608269906665],[-0.7765112110227506,53.24675176548254],[-0.6880277081114059,53.258370084512705],[-0.6665778565820233,53.23968122450981],[-0.6758732231699014,53.21762308144099],[-0.7305701401990063,53.21073533756669],[-0.7641400569172561,53.18152276206672],[-0.7181621633523605,53.17726677534233],[-0.7168858239207907,53.11942315025908],[-0.7296214192922434,53.09788116858198],[-0.6984862479411618,53.075446443399585],[-0.7608314232307976,53.02938898771254],[-0.7884189579677354,53.02583188393521],[-0.8001953193576696,53.002171701164],[-0.7782841704772636,52.976901487314706],[-0.8339136422000024,52.94585933014491],[-0.8576378558016131,52.90562136673361],[-0.9169298093623865,52.878910649407885],[-0.9750576166148903,52.8292077153647],[-1.0497731024458972,52.81342734289848],[-1.0744420295752093,52.82470575866478],[-1.119169289929971,52.81912983607401],[-1.1961433835095363,52.79014476297135],[-1.2553701973758962,52.804132419676364],[-1.274369354061605,52.83611017574492],[-1.2678944952339748,52.87334936778001],[-1.2474284867344636,52.898679881172484],[-1.2819412248068716,52.91073712871645],[-1.2877527445926944,52.969643030302564],[-1.333113086299079,53.03386335501074],[-1.343836987286295,53.06871048350297],[-1.303237831859633,53.08806458101651],[-1.325618086904342,53.15758879238979],[-1.2531739198396963,53.16549958973519],[-1.1988033460967245,53.1830707552121],[-1.2094260859443011,53.217677823173915],[-1.2026187513534978,53.26109808440998],[-1.166488773237461,53.277634524114944],[-1.1997439587158851,53.31141888147715],[-1.1486204609647075,53.338486855384986],[-1.1449152352490728,53.37123121425009],[-1.1160405764106827,53.407329766456485],[-1.0732673746887826,53.428037731257234],[-0.9956684231584063,53.43690645946646],[-0.9859762990661238,53.47165292953997],[-0.9355611586197483,53.50249581583017],[-0.9004676572557742,53.475135123388156],[-0.7979515216445634,53.455314240860446]],[[-1.1827499520478568,53.01854984400103],[-1.2139402851152568,52.99737696657468],[-1.246825747609364,52.95307952639996],[-1.158607577976511,52.90004207708114],[-1.152291878466599,52.93700630679655],[-1.0996804353030143,52.94195477779169],[-1.1435160250437093,53.0064815905539],[-1.1827499520478568,53.01854984400103]]]},"properties":{"objectid":144,"ctyua17cd":"E10000024","name":"Nottinghamshire","namew":"","bng_e":466570,"bng_n":359496,"long":-1.00655997,"lat":53.12850189,"st_areasha":0.279970005152919,"st_lengths":4.077661010007441},"id":"144"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.1181037587806486,52.015415580965225],[-1.0531899596480798,52.00252587327134],[-1.0952549677417664,51.95711386371477],[-1.0621318081356321,51.935128679046215],[-1.0935392393436132,51.893929379937845],[-1.0701853881443526,51.88205596730995],[-1.0619278409962476,51.832377911212575],[-1.1212026300964908,51.84533516338803],[-1.1101173140619949,51.81729908278737],[-1.1219637731088028,51.78707506046658],[-1.0828212657879703,51.76410915341563],[-1.031547435564903,51.757226989834635],[-0.953695698996512,51.75784929281156],[-0.9240960049258433,51.7477023860572],[-0.8877052144233062,51.71833908957825],[-0.8841563322480965,51.67377115851309],[-0.9249106647945382,51.665424026298695],[-0.9431757813364356,51.605030385245016],[-0.9393597735339085,51.57401063198603],[-0.8969017446190151,51.544860167263835],[-0.8782373407798332,51.52301570491176],[-0.8976708187524878,51.4870437511691],[-0.949187851737122,51.45951228916175],[-0.9618253355699835,51.493089773675024],[-1.0365778662746834,51.47522511085111],[-1.0554429898012927,51.492035776330965],[-1.1027970313571132,51.49016945555684],[-1.160818071096287,51.53458782846644],[-1.2046698261507345,51.52839312554323],[-1.2567907350036194,51.53703224874022],[-1.3263150462016142,51.55958089554281],[-1.3865774608802894,51.53995823708391],[-1.426607130513844,51.545598623078945],[-1.47075987157001,51.52860702209733],[-1.5129536787684401,51.55075944829082],[-1.5563847912243318,51.55300503565479],[-1.5847218893029549,51.52491144430866],[-1.6028258068647006,51.51829434241091],[-1.6550578377481884,51.576505313570294],[-1.6911237607521343,51.583522742381604],[-1.690629996076666,51.60544865992864],[-1.659968054281478,51.634988570666906],[-1.7002024707666124,51.67073848809167],[-1.6830722087146341,51.690106512506475],[-1.6855214565491679,51.73062910235211],[-1.7007173524230552,51.77057846252694],[-1.683765641770151,51.80133118099013],[-1.6863634522107418,51.866284504427256],[-1.6455423414051324,51.92228532690723],[-1.6152019216305575,51.93767243483592],[-1.662540859971898,51.96399513426894],[-1.665766220034186,51.98747834395135],[-1.6123553551147438,51.955393868932845],[-1.5916469973102494,51.97044015089318],[-1.522840051926039,51.99683304151256],[-1.497366329591614,52.05894213127527],[-1.5018679814214124,52.071613786647845],[-1.4534815685187823,52.11297770305947],[-1.4196429478629398,52.11762874037498],[-1.3854142480682867,52.0941336434538],[-1.3577844469938327,52.10129852780574],[-1.385476455972821,52.12839013319899],[-1.348722137016182,52.13511934278438],[-1.331910852802821,52.16847136366346],[-1.2768449070659926,52.117064574971096],[-1.2529432248491048,52.10386286727845],[-1.320839876458308,52.087617205370634],[-1.3129358914773661,52.05144211995878],[-1.2781809380990126,52.01426247743234],[-1.2808822191382774,51.98235418859588],[-1.2416301582044298,51.986283418346034],[-1.1962782152666023,51.9774216230104],[-1.1343466372866828,51.997286235072636],[-1.1181037587806486,52.015415580965225]]]},"properties":{"objectid":145,"ctyua17cd":"E10000025","name":"Oxfordshire","namew":"","bng_e":448985,"bng_n":208334,"long":-1.29146004,"lat":51.771549220000004,"st_areasha":0.339560203453096,"st_lengths":4.297413198265078},"id":"145"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.9931797405517955,51.301046809163836],[-2.93642244883614,51.30301804754578],[-2.897096855734503,51.2906185216284],[-2.8771394309391667,51.30006654993224],[-2.8102308275898054,51.301428184663905],[-2.8186673659054122,51.3263689507674],[-2.6948756790685024,51.31809802350591],[-2.612992342022153,51.28415240151304],[-2.5578220038815402,51.30266566618849],[-2.5063547483721322,51.278995662820535],[-2.4558750078245453,51.27373707320828],[-2.4009186597675125,51.30480452920659],[-2.3628881668545887,51.30294326891766],[-2.2890930975675587,51.32527576996176],[-2.2799968921420373,51.29224950780946],[-2.253499989532088,51.28983896499716],[-2.245344960600619,51.25388097143059],[-2.298468805090465,51.17532801367781],[-2.364529467360228,51.11888464291286],[-2.3625312160419867,51.10162961161819],[-2.3258562217864096,51.079681781190175],[-2.349980778489339,51.068806964970406],[-2.330018692507849,51.04135084096947],[-2.38175948401215,51.00195280477902],[-2.344560094172209,50.97883603735414],[-2.4149296862552205,50.96059003410369],[-2.490345717879734,50.972778125810805],[-2.5265292182480152,50.99193075809893],[-2.5998816619083414,50.967408177646234],[-2.624064072897852,50.90787466078791],[-2.611237281774322,50.88502604961343],[-2.660609964977084,50.887112975884065],[-2.7230904531610918,50.86619903755644],[-2.8289552476857125,50.84866784244787],[-2.886176807213076,50.850606948053155],[-2.9416773296442216,50.83590516489238],[-2.95431570200725,50.82118208848351],[-2.9735839268559516,50.8556664961128],[-3.032624712359791,50.861648085791444],[-3.0547783103698976,50.87462700083637],[-3.0524153309019653,50.9082720900858],[-3.1528653721384217,50.89380611276283],[-3.1878603590674857,50.91042814544346],[-3.16393516767306,50.945979090563526],[-3.254819254304323,50.94185242365137],[-3.2938356784729876,50.95514507258798],[-3.333707707743713,50.982803339903114],[-3.3786506039414235,50.97751434511184],[-3.3804746520827393,51.01849083718332],[-3.426801330616115,51.031409851084675],[-3.4836761061665698,51.0338380610786],[-3.5204129845707826,51.025875559010785],[-3.5350337783853547,51.003352324351226],[-3.6097285087628848,51.00798801023939],[-3.600314183451985,51.05064586401636],[-3.6923905112122952,51.080595267558465],[-3.719937366015813,51.08081809078317],[-3.8042710489689284,51.115687575522145],[-3.8347195519649517,51.1413841471616],[-3.839802982420906,51.176674573074024],[-3.786287054203399,51.171928648289395],[-3.7252785421701446,51.17936178062263],[-3.733185289868402,51.22272595024333],[-3.720764895182981,51.23309275023115],[-3.631967328328699,51.22373210635254],[-3.6216995634832756,51.21677603648584],[-3.5553767308506394,51.23326173644091],[-3.4419812059670676,51.206503791217926],[-3.411630438593079,51.18386574550868],[-3.2758369959797733,51.179778589411285],[-3.154812271268497,51.20860395730773],[-3.0763702484873647,51.201378500918],[-3.0023227017304635,51.2260150704401],[-3.021888849489983,51.2690306313595],[-2.9931797405517955,51.301046809163836]]]},"properties":{"objectid":146,"ctyua17cd":"E10000027","name":"Somerset","namew":"","bng_e":309293,"bng_n":131082,"long":-3.29605007,"lat":51.07186127000001,"st_areasha":0.443378224579826,"st_lengths":5.730219574336185},"id":"146"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.5975472127328771,52.70040461128474],[-1.5896512766842648,52.687243697739405],[-1.6449504346140316,52.657499778492934],[-1.6397862144614237,52.60837581898977],[-1.6656467468990286,52.592234818383076],[-1.742414812992422,52.59430894640167],[-1.7880885045800028,52.58784668527721],[-1.8278684531657632,52.60867308539548],[-1.8725711620286916,52.584929032749585],[-1.885148971347121,52.61265554331959],[-1.9335264962500105,52.66151288711097],[-1.96023639699132,52.644322189718196],[-2.05072400670673,52.62050670032488],[-2.0810081693907136,52.611889245393286],[-2.099254541363166,52.63274596075843],[-2.1316492348234988,52.63760738007744],[-2.1898772571288987,52.59927330302145],[-2.173054553324164,52.55462593124264],[-2.133492813541693,52.55405153964779],[-2.148786796672539,52.51468009101433],[-2.1879876484104557,52.508348364686185],[-2.1675183627813794,52.471201238946946],[-2.164856423484366,52.430189814509276],[-2.2615070889801814,52.43692692373946],[-2.2873865503482307,52.455302709953],[-2.3127527974028794,52.489194439172934],[-2.2609474885349528,52.52408786836139],[-2.2608401922202574,52.56314283027831],[-2.309604819505978,52.60738645682045],[-2.255808151724011,52.609968291704206],[-2.236891380132249,52.636051911767254],[-2.247732732578754,52.68305938518341],[-2.303043423414465,52.6829379614187],[-2.3248359750993473,52.7053210700123],[-2.3155782280519475,52.73293257977565],[-2.3301354838646944,52.75796400833326],[-2.36882909548558,52.77726202412407],[-2.377655347815221,52.811628134931425],[-2.416347524118123,52.82699120488115],[-2.3937571145983725,52.83660523814217],[-2.3855551923174403,52.88797345850924],[-2.457594659065421,52.879089620790296],[-2.470841812199069,52.905854091494064],[-2.4371231116414833,52.94358369193475],[-2.3937665188090023,52.95056364060048],[-2.370268984725044,52.98214566708981],[-2.380793384606193,52.99839461512033],[-2.3861702332688424,53.03354749602107],[-2.329009123471451,53.07656336091128],[-2.24658026126923,53.090169186159926],[-2.173280924374353,53.14758734018454],[-2.0582447932617924,53.17630304025403],[-2.0464207111460837,53.19266352849996],[-2.0016690261038548,53.193036693189754],[-1.9874113830280749,53.21356748165488],[-1.9376959978711739,53.211759659081906],[-1.8739768437555426,53.19534245688982],[-1.8120276066878773,53.15272637392394],[-1.8221606189165982,53.138044953212955],[-1.7837293053623284,53.10281018903993],[-1.7942428468290927,53.08837623297768],[-1.7787380671072697,53.04299587236255],[-1.7590414861748513,53.03753453868893],[-1.7625735690141937,52.999651405089196],[-1.8261154298823499,52.977469750029854],[-1.8287585310805525,52.94774795590439],[-1.8565782932528236,52.923373434437394],[-1.811055973753355,52.880635817989514],[-1.758588398734787,52.87720309674643],[-1.6426363656749459,52.85630909908656],[-1.5912909898864314,52.836243655820965],[-1.591831210840894,52.80947302026459],[-1.6269629891498312,52.77975501048627],[-1.682072552905197,52.770174275523345],[-1.6969583751280766,52.72717738093229],[-1.6566142773262413,52.72173127637825],[-1.655048211405017,52.698781559822066],[-1.5975472127328771,52.70040461128474]],[[-2.1986153920858555,53.09270223282272],[-2.2387613089863976,53.07332253610707],[-2.202553354253098,53.02000702810278],[-2.2171908898468473,53.001619041686354],[-2.2071698953735677,52.971757751919654],[-2.1816099190617138,52.946190116981256],[-2.1313576872066733,52.971525174648036],[-2.079459581793458,52.974001110763595],[-2.123738732455706,53.02162100540602],[-2.125400487141974,53.06456203591017],[-2.16114758968871,53.070102947893645],[-2.1986153920858555,53.09270223282272]]]},"properties":{"objectid":147,"ctyua17cd":"E10000028","name":"Staffordshire","namew":"","bng_e":398243,"bng_n":334651,"long":-2.02756,"lat":52.909301760000005,"st_areasha":0.350559135990881,"st_lengths":5.202709285505789},"id":"147"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.7404337542151893,52.532084956556446],[1.7635456859854344,52.481609378970575],[1.7333969405171956,52.44480973238416],[1.7285063669760916,52.4001622391969],[1.6754975718562832,52.31339505733695],[1.6483831659511452,52.29824114181616],[1.6303569731965695,52.2684389743801],[1.622255969238438,52.18620541704729],[1.6081790008610142,52.164942595725165],[1.5796597729809605,52.08603559916452],[1.478446741524749,52.058515180831876],[1.4321948668005007,52.00582255856517],[1.3627670960254932,51.962539957454],[1.3158663325660314,51.95118018901542],[1.242946633681015,51.96140054070332],[1.2196917492756256,51.952858949881545],[1.1630183984811424,51.96728217523315],[1.099771235554897,51.95370462197167],[1.0538895865360018,51.95298707449484],[0.9714543364493124,51.96226311645057],[0.9618748047792565,51.97691784528325],[0.7871285227639078,51.96312294117172],[0.7611172729446025,51.99747151340057],[0.6986619369995992,52.036742001443145],[0.7031465619650703,52.06525960424824],[0.6882227901504621,52.084761609661484],[0.634543116972111,52.08626917468359],[0.5427001309071215,52.057907713071415],[0.5110236738043454,52.059819217583765],[0.4666364336253537,52.07844366184645],[0.4046082855447821,52.06549077228226],[0.3895588163870798,52.117457746878415],[0.4182522249610088,52.13434223950367],[0.44449235673766907,52.17106759129723],[0.4874349241832192,52.16978289986184],[0.5144549957022946,52.22676383408458],[0.42693684306169644,52.25358725984512],[0.37122092670523443,52.22654088585415],[0.33997483836890297,52.26767272231922],[0.3607102963439388,52.29779811958849],[0.4241784424819457,52.25585606140902],[0.4987748418862452,52.27300530095482],[0.5046727397559607,52.28634995318873],[0.4307552862283046,52.31711287266188],[0.44247519987141004,52.3488151106298],[0.4076663950888815,52.36149564950557],[0.3747541283012197,52.409711968233694],[0.42932076953871956,52.4364091624538],[0.4455155028389868,52.44735405474677],[0.5238118858106873,52.448182221533216],[0.5547972984574017,52.45600986486431],[0.6149946579778884,52.44905810544816],[0.6661320871269254,52.46248720312286],[0.7175272304980922,52.44670044367149],[0.6684379416585102,52.40915722772479],[0.6843292499956988,52.39918237566701],[0.8081449631203554,52.3895057253099],[0.8382888522495477,52.40070540992764],[0.8668454523565856,52.3903269637193],[0.9367263690275536,52.38665425119365],[0.967442219783436,52.3700936799803],[1.0299283961793435,52.378716297919766],[1.214050543998212,52.35539181588052],[1.281244334958899,52.3885412554755],[1.3163432655301222,52.387386374882226],[1.3579123011126057,52.42422307623491],[1.4321928343326817,52.44515634818782],[1.4800506940850937,52.47184266240987],[1.508065037172571,52.46167605330817],[1.5293858710619475,52.468301792294824],[1.5528599724106016,52.45900136522175],[1.5572087934518777,52.457511377449066],[1.5593277337887343,52.45729749888142],[1.5688757415230725,52.47469797573194],[1.606878997568515,52.46638975898111],[1.6277323998311886,52.46214631420196],[1.634762652974871,52.4627379062303],[1.658642806321268,52.468083993582354],[1.6637686497042523,52.474768263145734],[1.6708637709471077,52.476030736829955],[1.671806979009716,52.47823160450588],[1.6713224377811002,52.48191131825365],[1.6763378588059368,52.484185744177694],[1.6814690522558067,52.48933474510335],[1.683560687376655,52.4952096140334],[1.6288391271248202,52.52609357416003],[1.6656534605396018,52.54962925568651],[1.7404337542151893,52.532084956556446]]]},"properties":{"objectid":148,"ctyua17cd":"E10000029","name":"Suffolk","namew":"","bng_e":608216,"bng_n":266122,"long":1.04914796,"lat":52.2538681,"st_areasha":0.499622230756283,"st_lengths":7.639521351258491},"id":"148"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-0.5243775996456748,51.47152757074173],[-0.5097205865350247,51.46917509355666],[-0.4586609541389066,51.45631527573033],[-0.45649591545333124,51.438224965810434],[-0.39136341468901037,51.422325767720906],[-0.31772016085591304,51.39366799298443],[-0.3083259722649814,51.3800835518154],[-0.32794692021337823,51.35218632024339],[-0.24505423266589332,51.38003514490691],[-0.2172894730299504,51.34338829763277],[-0.15656881959455404,51.321510564861626],[-0.1577612306954279,51.30442962612727],[-0.12431957618667866,51.28676013237515],[-0.04789557811761824,51.3252459205637],[0.002266077618230611,51.32913825652622],[0.012130977663332487,51.299599022977475],[0.0423690851659444,51.2926742396254],[0.05758116523941226,51.244916349410914],[0.033572629174329904,51.214340365716225],[0.052573758972641826,51.1806268524482],[0.04998951120779793,51.14265337745235],[0.027334026744767925,51.139853986673074],[-0.05635328197757872,51.136769343531284],[-0.13759919304749246,51.14216358688094],[-0.13298721508709832,51.158887251946055],[-0.19594939814538748,51.162306174891],[-0.3003737395555959,51.12473951631654],[-0.35805967661195837,51.121034075662976],[-0.444874347172572,51.0995968344273],[-0.48854355783811343,51.09734488346055],[-0.5355478170772585,51.08318062328806],[-0.6293928873710115,51.08899725302172],[-0.6967727696467705,51.07149654403122],[-0.7535002488365876,51.086461002074486],[-0.7692997300976572,51.11714715451848],[-0.8455485366348512,51.20013660192359],[-0.8207952620908827,51.239272471348386],[-0.7758743399280092,51.24191191680245],[-0.7455579896086988,51.23045850825446],[-0.7305084188276396,51.254901956461026],[-0.745670820351279,51.310033310789606],[-0.7754834567952571,51.33195882454106],[-0.7352757924430762,51.3650400334717],[-0.6676523206972433,51.38457076323107],[-0.6235127565076937,51.38954313910551],[-0.6051421243087702,51.43131139970228],[-0.5243775996456748,51.47152757074173]]]},"properties":{"objectid":149,"ctyua17cd":"E10000030","name":"Surrey","namew":"","bng_e":515966,"bng_n":153408,"long":-0.33910999,"lat":51.26802826,"st_areasha":0.215092460423205,"st_lengths":2.88888211659287},"id":"149"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-1.5896512766842648,52.687243697739405],[-1.551777676797542,52.66743797508343],[-1.5428106023265968,52.64760290125383],[-1.5646175863317353,52.63122463341102],[-1.5607652225361903,52.59613848940069],[-1.5228769196332905,52.57058300340384],[-1.4189677017971576,52.53775060630636],[-1.305958091292041,52.493377585308224],[-1.2364563674665874,52.43571006636739],[-1.2016265940912376,52.396714994802096],[-1.1721403252150253,52.361284473400644],[-1.224206553488841,52.348078290681485],[-1.2652791992748007,52.32836059636537],[-1.2092756716341455,52.31469517754135],[-1.2235818313356503,52.28682249836055],[-1.2179120824758343,52.26178801570529],[-1.2846578950450294,52.238562576003005],[-1.2547945934948643,52.198875211722566],[-1.3131481242857035,52.19045347714717],[-1.331910852802821,52.16847136366346],[-1.348722137016182,52.13511934278438],[-1.385476455972821,52.12839013319899],[-1.3577844469938327,52.10129852780574],[-1.3854142480682867,52.0941336434538],[-1.4196429478629398,52.11762874037498],[-1.4534815685187823,52.11297770305947],[-1.5018679814214124,52.071613786647845],[-1.497366329591614,52.05894213127527],[-1.522840051926039,51.99683304151256],[-1.5916469973102494,51.97044015089318],[-1.6123553551147438,51.955393868932845],[-1.665766220034186,51.98747834395135],[-1.6244306844277503,52.03896958168178],[-1.661077814089026,52.0316021385288],[-1.693992808520477,52.039515830791856],[-1.767659419545737,52.11257967211509],[-1.7855581118166128,52.132045665076305],[-1.8396811831392483,52.152700908021416],[-1.9051084223150383,52.1427246880948],[-1.9445828244369636,52.17475396812205],[-1.9174305408859595,52.21833250104504],[-1.9354611574056548,52.27695249556217],[-1.8864875375689962,52.286617990728644],[-1.8648388027677356,52.333078304920775],[-1.8720417922940555,52.36758427199749],[-1.7792325809180625,52.36452480177911],[-1.7102793311254345,52.355005661383075],[-1.6513206816033517,52.35640544535596],[-1.6010774060965787,52.389283722266896],[-1.4666185340173001,52.37718699538448],[-1.4322571122750674,52.39585972154981],[-1.4241542035528596,52.43398198847893],[-1.463929196874119,52.45830015392988],[-1.5196636716403304,52.45332528963132],[-1.5954960713857531,52.45590388965371],[-1.6771619775424256,52.43634163056271],[-1.753530572876798,52.51295181527496],[-1.7560056033750584,52.555366769361854],[-1.7880885045800028,52.58784668527721],[-1.742414812992422,52.59430894640167],[-1.6656467468990286,52.592234818383076],[-1.6397862144614237,52.60837581898977],[-1.6449504346140316,52.657499778492934],[-1.5896512766842648,52.687243697739405]]]},"properties":{"objectid":150,"ctyua17cd":"E10000031","name":"Warwickshire","namew":"","bng_e":429584,"bng_n":253588,"long":-1.56874001,"lat":52.179771419999994,"st_areasha":0.260631686317128,"st_lengths":4.243337318739368},"id":"150"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.027334026744767925,51.139853986673074],[0.018591451834879535,51.103579063923576],[-0.03282879251395343,51.09239212090057],[-0.0015920778113240885,51.035758619965236],[-0.02010203118300069,50.985408020264856],[-0.09309383681028294,50.979232685141255],[-0.12841404377229537,50.918940024463495],[-0.13503764596975998,50.88664026793492],[-0.18245024238393626,50.88833070919577],[-0.18776228679928408,50.868576713745256],[-0.2397803051161418,50.86195875209563],[-0.2160654552557162,50.82757860197182],[-0.2729444054590999,50.826967579191376],[-0.3884326824215236,50.806791551689685],[-0.5381509263233966,50.802205813248634],[-0.7165212477565319,50.77424521184798],[-0.750455478037054,50.762617869020346],[-0.7891862649333348,50.722371572491],[-0.8428772084156435,50.75357020630088],[-0.9020572269586182,50.772805364876604],[-0.8768947339040096,50.81149162633841],[-0.8950495746773299,50.83858586314801],[-0.9324933004246532,50.84605935885327],[-0.9264656726518297,50.86410118182499],[-0.9575972503120624,50.890638437015184],[-0.898524957959637,51.01767302339226],[-0.8528287149724179,51.0448486785246],[-0.8501304025951981,51.05934149251681],[-0.796953742720234,51.063894407501834],[-0.7535002488365876,51.086461002074486],[-0.6967727696467705,51.07149654403122],[-0.6293928873710115,51.08899725302172],[-0.5355478170772585,51.08318062328806],[-0.48854355783811343,51.09734488346055],[-0.444874347172572,51.0995968344273],[-0.35805967661195837,51.121034075662976],[-0.3003737395555959,51.12473951631654],[-0.19594939814538748,51.162306174891],[-0.13298721508709832,51.158887251946055],[-0.13759919304749246,51.14216358688094],[-0.05635328197757872,51.136769343531284],[0.027334026744767925,51.139853986673074]]]},"properties":{"objectid":151,"ctyua17cd":"E10000032","name":"West Sussex","namew":"","bng_e":508316,"bng_n":118010,"long":-0.45932999,"lat":50.95133972,"st_areasha":0.254733966668774,"st_lengths":5.010338851243417},"id":"151"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.164856423484366,52.430189814509276],[-2.136032248988272,52.426253904594944],[-2.037887520891559,52.44154277687858],[-2.0169969910174927,52.43266824894147],[-1.997068115200534,52.41741154181011],[-2.0206949879824947,52.39934242261563],[-1.9973303718983288,52.38105293984222],[-1.904594820393811,52.40313126279847],[-1.8687537207068203,52.40472327775797],[-1.8456050597249032,52.39941277657931],[-1.8720417922940555,52.36758427199749],[-1.8648388027677356,52.333078304920775],[-1.8864875375689962,52.286617990728644],[-1.9354611574056548,52.27695249556217],[-1.9174305408859595,52.21833250104504],[-1.9445828244369636,52.17475396812205],[-1.9051084223150383,52.1427246880948],[-1.8396811831392483,52.152700908021416],[-1.7855581118166128,52.132045665076305],[-1.767659419545737,52.11257967211509],[-1.7894277695750702,52.10636218306922],[-1.863458692363963,52.05340679688709],[-1.8297611843303798,52.03906076574265],[-1.8390600762606937,52.00677302775398],[-1.9134549501849847,52.044450856023104],[-1.9317390747976333,52.02994925565457],[-1.9841443771604759,52.03586923098118],[-2.03826059205187,52.0095528690706],[-2.118061574081537,52.014375344147766],[-2.1581412028534146,52.050195565174135],[-2.1806863638837513,52.04171819224172],[-2.185090751336304,51.99055175815806],[-2.2206197431058285,51.995487450686255],[-2.2513653434350545,51.966556588716514],[-2.312623472194673,51.97649649851553],[-2.3247136673010687,52.003558241020926],[-2.3513816902120084,52.02134981144559],[-2.339429235270188,52.0689139876913],[-2.3587246223426064,52.15188465905072],[-2.415197588896774,52.145228846734824],[-2.4351777845263314,52.16820483158864],[-2.392896489480563,52.21031540203512],[-2.4230676550474186,52.237247893076756],[-2.4648601164004162,52.23436110797968],[-2.4514057064073995,52.28506962976053],[-2.5044699321408643,52.274461835746024],[-2.495653553467889,52.25692840582218],[-2.6288727388849793,52.24033661464398],[-2.59896995709704,52.283528405812206],[-2.618037526110129,52.306943546708226],[-2.5748552884400056,52.3175625894429],[-2.53915243163857,52.34412558772664],[-2.4817987482128387,52.33106425701078],[-2.4838926415313836,52.360478097187354],[-2.4263398598957906,52.36581885425767],[-2.366024338451666,52.40780287840107],[-2.3635311722250094,52.43941167680839],[-2.3117539842581323,52.437517022893246],[-2.2873865503482307,52.455302709953],[-2.2615070889801814,52.43692692373946],[-2.164856423484366,52.430189814509276]]]},"properties":{"objectid":152,"ctyua17cd":"E10000034","name":"Worcestershire","namew":"","bng_e":385792,"bng_n":257203,"long":-2.20935011,"lat":52.21287155,"st_areasha":0.229225312980551,"st_lengths":3.987032715877354},"id":"152"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.478020206266706,54.78094642383934],[-6.4438852329163865,54.78743364204985],[-6.3856765154579875,54.779184695118545],[-6.34641184692839,54.80113165590211],[-6.309833369713431,54.79012886255788],[-6.213736033690168,54.79040728816676],[-6.173009312129238,54.811922300075025],[-6.112458777150039,54.80721726296724],[-6.103662260004512,54.792613911503736],[-6.010853599013558,54.80013980890601],[-5.974935672042818,54.78326485808765],[-5.906948485683245,54.76580680484108],[-5.89335323286457,54.74533636807985],[-5.911688307668442,54.71647478448466],[-5.869290747369291,54.68892833617468],[-5.913892601761347,54.64804530614691],[-5.938566432893765,54.6609439989673],[-5.987376948986196,54.65953237991636],[-6.046544979566363,54.60596204001706],[-6.088367601482787,54.62443429470784],[-6.149066638813508,54.620817881540916],[-6.1733065641458325,54.60334075277444],[-6.295495120402677,54.59673620001655],[-6.305613656244418,54.57294504897578],[-6.324724440379839,54.59135085276057],[-6.426961140443495,54.56829097554902],[-6.408066207089007,54.64888500224197],[-6.470153085395793,54.685298697577764],[-6.496885478181468,54.71371557181709],[-6.45816641304873,54.76187415227122],[-6.478020206266706,54.78094642383934]]]},"properties":{"objectid":153,"ctyua17cd":"N09000001","name":"Antrim and Newtownabbey","namew":"","bng_e":130813,"bng_n":541285,"long":-6.177599910000001,"lat":54.693859100000005,"st_areasha":0.101317019302574,"st_lengths":1.907508539857052},"id":"153"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.019584777714499,54.37056890023547],[-6.064591278463922,54.3270231745808],[-6.105396286908331,54.31862162618802],[-6.060860191843574,54.29150056709841],[-6.051373373981221,54.24404652812569],[-6.182432759263634,54.244302432911866],[-6.229911136588896,54.25770766617677],[-6.31455656593198,54.26802517522259],[-6.4035759424749585,54.27305285220831],[-6.467722874410299,54.255103823083914],[-6.505056653540919,54.22582061932707],[-6.525903440390664,54.23732821562561],[-6.600834827364565,54.21905309862251],[-6.644944849724254,54.179845630572345],[-6.711054713903138,54.19812800780227],[-6.7418773519574415,54.182056978947344],[-6.817104897372303,54.22311799919726],[-6.828646891839753,54.261547085130815],[-6.866421359457377,54.269773799022516],[-6.851854917969263,54.2920771647303],[-6.864825524177775,54.3301834345188],[-6.837837252686256,54.33583316896653],[-6.8055728808829485,54.37970505894225],[-6.794650004893015,54.415125422501205],[-6.7110315815414765,54.40398486740861],[-6.6980078910505085,54.44232326840506],[-6.6506599343077255,54.47001716685969],[-6.630388885337993,54.503891978932586],[-6.592719837149957,54.503511192488475],[-6.542217108132206,54.542173114698414],[-6.426961140443495,54.56829097554902],[-6.324724440379839,54.59135085276057],[-6.305613656244418,54.57294504897578],[-6.278701940441408,54.55750283329007],[-6.274147055941057,54.519629695654885],[-6.24217068033181,54.50069503025236],[-6.259032692603853,54.4796198956426],[-6.2097759185230075,54.44509802855208],[-6.1348666350863255,54.43580330587878],[-6.073443823372941,54.410996780677806],[-6.019584777714499,54.37056890023547]]]},"properties":{"objectid":154,"ctyua17cd":"N09000002","name":"Armagh City, Banbridge and Craigavon","namew":"","bng_e":112110,"bng_n":508158,"long":-6.43454981,"lat":54.38669968,"st_areasha":0.198339245940471,"st_lengths":2.684648077069492},"id":"154"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.913892601761347,54.64804530614691],[-5.856140316321728,54.633741881283754],[-5.810141223937535,54.615589473176556],[-5.8240796454584824,54.58163773759247],[-5.910706274074471,54.56138168301919],[-5.97684117358051,54.53065452059059],[-6.017651136390043,54.55089346825986],[-6.042206430581473,54.546849136979006],[-6.046544979566363,54.60596204001706],[-5.987376948986196,54.65953237991636],[-5.938566432893765,54.6609439989673],[-5.913892601761347,54.64804530614691]]]},"properties":{"objectid":155,"ctyua17cd":"N09000003","name":"Belfast","namew":"","bng_e":146465,"bng_n":529747,"long":-5.92535019,"lat":54.59852982,"st_areasha":0.019198375803533,"st_lengths":0.728185831690601},"id":"155"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.977963887222813,55.05631190597063],[-6.098995275910454,54.98397572679926],[-6.132654846043522,54.98822161773438],[-6.166300010836039,55.03069271379866],[-6.227615564006271,55.01739934000847],[-6.301812684207221,55.01022220509162],[-6.33513016572374,54.98673717608074],[-6.40236467259075,54.96663251068276],[-6.4491717329883045,54.96466696051277],[-6.429414418140084,54.93664193258007],[-6.500862807271915,54.91878593562336],[-6.518703376358928,54.94085622493577],[-6.585984406054706,54.923538887710436],[-6.618440470150745,54.93822418989538],[-6.691226827455296,54.916280990975906],[-6.708430323999437,54.93178125520171],[-6.758482984601244,54.90306373670302],[-6.769168291182893,54.87319672994607],[-6.803495500016481,54.84658582477692],[-6.887514131571095,54.85302706604722],[-6.912979321137982,54.820411195121494],[-6.9727283623232665,54.828230984673155],[-7.039766458154702,54.84549989070831],[-7.02885784631178,54.88270728361516],[-7.0362636293622245,54.90469518603493],[-7.088464782023266,54.9274713945901],[-7.094588669630582,54.959105390202524],[-7.081924305961138,54.98582728700063],[-7.127549552868743,54.9852836917899],[-7.1577172164755325,55.0355529298248],[-7.147925087771796,55.04672803417236],[-7.060476992318513,55.04760796143921],[-7.014710621996812,55.07708184305352],[-6.9697344373935834,55.14788239475763],[-6.952761171789859,55.19270438520016],[-6.875645237137178,55.1680626553682],[-6.75356341242076,55.16854047596314],[-6.70883574916968,55.1936532895686],[-6.553866783824219,55.22006716946521],[-6.484540293798716,55.25201974091925],[-6.410292715335743,55.23226605663416],[-6.3691307686692085,55.245822413774306],[-6.29042777072425,55.23023729401683],[-6.261173739175888,55.21298957780772],[-6.213575694461895,55.20744359454716],[-6.1348935248155385,55.22404173134174],[-6.075158867387017,55.19796691564159],[-6.034710577730152,55.169764995559035],[-6.026517922962967,55.14045157638009],[-6.05542014422349,55.08188955216201],[-6.043492408047371,55.05298046277909],[-5.977963887222813,55.05631190597063]]]},"properties":{"objectid":156,"ctyua17cd":"N09000004","name":"Causeway Coast and Glens","namew":"","bng_e":106168,"bng_n":581420,"long":-6.59959984,"lat":55.039619450000004,"st_areasha":0.279136003768648,"st_lengths":3.840074155338999},"id":"156"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.147925087771796,55.04672803417236],[-7.1577172164755325,55.0355529298248],[-7.127549552868743,54.9852836917899],[-7.081924305961138,54.98582728700063],[-7.094588669630582,54.959105390202524],[-7.088464782023266,54.9274713945901],[-7.0362636293622245,54.90469518603493],[-7.02885784631178,54.88270728361516],[-7.039766458154702,54.84549989070831],[-6.9727283623232665,54.828230984673155],[-6.912979321137982,54.820411195121494],[-6.903811719434486,54.783856554437364],[-6.940910357326345,54.77362166700726],[-7.006364875637701,54.77987666767501],[-7.081615825009521,54.76582370040438],[-7.118161742269763,54.74940825099094],[-7.2277352788592,54.751924742034134],[-7.261870724353628,54.73099783188536],[-7.306750873053545,54.73849100745497],[-7.320145342332864,54.71334670858465],[-7.392553807211641,54.69313352649198],[-7.416272005248061,54.66870336307068],[-7.461220076144798,54.644757443202366],[-7.511216897840768,54.65384644955492],[-7.5338236111699075,54.64174522066634],[-7.658371588277362,54.62672750746941],[-7.704286099423143,54.6085103976377],[-7.717261878532042,54.6289012210155],[-7.7551031828647865,54.61855917756492],[-7.784477591366965,54.633372373237364],[-7.855312900968784,54.63197102084689],[-7.914646471556637,54.67599303824903],[-7.855908427531119,54.726904126025545],[-7.745728255054132,54.70523950829761],[-7.7124158376200285,54.72613380183441],[-7.637437021300684,54.75153572499465],[-7.579228352405721,54.74177539451978],[-7.5483902900789985,54.75540657075754],[-7.550133964909776,54.78938490379119],[-7.484863247340172,54.82384010593705],[-7.443939467231814,54.87136436127719],[-7.448183844607911,54.93505638644399],[-7.4061008149998315,54.94219121905047],[-7.40643330695076,55.003316817418124],[-7.347055012178259,55.05048752677885],[-7.319210793842274,55.04508868879287],[-7.2336842573218405,55.04821530149587],[-7.1843564457925595,55.060949650407],[-7.147925087771796,55.04672803417236]]]},"properties":{"objectid":157,"ctyua17cd":"N09000005","name":"Derry City and Strabane","namew":"","bng_e":51779,"bng_n":559566,"long":-7.420639990000001,"lat":54.809040069999995,"st_areasha":0.17440640680109,"st_lengths":3.091825588395926},"id":"157"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.940910357326345,54.77362166700726],[-6.941654470776427,54.75222733152708],[-6.99232528308454,54.74082101328008],[-7.003493500423872,54.6715134153128],[-6.948897180659571,54.608021528871404],[-6.96785396938435,54.597123013717066],[-6.972406818718923,54.54896554302633],[-7.040320135664899,54.50557203662112],[-7.100222467192282,54.50036903860121],[-7.122035723069359,54.475518180420636],[-7.217288597489983,54.46737437502833],[-7.236646484746643,54.4545697719783],[-7.367871890274728,54.43759245762675],[-7.329884688027107,54.39760936478132],[-7.33523879643252,54.37176043629603],[-7.281269216000737,54.37160972161229],[-7.272800203166014,54.34418748316676],[-7.246992348517267,54.32703829128502],[-7.189691699011917,54.337737116475694],[-7.173769521445479,54.286160372104405],[-7.143379593092959,54.25173391319049],[-7.145830498378018,54.22482765897024],[-7.233495611032822,54.210968401171726],[-7.259907546595173,54.192346891396824],[-7.253313963767596,54.15578710569133],[-7.327008586875991,54.151594462715195],[-7.319667194384692,54.11346013138086],[-7.392341104057891,54.13687087818943],[-7.410382444993047,54.156320833540576],[-7.443164970186444,54.15401049049268],[-7.492841085546843,54.12324841278496],[-7.52895499097923,54.135865215807996],[-7.566537417367101,54.12669641800619],[-7.62608372618223,54.153373870308826],[-7.629287560971363,54.169365148184],[-7.692860364813157,54.2039777550703],[-7.749155311467632,54.20951366052793],[-7.812254548507781,54.201010511227025],[-7.86101676381179,54.21765000424523],[-7.861327919347218,54.26053940377142],[-7.888959683641701,54.30062797450233],[-7.946984987966005,54.30448329616809],[-8.001048734610606,54.35817415601343],[-8.056799922377706,54.36860960664893],[-8.084928910140263,54.397471978949625],[-8.162271154689222,54.44168254281601],[-8.164795973454602,54.46918394948062],[-8.115523331735574,54.46912614555612],[-8.089790733254915,54.48715236529034],[-8.043364488979194,54.487786099549794],[-8.042514507337842,54.50655282735204],[-8.006730238508908,54.54599799521225],[-7.95044634542171,54.53370903644378],[-7.85734992385909,54.536593415854384],[-7.800359946953165,54.576649605595776],[-7.7522728554071705,54.59885108261233],[-7.704286099423143,54.6085103976377],[-7.658371588277362,54.62672750746941],[-7.5338236111699075,54.64174522066634],[-7.511216897840768,54.65384644955492],[-7.461220076144798,54.644757443202366],[-7.416272005248061,54.66870336307068],[-7.392553807211641,54.69313352649198],[-7.320145342332864,54.71334670858465],[-7.306750873053545,54.73849100745497],[-7.261870724353628,54.73099783188536],[-7.2277352788592,54.751924742034134],[-7.118161742269763,54.74940825099094],[-7.081615825009521,54.76582370040438],[-7.006364875637701,54.77987666767501],[-6.940910357326345,54.77362166700726]]]},"properties":{"objectid":158,"ctyua17cd":"N09000006","name":"Fermanagh and Omagh","namew":"","bng_e":41233,"bng_n":513013,"long":-7.52710009,"lat":54.385208129999995,"st_areasha":0.416131829598623,"st_lengths":4.796048363351528},"id":"158"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.810141223937535,54.615589473176556],[-5.772027179509905,54.613364329201374],[-5.758750100535906,54.58492238546063],[-5.800212040352562,54.56072975457545],[-5.831515299490661,54.52014842640966],[-5.824504486092337,54.49549361413989],[-5.903278561055913,54.462254997770856],[-5.946308011105032,54.4144819413894],[-5.939779992451861,54.38375708392323],[-6.019584777714499,54.37056890023547],[-6.073443823372941,54.410996780677806],[-6.1348666350863255,54.43580330587878],[-6.2097759185230075,54.44509802855208],[-6.259032692603853,54.4796198956426],[-6.24217068033181,54.50069503025236],[-6.274147055941057,54.519629695654885],[-6.278701940441408,54.55750283329007],[-6.305613656244418,54.57294504897578],[-6.295495120402677,54.59673620001655],[-6.1733065641458325,54.60334075277444],[-6.149066638813508,54.620817881540916],[-6.088367601482787,54.62443429470784],[-6.046544979566363,54.60596204001706],[-6.042206430581473,54.546849136979006],[-6.017651136390043,54.55089346825986],[-5.97684117358051,54.53065452059059],[-5.910706274074471,54.56138168301919],[-5.8240796454584824,54.58163773759247],[-5.810141223937535,54.615589473176556]]]},"properties":{"objectid":159,"ctyua17cd":"N09000007","name":"Lisburn and Castlereagh","namew":"","bng_e":138712,"bng_n":518920,"long":-6.03544998,"lat":54.49752045,"st_areasha":0.070764923811563,"st_lengths":1.812258394947726},"id":"159"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.977963887222813,55.05631190597063],[-5.96422715485852,55.04419754967813],[-5.983291556459335,54.97896366384293],[-5.92002650691694,54.961779999148575],[-5.879097453184102,54.90767314979695],[-5.845342586390416,54.90078833861185],[-5.83824620070078,54.880712558538676],[-5.7986551574088026,54.85219541708574],[-5.763674772771765,54.859385842183826],[-5.7262095838044615,54.84806043144471],[-5.690711953193272,54.80375378850749],[-5.68910927946888,54.76701087835028],[-5.7452940375889625,54.72540540133912],[-5.791288852797493,54.72098304633147],[-5.869290747369291,54.68892833617468],[-5.911688307668442,54.71647478448466],[-5.89335323286457,54.74533636807985],[-5.906948485683245,54.76580680484108],[-5.974935672042818,54.78326485808765],[-6.010853599013558,54.80013980890601],[-6.103662260004512,54.792613911503736],[-6.112458777150039,54.80721726296724],[-6.173009312129238,54.811922300075025],[-6.213736033690168,54.79040728816676],[-6.309833369713431,54.79012886255788],[-6.34641184692839,54.80113165590211],[-6.3856765154579875,54.779184695118545],[-6.4438852329163865,54.78743364204985],[-6.478020206266706,54.78094642383934],[-6.458255810156686,54.824529356245705],[-6.507256522969328,54.90828455838658],[-6.500862807271915,54.91878593562336],[-6.429414418140084,54.93664193258007],[-6.4491717329883045,54.96466696051277],[-6.40236467259075,54.96663251068276],[-6.33513016572374,54.98673717608074],[-6.301812684207221,55.01022220509162],[-6.227615564006271,55.01739934000847],[-6.166300010836039,55.03069271379866],[-6.132654846043522,54.98822161773438],[-6.098995275910454,54.98397572679926],[-5.977963887222813,55.05631190597063]]]},"properties":{"objectid":160,"ctyua17cd":"N09000008","name":"Mid and East Antrim","namew":"","bng_e":133943,"bng_n":560151,"long":-6.14645004,"lat":54.864620210000005,"st_areasha":0.148388228646855,"st_lengths":2.595080967363307},"id":"160"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.478020206266706,54.78094642383934],[-6.45816641304873,54.76187415227122],[-6.496885478181468,54.71371557181709],[-6.470153085395793,54.685298697577764],[-6.408066207089007,54.64888500224197],[-6.426961140443495,54.56829097554902],[-6.542217108132206,54.542173114698414],[-6.592719837149957,54.503511192488475],[-6.630388885337993,54.503891978932586],[-6.6506599343077255,54.47001716685969],[-6.6980078910505085,54.44232326840506],[-6.7110315815414765,54.40398486740861],[-6.794650004893015,54.415125422501205],[-6.8055728808829485,54.37970505894225],[-6.837837252686256,54.33583316896653],[-6.864825524177775,54.3301834345188],[-6.907603750411965,54.36950579635635],[-6.960077170124521,54.397972815893695],[-7.030073210809235,54.421456589451],[-7.11067825329792,54.368402767075],[-7.104373535409536,54.355989055251655],[-7.153585430622343,54.33531467563273],[-7.189691699011917,54.337737116475694],[-7.246992348517267,54.32703829128502],[-7.272800203166014,54.34418748316676],[-7.281269216000737,54.37160972161229],[-7.33523879643252,54.37176043629603],[-7.329884688027107,54.39760936478132],[-7.367871890274728,54.43759245762675],[-7.236646484746643,54.4545697719783],[-7.217288597489983,54.46737437502833],[-7.122035723069359,54.475518180420636],[-7.100222467192282,54.50036903860121],[-7.040320135664899,54.50557203662112],[-6.972406818718923,54.54896554302633],[-6.96785396938435,54.597123013717066],[-6.948897180659571,54.608021528871404],[-7.003493500423872,54.6715134153128],[-6.99232528308454,54.74082101328008],[-6.941654470776427,54.75222733152708],[-6.940910357326345,54.77362166700726],[-6.903811719434486,54.783856554437364],[-6.912979321137982,54.820411195121494],[-6.887514131571095,54.85302706604722],[-6.803495500016481,54.84658582477692],[-6.769168291182893,54.87319672994607],[-6.758482984601244,54.90306373670302],[-6.708430323999437,54.93178125520171],[-6.691226827455296,54.916280990975906],[-6.618440470150745,54.93822418989538],[-6.585984406054706,54.923538887710436],[-6.518703376358928,54.94085622493577],[-6.500862807271915,54.91878593562336],[-6.507256522969328,54.90828455838658],[-6.458255810156686,54.824529356245705],[-6.478020206266706,54.78094642383934]]]},"properties":{"objectid":161,"ctyua17cd":"N09000009","name":"Mid Ulster","namew":"","bng_e":83920,"bng_n":528564,"long":-6.8888998,"lat":54.55273056,"st_areasha":0.271787524477036,"st_lengths":3.453415754796991},"id":"161"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.019584777714499,54.37056890023547],[-5.939779992451861,54.38375708392323],[-5.946308011105032,54.4144819413894],[-5.903278561055913,54.462254997770856],[-5.824504486092337,54.49549361413989],[-5.7968367579092615,54.47320653695306],[-5.723913919490997,54.44779317621504],[-5.668412118223841,54.461050400856266],[-5.614932417396346,54.46400977473223],[-5.584811975391517,54.4496063110833],[-5.5965465335948466,54.406988836866276],[-5.549452355640881,54.373859628420064],[-5.51704121807694,54.32444557640315],[-5.6098184081921545,54.24882846985895],[-5.661228958748666,54.22573154057909],[-5.693799023605266,54.25142548889613],[-5.830754929895306,54.24205780062795],[-5.893885115305011,54.20554237038499],[-5.872796335281862,54.16772517237973],[-5.897941434548784,54.104832802792544],[-5.952953170951275,54.077924833565135],[-5.964546030174347,54.062706506800794],[-6.063713825232014,54.02287272209935],[-6.090058575142336,54.03657943059716],[-6.095938905655146,54.0627738192573],[-6.139828263162997,54.061792661602965],[-6.184178437783885,54.07378334132909],[-6.199078907264948,54.09829165853415],[-6.255056332083257,54.09647955069164],[-6.367347913974243,54.113765678744016],[-6.36445311771638,54.072775524172016],[-6.392222604189044,54.05896453748437],[-6.444472461434145,54.056594125119716],[-6.45698448534489,54.07267055080621],[-6.511465840275491,54.05279946362526],[-6.5329024717708535,54.059779857455396],[-6.595882207796819,54.04471691645347],[-6.641779062552871,54.04842554430434],[-6.6618944469703365,54.062901466330516],[-6.645995634689996,54.096071446441044],[-6.662143892825611,54.12278398579326],[-6.630688329002396,54.153334324420484],[-6.644944849724254,54.179845630572345],[-6.600834827364565,54.21905309862251],[-6.525903440390664,54.23732821562561],[-6.505056653540919,54.22582061932707],[-6.467722874410299,54.255103823083914],[-6.4035759424749585,54.27305285220831],[-6.31455656593198,54.26802517522259],[-6.229911136588896,54.25770766617677],[-6.182432759263634,54.244302432911866],[-6.051373373981221,54.24404652812569],[-6.060860191843574,54.29150056709841],[-6.105396286908331,54.31862162618802],[-6.064591278463922,54.3270231745808],[-6.019584777714499,54.37056890023547]]]},"properties":{"objectid":162,"ctyua17cd":"N09000010","name":"Newry, Mourne and Down","namew":"","bng_e":133006,"bng_n":480432,"long":-6.0889101,"lat":54.1495285,"st_areasha":0.231660345418568,"st_lengths":3.872973451737939},"id":"162"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.810141223937535,54.615589473176556],[-5.856140316321728,54.633741881283754],[-5.806442255704724,54.659112661820814],[-5.742066671139128,54.67768521430213],[-5.721717823617837,54.667092848157324],[-5.640186593635576,54.66727010812991],[-5.5775138025191495,54.675191568736864],[-5.542529662313257,54.65460145829161],[-5.522680010473323,54.597700681542165],[-5.478331317035838,54.564132397093374],[-5.486845715056916,54.54670213289802],[-5.464646317272923,54.498529267612525],[-5.43386929193349,54.48741543047868],[-5.456384617954939,54.439469630519966],[-5.481123169697696,54.428540525825554],[-5.459200554461233,54.39305907581661],[-5.51704121807694,54.32444557640315],[-5.549452355640881,54.373859628420064],[-5.5965465335948466,54.406988836866276],[-5.584811975391517,54.4496063110833],[-5.614932417396346,54.46400977473223],[-5.668412118223841,54.461050400856266],[-5.723913919490997,54.44779317621504],[-5.7968367579092615,54.47320653695306],[-5.824504486092337,54.49549361413989],[-5.831515299490661,54.52014842640966],[-5.800212040352562,54.56072975457545],[-5.758750100535906,54.58492238546063],[-5.772027179509905,54.613364329201374],[-5.810141223937535,54.615589473176556]]]},"properties":{"objectid":163,"ctyua17cd":"N09000011","name":"Ards and North Down","namew":"","bng_e":164321,"bng_n":524944,"long":-5.64567995,"lat":54.56409073,"st_areasha":0.078421663905236,"st_lengths":1.678979679920127},"id":"163"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.6283533028617967,56.132775964140365],[-3.6639452327854656,56.12305233859547],[-3.674480403846758,56.10023747448082],[-3.714629175195455,56.1044930744967],[-3.7375607560232424,56.08005689101367],[-3.7972409442133994,56.10895863113683],[-3.883965735629374,56.12946303349315],[-3.829456338938087,56.19655647630128],[-3.752194147541047,56.21191576550109],[-3.737802275254012,56.18927214309588],[-3.6669412783165285,56.18863499680862],[-3.60285693919559,56.204548943779685],[-3.5933453072393036,56.17298022635731],[-3.6478630415452926,56.15968325078234],[-3.6283533028617967,56.132775964140365]]]},"properties":{"objectid":164,"ctyua17cd":"S12000005","name":"Clackmannanshire","namew":"","bng_e":291159,"bng_n":696335,"long":-3.7534399,"lat":56.14723969,"st_areasha":0.023009204345498,"st_lengths":1.099327283935307},"id":"164"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.507381657936378,55.41226257715715],[-3.472131301317688,55.40375389342836],[-3.420493073895443,55.41599325818328],[-3.3776880019988766,55.41142359512372],[-3.310983349601088,55.44482678113195],[-3.2435879297383394,55.42768376219681],[-3.2925289545468104,55.40162363602292],[-3.3133454144585244,55.35489615753255],[-3.2885665622961824,55.3434138294856],[-3.217390198298176,55.376132348130284],[-3.1792538282007854,55.360465722815775],[-3.1020248352771205,55.351584836671805],[-3.010167600353668,55.267432297863195],[-2.962081668933081,55.29026383990521],[-2.917056344473906,55.27740970489492],[-2.9214426213790716,55.23671956056023],[-2.8638394858028278,55.236349374425004],[-2.9047494855994387,55.17366585889323],[-2.8969132078774464,55.14667951464884],[-2.865114594961767,55.13532156643805],[-2.858537237702535,55.10834443035213],[-2.9586934056753194,55.04926877453522],[-3.0275495017073126,55.05527521338132],[-3.025872178857128,55.03645349023731],[-3.0534489118369947,54.99279890254826],[-3.14628185812046,54.96426198770149],[-3.2069853848668117,54.97608451039275],[-3.2691123666415933,54.96550336329051],[-3.3307736974473414,54.97945429887773],[-3.408538808618289,54.97442363974011],[-3.4320592322469565,54.99294810637093],[-3.476070979391352,54.96677697867557],[-3.549908403149459,54.97332745429952],[-3.5853671227936843,54.92792691109901],[-3.5629675575059423,54.90720451847466],[-3.5949336997296655,54.883948304871296],[-3.7261054957712076,54.87600890998414],[-3.761511803825897,54.85688676651199],[-3.8262143027470756,54.86146266547058],[-3.863713836823308,54.8458253400683],[-3.824436582281635,54.82364489909378],[-3.8742131950820635,54.80345771550208],[-3.9403303059980317,54.78849015209977],[-3.963433559310488,54.77193137593321],[-4.045341770705363,54.769932086797326],[-4.065287445858132,54.781294228546756],[-4.045654237452311,54.81541522733181],[-4.091333446380645,54.81435417300759],[-4.090179670154839,54.77495430040159],[-4.159706751264764,54.78029571847355],[-4.209199143225078,54.81355583403547],[-4.230789739554041,54.854960838672696],[-4.2663342527228,54.83540710875201],[-4.36269917032962,54.863172291968624],[-4.396274918252061,54.89377065079583],[-4.425698923465745,54.88227459549711],[-4.412249612628727,54.82796999242214],[-4.35450325911728,54.813350311968236],[-4.364885104762948,54.69108842948839],[-4.408183823523814,54.678141082445904],[-4.5165447160649705,54.71220757781839],[-4.571601131686066,54.73809109333024],[-4.600826380432295,54.77694696153395],[-4.672331791977797,54.80029442934534],[-4.709053774011636,54.82407302315244],[-4.781561635560195,54.83243334122665],[-4.811245762481121,54.86423718370003],[-4.851761281856852,54.85913125670305],[-4.939191094992225,54.830839006915596],[-4.961131564469326,54.80400735235838],[-4.938549497960139,54.776728604342566],[-4.8820959099974175,54.66928638995586],[-4.8748808317841394,54.633238206978604],[-4.922495195596014,54.643416760875766],[-4.9538596913708375,54.66188796066177],[-4.972615635402462,54.689695383236256],[-4.947869707420239,54.70005062873446],[-4.992548985346559,54.73494609218932],[-5.001165147952406,54.77285601749213],[-5.053646695737598,54.809863682663774],[-5.105753884533328,54.830365507563045],[-5.1853416364065765,54.91638836733023],[-5.186461135871923,54.974549405431674],[-5.157066230021712,55.00861518674242],[-5.095648329505991,55.01715980018554],[-5.060848028712769,54.967685785871254],[-5.070593441233541,54.9360410352665],[-5.0355727921498215,54.90862183832809],[-4.990804791607047,54.92174497854887],[-5.039774930168107,54.997783675577125],[-4.961685886793418,55.02068481885027],[-4.912946016944318,55.0663801409317],[-4.873297361283392,55.03829440876086],[-4.841076370077587,55.044737435185425],[-4.71519026561748,55.03750377607935],[-4.646757408526753,55.05637506985454],[-4.663605040639311,55.114182115013534],[-4.623186736178127,55.14077779196248],[-4.564981993723222,55.15800893726356],[-4.478634301530974,55.15291974125398],[-4.461860522644201,55.17021451808648],[-4.439186219867338,55.13787687401947],[-4.407284079695728,55.15695723858664],[-4.409280214009868,55.17922315112844],[-4.381568517971914,55.20728447300098],[-4.35535682725498,55.25265690879024],[-4.300495734489743,55.31068590573091],[-4.248681597876612,55.3067059155465],[-4.202869730852569,55.318230564789644],[-4.142628042849083,55.28362310832074],[-4.112469792446177,55.30539164361039],[-4.119146144378249,55.32226746856975],[-4.085739559832007,55.351257441178916],[-4.107496776254436,55.36903926115389],[-4.090854894636891,55.412063523913446],[-4.032532346389871,55.42429300961561],[-3.9862358005409533,55.46405020985026],[-3.8954450365583853,55.45975641742564],[-3.825507196399201,55.44441392936028],[-3.8164110395370585,55.42726711258808],[-3.764602092012126,55.40110036099378],[-3.753667669626452,55.37493903950599],[-3.71105075658636,55.363238984692316],[-3.711164069365509,55.32315607159637],[-3.663619823894919,55.291747126829364],[-3.6186805303813685,55.296201310642914],[-3.6215578716976324,55.316538386937964],[-3.573970199764119,55.328357642392234],[-3.5784992080712072,55.384961209393225],[-3.507381657936378,55.41226257715715]]]},"properties":{"objectid":165,"ctyua17cd":"S12000006","name":"Dumfries and Galloway","namew":"","bng_e":270645,"bng_n":579857,"long":-4.02862978,"lat":55.09621811,"st_areasha":0.905575987053381,"st_lengths":10.753328253901186},"id":"165"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.246907606000377,55.67905235718149],[-4.201919520668525,55.62693003819163],[-4.20248697759115,55.583044768102525],[-4.2394162110884395,55.5635334753905],[-4.081578338268912,55.56757873117442],[-4.048807640059749,55.58457804384261],[-3.957056863282787,55.555750199213264],[-4.025697261418657,55.49245064807985],[-3.9862358005409533,55.46405020985026],[-4.032532346389871,55.42429300961561],[-4.090854894636891,55.412063523913446],[-4.107496776254436,55.36903926115389],[-4.085739559832007,55.351257441178916],[-4.119146144378249,55.32226746856975],[-4.112469792446177,55.30539164361039],[-4.142628042849083,55.28362310832074],[-4.202869730852569,55.318230564789644],[-4.248681597876612,55.3067059155465],[-4.300495734489743,55.31068590573091],[-4.35535682725498,55.25265690879024],[-4.381568517971914,55.20728447300098],[-4.409280214009868,55.17922315112844],[-4.407284079695728,55.15695723858664],[-4.439186219867338,55.13787687401947],[-4.461860522644201,55.17021451808648],[-4.472152571882873,55.197824701349816],[-4.451843154237395,55.211273066100034],[-4.438560199093104,55.27159435759444],[-4.458642635948081,55.285239644195144],[-4.437975427523156,55.30779136038393],[-4.515343737122976,55.33647863738014],[-4.5488642558798915,55.363307266617994],[-4.519828710126035,55.38357059670659],[-4.573398983475499,55.393715235370735],[-4.553723111231761,55.42703747789824],[-4.501913775199739,55.39911864551004],[-4.453974426078105,55.40931539449082],[-4.454382265028698,55.430840007561244],[-4.493512339222264,55.47014343687107],[-4.439594861912553,55.50438303644893],[-4.398873185548268,55.51133767189697],[-4.410460605671631,55.554342439153174],[-4.449260239267801,55.56514514143606],[-4.499846260795493,55.56279659248969],[-4.544840202512546,55.593038562580546],[-4.592230554195908,55.59795073873653],[-4.558762936259711,55.62522052320952],[-4.621203512531281,55.66748714042012],[-4.579241030748165,55.71228966773492],[-4.529924777305837,55.744577345469054],[-4.503952990637174,55.76378438404305],[-4.458567649576537,55.736706931280764],[-4.400639851547112,55.71360182086829],[-4.281965583244244,55.67864526466815],[-4.246907606000377,55.67905235718149]]]},"properties":{"objectid":166,"ctyua17cd":"S12000008","name":"East Ayrshire","namew":"","bng_e":255398,"bng_n":624935,"long":-4.290569779999999,"lat":55.49673842999999,"st_areasha":0.180666640173854,"st_lengths":3.728667709565242},"id":"166"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.366737598860311,55.9459599052264],[-2.4074374477791594,55.91433107621913],[-2.466841099836074,55.88909078910956],[-2.5047171980394296,55.911933755239545],[-2.53591670509104,55.914591732123654],[-2.570015990644663,55.89214683920619],[-2.5327101597452497,55.86976160371597],[-2.554876439994871,55.83909205185762],[-2.5941731468724356,55.82867442308708],[-2.6692600455138518,55.84655108916235],[-2.7399167299723217,55.82818940431849],[-2.758279334822646,55.83869809124485],[-2.846239193083477,55.8189641605685],[-2.9033356326325475,55.860247218934944],[-2.9371547793687682,55.86349495143179],[-2.9688788474800276,55.91249868146991],[-3.009591006319056,55.9016633041191],[-3.0782595982011003,55.919553152456956],[-3.088572976660714,55.93138962453247],[-3.077676449008095,55.94679741686821],[-3.010404624772775,55.95280727223877],[-2.9713368969793805,55.97027778469294],[-2.9214624406383223,55.97352256561487],[-2.854869724157652,56.016279913188384],[-2.8659273842405923,56.03759698251565],[-2.7842486816305154,56.06564979050637],[-2.7035034519219607,56.05740506409336],[-2.6788643741907094,56.06187559488376],[-2.6204271318058545,56.04798103509762],[-2.570177903686499,56.007087419150025],[-2.445248631118602,55.987917241088724],[-2.366737598860311,55.9459599052264]]]},"properties":{"objectid":167,"ctyua17cd":"S12000010","name":"East Lothian","namew":"","bng_e":354854,"bng_n":672351,"long":-2.72434998,"lat":55.94207001,"st_areasha":0.097809442065479,"st_lengths":2.207004282635931},"id":"167"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.250754437166734,55.78488998948234],[-4.282572055455205,55.76830869429176],[-4.225408196430294,55.729204785873094],[-4.221616714938648,55.6915355596193],[-4.246907606000377,55.67905235718149],[-4.281965583244244,55.67864526466815],[-4.400639851547112,55.71360182086829],[-4.458567649576537,55.736706931280764],[-4.503952990637174,55.76378438404305],[-4.529924777305837,55.744577345469054],[-4.5509528198159614,55.76638657687994],[-4.541951247351392,55.77853026096369],[-4.3814285402941096,55.82315255874454],[-4.36779668057153,55.80336231701824],[-4.274473803422495,55.809224819370854],[-4.250754437166734,55.78488998948234]]]},"properties":{"objectid":168,"ctyua17cd":"S12000011","name":"East Renfrewshire","namew":"","bng_e":251929,"bng_n":653115,"long":-4.36059999,"lat":55.74868011,"st_areasha":0.024844609688865,"st_lengths":1.05489783998666},"id":"168"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-6.243645251026692,58.505850250989226],[-6.18198778460777,58.464037750043076],[-6.196369332677762,58.446792490781775],[-6.16708808134905,58.42996748561194],[-6.218418051750859,58.368217698389],[-6.186421933324766,58.348003211380046],[-6.242290600430067,58.29556489580426],[-6.2804105605981135,58.27019128510068],[-6.328385299840932,58.261653802382],[-6.304371415507603,58.210122887462205],[-6.266977049050752,58.211269439434034],[-6.201018920286117,58.248369791433674],[-6.135660815593383,58.25902066926943],[-6.160680193235521,58.21391248397492],[-6.255150996520456,58.179974074544816],[-6.287278622809367,58.205454348440355],[-6.35519069779167,58.197113898188775],[-6.370204186872911,58.13148202367739],[-6.398866935759656,58.11095213273569],[-6.397016232612259,58.0844452638388],[-6.368792221582964,58.07608740810832],[-6.3658647610490675,58.01813664858838],[-6.4010345797811965,58.00176917081154],[-6.444430376759669,58.0104980085772],[-6.448894254365541,57.965669118535914],[-6.471779157681169,57.93748307688344],[-6.501809296061367,57.940423236743925],[-6.537851726075473,57.918978484370484],[-6.613443727145466,57.9152522504919],[-6.6813922525495855,57.93096278970194],[-6.668744424714646,57.880004956064795],[-6.744554504186226,57.88615706889453],[-6.773328691664972,57.8995097170008],[-6.812887051795201,57.88210458076276],[-6.77407565686525,57.86752940236096],[-6.736602699554112,57.82688284007196],[-6.785819118356812,57.81423672724412],[-6.8404315045095245,57.8162977683283],[-6.885416796547133,57.79381920479341],[-6.883259678190768,57.77275678120145],[-6.975591736268825,57.73556308407001],[-7.054428263752584,57.778095131685916],[-7.083803176774381,57.80703722079204],[-7.075453658658603,57.82213619403109],[-7.023156086083702,57.83470739513115],[-6.951940143821787,57.87744690645053],[-6.918433864030817,57.910873982948885],[-6.851352971261804,57.89958298296921],[-6.872342018268739,57.93385811386179],[-6.943876110992903,57.95072385112576],[-7.022743093118436,57.95230316046343],[-7.079939088517335,57.96712425937801],[-7.09242080257718,57.99953633673351],[-7.056062141254017,58.00882657178977],[-7.029005347717828,58.031516738607536],[-7.052899562863729,58.06350681269021],[-7.100347400111616,58.06996407897998],[-7.113357388531824,58.1144017639312],[-7.135449374887912,58.12287892282495],[-7.065540161948093,58.183754989901786],[-7.055126915573908,58.22105252185736],[-7.014978429310247,58.235305823905605],[-6.975578926325568,58.219514555253454],[-6.9155910881573845,58.21830295351941],[-6.9068442918297706,58.18494840644473],[-6.82816308176001,58.20467429987997],[-6.7608335552235985,58.199032237548636],[-6.757649762725578,58.21624046272814],[-6.810132752123991,58.25409552219156],[-6.828514480158333,58.28341049809694],[-6.774914474322713,58.30994931451022],[-6.736187302701069,58.31353745479066],[-6.707231643724583,58.33588073510879],[-6.651248998341771,58.35473486891999],[-6.617549072031238,58.34682160743216],[-6.54712548645125,58.3651062932218],[-6.519213667875647,58.3971261078845],[-6.379840120424433,58.449178568437105],[-6.243645251026692,58.505850250989226]]],[[[-7.1529304678659855,57.7261034967799],[-7.195025884735969,57.69087371485102],[-7.180266074618828,57.663460350915386],[-7.141194549887757,57.64864990357114],[-7.063129951884946,57.640335331311405],[-7.10025322580492,57.60788361813542],[-7.131054502262657,57.6285658569297],[-7.186487772491887,57.64633700644862],[-7.163119092371403,57.58755819525544],[-7.101083831552785,57.59362484910844],[-7.135145995790253,57.554095468731816],[-7.14901440149265,57.50948011191855],[-7.312983394267405,57.50841037823733],[-7.369355106152398,57.50250783806723],[-7.3867335622033465,57.53769324654701],[-7.3553496329784025,57.55085882487583],[-7.409886051599187,57.57132062724611],[-7.483228886902793,57.56816608070102],[-7.520539861924306,57.6046411457732],[-7.483756147727206,57.66295239403871],[-7.3827628656129605,57.63478314992335],[-7.375916385332118,57.6588216612916],[-7.28691518768494,57.65254665610422],[-7.205399188620845,57.692703213783204],[-7.2265998065350345,57.70455621180065],[-7.1996465789256945,57.734557625834725],[-7.1529304678659855,57.7261034967799]]],[[[-7.3256309235275126,57.40614566609054],[-7.280681983885643,57.3839047915738],[-7.269194537796864,57.36167016284867],[-7.220772804920216,57.349052608891725],[-7.2570419081567366,57.32590629514033],[-7.198714166324919,57.306385117080424],[-7.2531682762941045,57.260396820158064],[-7.261444043706831,57.20710158287267],[-7.244630152358866,57.163713899577715],[-7.282017993334932,57.14301902620804],[-7.211883423780193,57.11748048163986],[-7.229403508664177,57.09595802514366],[-7.279094096814333,57.108218168734425],[-7.340208737842147,57.10158758240192],[-7.391790495034513,57.11357730794737],[-7.412442132597562,57.14968058249383],[-7.435519186860176,57.23653800862314],[-7.420581839779288,57.28866220809539],[-7.396724005807414,57.30149422967588],[-7.395342500555159,57.3314273671802],[-7.412428613089219,57.38719429847902],[-7.3256309235275126,57.40614566609054]]],[[[-7.336563520289417,57.48011664187044],[-7.252008078009567,57.47696790674445],[-7.214191092244334,57.46580052937185],[-7.206196939436381,57.41568737047669],[-7.237952893910119,57.401796833358105],[-7.386309830433504,57.42434445673223],[-7.411807377607602,57.45334698117915],[-7.367636363226779,57.491785701549816],[-7.336563520289417,57.48011664187044]]],[[[-7.449280786378381,57.02520662858399],[-7.37903690332962,56.99012029391736],[-7.459747742963145,56.94671386245574],[-7.504034118778748,56.94645886688414],[-7.541649791303996,56.927011528560115],[-7.573092852752154,56.9336750822402],[-7.551760823202642,56.97153789116169],[-7.5243452640219175,56.971639026221],[-7.50621620771102,57.00541822417267],[-7.449280786378381,57.02520662858399]]],[[[-6.8892802444868835,58.26019800323621],[-6.8486057771340825,58.256771874923004],[-6.804327368412544,58.20734397424593],[-6.867234741389382,58.207496573009394],[-6.8892802444868835,58.26019800323621]]],[[[-6.99433192777542,57.919039338795415],[-6.996534084179814,57.88876349573968],[-7.054290351817485,57.899014370417774],[-6.99433192777542,57.919039338795415]]],[[[-7.126577591681723,58.0372557433588],[-7.0991728108757,58.01191562071028],[-7.1534283172622395,58.00887869020033],[-7.171402843065948,58.02925214856873],[-7.126577591681723,58.0372557433588]]]]},"properties":{"objectid":169,"ctyua17cd":"S12000013","name":"Na h-Eileanan Siar","namew":"","bng_e":126473,"bng_n":932862,"long":-6.657219889999999,"lat":58.19937897,"st_areasha":0.465617148171097,"st_lengths":34.2966629946338},"id":"169"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.516332361148727,56.00177789553436],[-3.5301858749773487,55.986434089962245],[-3.598844291030389,55.99703855738443],[-3.7033527226492424,55.93456224025613],[-3.7296788772775358,55.93605459954108],[-3.7821155300068767,55.90163396643533],[-3.8225645400207213,55.896495511859314],[-3.8767503111770907,55.923321351400205],[-3.892286002396304,55.947280889702256],[-3.9381034802905788,55.96292331156252],[-3.9439337842159716,55.981038410395286],[-4.020129768173433,56.02804308152395],[-3.9733633283540826,56.048628405777265],[-3.8967377211681082,56.045426169083385],[-3.824505351639857,56.05109599168759],[-3.7996751688731365,56.06280955162043],[-3.835897138641201,56.08465356970743],[-3.820161709794263,56.09835433998177],[-3.7335690773502392,56.06456745102798],[-3.728454718309763,56.03233490623188],[-3.671478284294551,56.01572090989299],[-3.5975455602785473,56.020973340048556],[-3.516332361148727,56.00177789553436]]]},"properties":{"objectid":170,"ctyua17cd":"S12000014","name":"Falkirk","namew":"","bng_e":289661,"bng_n":679536,"long":-3.77060008,"lat":55.99604034,"st_areasha":0.042706027242966,"st_lengths":1.725129152799186},"id":"170"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.7375607560232424,56.08005689101367],[-3.714629175195455,56.1044930744967],[-3.674480403846758,56.10023747448082],[-3.6639452327854656,56.12305233859547],[-3.6283533028617967,56.132775964140365],[-3.498877844935805,56.14981280371887],[-3.4169020252074915,56.1384448577449],[-3.3724186645889063,56.14545786998565],[-3.371719386839402,56.16440697580225],[-3.2609468507157544,56.19614478735298],[-3.3148787936206077,56.239531670251324],[-3.383637847407897,56.26876934403094],[-3.3006221595841794,56.3139878707446],[-3.2771106617268515,56.35041982141854],[-3.2294282219340857,56.356253524781266],[-3.115959221540038,56.391852224801255],[-2.98998418941801,56.42072853839227],[-2.9212701413031823,56.45157961930494],[-2.8832658843123227,56.45242736163436],[-2.803589488063608,56.42954846578999],[-2.8243405213971187,56.37993493515006],[-2.8812879900478947,56.362349420090595],[-2.777429332097199,56.33274520872533],[-2.660376289633234,56.31833248475732],[-2.63038746790653,56.29288217717169],[-2.5854440105318304,56.27913203231839],[-2.6028491476691897,56.263526950309426],[-2.6956078405286235,56.21936267994465],[-2.8385606411598587,56.18343274342732],[-2.924690357473196,56.21221144999936],[-2.9721636176560082,56.20545276963054],[-3.084219518715031,56.13971375888383],[-3.154282190170136,56.1121638292982],[-3.1743782625459858,56.06260574995633],[-3.2842708282353215,56.056177186428954],[-3.357093481278298,56.02608322855906],[-3.4090414262200284,56.016215627849874],[-3.5133304034745265,56.04032714258449],[-3.5468666360855536,56.03975923869882],[-3.572490276304393,56.05785811825848],[-3.669715846907991,56.04624759724976],[-3.70841326535907,56.056369867975945],[-3.7375607560232424,56.08005689101367]]]},"properties":{"objectid":171,"ctyua17cd":"S12000015","name":"Fife","namew":"","bng_e":339197,"bng_n":704726,"long":-2.98235011,"lat":56.231170649999996,"st_areasha":0.192081291639524,"st_lengths":3.891356786771951},"id":"171"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.762351338043004,57.630690274137805],[-3.7122893991356705,57.56718981266067],[-3.7053461266216345,57.512341325692546],[-3.682709821999879,57.48984628747712],[-3.7013037019034982,57.43728615873016],[-3.6593980806561035,57.430308155298064],[-3.609851483858108,57.44737293051725],[-3.566256489744376,57.44694300421719],[-3.5027734571285123,57.46069311399697],[-3.48115796576667,57.43774826277303],[-3.4041774789067176,57.41714490261609],[-3.394567879303395,57.37108856388704],[-3.4938752770216297,57.29618143882328],[-3.4634872030711676,57.28944592049379],[-3.432101471604824,57.20417619347751],[-3.4522773956844617,57.17690208776207],[-3.5360893351538607,57.16727473194425],[-3.560357402071645,57.14106879419046],[-3.6415935168265037,57.11647425448422],[-3.683694604821369,57.09525203665311],[-3.749734154606756,57.07629601325135],[-3.757392333288749,57.037809993937],[-3.7443977034903924,57.01672448924472],[-3.760392582251086,56.974397073367186],[-3.7878443697210855,56.9632435491514],[-3.8016480458198316,56.93589253791123],[-3.8548345622644433,56.922800399120035],[-3.964012910666497,56.9366456131055],[-3.967765644867825,56.8992923393709],[-4.136217992765353,56.89724863361846],[-4.1867243775271845,56.906888241799834],[-4.227701898423049,56.857616750313696],[-4.30396597904587,56.851411195271396],[-4.374270853216501,56.832273257006136],[-4.441851918330542,56.77385800124671],[-4.528536431810096,56.8013331584994],[-4.546802294789245,56.77238255011554],[-4.5898812696041205,56.75989698875594],[-4.576004952565711,56.73480469678026],[-4.617194063254601,56.69058213955503],[-4.657579626098084,56.674757802831266],[-4.717547557772775,56.67660401566371],[-4.7154322884685484,56.64234411928663],[-4.618337016139549,56.63779653997926],[-4.6264352259041175,56.6156117777623],[-4.702241117232973,56.605570548542914],[-4.726201256282138,56.587821400038536],[-4.77945650521275,56.587784170803786],[-4.801114523715512,56.57361367473226],[-4.902194358382133,56.5718286922413],[-4.951548820420896,56.56369536305152],[-4.98824393340999,56.54627002624164],[-5.061762028593932,56.52712160997527],[-5.095938968807559,56.52849973377664],[-5.0976511259978565,56.53575889765591],[-5.100691540481421,56.588269677904236],[-5.091858246460106,56.60855763502775],[-5.152995417303828,56.62668565891698],[-5.2138388407890375,56.63193265267074],[-5.230002185951321,56.594634767281605],[-5.288220759979254,56.59666770814914],[-5.325023710674884,56.620705126841074],[-5.31740909964941,56.6534260808499],[-5.254342053841924,56.67056407797077],[-5.185295306932062,56.69991989928485],[-5.247415075244703,56.7030277692171],[-5.164286348035716,56.7805996097851],[-5.217666618019223,56.76558979353507],[-5.256537827757711,56.73200778003593],[-5.242678649998879,56.7202724394225],[-5.321057744518498,56.69718938668177],[-5.398801325020315,56.646908702075905],[-5.434186926184907,56.64277645666908],[-5.492214607417395,56.606313535142476],[-5.547804700525717,56.553609183917615],[-5.5986981445029755,56.52538775843925],[-5.685425245377985,56.49715460849933],[-5.695174848739441,56.511888968701896],[-5.755104275041447,56.51858565430541],[-5.907745673523209,56.555820864142504],[-5.959647044374776,56.58243890633139],[-6.00124741413606,56.61993485481065],[-6.00404293962913,56.649371466720766],[-5.879584622231732,56.65308415860795],[-5.844605025400767,56.65920168081385],[-5.746781088175851,56.70170921470941],[-5.7844764882984805,56.706066585605356],[-5.835475098096481,56.674899906506425],[-5.9273385851067815,56.68346168441013],[-6.030228714582677,56.680327246705986],[-6.051546179611705,56.693060527222485],[-6.117857035972634,56.696687593758384],[-6.140104135596573,56.68296318120679],[-6.184453716664905,56.68733776422738],[-6.2279698276446425,56.7156248950738],[-6.188986274596061,56.734098218159204],[-6.19123229813124,56.753362505775954],[-6.117993847137541,56.765622482992114],[-6.0649779536688015,56.75864621075493],[-5.945539920829901,56.77811204813344],[-5.886250185896529,56.76334118175106],[-5.822501471065209,56.786466840773016],[-5.865025385212562,56.81068221371413],[-5.86090265373366,56.82962510431605],[-5.785952041952385,56.83669823623558],[-5.785427142747608,56.86664189490847],[-5.737740021084278,56.896168116166564],[-5.887301813527074,56.87420412761935],[-5.8617575052039115,56.89915355869073],[-5.8773875020307855,56.921496902860724],[-5.852825357703296,56.940867279002646],[-5.84343623049682,56.98976902502142],[-5.820728265196465,57.01188463207103],[-5.727331997073179,57.01833897826219],[-5.708596184365604,56.9910099338623],[-5.6624479061451325,56.99489350233421],[-5.711964819919672,57.04073837987329],[-5.754606208009307,57.032308736659786],[-5.797633708328192,57.06528855062703],[-5.7459604595068186,57.09099597888223],[-5.721939335631021,57.11824456903258],[-5.6459070912384846,57.1277588836665],[-5.55282085000141,57.112502760195184],[-5.561515625944594,57.13361916649228],[-5.611105486428244,57.14578575271128],[-5.660530946345261,57.14249944649322],[-5.6899200335818705,57.15735752912758],[-5.676161259733533,57.18448198945316],[-5.623736926816889,57.212510067886285],[-5.65565820186373,57.22719298057251],[-5.63601078776685,57.25044225680563],[-5.523544014343997,57.26947213613113],[-5.534876457781479,57.28218895365825],[-5.59253709511006,57.27082251135073],[-5.647955471666876,57.28716039333841],[-5.7181410714524645,57.283562631211396],[-5.716706791284594,57.31518927576542],[-5.65699362945162,57.342120118349726],[-5.618708704842049,57.33754907303222],[-5.577243464513458,57.35382678318041],[-5.533910330496553,57.35312847579945],[-5.457366045405877,57.39128317138221],[-5.480999647814713,57.40300741436164],[-5.552255428244621,57.361468336995074],[-5.635716680679479,57.36665071176185],[-5.614972216893477,57.3995162713598],[-5.688771506698856,57.37850118897961],[-5.73032231752012,57.35481237089516],[-5.788449309986845,57.34640711819486],[-5.821994598770914,57.363513036498375],[-5.831262715900834,57.39108989358465],[-5.817278287761951,57.44387069167999],[-5.861019899248163,57.4496701515572],[-5.870359585325787,57.50341148045641],[-5.8419123283904355,57.57510891434583],[-5.812345010812805,57.58594075286442],[-5.768280338565944,57.55946082675666],[-5.708876179291451,57.55629933654609],[-5.697221821728874,57.530037141701655],[-5.652139567486245,57.52051710917817],[-5.685665710603246,57.57693557951433],[-5.727824344417172,57.58553521258091],[-5.7333338826517775,57.60676969356746],[-5.800400813446004,57.640672800110565],[-5.811740191555771,57.66090115466551],[-5.759333759644505,57.70681368100753],[-5.6953817036019245,57.696644878459324],[-5.696442867643441,57.73015735008261],[-5.759878475410517,57.73142974059101],[-5.81298345572111,57.74991348322163],[-5.800910625624056,57.79343643444486],[-5.814141200655058,57.858567093397596],[-5.683422961499673,57.86530969388821],[-5.684865155701573,57.83452801635582],[-5.668843018489724,57.800091850159674],[-5.623484857639255,57.7683419616132],[-5.583984126965106,57.8149399997821],[-5.581908663453248,57.8361099714989],[-5.634666450595432,57.85707162605564],[-5.6561140205448055,57.878537688764254],[-5.64552022987391,57.90322772388129],[-5.603344937018392,57.92452901909991],[-5.559869288336188,57.90280309189012],[-5.540511555762862,57.86956339543531],[-5.488330314091911,57.86103794744423],[-5.4543966998469955,57.869036882846785],[-5.422306293799636,57.90926047868908],[-5.3495361539694954,57.885999828730064],[-5.324612455199826,57.86519985878738],[-5.21941131807705,57.8414656501206],[-5.243216458072254,57.86645193271147],[-5.308941868371733,57.87779184321994],[-5.33882553147231,57.90634111744953],[-5.383345686053758,57.90928771465724],[-5.397258243971976,57.93334487796466],[-5.297275834011714,57.91039994400313],[-5.205404804387399,57.91924201450831],[-5.179454252510936,57.94103064245115],[-5.192231500882258,57.957477166139256],[-5.307538222709979,57.98841748048329],[-5.357033135470033,58.02640490756136],[-5.425081714948362,58.04013527182627],[-5.457722733616436,58.07716728434366],[-5.43735729540208,58.10444269587464],[-5.400642032203223,58.09682652092812],[-5.35759953389055,58.06813621321663],[-5.300574543679431,58.06420817866547],[-5.2711803698773565,58.101971301335425],[-5.294670107738455,58.11347280472711],[-5.262934990556573,58.14231907916309],[-5.309694267275802,58.15503587240852],[-5.361614914196139,58.217915124484364],[-5.404754729046715,58.23583760742059],[-5.36772695323549,58.25125994179382],[-5.3197704270627355,58.239829239328856],[-5.250800842883791,58.25041721588275],[-5.2036387301424725,58.246481895024374],[-5.1198475686096,58.269542675155265],[-5.178101233284451,58.34595285604041],[-5.164544501127011,58.373911066143705],[-5.109839425448342,58.39843491284188],[-5.109324649012535,58.43590144089973],[-5.0749340901353435,58.45184777605493],[-5.086250179401475,58.477331650835936],[-5.125598562223047,58.49375138012306],[-5.113413532707568,58.521777498933375],[-5.050566808210817,58.540789192168404],[-5.01392371740485,58.5778173016281],[-5.00281451537677,58.62715323043818],[-4.841405020124796,58.60189920348637],[-4.796700746441502,58.576449935517076],[-4.752991758761823,58.58260950102857],[-4.73437335074874,58.56637295105179],[-4.654187611768066,58.54453427583712],[-4.716574048852465,58.49252312834062],[-4.663477728113833,58.48271043034305],[-4.642294451826672,58.52046064054707],[-4.593249995989709,58.53464250494858],[-4.6044217053965895,58.554368079124515],[-4.580099403064196,58.580125302841395],[-4.526931212104955,58.58002308499829],[-4.4567406894304895,58.56162711440072],[-4.383248980355347,58.510433420966535],[-4.343635405448765,58.54114060315726],[-4.305487200273262,58.543305687708255],[-4.209289679774088,58.53381550997875],[-4.047416116359898,58.57189005888006],[-4.00458892653694,58.563631418156376],[-3.9571818771411245,58.5743340573718],[-3.860292139469834,58.56401898458938],[-3.7499354075921474,58.57898746619952],[-3.660073645081866,58.61996224865976],[-3.6311498751658178,58.61473442395544],[-3.5579701930691385,58.62356170510952],[-3.5252003618064123,58.59690947968966],[-3.4599037968219477,58.61238329755207],[-3.3706199557455534,58.59443255701785],[-3.346917181981553,58.61585389014584],[-3.412808588244957,58.63947943013255],[-3.3767950750318505,58.67219449627993],[-3.3446349157679265,58.64683077542088],[-3.2387481418124935,58.64946560375557],[-3.1879158409424804,58.6601427651774],[-3.1575411102332396,58.637219781868396],[-3.100340664089572,58.64674742535436],[-3.037674507271902,58.63209376491625],[-3.0428269714867042,58.59809260079385],[-3.0680254041482726,58.56413281357942],[-3.125894623936915,58.52738879905479],[-3.1255223738576774,58.48419566519874],[-3.0496888634494894,58.45190764931948],[-3.0830388293776423,58.42314059166591],[-3.107912802832743,58.37119442378457],[-3.1783123126622854,58.3358893766943],[-3.209742142385153,58.30997343342813],[-3.3307989027463236,58.28582629205067],[-3.3813663173008877,58.27039853926209],[-3.464007015710422,58.213622923859816],[-3.5082824791522853,58.17186979525576],[-3.658721395675059,58.1129067462503],[-3.7453569743440767,58.068213847192226],[-3.804264787888826,58.0570705959322],[-3.833300089027091,58.03890937806631],[-3.841186869977264,58.01317912591685],[-3.8912535986738135,57.9881008768549],[-3.983270772627236,57.969577925581746],[-4.003803757236767,57.93472223824165],[-3.9922051837214667,57.90309497495406],[-4.018611381609162,57.86304057936019],[-4.072848440202563,57.86718759433296],[-4.121085615108257,57.855719373051556],[-4.190982662019451,57.86226657424396],[-4.16384379365536,57.83369165584617],[-4.079676008640092,57.829015469888986],[-4.048521103465362,57.81527513753849],[-3.9663368253833937,57.84521814780021],[-3.8952096471066966,57.82091419433556],[-3.7933142901216,57.83646590427901],[-3.870554501188451,57.77666864864017],[-3.9163212663125933,57.75257703949973],[-3.975277591986469,57.6943836249053],[-4.0376167301271835,57.695307899540865],[-4.01944238755533,57.738543813247304],[-4.073183720051816,57.73227722481499],[-4.167787060024011,57.685142545892745],[-4.20742597153054,57.692666815522045],[-4.301375077197235,57.67496094868977],[-4.3473580213548075,57.63996832697762],[-4.412554634787739,57.607724677352905],[-4.367986492381931,57.60054015360612],[-4.325128550241573,57.630775491196914],[-4.234313986600398,57.669358991625074],[-4.165522522145864,57.67586754894916],[-4.161229515728735,57.65795564473814],[-4.086704889418286,57.66453902745508],[-4.059771963104822,57.6748710092906],[-4.002431794690779,57.66818900242146],[-4.046613825766656,57.64660120927931],[-4.112944025645447,57.59011075091138],[-4.174447378842672,57.56622214393775],[-4.234409615110849,57.50079245500871],[-4.310658085301611,57.50241689682326],[-4.375500352358586,57.51236353085318],[-4.417136925228078,57.50439545478736],[-4.378543149146196,57.479313113810065],[-4.287622353088295,57.48131473938463],[-4.219954384686275,57.49671407899251],[-4.16988417741203,57.489662389608554],[-4.1023769196582975,57.53508425573477],[-4.038216747004469,57.56800690969209],[-4.058073218403479,57.59093400739948],[-4.012659012702443,57.601141162435624],[-3.93011779280107,57.58583380458737],[-3.832483832861783,57.597246167177786],[-3.762351338043004,57.630690274137805]]],[[[-6.341737620593904,57.70149410836734],[-6.302917937512007,57.705254496698615],[-6.251076455213422,57.673501610711696],[-6.235359770036553,57.637388367180336],[-6.1913160654832495,57.63327838449078],[-6.1506014353071805,57.586545662952915],[-6.138776192166745,57.546535960067445],[-6.1363950526887265,57.472705390942],[-6.14574355122312,57.43011074421639],[-6.1242197079723155,57.38777585317405],[-6.1462241983872445,57.37105889075616],[-6.10466624515027,57.31491652218068],[-6.048067284476815,57.309968930722505],[-6.041656984381518,57.29329276425062],[-5.968814197316533,57.268996175334166],[-5.86367490747017,57.24163671766132],[-5.776832854351937,57.270999231730116],[-5.732017206827834,57.26079096423257],[-5.667101099135607,57.264857409842534],[-5.669067252750722,57.20909020694842],[-5.719135662280166,57.18325042007177],[-5.781074093094105,57.16688598380205],[-5.787323493683459,57.13845174725128],[-5.870634894783734,57.086531027485876],[-5.923844688380882,57.04319184552821],[-6.001942290603438,57.02013234153526],[-6.037658275708054,57.047444417526776],[-5.990429403593282,57.11363731880817],[-5.997771531729995,57.124135172501155],[-5.940038307421162,57.146523766059886],[-5.935413448471081,57.17603521325543],[-5.991692007679205,57.16858137493142],[-6.002948089681809,57.19963593645025],[-6.049415862850992,57.16723370397318],[-6.083794134291054,57.126775198017924],[-6.112760890901598,57.13700121273672],[-6.101966070277115,57.1701365797403],[-6.209693296907346,57.17783153799604],[-6.308469122451243,57.16009330726126],[-6.286625937136478,57.18647377284725],[-6.36324531651735,57.19234180603047],[-6.380706060535431,57.22743179104526],[-6.4274201858920605,57.24093864410406],[-6.482800233343312,57.31100647137248],[-6.446887958611569,57.320695747311845],[-6.446566942909271,57.34823888971391],[-6.467822077725884,57.377999191010815],[-6.531601282272561,57.40438094712397],[-6.569714871643214,57.37791430490216],[-6.563571195353575,57.33864655979181],[-6.675045389732134,57.35723204542347],[-6.720090897675959,57.37183826212703],[-6.743135444144627,57.41764853195514],[-6.781645440284024,57.42630563889503],[-6.780124238841722,57.458055576904314],[-6.7470297882932755,57.4567440218201],[-6.7481369337716615,57.50012038354981],[-6.716676864345004,57.51378858847352],[-6.639690074136809,57.442762594718886],[-6.590500670968368,57.448939578299814],[-6.623246313166021,57.47322758408666],[-6.637866328167718,57.50309276072329],[-6.598492391110142,57.509942670119074],[-6.6040570541889,57.536176829498004],[-6.641664715553361,57.55208700741042],[-6.632559230922936,57.592068061492796],[-6.582697428043048,57.5883852387887],[-6.565526556204816,57.548255506987005],[-6.50433269119992,57.53407725156484],[-6.455591187282664,57.500666177602966],[-6.364875631804182,57.51478807610977],[-6.398491427436625,57.562436553005455],[-6.373248169866315,57.571823555113895],[-6.3942483693659256,57.612751133958625],[-6.427714320858399,57.64217799631842],[-6.353580596566474,57.671233105924046],[-6.341737620593904,57.70149410836734]]],[[[-6.3101365896310995,57.05540079790944],[-6.2602291101844685,57.03678602225807],[-6.242617833145687,57.008300780657464],[-6.250024782616833,56.97119444456888],[-6.2962735465861215,56.939861387294116],[-6.344516965484786,56.94870526093996],[-6.446116063304885,57.00943245694327],[-6.3978116874586135,57.04272434735168],[-6.329988711009378,57.06039894385714],[-6.3101365896310995,57.05540079790944]]],[[[-5.978399473855802,57.494610761678246],[-5.998840847226518,57.455640505106146],[-6.025761348506649,57.442409609017204],[-6.018664705610888,57.38886012799344],[-5.992781257548188,57.3582132228629],[-6.050280926123037,57.32840788891389],[-6.082857995799031,57.3522763636642],[-6.074244380972573,57.38034093748519],[-6.084872491571446,57.42134694710484],[-6.055052085884256,57.461953181994716],[-6.011324780813197,57.46512084425251],[-6.011293817155149,57.48962460729075],[-5.978399473855802,57.494610761678246]]],[[[-6.111739179218944,56.924528986924145],[-6.116463396168001,56.88795714850454],[-6.164167532105125,56.87205241688645],[-6.210134425162778,56.88868426746592],[-6.207824802471862,56.9071308015462],[-6.111739179218944,56.924528986924145]]],[[[-5.978538681713985,57.323965564460195],[-5.926055650946751,57.30817753336743],[-5.928998454814007,57.28097134894955],[-5.980370788680148,57.27386340607228],[-6.02290825651005,57.304712271055394],[-5.978538681713985,57.323965564460195]]],[[[-6.508958805603584,57.07147782164509],[-6.573005205924687,57.04432181310216],[-6.595750447224532,57.0602318507203],[-6.508958805603584,57.07147782164509]]],[[[-6.183436414358255,57.16280247535491],[-6.229679447847445,57.129418578905245],[-6.2559747035688815,57.14957167819131],[-6.183436414358255,57.16280247535491]]]]},"properties":{"objectid":172,"ctyua17cd":"S12000017","name":"Highland","namew":"","bng_e":241026,"bng_n":858306,"long":-4.66091013,"lat":57.586689,"st_areasha":3.92635540459116,"st_lengths":51.56687192629961},"id":"172"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.614381259986374,55.93022748730965],[-4.630782766310801,55.90743780331292],[-4.599116147791165,55.87967900258485],[-4.643339983852343,55.83908612352673],[-4.750941231651723,55.84976822942116],[-4.7941882582807125,55.87223600289013],[-4.888954023908241,55.87468760694844],[-4.898688905367862,55.891226918188636],[-4.871215854327431,55.90997236623264],[-4.876897284481288,55.94370027584796],[-4.817372151103086,55.962955502795126],[-4.745781235614743,55.94657906147546],[-4.614381259986374,55.93022748730965]]]},"properties":{"objectid":173,"ctyua17cd":"S12000018","name":"Inverclyde","namew":"","bng_e":227922,"bng_n":670899,"long":-4.75387001,"lat":55.90034866,"st_areasha":0.023249991522263,"st_lengths":0.897600669814987},"id":"173"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.846239193083477,55.8189641605685],[-2.8704049378367813,55.82409953046988],[-2.9234921187654663,55.79358253780481],[-2.9497952723331196,55.81878569730304],[-2.981835942274131,55.79894941298596],[-3.059691045004911,55.768108725538184],[-3.12826690779076,55.710349196958816],[-3.1514325722545777,55.727395779792346],[-3.153994389128968,55.761062854767886],[-3.2143288673825055,55.78398813314675],[-3.2743705443643307,55.77535050911962],[-3.307160717392378,55.79766571979809],[-3.345122088412836,55.792975394699624],[-3.3690392461634815,55.82411168840463],[-3.3506753139137686,55.82713630809508],[-3.2957015315996046,55.86613822260182],[-3.201545401997862,55.894825797273654],[-3.162438265912442,55.889090278294645],[-3.092155443118372,55.900220795154496],[-3.088572976660714,55.93138962453247],[-3.0782595982011003,55.919553152456956],[-3.009591006319056,55.9016633041191],[-2.9688788474800276,55.91249868146991],[-2.9371547793687682,55.86349495143179],[-2.9033356326325475,55.860247218934944],[-2.846239193083477,55.8189641605685]]]},"properties":{"objectid":174,"ctyua17cd":"S12000019","name":"Midlothian","namew":"","bng_e":330088,"bng_n":659217,"long":-3.1173799,"lat":55.82110977,"st_areasha":0.050862339025973,"st_lengths":1.509633171587503},"id":"174"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.8015576164900153,57.69513162972186],[-2.803167399355175,57.66554257103377],[-2.77239010961506,57.64990412597558],[-2.792256372832526,57.605085213912446],[-2.7157467673985707,57.539456922300076],[-2.6499864544105094,57.52968203270058],[-2.7237639851189783,57.50445387924407],[-2.8662823574440495,57.529666318846466],[-2.9622725383461557,57.493644358301424],[-3.019941997124647,57.44952587512],[-2.9913705168350475,57.439724241481485],[-3.0240480147032827,57.40517304390181],[-2.9544834894206815,57.377831132901406],[-2.98353103123128,57.36329730712595],[-2.9721766587250045,57.32809472159505],[-2.951867430836444,57.318254337068936],[-2.984403102920055,57.2777603357718],[-3.0313062190060123,57.272488330972635],[-3.0923927301395793,57.284279603122116],[-3.2085227066567654,57.25613555171526],[-3.2580901785181027,57.199567688698835],[-3.3535210008926697,57.17817238374943],[-3.3224781197686184,57.13042110714929],[-3.336341137632587,57.110994313837466],[-3.3781390030117677,57.097811296754855],[-3.4227320422491516,57.105380769907526],[-3.4491211835949116,57.092226477171096],[-3.5168134795576407,57.08638518802695],[-3.557728429222834,57.096395080369575],[-3.5932568094534076,57.084052931198755],[-3.683694604821369,57.09525203665311],[-3.6415935168265037,57.11647425448422],[-3.560357402071645,57.14106879419046],[-3.5360893351538607,57.16727473194425],[-3.4522773956844617,57.17690208776207],[-3.432101471604824,57.20417619347751],[-3.4634872030711676,57.28944592049379],[-3.4938752770216297,57.29618143882328],[-3.394567879303395,57.37108856388704],[-3.4041774789067176,57.41714490261609],[-3.48115796576667,57.43774826277303],[-3.5027734571285123,57.46069311399697],[-3.566256489744376,57.44694300421719],[-3.609851483858108,57.44737293051725],[-3.6593980806561035,57.430308155298064],[-3.7013037019034982,57.43728615873016],[-3.682709821999879,57.48984628747712],[-3.7053461266216345,57.512341325692546],[-3.7122893991356705,57.56718981266067],[-3.762351338043004,57.630690274137805],[-3.6440303917883625,57.66317997557633],[-3.6231165119166917,57.63526152360134],[-3.514888613817675,57.6683726808555],[-3.4895188764941167,57.699499162057634],[-3.3849771115037015,57.719488468718794],[-3.2926238734921753,57.72468352752372],[-3.2305917432135516,57.70158811899745],[-3.1364010481690343,57.680200039201395],[-3.0272513629591913,57.663622978018964],[-2.932310668401783,57.686865617255364],[-2.9222590403216486,57.697484944175756],[-2.851452038679838,57.706571275944555],[-2.8015576164900153,57.69513162972186]]]},"properties":{"objectid":175,"ctyua17cd":"S12000020","name":"Moray","namew":"","bng_e":328024,"bng_n":843593,"long":-3.20186996,"lat":57.476829529999996,"st_areasha":0.335333034860199,"st_lengths":5.095454986197435},"id":"175"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.750941231651723,55.84976822942116],[-4.783728208489208,55.8397943558258],[-4.685715938838712,55.80374146669624],[-4.665635060508805,55.76845091128149],[-4.616554449227635,55.76150024903819],[-4.572377236719262,55.778964727041455],[-4.5509528198159614,55.76638657687994],[-4.529924777305837,55.744577345469054],[-4.579241030748165,55.71228966773492],[-4.621203512531281,55.66748714042012],[-4.558762936259711,55.62522052320952],[-4.592230554195908,55.59795073873653],[-4.658263249348693,55.57019447859324],[-4.7073112826887495,55.62146443903356],[-4.798585547384278,55.63878602555559],[-4.862497481073092,55.68410849051537],[-4.905241956650173,55.69912172778646],[-4.903077101426277,55.722204466663754],[-4.8574098399913055,55.74688702841456],[-4.855201133824437,55.774313870489664],[-4.888402699923859,55.81863543407894],[-4.888954023908241,55.87468760694844],[-4.7941882582807125,55.87223600289013],[-4.750941231651723,55.84976822942116]]],[[[-5.254891398418465,55.720327729941744],[-5.201481263748519,55.70238589989032],[-5.161165967634474,55.67887474017806],[-5.128096193583644,55.609839320229355],[-5.1536757562303706,55.57844611719548],[-5.108820819124674,55.57179755431463],[-5.082925763512378,55.55266962730241],[-5.12524112757518,55.52419210907948],[-5.09196263886389,55.51149650026423],[-5.083611478586079,55.454521223676466],[-5.1964704103803,55.43383423646179],[-5.251453727306853,55.43942453831272],[-5.313235927894937,55.46499882193899],[-5.3273208786548025,55.49812983892184],[-5.355394597681709,55.506686639078055],[-5.342828823090883,55.543301573909446],[-5.349115740698039,55.57090515614897],[-5.39530090461227,55.61132441748879],[-5.36484574573376,55.678319229849535],[-5.316176533819146,55.70588409357697],[-5.254891398418465,55.720327729941744]]]]},"properties":{"objectid":176,"ctyua17cd":"S12000021","name":"North Ayrshire","namew":"","bng_e":228984,"bng_n":651640,"long":-4.724790100000001,"lat":55.72787857,"st_areasha":0.126130674437934,"st_lengths":3.752919914495972},"id":"176"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.198361557339183,59.15425157525095],[-3.0953027330338614,59.11826511814161],[-3.051497003483121,59.11086964042249],[-3.044247929997141,59.08898682108588],[-3.0082720012510435,59.07764743758014],[-3.002481797196367,59.054322983419866],[-3.1116004072321743,59.00457233764422],[-3.0537933081138817,58.993506773419824],[-3.0389026655248017,59.00932421144415],[-2.8705065477381595,58.96927935945581],[-2.855156564722847,58.986225356715806],[-2.8013110322775105,58.96897639224767],[-2.8052546727641356,58.9478550162969],[-2.715516062515462,58.97300406178897],[-2.7191803528901346,58.937268998466436],[-2.7790053346276977,58.9162962354838],[-2.832334277603991,58.88082412403503],[-2.8839921165421174,58.9002922906576],[-2.8970419880964755,58.89559867943643],[-2.894776253220698,58.89025001822472],[-2.900169956077775,58.88388452774967],[-2.915328278276604,58.87271238756756],[-2.884824514638808,58.873647934305666],[-2.8911509628458703,58.86264754035267],[-2.876984536206578,58.844960147393806],[-2.9108832531587723,58.81001160325383],[-2.9267940785830433,58.77355761019652],[-2.909114414397891,58.75379176617798],[-2.9238675569413886,58.733283219745715],[-2.962457770808669,58.729997474704646],[-2.982652104010583,58.78341234250655],[-3.021994839089757,58.80725471893106],[-3.0131896479830402,58.83314181194601],[-2.9134411624788754,58.86915040676678],[-2.9240860013670726,58.877327408833764],[-2.9062156107610235,58.8799004420527],[-2.895799096250471,58.89048633847466],[-2.932766612088642,58.90256030351611],[-2.972965265233995,58.94012113178576],[-3.009327062493128,58.94494647210297],[-3.1103656254724115,58.93189703671982],[-3.202525665726057,58.91216986175067],[-3.2352061934103062,58.943195392254495],[-3.2496454177010605,58.974170200095614],[-3.306082721639484,58.94966912692962],[-3.355790717067123,58.96487111211309],[-3.367979653237569,58.99857926092511],[-3.3505321841121827,59.03628366236205],[-3.3531434789875334,59.083464816449066],[-3.3428230228633993,59.11523333535109],[-3.3109934076188665,59.13894809617864],[-3.198361557339183,59.15425157525095]]],[[[-3.2115804600693423,58.87433616927973],[-3.210949203442169,58.83686496384797],[-3.1841958591507478,58.81453088899025],[-3.1385434239390406,58.802088314325204],[-3.1881667652831993,58.777045812415224],[-3.289493270497246,58.776050065059394],[-3.328434109345835,58.817496431316215],[-3.3699907855454967,58.83720819460342],[-3.379240843389425,58.86788133565608],[-3.4351831271987407,58.87226138745399],[-3.4026758566046738,58.92223823071072],[-3.353229668213828,58.93217878532363],[-3.2115804600693423,58.87433616927973]]],[[[-2.4166470999828675,59.2875201999982],[-2.4790483794783427,59.277055655395145],[-2.5379310632671377,59.23486017096104],[-2.6563740547180146,59.24165506343138],[-2.592778583464053,59.26903503553939],[-2.593007644386489,59.29391006659722],[-2.542797499004564,59.302190571638505],[-2.5739031150359324,59.26072220706516],[-2.54449060495665,59.26013470065686],[-2.485561567411594,59.28788217262513],[-2.4166470999828675,59.2875201999982]]],[[[-2.952568393915442,59.354352485080085],[-2.9280838619798146,59.285550840300004],[-2.9770605952694495,59.26821638268086],[-3.0084102117610314,59.27439311804892],[-3.0305937706851296,59.31246356064577],[-3.0245795212271105,59.329690950377994],[-2.9796255705628027,59.33563593405205],[-2.952568393915442,59.354352485080085]]],[[[-3.0681932068501965,59.19517265379585],[-2.9787446315586976,59.16317806961314],[-2.9633515710173697,59.13989190498836],[-3.040097243991795,59.12648138281048],[-3.0931307246024176,59.145589166807554],[-3.1183507778653166,59.172668483864356],[-3.0681932068501965,59.19517265379585]]],[[[-2.628345418705294,59.16016832920599],[-2.596271581767269,59.11590334016796],[-2.5527591957794584,59.11981558712057],[-2.5427224748615345,59.080460851488056],[-2.6089554904027636,59.076507166473505],[-2.653742463043443,59.15168584182908],[-2.628345418705294,59.16016832920599]]],[[[-2.8024898087568317,59.08737132302906],[-2.8016753179607576,59.06861928115586],[-2.8359718752010394,59.025467543093555],[-2.933942796721851,59.03038083081162],[-2.9056968925967226,59.06679752448713],[-2.8604503178270875,59.056195811688326],[-2.8024898087568317,59.08737132302906]]],[[[-2.733843763777884,59.21805188688603],[-2.759340997088543,59.18918150342461],[-2.7569159796879035,59.158511925485925],[-2.8148294083496808,59.17263191922865],[-2.779870772917036,59.18947839301438],[-2.7829754826316275,59.22770942754897],[-2.733843763777884,59.21805188688603]]]]},"properties":{"objectid":177,"ctyua17cd":"S12000023","name":"Orkney Islands","namew":"","bng_e":348291,"bng_n":1006584,"long":-2.90028,"lat":58.9433403,"st_areasha":0.158256876201057,"st_lengths":12.444576314220468},"id":"177"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.8016480458198316,56.93589253791123],[-3.7834997691981584,56.92309293778976],[-3.7328101880389113,56.931191723120435],[-3.7102709481449097,56.91359065968214],[-3.6026474106486717,56.93116282250719],[-3.5376562005723713,56.89226706487409],[-3.4657073216347953,56.87282227163149],[-3.429832473988654,56.88655766040864],[-3.3721381183786434,56.87462652389587],[-3.392801364390664,56.84257475991819],[-3.351636665798651,56.820287614382835],[-3.3895910418922313,56.7683081994648],[-3.3085279360146274,56.68995955868763],[-3.2421990410521175,56.66050648019086],[-3.1513178979018335,56.65317827805603],[-3.1781346291090244,56.635608868055726],[-3.1499193684832676,56.6081448246249],[-3.097943392572688,56.598327245107214],[-3.1377991351211563,56.57663707494197],[-3.190202805214483,56.56130571149032],[-3.1640433030551662,56.53815040092121],[-3.2072172885461896,56.51841684256419],[-3.191565580286465,56.50329665431809],[-3.1196097711732023,56.46767818719951],[-3.089424772234622,56.46694590882754],[-3.051927258935052,56.458390713061874],[-3.126560896567298,56.431096043448576],[-3.193670993021101,56.38461886516944],[-3.254056907999086,56.36891364724795],[-3.2771106617268515,56.35041982141854],[-3.3006221595841794,56.3139878707446],[-3.383637847407897,56.26876934403094],[-3.3148787936206077,56.239531670251324],[-3.2609468507157544,56.19614478735298],[-3.371719386839402,56.16440697580225],[-3.3724186645889063,56.14545786998565],[-3.4169020252074915,56.1384448577449],[-3.498877844935805,56.14981280371887],[-3.6283533028617967,56.132775964140365],[-3.6478630415452926,56.15968325078234],[-3.5933453072393036,56.17298022635731],[-3.60285693919559,56.204548943779685],[-3.6669412783165285,56.18863499680862],[-3.737802275254012,56.18927214309588],[-3.752194147541047,56.21191576550109],[-3.829456338938087,56.19655647630128],[-3.8990340932480194,56.22757281033785],[-3.9401814016495678,56.22798468724443],[-4.00528826184302,56.274942486607415],[-4.037570370075684,56.26911953643838],[-4.078511587139246,56.289923574913985],[-4.118720897250796,56.28784894327504],[-4.18821580511451,56.30422688916053],[-4.237421586736048,56.329220457159295],[-4.240632856220543,56.38439981460073],[-4.196460754559382,56.386704748226464],[-4.202059113436519,56.45782900370648],[-4.1618996572426,56.444736434140054],[-4.108813175986484,56.48894649618478],[-4.15449034705108,56.51029567940304],[-4.194452207802328,56.49532984449769],[-4.296896144041,56.47505376921703],[-4.310223705558769,56.51558852419197],[-4.331235526997148,56.53902889556804],[-4.365043340476973,56.54710263747768],[-4.402838315335146,56.52683960146737],[-4.6007305756547225,56.4975665591503],[-4.639080436711993,56.47604949588845],[-4.686220712115357,56.4905598862307],[-4.6525914167596625,56.518722692099516],[-4.697598235869066,56.54996974091176],[-4.641420360260611,56.56796587202831],[-4.570524687263685,56.576265049693234],[-4.5861512127074775,56.59966768281822],[-4.6264352259041175,56.6156117777623],[-4.618337016139549,56.63779653997926],[-4.7154322884685484,56.64234411928663],[-4.717547557772775,56.67660401566371],[-4.657579626098084,56.674757802831266],[-4.617194063254601,56.69058213955503],[-4.576004952565711,56.73480469678026],[-4.5898812696041205,56.75989698875594],[-4.546802294789245,56.77238255011554],[-4.528536431810096,56.8013331584994],[-4.441851918330542,56.77385800124671],[-4.374270853216501,56.832273257006136],[-4.30396597904587,56.851411195271396],[-4.227701898423049,56.857616750313696],[-4.1867243775271845,56.906888241799834],[-4.136217992765353,56.89724863361846],[-3.967765644867825,56.8992923393709],[-3.964012910666497,56.9366456131055],[-3.8548345622644433,56.922800399120035],[-3.8016480458198316,56.93589253791123]]]},"properties":{"objectid":178,"ctyua17cd":"S12000024","name":"Perth and Kinross","namew":"","bng_e":284304,"bng_n":744186,"long":-3.88479996,"lat":56.57529068,"st_areasha":0.786521944480562,"st_lengths":7.560626155951213},"id":"178"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.0343828682739513,55.81107190904231],[-2.0861144417272612,55.79304860401078],[-2.085661768874729,55.76272816897074],[-2.1001250059634344,55.76330484034702],[-2.110244059814704,55.75818008244579],[-2.1365371301835694,55.740403640416616],[-2.150497684020081,55.72320241466065],[-2.218651981502944,55.67590903687346],[-2.2184455511204533,55.66426191705477],[-2.3360062599800813,55.63205627277972],[-2.295128387564205,55.60862365625769],[-2.2885294150996174,55.580050800005324],[-2.232241505640161,55.54483014799388],[-2.2288381706442237,55.509518595207965],[-2.2026416604834367,55.48954072972185],[-2.1942118014326866,55.44525690078626],[-2.2312742227263698,55.42842803482688],[-2.2606038368967347,55.43293282349197],[-2.3323593175276756,55.40990935713205],[-2.3374700064348417,55.36727917009853],[-2.399795963212341,55.3483308359003],[-2.4443995290142198,55.35918152241027],[-2.4950146346168935,55.34748963434009],[-2.520263512050633,55.32304496125687],[-2.646765712366914,55.260041389599394],[-2.635799929722168,55.22976319841382],[-2.666809317395291,55.22157764739143],[-2.6897849542114614,55.188981337619566],[-2.7848711851562484,55.14177156530644],[-2.8254994120674155,55.1383102015555],[-2.858537237702535,55.10834443035213],[-2.865114594961767,55.13532156643805],[-2.8969132078774464,55.14667951464884],[-2.9047494855994387,55.17366585889323],[-2.8638394858028278,55.236349374425004],[-2.9214426213790716,55.23671956056023],[-2.917056344473906,55.27740970489492],[-2.962081668933081,55.29026383990521],[-3.010167600353668,55.267432297863195],[-3.1020248352771205,55.351584836671805],[-3.1792538282007854,55.360465722815775],[-3.217390198298176,55.376132348130284],[-3.2885665622961824,55.3434138294856],[-3.3133454144585244,55.35489615753255],[-3.2925289545468104,55.40162363602292],[-3.2435879297383394,55.42768376219681],[-3.310983349601088,55.44482678113195],[-3.3776880019988766,55.41142359512372],[-3.420493073895443,55.41599325818328],[-3.472131301317688,55.40375389342836],[-3.507381657936378,55.41226257715715],[-3.539569162885755,55.44317027039261],[-3.4948363681031083,55.52419489697786],[-3.4884798384729265,55.56266685089537],[-3.5300234610131156,55.61139727246706],[-3.4817073229338007,55.61643078335493],[-3.4857399198605776,55.64902297333248],[-3.419249543530782,55.710580874009054],[-3.4716391994886635,55.77097191872002],[-3.439404685177294,55.7845964345787],[-3.4355330785878664,55.8054983058031],[-3.3947664388192607,55.819742986050926],[-3.3690392461634815,55.82411168840463],[-3.345122088412836,55.792975394699624],[-3.307160717392378,55.79766571979809],[-3.2743705443643307,55.77535050911962],[-3.2143288673825055,55.78398813314675],[-3.153994389128968,55.761062854767886],[-3.1514325722545777,55.727395779792346],[-3.12826690779076,55.710349196958816],[-3.059691045004911,55.768108725538184],[-2.981835942274131,55.79894941298596],[-2.9497952723331196,55.81878569730304],[-2.9234921187654663,55.79358253780481],[-2.8704049378367813,55.82409953046988],[-2.846239193083477,55.8189641605685],[-2.758279334822646,55.83869809124485],[-2.7399167299723217,55.82818940431849],[-2.6692600455138518,55.84655108916235],[-2.5941731468724356,55.82867442308708],[-2.554876439994871,55.83909205185762],[-2.5327101597452497,55.86976160371597],[-2.570015990644663,55.89214683920619],[-2.53591670509104,55.914591732123654],[-2.5047171980394296,55.911933755239545],[-2.466841099836074,55.88909078910956],[-2.4074374477791594,55.91433107621913],[-2.366737598860311,55.9459599052264],[-2.3304297213537666,55.93025391838455],[-2.2591497428655316,55.92380370997415],[-2.223694307545429,55.933006313291685],[-2.1751529738298814,55.91622497110649],[-2.13792951093734,55.917009165541515],[-2.1256540653819798,55.8836579882265],[-2.076897304466229,55.87263156699413],[-2.0697735110379085,55.84268653325785],[-2.0343828682739513,55.81107190904231]]]},"properties":{"objectid":179,"ctyua17cd":"S12000026","name":"Scottish Borders","namew":"","bng_e":345891,"bng_n":626135,"long":-2.85865998,"lat":55.52593994,"st_areasha":0.675567213940482,"st_lengths":5.75606460123415},"id":"179"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.3082031687404196,60.6376141917425],[-1.3043469711349758,60.595107981648994],[-1.315437397117364,60.541383597775734],[-1.3532122289603876,60.541693038304004],[-1.3114681871063567,60.48218948235967],[-1.3562805889771994,60.43867812609557],[-1.277473856932147,60.44817350370516],[-1.3030859759361988,60.46379356931874],[-1.2726189199264013,60.48568264613817],[-1.227649276092393,60.494799322831454],[-1.1647945197504441,60.43873854434929],[-1.1937317300344716,60.419962233371336],[-1.1512655973286314,60.403590374097405],[-1.0975669646429083,60.40591315656786],[-1.0754913855182053,60.356722610361146],[-1.1751729974350837,60.34676001246555],[-1.123698971829242,60.32359808648346],[-1.1164597198393835,60.302830894131375],[-1.1598608560927914,60.28070047524767],[-1.1973196553769867,60.2273169164435],[-1.1536168055703229,60.20409015114052],[-1.1490750448766107,60.1509496440118],[-1.1881902325923193,60.12773586132187],[-1.217131242512039,60.07329178958537],[-1.200432605579465,60.03840859018521],[-1.233347248375992,60.033259906720275],[-1.2107967120977605,59.99729754784448],[-1.2599412606797955,59.98882893610744],[-1.2548505798895349,59.95415768532985],[-1.2835870012382884,59.88404622565372],[-1.334576301254458,59.89916722688696],[-1.3790734053125675,59.89438729423921],[-1.3301403197191348,59.972210976456324],[-1.3469348792404503,59.99892683160891],[-1.317534561270179,60.01279049428683],[-1.3042531169869562,60.05848864833342],[-1.2748364151676128,60.11054492920607],[-1.302090025333598,60.134566946108635],[-1.2957842480437876,60.184515921173784],[-1.3064593778971698,60.21632029784439],[-1.3476663949873,60.20068302820016],[-1.3945258840614656,60.19983218051169],[-1.4222433825252665,60.16473574465982],[-1.5105419362605517,60.16459270389112],[-1.5150795519789426,60.20882599542432],[-1.5629060847471692,60.22190904476753],[-1.623411647328851,60.20648844878383],[-1.6788940924875533,60.23578193538896],[-1.6931117085376854,60.298406089370474],[-1.6015002340477622,60.307004456191635],[-1.5705166955881964,60.29967118457847],[-1.5052305897191331,60.31951180452711],[-1.4813183386695528,60.30305963669383],[-1.4342947458050617,60.3220798087371],[-1.36540879228113,60.30536828002306],[-1.3701764240019543,60.33671003823861],[-1.3381768485818952,60.34269619737256],[-1.331808520745824,60.36859793854495],[-1.404959333705449,60.38371764115715],[-1.4527375467995398,60.416002349329915],[-1.4458202916723053,60.44908248267137],[-1.4967172196231786,60.45275444246448],[-1.5544340942572035,60.49051138139606],[-1.592255153052065,60.47702443483075],[-1.6329924218619567,60.48722272794748],[-1.5656098937807315,60.515271273151654],[-1.5664842407542778,60.5377515112242],[-1.5334314665880697,60.55628840918371],[-1.4957239543961691,60.546737618946906],[-1.4500416356121946,60.57189906609],[-1.4189849975587663,60.611340249953514],[-1.3751793705307023,60.60581419746819],[-1.3082031687404196,60.6376141917425]]],[[[-1.073319771889146,60.73188030123583],[-1.0117938241248794,60.726839568792],[-0.9892099751593832,60.654966755412374],[-1.031401204001554,60.597333756948274],[-1.0042238410566142,60.565838200273674],[-1.037957927215757,60.54747740575863],[-1.0236690129137855,60.51924629817904],[-1.0416553935807542,60.48998403153877],[-1.090472590736681,60.499518212196676],[-1.1463887267574933,60.48376779255051],[-1.1679021891338834,60.49912719956154],[-1.2023884583598488,60.566951990842654],[-1.1881466091778634,60.635503452323405],[-1.1273319424144006,60.68268076630528],[-1.1279682793118013,60.726819151483596],[-1.073319771889146,60.73188030123583]]],[[[-0.8759699304670789,60.84573187322832],[-0.8660961828916811,60.83350873943772],[-0.7878921530995626,60.82602568573776],[-0.8235281102332692,60.78962225616311],[-0.8027923500860652,60.75846701554127],[-0.8623299210881896,60.7067275064702],[-0.8566999177661501,60.673843419938805],[-0.9651449598711679,60.695911433966444],[-0.9843951811918146,60.71958663811381],[-0.9389783980338393,60.75065182422327],[-0.9322272045210411,60.78183994945505],[-0.9549198138974475,60.791324841868914],[-0.8759699304670789,60.84573187322832]]],[[[-0.8664315949413322,60.632604722430926],[-0.8315391801882015,60.62821021313175],[-0.8940374560629039,60.56281695483955],[-0.9481721142508377,60.610273266399076],[-0.8664315949413322,60.632604722430926]]],[[[-1.080812154256705,60.1884216534375],[-1.0454344734213805,60.166351894725096],[-1.0749180812036911,60.10817687126655],[-1.1223273681127353,60.11990336884634],[-1.1149493273487678,60.15780189434287],[-1.080812154256705,60.1884216534375]]],[[[-0.9001832844302271,60.38165840860961],[-1.0049505876986586,60.32637416413729],[-1.0377204945044127,60.34107446431602],[-1.0026035514119371,60.369182912462406],[-0.9001832844302271,60.38165840860961]]],[[[-1.4336813362238559,60.39096657794619],[-1.381005538474028,60.35835486098898],[-1.443064318362758,60.34612605247628],[-1.4658713448858407,60.37294014597188],[-1.4336813362238559,60.39096657794619]]],[[[-2.0736529723060357,60.15767683371985],[-2.0398823655779097,60.139504812298185],[-2.086657222152269,60.11952699717415],[-2.1121618326016574,60.14591002043204],[-2.0736529723060357,60.15767683371985]]]]},"properties":{"objectid":180,"ctyua17cd":"S12000027","name":"Shetland Islands","namew":"","bng_e":434516,"bng_n":1180307,"long":-1.37344003,"lat":60.50495148,"st_areasha":0.237892543305311,"st_lengths":20.779551565322624},"id":"180"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.461860522644201,55.17021451808648],[-4.478634301530974,55.15291974125398],[-4.564981993723222,55.15800893726356],[-4.623186736178127,55.14077779196248],[-4.663605040639311,55.114182115013534],[-4.646757408526753,55.05637506985454],[-4.71519026561748,55.03750377607935],[-4.841076370077587,55.044737435185425],[-4.873297361283392,55.03829440876086],[-4.912946016944318,55.0663801409317],[-4.961685886793418,55.02068481885027],[-5.039774930168107,54.997783675577125],[-5.060394398981543,55.029526984683514],[-5.052502587223785,55.05124400950439],[-5.014601981595376,55.08700287428417],[-4.996542273806085,55.13834682284852],[-4.941555755293052,55.164019066028004],[-4.910854623741102,55.19835367808071],[-4.859070823059199,55.232208550385224],[-4.864967253235363,55.24540376407339],[-4.8361366171103555,55.28315085812653],[-4.847212733979688,55.32378391709506],[-4.775512103000324,55.35935645583669],[-4.769642093107279,55.40065355531823],[-4.712911090373723,55.43291068308247],[-4.650957076107375,55.440828865660535],[-4.620366217626042,55.49700046669909],[-4.664118082282869,55.54193859199336],[-4.658263249348693,55.57019447859324],[-4.592230554195908,55.59795073873653],[-4.544840202512546,55.593038562580546],[-4.499846260795493,55.56279659248969],[-4.449260239267801,55.56514514143606],[-4.410460605671631,55.554342439153174],[-4.398873185548268,55.51133767189697],[-4.439594861912553,55.50438303644893],[-4.493512339222264,55.47014343687107],[-4.454382265028698,55.430840007561244],[-4.453974426078105,55.40931539449082],[-4.501913775199739,55.39911864551004],[-4.553723111231761,55.42703747789824],[-4.573398983475499,55.393715235370735],[-4.519828710126035,55.38357059670659],[-4.5488642558798915,55.363307266617994],[-4.515343737122976,55.33647863738014],[-4.437975427523156,55.30779136038393],[-4.458642635948081,55.285239644195144],[-4.438560199093104,55.27159435759444],[-4.451843154237395,55.211273066100034],[-4.472152571882873,55.197824701349816],[-4.461860522644201,55.17021451808648]]]},"properties":{"objectid":181,"ctyua17cd":"S12000028","name":"South Ayrshire","namew":"","bng_e":226544,"bng_n":596270,"long":-4.72901011,"lat":55.23006821,"st_areasha":0.173128192543182,"st_lengths":3.381702810876708},"id":"181"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.1983303686507725,55.833398459272416],[-4.174593301938501,55.82334943203159],[-4.107044616015401,55.83465677718942],[-4.053353481876854,55.801281137415515],[-3.9470651525339235,55.750532530153066],[-3.9088878821692106,55.74909176137663],[-3.8683754357769544,55.764155511768365],[-3.744021178933451,55.78201106805727],[-3.6857959004596523,55.79736532015431],[-3.6156100677496283,55.8030750025103],[-3.5550040940628946,55.78569361107225],[-3.4716391994886635,55.77097191872002],[-3.419249543530782,55.710580874009054],[-3.4857399198605776,55.64902297333248],[-3.4817073229338007,55.61643078335493],[-3.5300234610131156,55.61139727246706],[-3.4884798384729265,55.56266685089537],[-3.4948363681031083,55.52419489697786],[-3.539569162885755,55.44317027039261],[-3.507381657936378,55.41226257715715],[-3.5784992080712072,55.384961209393225],[-3.573970199764119,55.328357642392234],[-3.6215578716976324,55.316538386937964],[-3.6186805303813685,55.296201310642914],[-3.663619823894919,55.291747126829364],[-3.711164069365509,55.32315607159637],[-3.71105075658636,55.363238984692316],[-3.753667669626452,55.37493903950599],[-3.764602092012126,55.40110036099378],[-3.8164110395370585,55.42726711258808],[-3.825507196399201,55.44441392936028],[-3.8954450365583853,55.45975641742564],[-3.9862358005409533,55.46405020985026],[-4.025697261418657,55.49245064807985],[-3.957056863282787,55.555750199213264],[-4.048807640059749,55.58457804384261],[-4.081578338268912,55.56757873117442],[-4.2394162110884395,55.5635334753905],[-4.20248697759115,55.583044768102525],[-4.201919520668525,55.62693003819163],[-4.246907606000377,55.67905235718149],[-4.221616714938648,55.6915355596193],[-4.225408196430294,55.729204785873094],[-4.282572055455205,55.76830869429176],[-4.250754437166734,55.78488998948234],[-4.211343708844254,55.80031618734313],[-4.22800903308962,55.84054409723325],[-4.1983303686507725,55.833398459272416]]]},"properties":{"objectid":182,"ctyua17cd":"S12000029","name":"South Lanarkshire","namew":"","bng_e":284634,"bng_n":636071,"long":-3.83272004,"lat":55.60453033,"st_areasha":0.253102297334907,"st_lengths":3.278448250857369},"id":"182"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.829456338938087,56.19655647630128],[-3.883965735629374,56.12946303349315],[-3.820161709794263,56.09835433998177],[-3.835897138641201,56.08465356970743],[-3.7996751688731365,56.06280955162043],[-3.824505351639857,56.05109599168759],[-3.8967377211681082,56.045426169083385],[-3.9733633283540826,56.048628405777265],[-4.020129768173433,56.02804308152395],[-4.081800282855966,56.02534932511219],[-4.1523872131984945,56.008041610632745],[-4.222543565232513,56.02033585022025],[-4.294102614143526,56.008694087662946],[-4.27266643860446,55.96535071126726],[-4.335225485267131,55.95942092253847],[-4.366389690331118,55.98041795192785],[-4.40205259744863,55.971834896963855],[-4.470098089554369,56.00207607924858],[-4.492147087417322,56.03375740258298],[-4.488020162399778,56.06021812546703],[-4.598204369235418,56.08423367894204],[-4.599753383111306,56.11534544183962],[-4.641166283796167,56.12348586937833],[-4.657319954051843,56.15703796603026],[-4.69538334236654,56.199177645732675],[-4.685548627166611,56.21910365630964],[-4.701432231011836,56.2546678853156],[-4.67067453749911,56.302522913102905],[-4.695716960268669,56.32248180739043],[-4.778750605755022,56.3390178765747],[-4.831737707428431,56.36680052462543],[-4.835164783627079,56.390145890721215],[-4.789938021821456,56.427340926943145],[-4.73340444365931,56.43425356585033],[-4.726420292461739,56.45950177149052],[-4.665545525804589,56.460092236668345],[-4.639080436711993,56.47604949588845],[-4.6007305756547225,56.4975665591503],[-4.402838315335146,56.52683960146737],[-4.365043340476973,56.54710263747768],[-4.331235526997148,56.53902889556804],[-4.310223705558769,56.51558852419197],[-4.296896144041,56.47505376921703],[-4.194452207802328,56.49532984449769],[-4.15449034705108,56.51029567940304],[-4.108813175986484,56.48894649618478],[-4.1618996572426,56.444736434140054],[-4.202059113436519,56.45782900370648],[-4.196460754559382,56.386704748226464],[-4.240632856220543,56.38439981460073],[-4.237421586736048,56.329220457159295],[-4.18821580511451,56.30422688916053],[-4.118720897250796,56.28784894327504],[-4.078511587139246,56.289923574913985],[-4.037570370075684,56.26911953643838],[-4.00528826184302,56.274942486607415],[-3.9401814016495678,56.22798468724443],[-3.8990340932480194,56.22757281033785],[-3.829456338938087,56.19655647630128]]]},"properties":{"objectid":183,"ctyua17cd":"S12000030","name":"Stirling","namew":"","bng_e":255980,"bng_n":708769,"long":-4.32595015,"lat":56.249530789999994,"st_areasha":0.326726864343387,"st_lengths":4.032797464352316},"id":"183"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.0609759911482683,57.21192536106747],[-2.0768322043419403,57.17759373386468],[-2.071157257400671,57.13978043352114],[-2.0527608920007765,57.12518890094793],[-2.085194867848031,57.085853592470244],[-2.1186777769570426,57.09043636134993],[-2.1260664459089185,57.11842577972686],[-2.171996554896282,57.11403415545283],[-2.2352263267328,57.094319412711684],[-2.360870241967291,57.10919655018159],[-2.3511785819251827,57.1356461916194],[-2.304171246105284,57.123430738938396],[-2.2535093190990096,57.16017907740343],[-2.295060742358544,57.19785273461696],[-2.241185400984648,57.23535226329727],[-2.1431206064300454,57.2113014914716],[-2.1282242180723756,57.22745546929542],[-2.0609759911482683,57.21192536106747]]]},"properties":{"objectid":184,"ctyua17cd":"S12000033","name":"Aberdeen City","namew":"","bng_e":387763,"bng_n":808478,"long":-2.20397997,"lat":57.1669693,"st_areasha":0.027516610536821,"st_lengths":1.3942314522086},"id":"184"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.0609759911482683,57.21192536106747],[-2.1282242180723756,57.22745546929542],[-2.1431206064300454,57.2113014914716],[-2.241185400984648,57.23535226329727],[-2.295060742358544,57.19785273461696],[-2.2535093190990096,57.16017907740343],[-2.304171246105284,57.123430738938396],[-2.3511785819251827,57.1356461916194],[-2.360870241967291,57.10919655018159],[-2.2352263267328,57.094319412711684],[-2.171996554896282,57.11403415545283],[-2.1260664459089185,57.11842577972686],[-2.1186777769570426,57.09043636134993],[-2.085194867848031,57.085853592470244],[-2.120484222667926,57.043602889662566],[-2.1612973349032814,57.018060830543845],[-2.18747076935972,56.97868844211882],[-2.209146318347109,56.96765492073894],[-2.196463780278407,56.90886795269478],[-2.2146613973048375,56.881982083407365],[-2.3161863433242615,56.80152740486676],[-2.4449381329876587,56.75170911028812],[-2.5297240778031096,56.7851464984131],[-2.6158127670447584,56.78330468866142],[-2.6661664837953936,56.83466829730503],[-2.6621959985456556,56.88860848879165],[-2.6812840325312663,56.91035575331631],[-2.724683800915841,56.92584192246767],[-2.7656667986830143,56.95997348289086],[-2.8245059534861525,56.96194858206235],[-2.8924263552912635,56.98681642214109],[-2.9240749855713375,56.97236097138267],[-3.08316851521397,56.95844403826271],[-3.1306336904916066,56.888375243323765],[-3.160446201929858,56.90683367723335],[-3.1985117836910604,56.905836505351374],[-3.2615960820926944,56.92173753266195],[-3.3721381183786434,56.87462652389587],[-3.429832473988654,56.88655766040864],[-3.4657073216347953,56.87282227163149],[-3.5376562005723713,56.89226706487409],[-3.6026474106486717,56.93116282250719],[-3.7102709481449097,56.91359065968214],[-3.7328101880389113,56.931191723120435],[-3.7834997691981584,56.92309293778976],[-3.8016480458198316,56.93589253791123],[-3.7878443697210855,56.9632435491514],[-3.760392582251086,56.974397073367186],[-3.7443977034903924,57.01672448924472],[-3.757392333288749,57.037809993937],[-3.749734154606756,57.07629601325135],[-3.683694604821369,57.09525203665311],[-3.5932568094534076,57.084052931198755],[-3.557728429222834,57.096395080369575],[-3.5168134795576407,57.08638518802695],[-3.4491211835949116,57.092226477171096],[-3.4227320422491516,57.105380769907526],[-3.3781390030117677,57.097811296754855],[-3.336341137632587,57.110994313837466],[-3.3224781197686184,57.13042110714929],[-3.3535210008926697,57.17817238374943],[-3.2580901785181027,57.199567688698835],[-3.2085227066567654,57.25613555171526],[-3.0923927301395793,57.284279603122116],[-3.0313062190060123,57.272488330972635],[-2.984403102920055,57.2777603357718],[-2.951867430836444,57.318254337068936],[-2.9721766587250045,57.32809472159505],[-2.98353103123128,57.36329730712595],[-2.9544834894206815,57.377831132901406],[-3.0240480147032827,57.40517304390181],[-2.9913705168350475,57.439724241481485],[-3.019941997124647,57.44952587512],[-2.9622725383461557,57.493644358301424],[-2.8662823574440495,57.529666318846466],[-2.7237639851189783,57.50445387924407],[-2.6499864544105094,57.52968203270058],[-2.7157467673985707,57.539456922300076],[-2.792256372832526,57.605085213912446],[-2.77239010961506,57.64990412597558],[-2.803167399355175,57.66554257103377],[-2.8015576164900153,57.69513162972186],[-2.7142144359466442,57.69270668516634],[-2.68358269878172,57.68281815813242],[-2.598241210362744,57.682095308252826],[-2.5536384251723803,57.67068318488202],[-2.4277758820505255,57.67421834430206],[-2.3964988705256474,57.66830390340334],[-2.2922712459204604,57.68929915123579],[-2.1752634474493107,57.67360965436302],[-2.118083667726296,57.7011302183858],[-1.995603108795592,57.681141604202594],[-1.9200309737496468,57.67488207005243],[-1.8857219258254077,57.638481141492434],[-1.8234516110022128,57.61213720366993],[-1.8220844040711768,57.57056564279111],[-1.7787675306961432,57.47498374870196],[-1.8153507329491276,57.427553397871975],[-1.8650897127192252,57.389078094879096],[-1.9901069767547597,57.305007658777356],[-2.0438472651383677,57.24324064593998],[-2.0609759911482683,57.21192536106747]]]},"properties":{"objectid":185,"ctyua17cd":"S12000034","name":"Aberdeenshire","namew":"","bng_e":352286,"bng_n":816276,"long":-2.79204988,"lat":57.23468018,"st_areasha":0.94013091620519,"st_lengths":8.339018391338517},"id":"185"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.639080436711993,56.47604949588845],[-4.665545525804589,56.460092236668345],[-4.726420292461739,56.45950177149052],[-4.73340444365931,56.43425356585033],[-4.789938021821456,56.427340926943145],[-4.835164783627079,56.390145890721215],[-4.831737707428431,56.36680052462543],[-4.778750605755022,56.3390178765747],[-4.695716960268669,56.32248180739043],[-4.67067453749911,56.302522913102905],[-4.701432231011836,56.2546678853156],[-4.685548627166611,56.21910365630964],[-4.69538334236654,56.199177645732675],[-4.657319954051843,56.15703796603026],[-4.641166283796167,56.12348586937833],[-4.599753383111306,56.11534544183962],[-4.598204369235418,56.08423367894204],[-4.619544762480018,56.05245613804129],[-4.6015490666353,56.02023099826289],[-4.659908047317742,56.00275352685469],[-4.61568591187455,55.98217060918722],[-4.609633319821057,55.94656820036312],[-4.666455565071487,55.95837048740901],[-4.694292866721639,55.985345651281705],[-4.825826621000942,56.03358529752438],[-4.780156612137148,55.98872506431121],[-4.84617538668391,55.98637169679728],[-4.867077010594755,56.01353416157326],[-4.880022407907006,56.058175867623106],[-4.914465717418125,56.05125058514733],[-4.8955132544323305,55.9881334426052],[-4.933669258528653,55.943043809425205],[-4.951099711581605,55.89776105942627],[-4.97885727214458,55.861777374926874],[-5.044842476798067,55.87072754304262],[-5.073695095951109,55.90624609997849],[-5.103919069708468,55.899459744772344],[-5.166505408097294,55.93240844669339],[-5.194434026008707,55.93647836278717],[-5.207480374918532,55.9164464687305],[-5.242214065625831,55.89443254982325],[-5.201957257820368,55.83986906880341],[-5.249473896802101,55.84065387927404],[-5.317224511101472,55.85731044861922],[-5.351040369017028,55.909981455680565],[-5.329553418654541,55.954303287267805],[-5.341908997401504,55.99508174772541],[-5.3015324790398495,56.023649378017296],[-5.264280393424599,56.07123744835047],[-5.2028357596617525,56.10708017581038],[-5.203318969893758,56.128348363387204],[-5.101797824409232,56.155989715353996],[-5.070664187301588,56.196933111474834],[-5.0088911651943135,56.24262880227832],[-5.06967294734784,56.23606198327485],[-5.107067532339954,56.19656677803533],[-5.117530690188403,56.17072369244539],[-5.192142983311214,56.149889761404324],[-5.236619908381272,56.1284917791732],[-5.257168207545931,56.09741123983781],[-5.297479894680578,56.06532411181922],[-5.341788318275462,56.04938247652103],[-5.338121771501733,56.031312297025806],[-5.384560058598993,56.0026469832726],[-5.450642153511751,56.00809244661008],[-5.451150649082365,55.97192530311116],[-5.432095853140311,55.95257039890572],[-5.403803972974174,55.876735617755514],[-5.339938755468381,55.82734121952262],[-5.314606717725042,55.78314650710655],[-5.394298387160006,55.752068708005424],[-5.451064379816444,55.70710853043528],[-5.445884919752416,55.69730101253265],[-5.476441032926516,55.63392295508123],[-5.459033982931146,55.590722893747454],[-5.495655983735844,55.566393702608195],[-5.51540048144625,55.4888812478722],[-5.544518249516784,55.46774140074598],[-5.551511051293176,55.41778845157671],[-5.526550742921643,55.391999723709205],[-5.521530821689282,55.35981519011989],[-5.603553847731064,55.3075360869218],[-5.6913091246156,55.30680276893355],[-5.761673692186321,55.28886728269987],[-5.803906208903584,55.30566845853349],[-5.796787554201444,55.38966107629858],[-5.750125442934063,55.42470310406594],[-5.722315316098161,55.42669202851522],[-5.712956046383624,55.45830479742938],[-5.713717277529554,55.52069205469547],[-5.703861610823878,55.53261767206885],[-5.715350193655695,55.578542916623235],[-5.6927672853810805,55.58737473935366],[-5.663108320591732,55.6678421145229],[-5.6765864286199985,55.68244602356606],[-5.620031922334533,55.70972726000599],[-5.583324145991753,55.75532749406955],[-5.6643925641647,55.79928185997079],[-5.662913388041602,55.84738224349667],[-5.607557235577133,55.91213980430945],[-5.619888849190204,55.923686738752906],[-5.677649688981148,55.886591168448604],[-5.68850907373394,55.910889844691496],[-5.6657681590724565,55.948835495562605],[-5.705972238727043,55.966909730100895],[-5.629098683056952,56.05307663338084],[-5.584728935591102,56.09173805826572],[-5.548345615756773,56.14322541542151],[-5.524016136834462,56.160942375391244],[-5.585912276129818,56.16886395830596],[-5.54608124425323,56.219150940864154],[-5.534990851545729,56.257892121225325],[-5.599242917825563,56.25431632414001],[-5.57767342049118,56.333492218891706],[-5.538489606409428,56.350348143652866],[-5.529994181385575,56.379691054299656],[-5.4655107914890095,56.445995324025944],[-5.349895737097768,56.45974170341782],[-5.330464049675356,56.45056235207181],[-5.266973160582097,56.4579338178923],[-5.248692412024411,56.43747983872453],[-5.190507230723313,56.44831924323944],[-5.10333057314665,56.512466590661575],[-5.095938968807559,56.52849973377664],[-5.061762028593932,56.52712160997527],[-4.98824393340999,56.54627002624164],[-4.951548820420896,56.56369536305152],[-4.902194358382133,56.5718286922413],[-4.801114523715512,56.57361367473226],[-4.77945650521275,56.587784170803786],[-4.726201256282138,56.587821400038536],[-4.702241117232973,56.605570548542914],[-4.6264352259041175,56.6156117777623],[-4.5861512127074775,56.59966768281822],[-4.570524687263685,56.576265049693234],[-4.641420360260611,56.56796587202831],[-4.697598235869066,56.54996974091176],[-4.6525914167596625,56.518722692099516],[-4.686220712115357,56.4905598862307],[-4.639080436711993,56.47604949588845]]],[[[-6.117263811674775,56.65307811876113],[-6.066586439711614,56.63860453047562],[-5.983967255783398,56.57279184906554],[-5.963848031260852,56.530001971214915],[-5.920278586886468,56.51647168362223],[-5.796893952093399,56.51511182595095],[-5.768461318134541,56.489300731944184],[-5.718427277995659,56.485402581864605],[-5.645889722631807,56.447204016453156],[-5.6668173846138075,56.39055796727729],[-5.745829314070761,56.34176537827051],[-5.8341528743548565,56.3108750185682],[-5.8889877186074955,56.32169369370996],[-5.986833137038843,56.32287011396551],[-6.045362527557813,56.292496557770846],[-6.079012286986654,56.302398398368325],[-6.166717892515919,56.29015232646964],[-6.252046340765219,56.28610803206095],[-6.264683704088839,56.2642592178895],[-6.349923471090506,56.282855815544394],[-6.373812516033979,56.32071984664452],[-6.339426884542263,56.34783980046734],[-6.273325907463857,56.33793067626061],[-6.243993960452087,56.319118354629325],[-6.177779108518223,56.34105054045102],[-6.103165118374704,56.34229489549398],[-6.117187623809002,56.365596056313905],[-6.194885869486484,56.35886328181596],[-6.206025561229865,56.38524084618905],[-6.15119231057588,56.41309662171267],[-6.129113214202675,56.44844387308723],[-6.072066988300037,56.44786312238614],[-6.01797312515879,56.46778936229015],[-6.035099154101886,56.48832360684992],[-6.121840545204179,56.47211751511219],[-6.148753370770635,56.50019569657508],[-6.225382664277731,56.52887508741628],[-6.2868244516863,56.52348332259817],[-6.340501934116162,56.5372301561477],[-6.305243757892299,56.55846110279862],[-6.311921242970186,56.601431260545155],[-6.227005851538024,56.61419841672449],[-6.227033155854656,56.63345701163274],[-6.117263811674775,56.65307811876113]]],[[[-6.120161760056362,55.93449346550199],[-6.132125647180089,55.8897360158054],[-6.10316905470728,55.84592061314669],[-6.104073227696517,55.81289161885405],[-6.084081363363396,55.78262985108768],[-6.046953877918327,55.7636517826046],[-6.052875877618874,55.74196687437268],[-6.020008823347723,55.684174300204745],[-6.120293034095425,55.63355382475015],[-6.149438745900568,55.62556994939456],[-6.194047873110037,55.63298228580476],[-6.267888882465172,55.57907283674297],[-6.332160570153405,55.59670151746201],[-6.33330609869671,55.61993889926174],[-6.304099767189712,55.6486719229718],[-6.261158638659424,55.659019072772935],[-6.269722935564232,55.68214020550704],[-6.33154907432953,55.74199383245036],[-6.25230720621181,55.77103237744319],[-6.281114084946239,55.781194263305565],[-6.347345631894598,55.784172484273654],[-6.371779819782034,55.744654391288066],[-6.414812173742007,55.706049499585674],[-6.474544855359966,55.681017720292516],[-6.509852819850948,55.67684198367152],[-6.50709499393804,55.71880127466005],[-6.456027631868892,55.77269551528673],[-6.482324582812453,55.799321131565875],[-6.45659170194466,55.809235236218115],[-6.454693999327787,55.85244862550462],[-6.392137713583793,55.85808796918536],[-6.370892901185641,55.875013571619945],[-6.305420862282176,55.866863007822474],[-6.24184559159994,55.89740276232857],[-6.196929725425662,55.92692869850157],[-6.120161760056362,55.93449346550199]]],[[[-5.697455045613083,56.14413948994644],[-5.6875806757067835,56.11144495352272],[-5.793094532286034,56.01322211301107],[-5.845080326994662,55.940346170640225],[-5.897432387693755,55.889896229128624],[-5.936557574071969,55.86740885403634],[-5.93968618956518,55.82593283263503],[-5.9641652635152695,55.792244663161625],[-6.035852895693779,55.795412696839435],[-6.087407661533518,55.83130390944882],[-6.09661218490362,55.871894759636405],[-6.087473921783271,55.89974111296294],[-6.042745728831505,55.940637013188564],[-6.000459494709105,55.953053729646854],[-6.001610292380292,55.988309022644216],[-5.950039924202315,56.03754588933225],[-5.837300887325284,56.0889967636906],[-5.738476451626127,56.141226634402585],[-5.697455045613083,56.14413948994644]]],[[[-5.0976511259978565,56.53575889765591],[-5.13489222549498,56.503362990110816],[-5.155931880051412,56.50128357407863],[-5.1846092438207165,56.4609436140575],[-5.222359337112891,56.44934294062517],[-5.256765108921854,56.46405004057783],[-5.288218932556902,56.46045758984684],[-5.36197560528916,56.47014177112675],[-5.40537601578967,56.48433089125854],[-5.435210068688889,56.52118467613286],[-5.376428919258387,56.51125352752922],[-5.408292500997334,56.56069485508442],[-5.360812112787983,56.60391781855344],[-5.325023710674884,56.620705126841074],[-5.288220759979254,56.59666770814914],[-5.230002185951321,56.594634767281605],[-5.2138388407890375,56.63193265267074],[-5.152995417303828,56.62668565891698],[-5.091858246460106,56.60855763502775],[-5.100691540481421,56.588269677904236],[-5.0976511259978565,56.53575889765591]]],[[[-5.183260335395346,55.925134864883034],[-5.154871115308936,55.91567594758783],[-5.074951123294909,55.87421157780301],[-5.058912244303826,55.839202369894394],[-5.024712061111927,55.8435419782806],[-5.02233892110354,55.80933669323474],[-5.001058625953988,55.76998794079179],[-5.0609794223616404,55.75853488837532],[-5.128879510280342,55.79055354830854],[-5.145891310934417,55.851892536911976],[-5.169390145438058,55.85175281554092],[-5.212004854239808,55.88416640915341],[-5.210366818273258,55.910024144699435],[-5.183260335395346,55.925134864883034]]],[[[-6.726557752537417,56.54060617873307],[-6.725638627419926,56.52724175310533],[-6.804790379871349,56.52366797230002],[-6.811669126028562,56.48887849394828],[-6.867503274455771,56.49073723433685],[-6.895563337277395,56.474233690033714],[-6.892455881932619,56.44518606368683],[-6.932806588852202,56.4431334924177],[-6.970439271154646,56.4676259473805],[-6.986346763691358,56.50376301665085],[-6.950951791591081,56.529033508390626],[-6.872915480863924,56.51894062211295],[-6.832338147486723,56.539929855279524],[-6.726557752537417,56.54060617873307]]],[[[-6.4534825414853,56.68783672428634],[-6.452715644610521,56.67478618993164],[-6.505984587517901,56.61661778008744],[-6.5500912626008585,56.59477081222417],[-6.631118406388509,56.577842242926124],[-6.670678628115411,56.583311389010305],[-6.612272525655726,56.637785331728594],[-6.470520246211606,56.69174946766475],[-6.4534825414853,56.68783672428634]]],[[[-6.133116674893813,56.121257151497275],[-6.167737639179904,56.078047241687784],[-6.196704083725649,56.06179383841584],[-6.186972759984087,56.04133519806186],[-6.216626184949689,56.02819097053782],[-6.26512912930508,56.036958160791414],[-6.245895985210723,56.085699624239226],[-6.1478899451640245,56.13075735576831],[-6.133116674893813,56.121257151497275]]],[[[-5.434224618570454,56.55131834266831],[-5.507022498888432,56.498087045381794],[-5.552281817950757,56.475477973130864],[-5.568792978612237,56.49585352332235],[-5.522385813453695,56.51252678588338],[-5.480155518961226,56.546209590900844],[-5.434224618570454,56.55131834266831]]],[[[-6.2208505919804225,56.50031220734343],[-6.173479340997972,56.48846160511994],[-6.160102369827712,56.4634108483329],[-6.268637035669826,56.47844049733203],[-6.2208505919804225,56.50031220734343]]],[[[-5.670979921885078,56.17445783496203],[-5.70060570528824,56.159640976350886],[-5.746196906561181,56.16154311262551],[-5.731294662717687,56.18820978745265],[-5.694138104888793,56.19687083971843],[-5.670979921885078,56.17445783496203]]],[[[-5.581160766555342,56.3268414220949],[-5.599186229060422,56.27997399200706],[-5.626889921132147,56.26562290487408],[-5.650894226786306,56.29318583146187],[-5.581160766555342,56.3268414220949]]],[[[-5.623276688867293,56.25071085122573],[-5.6356416412479575,56.20563783481913],[-5.665773862572905,56.21879182987999],[-5.6505533603485105,56.24732236493611],[-5.623276688867293,56.25071085122573]]],[[[-5.723061936858073,55.729888374949496],[-5.738190415954136,55.66789980873011],[-5.7743813177428365,55.67685308580218],[-5.723061936858073,55.729888374949496]]],[[[-5.498168846014607,56.41991171385547],[-5.55161108917963,56.37276856331948],[-5.582679818617919,56.39097929156202],[-5.563385113231561,56.40825441281186],[-5.498168846014607,56.41991171385547]]]]},"properties":{"objectid":186,"ctyua17cd":"S12000035","name":"Argyll and Bute","namew":"","bng_e":200740,"bng_n":715442,"long":-5.22113991,"lat":56.28942871,"st_areasha":1.010166976460754,"st_lengths":34.373963766801964},"id":"186"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.077676449008095,55.94679741686821],[-3.088572976660714,55.93138962453247],[-3.092155443118372,55.900220795154496],[-3.162438265912442,55.889090278294645],[-3.201545401997862,55.894825797273654],[-3.2957015315996046,55.86613822260182],[-3.3506753139137686,55.82713630809508],[-3.3690392461634815,55.82411168840463],[-3.3947664388192607,55.819742986050926],[-3.4201440110364842,55.84600952372148],[-3.413816752540299,55.87835794526387],[-3.3877116063047765,55.90285834753564],[-3.4421562617013137,55.90472261066088],[-3.428087909728447,55.925480380815884],[-3.449532466049675,55.95094013038363],[-3.448269285498327,55.977579840837905],[-3.42535049213069,55.993828176430156],[-3.3896932849163477,55.989794598342996],[-3.351967398675697,56.001585423529434],[-3.291711893488298,55.979195248962526],[-3.157194179666817,55.9819234332208],[-3.077676449008095,55.94679741686821]]]},"properties":{"objectid":187,"ctyua17cd":"S12000036","name":"City of Edinburgh","namew":"","bng_e":320193,"bng_n":669416,"long":-3.27825999,"lat":55.91119003,"st_areasha":0.037916916891151,"st_lengths":1.276908529397877},"id":"187"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.354735016207201,55.873081991541596],[-4.3814285402941096,55.82315255874454],[-4.541951247351392,55.77853026096369],[-4.5509528198159614,55.76638657687994],[-4.572377236719262,55.778964727041455],[-4.616554449227635,55.76150024903819],[-4.665635060508805,55.76845091128149],[-4.685715938838712,55.80374146669624],[-4.783728208489208,55.8397943558258],[-4.750941231651723,55.84976822942116],[-4.643339983852343,55.83908612352673],[-4.599116147791165,55.87967900258485],[-4.630782766310801,55.90743780331292],[-4.614381259986374,55.93022748730965],[-4.571902104197932,55.92318121993827],[-4.487082102056547,55.92643753916201],[-4.354735016207201,55.873081991541596]]]},"properties":{"objectid":188,"ctyua17cd":"S12000038","name":"Renfrewshire","namew":"","bng_e":239305,"bng_n":664698,"long":-4.568339819999999,"lat":55.84862137,"st_areasha":0.037462386841529,"st_lengths":1.510422753068823},"id":"188"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.598204369235418,56.08423367894204],[-4.488020162399778,56.06021812546703],[-4.492147087417322,56.03375740258298],[-4.470098089554369,56.00207607924858],[-4.40205259744863,55.971834896963855],[-4.37963216968808,55.92098554494788],[-4.392407862232233,55.88957750849613],[-4.466596359733387,55.924808575556256],[-4.582220161830207,55.938424859020984],[-4.609633319821057,55.94656820036312],[-4.61568591187455,55.98217060918722],[-4.659908047317742,56.00275352685469],[-4.6015490666353,56.02023099826289],[-4.619544762480018,56.05245613804129],[-4.598204369235418,56.08423367894204]]]},"properties":{"objectid":189,"ctyua17cd":"S12000039","name":"West Dunbartonshire","namew":"","bng_e":242904,"bng_n":681587,"long":-4.52074003,"lat":56.00141144,"st_areasha":0.025491504250336,"st_lengths":1.066484577016052},"id":"189"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.42535049213069,55.993828176430156],[-3.448269285498327,55.977579840837905],[-3.449532466049675,55.95094013038363],[-3.428087909728447,55.925480380815884],[-3.4421562617013137,55.90472261066088],[-3.3877116063047765,55.90285834753564],[-3.413816752540299,55.87835794526387],[-3.4201440110364842,55.84600952372148],[-3.3947664388192607,55.819742986050926],[-3.4355330785878664,55.8054983058031],[-3.439404685177294,55.7845964345787],[-3.4716391994886635,55.77097191872002],[-3.5550040940628946,55.78569361107225],[-3.6156100677496283,55.8030750025103],[-3.6857959004596523,55.79736532015431],[-3.744021178933451,55.78201106805727],[-3.7150803147039255,55.81405689291222],[-3.7441216511924154,55.83890667280565],[-3.7471916290895706,55.865509698115034],[-3.8029177059865447,55.87521903073463],[-3.8225645400207213,55.896495511859314],[-3.7821155300068767,55.90163396643533],[-3.7296788772775358,55.93605459954108],[-3.7033527226492424,55.93456224025613],[-3.598844291030389,55.99703855738443],[-3.5301858749773487,55.986434089962245],[-3.516332361148727,56.00177789553436],[-3.42535049213069,55.993828176430156]]]},"properties":{"objectid":190,"ctyua17cd":"S12000040","name":"West Lothian","namew":"","bng_e":299483,"bng_n":668514,"long":-3.60909009,"lat":55.89920044,"st_areasha":0.061701043918759,"st_lengths":1.599530770152001},"id":"190"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.4449381329876587,56.75170911028812],[-2.478136851833426,56.72210875881308],[-2.515921596903354,56.723494245364066],[-2.5160849227801236,56.69856180968071],[-2.436437119576567,56.70171156104067],[-2.468257723614215,56.670831875391684],[-2.500077401350154,56.66251037205694],[-2.4859476400707194,56.620026780812225],[-2.5375803366624154,56.56684576641993],[-2.6188817439964964,56.544900453194316],[-2.636001080184883,56.52719079122295],[-2.716031502650935,56.49537166746944],[-2.74442245033498,56.46458357687152],[-2.8027321661557494,56.48017903343657],[-2.838652811777024,56.474080155076024],[-2.838349518114967,56.492496548377915],[-2.9224777293629245,56.50259238892852],[-3.052029022620502,56.49686271194554],[-3.089424772234622,56.46694590882754],[-3.1196097711732023,56.46767818719951],[-3.191565580286465,56.50329665431809],[-3.2072172885461896,56.51841684256419],[-3.1640433030551662,56.53815040092121],[-3.190202805214483,56.56130571149032],[-3.1377991351211563,56.57663707494197],[-3.097943392572688,56.598327245107214],[-3.1499193684832676,56.6081448246249],[-3.1781346291090244,56.635608868055726],[-3.1513178979018335,56.65317827805603],[-3.2421990410521175,56.66050648019086],[-3.3085279360146274,56.68995955868763],[-3.3895910418922313,56.7683081994648],[-3.351636665798651,56.820287614382835],[-3.392801364390664,56.84257475991819],[-3.3721381183786434,56.87462652389587],[-3.2615960820926944,56.92173753266195],[-3.1985117836910604,56.905836505351374],[-3.160446201929858,56.90683367723335],[-3.1306336904916066,56.888375243323765],[-3.08316851521397,56.95844403826271],[-2.9240749855713375,56.97236097138267],[-2.8924263552912635,56.98681642214109],[-2.8245059534861525,56.96194858206235],[-2.7656667986830143,56.95997348289086],[-2.724683800915841,56.92584192246767],[-2.6812840325312663,56.91035575331631],[-2.6621959985456556,56.88860848879165],[-2.6661664837953936,56.83466829730503],[-2.6158127670447584,56.78330468866142],[-2.5297240778031096,56.7851464984131],[-2.4449381329876587,56.75170911028812]]]},"properties":{"objectid":191,"ctyua17cd":"S12000041","name":"Angus","namew":"","bng_e":345518,"bng_n":759594,"long":-2.89189005,"lat":56.724800110000004,"st_areasha":0.320839349993349,"st_lengths":3.712576319767013},"id":"191"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.838652811777024,56.474080155076024],[-2.943008147307353,56.46420038024428],[-2.9885851159095296,56.451331179791055],[-3.051927258935052,56.458390713061874],[-3.089424772234622,56.46694590882754],[-3.052029022620502,56.49686271194554],[-2.9224777293629245,56.50259238892852],[-2.838349518114967,56.492496548377915],[-2.838652811777024,56.474080155076024]]]},"properties":{"objectid":192,"ctyua17cd":"S12000042","name":"Dundee City","namew":"","bng_e":340291,"bng_n":732145,"long":-2.97094989,"lat":56.477600100000004,"st_areasha":0.008692428119983,"st_lengths":0.612092837842943},"id":"192"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.020129768173433,56.02804308152395],[-3.9439337842159716,55.981038410395286],[-3.9381034802905788,55.96292331156252],[-3.892286002396304,55.947280889702256],[-3.8767503111770907,55.923321351400205],[-3.8225645400207213,55.896495511859314],[-3.8029177059865447,55.87521903073463],[-3.7471916290895706,55.865509698115034],[-3.7441216511924154,55.83890667280565],[-3.7150803147039255,55.81405689291222],[-3.744021178933451,55.78201106805727],[-3.8683754357769544,55.764155511768365],[-3.9088878821692106,55.74909176137663],[-3.9470651525339235,55.750532530153066],[-4.053353481876854,55.801281137415515],[-4.107044616015401,55.83465677718942],[-4.072721737417453,55.86174569990504],[-4.080715027775511,55.8822720313301],[-4.161633457017615,55.88767774103587],[-4.180429143889057,55.90491352054346],[-4.111376913812705,55.923274560573475],[-4.069330166453199,55.92571025202744],[-4.062787173188667,55.968208667696786],[-4.113036780821972,55.977273395951386],[-4.1523872131984945,56.008041610632745],[-4.081800282855966,56.02534932511219],[-4.020129768173433,56.02804308152395]]]},"properties":{"objectid":193,"ctyua17cd":"S12000044","name":"North Lanarkshire","namew":"","bng_e":277984,"bng_n":665608,"long":-3.95140004,"lat":55.86814117,"st_areasha":0.067705695222658,"st_lengths":1.971124160266238},"id":"193"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.1523872131984945,56.008041610632745],[-4.113036780821972,55.977273395951386],[-4.062787173188667,55.968208667696786],[-4.069330166453199,55.92571025202744],[-4.111376913812705,55.923274560573475],[-4.180429143889057,55.90491352054346],[-4.236372367489935,55.89684219691077],[-4.268809017021681,55.92022244680942],[-4.3278556481188275,55.89969527901485],[-4.37963216968808,55.92098554494788],[-4.40205259744863,55.971834896963855],[-4.366389690331118,55.98041795192785],[-4.335225485267131,55.95942092253847],[-4.27266643860446,55.96535071126726],[-4.294102614143526,56.008694087662946],[-4.222543565232513,56.02033585022025],[-4.1523872131984945,56.008041610632745]]]},"properties":{"objectid":194,"ctyua17cd":"S12000045","name":"East Dunbartonshire","namew":"","bng_e":261240,"bng_n":676154,"long":-4.22417021,"lat":55.9582901,"st_areasha":0.025107143341652,"st_lengths":1.166782358256608},"id":"194"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.180429143889057,55.90491352054346],[-4.161633457017615,55.88767774103587],[-4.080715027775511,55.8822720313301],[-4.072721737417453,55.86174569990504],[-4.107044616015401,55.83465677718942],[-4.174593301938501,55.82334943203159],[-4.1983303686507725,55.833398459272416],[-4.257837911289755,55.8561415448973],[-4.340943149106238,55.870175259481584],[-4.392407862232233,55.88957750849613],[-4.37963216968808,55.92098554494788],[-4.3278556481188275,55.89969527901485],[-4.268809017021681,55.92022244680942],[-4.236372367489935,55.89684219691077],[-4.180429143889057,55.90491352054346]]],[[[-4.354735016207201,55.873081991541596],[-4.296618201368062,55.85965854430731],[-4.258089003803661,55.85496232864949],[-4.22800903308962,55.84054409723325],[-4.211343708844254,55.80031618734313],[-4.250754437166734,55.78488998948234],[-4.274473803422495,55.809224819370854],[-4.36779668057153,55.80336231701824],[-4.3814285402941096,55.82315255874454],[-4.354735016207201,55.873081991541596]]]]},"properties":{"objectid":195,"ctyua17cd":"S12000046","name":"Glasgow City","namew":"","bng_e":261534,"bng_n":667033,"long":-4.21478987,"lat":55.87649155,"st_areasha":0.025163994003875,"st_lengths":1.555301102134773},"id":"195"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.425752337799338,53.43009875705292],[-4.303573826070419,53.41307585157023],[-4.269363537196682,53.39051939325634],[-4.264653404530179,53.36078430715099],[-4.230151469114219,53.357721192879694],[-4.219034543708403,53.31906939343867],[-4.199052627675826,53.296810278872215],[-4.143713868099724,53.30521565747756],[-4.118965113548313,53.319218353545125],[-4.056152639731749,53.30306190258568],[-4.087204433137288,53.26329167926849],[-4.214425135111071,53.20511919459608],[-4.218547425022848,53.185610720359364],[-4.2824456926138055,53.155832586405666],[-4.358361826436351,53.13143618443331],[-4.407571002099246,53.1442674910528],[-4.419691982797929,53.16395516060311],[-4.505114280698706,53.18789772779883],[-4.497270280498242,53.20676979229302],[-4.550731726886852,53.24606893903126],[-4.582664227271437,53.28117464239676],[-4.562109998876508,53.3164918708041],[-4.569403305517312,53.35359097904137],[-4.555125423198888,53.37390223310251],[-4.575465844072653,53.40220880909021],[-4.467629900198915,53.41470925602829],[-4.425752337799338,53.43009875705292]]],[[[-4.643787790473368,53.32465610609535],[-4.592441155633992,53.275303196286416],[-4.558680758909077,53.25407698276746],[-4.592713233827851,53.240129261357254],[-4.65158090433448,53.287881123416014],[-4.694986870846606,53.30659897756169],[-4.643787790473368,53.32465610609535]]]]},"properties":{"objectid":196,"ctyua17cd":"W06000001","name":"Isle of Anglesey","namew":"Ynys Môn","bng_e":245222,"bng_n":378346,"long":-4.32290983,"lat":53.27944946,"st_areasha":0.096259228403953,"st_lengths":3.236335144224023},"id":"196"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.45797942750778,52.98487303026707],[-3.446710783774847,52.96322253279459],[-3.4914254329365804,52.933671368839555],[-3.4665095267924357,52.9230361392074],[-3.4885357969886286,52.89529375560329],[-3.4830091545480286,52.86543908394748],[-3.50544405689692,52.841880111778664],[-3.5864706170245313,52.82770322512465],[-3.6069667132424,52.797486734626034],[-3.5835079705155977,52.738608308227754],[-3.619595511422915,52.697441248915425],[-3.682478614395734,52.694135893257794],[-3.759343913390069,52.66943149057175],[-3.808087803208764,52.67793037258957],[-3.840705905352422,52.65088783870374],[-3.834605738263406,52.633043797334324],[-3.8567382957349423,52.600387956040265],[-3.8921510285463228,52.57694768988489],[-3.939764475049685,52.560644778035],[-4.070148746466657,52.54320975642605],[-4.128363542442742,52.61115197218669],[-4.094778714065569,52.66856155207489],[-4.051214240244178,52.70376988607234],[-4.0850258578562375,52.75108656799165],[-4.144203828642958,52.80088613059138],[-4.119074576329808,52.848023087496415],[-4.14816267216878,52.88696906686988],[-4.087054186101,52.901917722026155],[-4.128574124095735,52.92180779299616],[-4.169745218666094,52.90581833624816],[-4.223635113768694,52.91929076056107],[-4.31653740227847,52.908502817052295],[-4.326734708838956,52.8919284205611],[-4.375094320145934,52.89638083540814],[-4.457053016782481,52.87112245573769],[-4.4950155056602625,52.838088892889004],[-4.514795919595201,52.79294978980187],[-4.571848452443305,52.817778375372654],[-4.611267248583829,52.8244532515173],[-4.644344167748329,52.79975664865134],[-4.720707586585036,52.80286614096059],[-4.751584037372595,52.81570770704599],[-4.693856863702479,52.86126686997102],[-4.650048401112031,52.906008172340194],[-4.579792423081074,52.93781297798745],[-4.528857961025267,52.93740251031852],[-4.4717873509047195,52.96663244273395],[-4.436997459764143,52.99873939900499],[-4.413232522162332,52.997143748086444],[-4.353487653831337,53.033475243588555],[-4.338933721013575,53.053840668313114],[-4.346540577185067,53.104541990121675],[-4.280206854661799,53.13936009929006],[-4.243669451283324,53.17042019163944],[-4.214097654182581,53.18175114040372],[-4.199413566082399,53.20995021952791],[-4.122533869841391,53.23717953360949],[-4.065884077687201,53.23368898236157],[-4.007385946703266,53.24690508460293],[-3.9352881085585523,53.2148581301995],[-3.9649698306923256,53.183373535361284],[-3.97032360365057,53.16016982687694],[-4.007850484311575,53.1437519753743],[-4.031121143724988,53.10635742275781],[-3.977056609274314,53.06891719537322],[-3.9972078838359835,53.037635750190645],[-3.986018029707509,53.01196799462815],[-3.915004309900155,53.02256427012588],[-3.8961738552384304,52.995841537857586],[-3.8493685674046674,52.97730888829551],[-3.8132180424778426,52.94935633672651],[-3.749866144506143,52.97427284091981],[-3.6829932505372653,52.98687482131686],[-3.6350896809432243,53.007684176584405],[-3.582986110120089,52.96752210516195],[-3.5045388883581836,52.96533538382181],[-3.45797942750778,52.98487303026707]]]},"properties":{"objectid":197,"ctyua17cd":"W06000002","name":"Gwynedd","namew":"Gwynedd","bng_e":277968,"bng_n":334967,"long":-3.8155899,"lat":52.89825821,"st_areasha":0.340601698511251,"st_lengths":6.058279305089346},"id":"197"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.4976458169001035,53.300759860280266],[-3.533234061402027,53.249788354250086],[-3.466022663514309,53.22076511751709],[-3.4744564588976345,53.17635710569681],[-3.461778187212758,53.16459841508572],[-3.534069211424139,53.13993241884697],[-3.599442098273414,53.091546577913164],[-3.5157076479887337,53.08978395616555],[-3.465157818777527,53.05305257351836],[-3.4896556561827765,53.03784380205076],[-3.45496962594666,52.99748149027948],[-3.45797942750778,52.98487303026707],[-3.5045388883581836,52.96533538382181],[-3.582986110120089,52.96752210516195],[-3.6350896809432243,53.007684176584405],[-3.6829932505372653,52.98687482131686],[-3.749866144506143,52.97427284091981],[-3.8132180424778426,52.94935633672651],[-3.8493685674046674,52.97730888829551],[-3.8961738552384304,52.995841537857586],[-3.915004309900155,53.02256427012588],[-3.986018029707509,53.01196799462815],[-3.9972078838359835,53.037635750190645],[-3.977056609274314,53.06891719537322],[-4.031121143724988,53.10635742275781],[-4.007850484311575,53.1437519753743],[-3.97032360365057,53.16016982687694],[-3.9649698306923256,53.183373535361284],[-3.9352881085585523,53.2148581301995],[-4.007385946703266,53.24690508460293],[-3.84500112590041,53.29647795779243],[-3.813550646844078,53.32256031610666],[-3.7751278939363715,53.32830135872166],[-3.707565772141834,53.29382467716806],[-3.6095873898453306,53.290453652115275],[-3.511120751220858,53.31280312336639],[-3.4976458169001035,53.300759860280266]]]},"properties":{"objectid":198,"ctyua17cd":"W06000003","name":"Conwy","namew":"Conwy","bng_e":283293,"bng_n":362562,"long":-3.74645996,"lat":53.14738846,"st_areasha":0.151808355481434,"st_lengths":3.044955106772221},"id":"198"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.129616396278834,53.07235262807228],[-3.1477907397500076,53.04379222922893],[-3.1322621154034778,53.02105355028203],[-3.14876608868326,52.9985622739307],[-3.0902960983854086,52.97160470079723],[-3.0967271629274364,52.959233294881585],[-3.1979729153169956,52.94419118037962],[-3.237438124568996,52.95099742769008],[-3.2973992726575148,52.94295192359334],[-3.353313019179666,52.92195692847042],[-3.3750126178372284,52.89243895759273],[-3.3888212168249083,52.876055670633605],[-3.4830091545480286,52.86543908394748],[-3.4885357969886286,52.89529375560329],[-3.4665095267924357,52.9230361392074],[-3.4914254329365804,52.933671368839555],[-3.446710783774847,52.96322253279459],[-3.45797942750778,52.98487303026707],[-3.45496962594666,52.99748149027948],[-3.4896556561827765,53.03784380205076],[-3.465157818777527,53.05305257351836],[-3.5157076479887337,53.08978395616555],[-3.599442098273414,53.091546577913164],[-3.534069211424139,53.13993241884697],[-3.461778187212758,53.16459841508572],[-3.4744564588976345,53.17635710569681],[-3.466022663514309,53.22076511751709],[-3.533234061402027,53.249788354250086],[-3.4976458169001035,53.300759860280266],[-3.4902273318251105,53.32498977795683],[-3.363427701426474,53.35203913230106],[-3.3943403858992838,53.30169076561725],[-3.3297978161155015,53.27319442278531],[-3.3492884118299457,53.251477034638356],[-3.311028866987783,53.200707120638015],[-3.2751344734763848,53.179021269017255],[-3.2712061196658624,53.157450622349245],[-3.185900386492847,53.14195829284188],[-3.172510103557613,53.110916272369025],[-3.129616396278834,53.07235262807228]]]},"properties":{"objectid":199,"ctyua17cd":"W06000004","name":"Denbighshire","namew":"Sir Ddinbych","bng_e":309843,"bng_n":355416,"long":-3.34761,"lat":53.08832932,"st_areasha":0.112345425255734,"st_lengths":2.544599291121771},"id":"199"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.9204543195104407,53.18215939663975],[-2.9709251216962116,53.160766885884016],[-2.963812088656141,53.13274205850013],[-2.9973827149395333,53.129384936966176],[-3.038673805151177,53.0915333246042],[-3.129616396278834,53.07235262807228],[-3.172510103557613,53.110916272369025],[-3.185900386492847,53.14195829284188],[-3.2712061196658624,53.157450622349245],[-3.2751344734763848,53.179021269017255],[-3.311028866987783,53.200707120638015],[-3.3492884118299457,53.251477034638356],[-3.3297978161155015,53.27319442278531],[-3.3943403858992838,53.30169076561725],[-3.363427701426474,53.35203913230106],[-3.3097019649728736,53.35577017485463],[-3.3035508099211484,53.33485558002195],[-3.1933454051655303,53.288963724597124],[-3.12177525682182,53.248454580515386],[-2.9315439253110753,53.18041998819285],[-2.9204543195104407,53.18215939663975]]],[[[-3.073914907745973,53.25361029847744],[-3.0360640283314524,53.25179061384671],[-2.9495096692350558,53.2112639599647],[-2.9203527509778837,53.18293590816654],[-2.9340819029566205,53.18208564593675],[-3.0833584052653578,53.238973974270436],[-3.073914907745973,53.25361029847744]]]]},"properties":{"objectid":200,"ctyua17cd":"W06000005","name":"Flintshire","namew":"Sir y Fflint","bng_e":321564,"bng_n":369303,"long":-3.17604995,"lat":53.21498108,"st_areasha":0.058808345631114,"st_lengths":2.171146754590888},"id":"200"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.7268411494986253,52.98325857362522],[-2.7285434060525517,52.92516382455182],[-2.7553281762534994,52.924613588747036],[-2.800468818080674,52.89550017339519],[-2.8410158038354894,52.942608359189364],[-2.8982925655486724,52.950259938646184],[-2.928889325381249,52.938663581060325],[-2.9728287445500996,52.96044702980748],[-3.008614289517027,52.95657623530593],[-3.0348757541119653,52.92955669978278],[-3.095954400674259,52.93026746187479],[-3.1168951298055845,52.89967892634229],[-3.147503734608847,52.89015460764995],[-3.1743807338829697,52.901560631818654],[-3.2164700236718318,52.876807680131265],[-3.261801246229709,52.866593963641435],[-3.345648811442686,52.892526302447834],[-3.3750126178372284,52.89243895759273],[-3.353313019179666,52.92195692847042],[-3.2973992726575148,52.94295192359334],[-3.237438124568996,52.95099742769008],[-3.1979729153169956,52.94419118037962],[-3.0967271629274364,52.959233294881585],[-3.0902960983854086,52.97160470079723],[-3.14876608868326,52.9985622739307],[-3.1322621154034778,53.02105355028203],[-3.1477907397500076,53.04379222922893],[-3.129616396278834,53.07235262807228],[-3.038673805151177,53.0915333246042],[-2.9973827149395333,53.129384936966176],[-2.963812088656141,53.13274205850013],[-2.910231414647228,53.112623326806045],[-2.8592356242238566,53.05414850175288],[-2.8587020987220626,53.019883834472296],[-2.835996123621385,52.997134327688],[-2.7268411494986253,52.98325857362522]]]},"properties":{"objectid":201,"ctyua17cd":"W06000006","name":"Wrexham","namew":"Wrecsam","bng_e":333523,"bng_n":345387,"long":-2.99202991,"lat":53.00167084,"st_areasha":0.067387895491191,"st_lengths":2.094371581346302},"id":"201"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.7580911883568433,52.12822358595065],[-3.7763159217415705,52.10708815449567],[-3.860091614035923,52.14218498694851],[-3.897796631508527,52.12221497883911],[-3.9404745545562605,52.13843629969642],[-4.018723504585239,52.097011232982936],[-4.059707199326965,52.11361598429119],[-4.10003814634257,52.09604964187838],[-4.137110580687931,52.09572567819839],[-4.164139635534923,52.068139874656424],[-4.230190461919449,52.03961185320537],[-4.398498746519124,52.03460455845453],[-4.487511082269805,52.04906064233569],[-4.55973174172567,52.04371350097824],[-4.566309131360526,52.05727712284187],[-4.624644517429715,52.054483432865084],[-4.645473654184968,52.081815324518516],[-4.661054747677667,52.0809904672372],[-4.68093761687669,52.085125054478624],[-4.675526652432268,52.10190931946045],[-4.691893782171519,52.11948100924212],[-4.64061628811038,52.13851821534428],[-4.562127839627294,52.14433787669259],[-4.518597379964319,52.13498234006386],[-4.42314331461148,52.18280890970436],[-4.365652077180812,52.21823788696986],[-4.324889875566498,52.21363689153026],[-4.253462241888144,52.24854114495878],[-4.207479183516682,52.26365815230281],[-4.140327797389148,52.32260111764839],[-4.092737314174883,52.39623543401899],[-4.081943704037883,52.44104137426092],[-4.051863586734328,52.4817115617401],[-4.0575470259736335,52.53069872446747],[-4.014292438744235,52.52644209202987],[-3.9260122024003863,52.56076233291628],[-3.8594574516991997,52.56082874515141],[-3.8408531720354517,52.55134003511546],[-3.8444001557417664,52.51724729482771],[-3.8253699409692103,52.483652279829755],[-3.7722174260925385,52.48865412019239],[-3.771607495089029,52.44213800036937],[-3.7120412554987183,52.41334246568317],[-3.7105297937142154,52.39343643444482],[-3.6581588157758915,52.34763611201788],[-3.705120497512155,52.341441506221486],[-3.7450012376162363,52.317552843489864],[-3.727727133499627,52.30581344693394],[-3.731628053491079,52.27143839866409],[-3.7534234776105677,52.2517483432124],[-3.7507757215215065,52.164458522144],[-3.7580911883568433,52.12822358595065]]]},"properties":{"objectid":202,"ctyua17cd":"W06000008","name":"Ceredigion","namew":"Ceredigion","bng_e":267126,"bng_n":268437,"long":-3.94993997,"lat":52.29795074,"st_areasha":0.235726866648326,"st_lengths":3.75432353539767},"id":"202"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.672870196301687,52.08201072201814],[-4.647361594661049,52.076546280287516],[-4.643965106203893,52.0766181019448],[-4.643304138674239,52.07671741227966],[-4.624644517429715,52.054483432865084],[-4.566309131360526,52.05727712284187],[-4.55973174172567,52.04371350097824],[-4.5463745889153415,52.019045331078075],[-4.487087660766122,51.98867182974209],[-4.493286571617148,51.96129882198397],[-4.599929091753381,51.94091847660735],[-4.635585207190729,51.9185840069473],[-4.673287353128046,51.928413405355286],[-4.717831096926773,51.91241257128405],[-4.694923912907427,51.857003580951414],[-4.704234801793859,51.839108965307446],[-4.644040883978789,51.8305148558768],[-4.617097640642783,51.81188510651339],[-4.644373903831763,51.797605597321365],[-4.622553271715333,51.768115754539394],[-4.6328229080499455,51.735172052848895],[-4.686396025955048,51.72244534277928],[-4.687779998047688,51.69888774207658],[-4.720828776525991,51.65153546678931],[-4.791807869736601,51.63912707985179],[-4.860767641412735,51.64711631246877],[-4.9262678192037015,51.59610430457093],[-5.059291901199458,51.620587219525476],[-5.0511676452698,51.6759933572086],[-5.036264068631056,51.71017514027142],[-5.088011378421584,51.707540853328624],[-5.094652168462005,51.72112886660483],[-5.156607145902228,51.71281177534411],[-5.214767839563308,51.72367246501318],[-5.203226453936907,51.75551329480362],[-5.160217927514509,51.77211642013759],[-5.103458341628368,51.779194747440556],[-5.113855773424405,51.83697018232897],[-5.139459091662957,51.86415721658318],[-5.265908811141912,51.871795071486304],[-5.315263773203753,51.85951556908918],[-5.303659050124281,51.903644327924326],[-5.154011004603376,51.94826798368143],[-5.082246000151997,51.97420748288994],[-5.0895525043437715,52.01529770772396],[-5.061888805123431,52.03176784491103],[-4.986582021342429,52.02289140051863],[-4.96173605547375,51.99975451615893],[-4.92066198785966,52.01461485339371],[-4.841238432406897,52.02473196830664],[-4.827489213855301,52.05401061789661],[-4.79080588108576,52.058656614512074],[-4.7414036848313685,52.098676212638054],[-4.691470386748165,52.10123049049565],[-4.681290704201842,52.09458929396169],[-4.681900388791121,52.08464993184981],[-4.672870196301687,52.08201072201814]]]},"properties":{"objectid":203,"ctyua17cd":"W06000009","name":"Pembrokeshire","namew":"Sir Benfro","bng_e":199821,"bng_n":221391,"long":-4.90818024,"lat":51.85512161,"st_areasha":0.211028641032005,"st_lengths":6.238518897861388},"id":"203"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.7580911883568433,52.12822358595065],[-3.7140651905552886,52.104960890933285],[-3.7230838159645145,52.08520448440038],[-3.6816472019559683,52.07390103690426],[-3.647124960747533,52.038780458752115],[-3.67000445374174,52.00420485447137],[-3.697788637834549,51.98279222138484],[-3.727594148950004,51.91219149993867],[-3.713824480714379,51.88711866839276],[-3.7647241587920917,51.85183452874145],[-3.8066750609045243,51.78794573550823],[-3.8168262259487733,51.80151207332443],[-3.8650872364859765,51.8103543120028],[-3.8888018372342117,51.80419103948583],[-3.887188455282171,51.76879140619934],[-3.9364857815927508,51.771348845173975],[-3.9997845125444087,51.774144500169484],[-4.049635527157022,51.712039888131244],[-4.078141570975902,51.69083813437334],[-4.080858359025228,51.6646468807499],[-4.14559444942347,51.6548027667352],[-4.196615781492312,51.683743660642335],[-4.262437513679515,51.67901619354342],[-4.283067822920884,51.66759518756879],[-4.335602103353551,51.68616619051818],[-4.3341469184447305,51.71757039585799],[-4.403833038363246,51.75724256159589],[-4.462795323844318,51.73168690832506],[-4.559158758469096,51.74196065995744],[-4.6328229080499455,51.735172052848895],[-4.622553271715333,51.768115754539394],[-4.644373903831763,51.797605597321365],[-4.617097640642783,51.81188510651339],[-4.644040883978789,51.8305148558768],[-4.704234801793859,51.839108965307446],[-4.694923912907427,51.857003580951414],[-4.717831096926773,51.91241257128405],[-4.673287353128046,51.928413405355286],[-4.635585207190729,51.9185840069473],[-4.599929091753381,51.94091847660735],[-4.493286571617148,51.96129882198397],[-4.487087660766122,51.98867182974209],[-4.5463745889153415,52.019045331078075],[-4.55973174172567,52.04371350097824],[-4.487511082269805,52.04906064233569],[-4.398498746519124,52.03460455845453],[-4.230190461919449,52.03961185320537],[-4.164139635534923,52.068139874656424],[-4.137110580687931,52.09572567819839],[-4.10003814634257,52.09604964187838],[-4.059707199326965,52.11361598429119],[-4.018723504585239,52.097011232982936],[-3.9404745545562605,52.13843629969642],[-3.897796631508527,52.12221497883911],[-3.860091614035923,52.14218498694851],[-3.7763159217415705,52.10708815449567],[-3.7580911883568433,52.12822358595065]]]},"properties":{"objectid":204,"ctyua17cd":"W06000010","name":"Carmarthenshire","namew":"Sir Gaerfyrddin","bng_e":247954,"bng_n":224133,"long":-4.2111001,"lat":51.89495087,"st_areasha":0.309456782625524,"st_lengths":5.130243208567398},"id":"204"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.9364857815927508,51.771348845173975],[-3.8884888929472368,51.739080080182475],[-3.87264885855717,51.706246665951824],[-3.8430725693427803,51.698092830420705],[-3.886828581672887,51.63161818862943],[-3.8862151945747314,51.617532471647166],[-3.960316676372713,51.61277765346688],[-3.994474708340306,51.59812428890575],[-3.993451676452878,51.563125438489124],[-4.031506580563416,51.57006769476925],[-4.074127646672764,51.56216279877509],[-4.143501223401927,51.568958612151164],[-4.161008306787096,51.55530646552188],[-4.216146313400827,51.54142756383192],[-4.291313177060658,51.56307782658138],[-4.3091804686029604,51.60961243196908],[-4.23615515693416,51.6413488990334],[-4.17386363519779,51.62439071236241],[-4.071161497304445,51.6669684967996],[-4.049635527157022,51.712039888131244],[-3.9997845125444087,51.774144500169484],[-3.9364857815927508,51.771348845173975]]]},"properties":{"objectid":205,"ctyua17cd":"W06000011","name":"Swansea","namew":"Abertawe","bng_e":264022,"bng_n":197308,"long":-3.96723008,"lat":51.658058170000004,"st_areasha":0.049033818869298,"st_lengths":2.328139755316908},"id":"205"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.5912804872039032,51.754607306982564],[-3.57863511002148,51.71787699632722],[-3.5895733446333224,51.67926903433937],[-3.5632982858863897,51.6454810805883],[-3.599863995426233,51.638211097864826],[-3.6617979925824784,51.64544984713365],[-3.693410415257631,51.59698344942757],[-3.6551731421259888,51.564522308658525],[-3.6566726932893516,51.53913492753583],[-3.7046241095142136,51.52738818082082],[-3.7606998608090976,51.535552086960195],[-3.80263152372504,51.581800423751474],[-3.8510863606462067,51.618425436385735],[-3.8862151945747314,51.617532471647166],[-3.886828581672887,51.63161818862943],[-3.8430725693427803,51.698092830420705],[-3.87264885855717,51.706246665951824],[-3.8884888929472368,51.739080080182475],[-3.9364857815927508,51.771348845173975],[-3.887188455282171,51.76879140619934],[-3.8888018372342117,51.80419103948583],[-3.8650872364859765,51.8103543120028],[-3.8168262259487733,51.80151207332443],[-3.8066750609045243,51.78794573550823],[-3.7803730872473693,51.75966518590053],[-3.746075895085653,51.75338633431278],[-3.7190709852369537,51.778164587526646],[-3.6703526937210427,51.78719270617938],[-3.6013527070609825,51.771758248045614],[-3.5912804872039032,51.754607306982564]]]},"properties":{"objectid":206,"ctyua17cd":"W06000012","name":"Neath Port Talbot","namew":"Castell-nedd Port Talbot","bng_e":279261,"bng_n":195412,"long":-3.74638009,"lat":51.64450073,"st_areasha":0.057582036110841,"st_lengths":1.786944717030724},"id":"206"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.5632982858863897,51.6454810805883],[-3.538118862194949,51.644280546810705],[-3.471663080086273,51.598583833478074],[-3.488718496060926,51.57423770091009],[-3.463011791759982,51.54340907966622],[-3.4974987957320423,51.512640722892],[-3.533469624422821,51.48853181888927],[-3.5547456334034564,51.49277285798195],[-3.619636738144152,51.47661105875426],[-3.638615032357052,51.47019391841553],[-3.720843966275197,51.479711158544035],[-3.7606998608090976,51.535552086960195],[-3.7046241095142136,51.52738818082082],[-3.6566726932893516,51.53913492753583],[-3.6551731421259888,51.564522308658525],[-3.693410415257631,51.59698344942757],[-3.6617979925824784,51.64544984713365],[-3.599863995426233,51.638211097864826],[-3.5632982858863897,51.6454810805883]]]},"properties":{"objectid":207,"ctyua17cd":"W06000013","name":"Bridgend","namew":"Pen-y-bont ar Ogwr","bng_e":288242,"bng_n":185868,"long":-3.61359,"lat":51.560581209999995,"st_areasha":0.032471244666874,"st_lengths":0.971914747109944},"id":"207"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.335727364725301,51.508426411650476],[-3.2983746566642367,51.499914248444725],[-3.2714317146011354,51.465262162219915],[-3.218228727972587,51.474671618601235],[-3.1655652887063184,51.446104599848354],[-3.169603054036884,51.4062289310213],[-3.224101264960609,51.403675133401634],[-3.2662887787033696,51.38746452436925],[-3.3072534554817707,51.39260320737304],[-3.3408880667300878,51.38119228010055],[-3.40516293801835,51.38134534201487],[-3.5199776110770813,51.40005282068205],[-3.5589465447464477,51.40132666989081],[-3.597031268577382,51.44122719867721],[-3.6304377856744736,51.45551915808363],[-3.619636738144152,51.47661105875426],[-3.5547456334034564,51.49277285798195],[-3.533469624422821,51.48853181888927],[-3.4974987957320423,51.512640722892],[-3.437630125828832,51.50659192238027],[-3.3784810385682817,51.512724438083296],[-3.335727364725301,51.508426411650476]]]},"properties":{"objectid":208,"ctyua17cd":"W06000014","name":"Vale of Glamorgan","namew":"Bro Morgannwg","bng_e":302946,"bng_n":173083,"long":-3.39803004,"lat":51.44837952,"st_areasha":0.042943362861288,"st_lengths":1.207512196593618},"id":"208"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.1188821449941884,51.54563723996756],[-3.0689022539350503,51.52026542161286],[-3.0826502044425865,51.501817634776955],[-3.121302548872734,51.49050768967908],[-3.1655652887063184,51.446104599848354],[-3.218228727972587,51.474671618601235],[-3.2714317146011354,51.465262162219915],[-3.2983746566642367,51.499914248444725],[-3.335727364725301,51.508426411650476],[-3.3437660555582056,51.52990458552915],[-3.3103531505766455,51.54893098537758],[-3.2376859579397888,51.55260127692833],[-3.1637250212918957,51.560504015448885],[-3.1188821449941884,51.54563723996756]]]},"properties":{"objectid":209,"ctyua17cd":"W06000015","name":"Cardiff","namew":"Caerdydd","bng_e":315270,"bng_n":178887,"long":-3.22212005,"lat":51.502540589999995,"st_areasha":0.018386813542757,"st_lengths":0.823409204932323},"id":"209"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.3138941052279733,51.644675291632325],[-3.2913704307999296,51.59210558330693],[-3.2376859579397888,51.55260127692833],[-3.3103531505766455,51.54893098537758],[-3.3437660555582056,51.52990458552915],[-3.335727364725301,51.508426411650476],[-3.3784810385682817,51.512724438083296],[-3.437630125828832,51.50659192238027],[-3.4974987957320423,51.512640722892],[-3.463011791759982,51.54340907966622],[-3.488718496060926,51.57423770091009],[-3.471663080086273,51.598583833478074],[-3.538118862194949,51.644280546810705],[-3.5632982858863897,51.6454810805883],[-3.5895733446333224,51.67926903433937],[-3.57863511002148,51.71787699632722],[-3.5912804872039032,51.754607306982564],[-3.5598553402509197,51.77751100163232],[-3.44419233850482,51.81648087599257],[-3.4165660016188895,51.76807503953239],[-3.442549348173088,51.7556632468623],[-3.3138941052279733,51.644675291632325]]]},"properties":{"objectid":210,"ctyua17cd":"W06000016","name":"Rhondda Cynon Taf","namew":"Rhondda Cynon Taf","bng_e":302237,"bng_n":192395,"long":-3.41358995,"lat":51.62184906,"st_areasha":0.054956272988161,"st_lengths":1.340882788141286},"id":"210"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.116107638455958,51.69080002290366],[-3.084416574564443,51.68835627262479],[-3.074831950933003,51.6522371736076],[-3.102427676695129,51.63363922427169],[-3.0818204575472805,51.61942992964845],[-3.0636940866119744,51.60547152339302],[-3.1236363057701055,51.587277499158176],[-3.0902195840657214,51.56853935001192],[-3.1188821449941884,51.54563723996756],[-3.1637250212918957,51.560504015448885],[-3.2376859579397888,51.55260127692833],[-3.2913704307999296,51.59210558330693],[-3.3138941052279733,51.644675291632325],[-3.27391864133142,51.6823326711168],[-3.3017206257055136,51.73150356623751],[-3.329048922768777,51.75871835986533],[-3.3344604690745996,51.79039740971359],[-3.310085569892351,51.794296963634906],[-3.2682903710029905,51.77248338759921],[-3.2534144323293503,51.74644240979029],[-3.194060332017898,51.739258602803204],[-3.1672404639754177,51.709899185100255],[-3.116107638455958,51.69080002290366]]]},"properties":{"objectid":211,"ctyua17cd":"W06000018","name":"Caerphilly","namew":"Caerffili","bng_e":317245,"bng_n":195259,"long":-3.19753003,"lat":51.650009159999996,"st_areasha":0.036137949543105,"st_lengths":1.168784730078607},"id":"211"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.1573445328231173,51.81604632178124],[-3.1341816130901634,51.792806253706544],[-3.106381758310704,51.74175707413059],[-3.116107638455958,51.69080002290366],[-3.1672404639754177,51.709899185100255],[-3.194060332017898,51.739258602803204],[-3.2534144323293503,51.74644240979029],[-3.2682903710029905,51.77248338759921],[-3.310085569892351,51.794296963634906],[-3.283425943951329,51.82548327943073],[-3.238770611373809,51.8123499993539],[-3.1573445328231173,51.81604632178124]]]},"properties":{"objectid":212,"ctyua17cd":"W06000019","name":"Blaenau Gwent","namew":"Blaenau Gwent","bng_e":318236,"bng_n":206771,"long":-3.18592,"lat":51.75363922,"st_areasha":0.014201292620166,"st_lengths":0.709724290759556},"id":"212"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.958904528720211,51.62877795963607],[-2.9893188197069662,51.628760174643276],[-3.04503615429428,51.60667235034964],[-3.0818204575472805,51.61942992964845],[-3.102427676695129,51.63363922427169],[-3.074831950933003,51.6522371736076],[-3.084416574564443,51.68835627262479],[-3.116107638455958,51.69080002290366],[-3.106381758310704,51.74175707413059],[-3.1341816130901634,51.792806253706544],[-3.058870437020232,51.783635314619005],[-3.0277734778629224,51.74536890794968],[-3.0338858874229686,51.725509840207906],[-2.9823932323609483,51.713920230235374],[-2.9709418194086084,51.693884498771524],[-2.977473629603537,51.65262320040131],[-2.958904528720211,51.62877795963607]]]},"properties":{"objectid":213,"ctyua17cd":"W06000020","name":"Torfaen","namew":"Torfaen","bng_e":327459,"bng_n":200480,"long":-3.05100989,"lat":51.69836044,"st_areasha":0.016416024650143,"st_lengths":0.848414408523296},"id":"213"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.0673615965596355,51.98313629390577],[-3.0259380748814237,51.95727569042168],[-2.9717926679963966,51.904959144849556],[-2.916238585541464,51.917685815349046],[-2.8886524087808425,51.9334555641239],[-2.8450243223138045,51.92212633666202],[-2.7969615745162173,51.88840083453181],[-2.7568762908073836,51.845900395387844],[-2.697333914727551,51.8447922876349],[-2.6503979760848893,51.826118788052554],[-2.680448687356204,51.76892505804591],[-2.66953510226233,51.742694717188385],[-2.6878105942826664,51.73098413670948],[-2.6698428673536228,51.70738971776217],[-2.6850731101351357,51.668385618802176],[-2.6798255848819963,51.64510242373876],[-2.6579401413236496,51.62212370134864],[-2.7103875148711154,51.58366993352155],[-2.7484438929704424,51.58014330776837],[-2.8216305762892375,51.55406995436584],[-2.8526598111005796,51.571255305289014],[-2.8473982060615413,51.60092146825207],[-2.805673509524013,51.62371748617397],[-2.8368184816867483,51.64946877166739],[-2.886479499228699,51.639713569126855],[-2.9086603574887135,51.62375749791113],[-2.920311576417305,51.62714922625673],[-2.932294039937176,51.61920055216467],[-2.9448338115303727,51.621246487336464],[-2.958904528720211,51.62877795963607],[-2.977473629603537,51.65262320040131],[-2.9709418194086084,51.693884498771524],[-2.9823932323609483,51.713920230235374],[-3.0338858874229686,51.725509840207906],[-3.0277734778629224,51.74536890794968],[-3.058870437020232,51.783635314619005],[-3.1341816130901634,51.792806253706544],[-3.1573445328231173,51.81604632178124],[-3.1031482404981148,51.83987289981542],[-3.04363957640453,51.880708612013734],[-3.0494999590550265,51.91143968559396],[-3.0786439747388386,51.92452451019892],[-3.0930794767356247,51.96518416931491],[-3.0673615965596355,51.98313629390577]]]},"properties":{"objectid":214,"ctyua17cd":"W06000021","name":"Monmouthshire","namew":"Sir Fynwy","bng_e":337812,"bng_n":209231,"long":-2.90280008,"lat":51.778270719999995,"st_areasha":0.110624442657568,"st_lengths":2.329923323439807},"id":"214"},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-2.8216305762892375,51.55406995436584],[-2.9050350266443274,51.53241656647231],[-2.960338066947429,51.53639440367971],[-2.973525046442944,51.575107180752696],[-2.993111736516596,51.59060917797211],[-2.9457024900770534,51.606265893656996],[-2.9211680556604165,51.6264987187418],[-2.909294812105088,51.6231249759378],[-2.886479499228699,51.639713569126855],[-2.8368184816867483,51.64946877166739],[-2.805673509524013,51.62371748617397],[-2.8473982060615413,51.60092146825207],[-2.8526598111005796,51.571255305289014],[-2.8216305762892375,51.55406995436584]]],[[[-2.958904528720211,51.62877795963607],[-2.9448338115303727,51.621246487336464],[-2.993381585291104,51.60946051489179],[-2.99489626125262,51.59128729827114],[-2.969523815171101,51.55647367761907],[-3.0275457470377773,51.520603604473706],[-3.0826502044425865,51.501817634776955],[-3.0689022539350503,51.52026542161286],[-3.1188821449941884,51.54563723996756],[-3.0902195840657214,51.56853935001192],[-3.1236363057701055,51.587277499158176],[-3.0636940866119744,51.60547152339302],[-3.0818204575472805,51.61942992964845],[-3.04503615429428,51.60667235034964],[-2.9893188197069662,51.628760174643276],[-2.958904528720211,51.62877795963607]]]]},"properties":{"objectid":215,"ctyua17cd":"W06000022","name":"Newport","namew":"Casnewydd","bng_e":337897,"bng_n":187433,"long":-2.89769006,"lat":51.58232117,"st_areasha":0.024646089611909,"st_lengths":1.598608664548659},"id":"215"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.147503734608847,52.89015460764995],[-3.1277133741720604,52.867088440580005],[-3.1678877456221244,52.81925219873091],[-3.1584261735282553,52.79347369255777],[-3.0106155121953293,52.76153634123011],[-2.9919950096611387,52.74374154763524],[-3.018382212068616,52.721251627461584],[-3.0511152484691024,52.647350871646324],[-3.1174147904594065,52.58574827016747],[-3.1114959941439793,52.54134885586592],[-3.006486313691596,52.57383429361869],[-2.9943095723280635,52.553033185134325],[-3.0292039592944775,52.50125304918981],[-3.1081246426373355,52.4992859449913],[-3.180590790931433,52.47382173118888],[-3.1972388751731273,52.47597477561635],[-3.2355407690903917,52.44248944193515],[-3.2195425394558015,52.421239076223344],[-3.1788351982849576,52.40938355290956],[-3.1544454737787646,52.38770172125834],[-3.041058729875658,52.34429431403231],[-2.9546522831755055,52.34914186490607],[-2.966802544001382,52.329436610911785],[-3.001532101424516,52.32017461456775],[-3.005502476057586,52.26426073764384],[-3.0731219458203327,52.23578245499721],[-3.102081013227348,52.202710966838595],[-3.0946492703467356,52.1837331114948],[-3.1219916741756037,52.166907914769354],[-3.0936862106493095,52.144297457562516],[-3.1258895625524588,52.078303796583896],[-3.0907745107342635,52.05081860289715],[-3.099192705578105,52.022679359265965],[-3.0673615965596355,51.98313629390577],[-3.0930794767356247,51.96518416931491],[-3.0786439747388386,51.92452451019892],[-3.0494999590550265,51.91143968559396],[-3.04363957640453,51.880708612013734],[-3.1031482404981148,51.83987289981542],[-3.1573445328231173,51.81604632178124],[-3.238770611373809,51.8123499993539],[-3.283425943951329,51.82548327943073],[-3.310085569892351,51.794296963634906],[-3.3344604690745996,51.79039740971359],[-3.3728530892977915,51.812194213393184],[-3.44419233850482,51.81648087599257],[-3.5598553402509197,51.77751100163232],[-3.5912804872039032,51.754607306982564],[-3.6013527070609825,51.771758248045614],[-3.6703526937210427,51.78719270617938],[-3.7190709852369537,51.778164587526646],[-3.746075895085653,51.75338633431278],[-3.7803730872473693,51.75966518590053],[-3.8066750609045243,51.78794573550823],[-3.7647241587920917,51.85183452874145],[-3.713824480714379,51.88711866839276],[-3.727594148950004,51.91219149993867],[-3.697788637834549,51.98279222138484],[-3.67000445374174,52.00420485447137],[-3.647124960747533,52.038780458752115],[-3.6816472019559683,52.07390103690426],[-3.7230838159645145,52.08520448440038],[-3.7140651905552886,52.104960890933285],[-3.7580911883568433,52.12822358595065],[-3.7507757215215065,52.164458522144],[-3.7534234776105677,52.2517483432124],[-3.731628053491079,52.27143839866409],[-3.727727133499627,52.30581344693394],[-3.7450012376162363,52.317552843489864],[-3.705120497512155,52.341441506221486],[-3.6581588157758915,52.34763611201788],[-3.7105297937142154,52.39343643444482],[-3.7120412554987183,52.41334246568317],[-3.771607495089029,52.44213800036937],[-3.7722174260925385,52.48865412019239],[-3.8253699409692103,52.483652279829755],[-3.8444001557417664,52.51724729482771],[-3.8408531720354517,52.55134003511546],[-3.8594574516991997,52.56082874515141],[-3.9260122024003863,52.56076233291628],[-3.8921510285463228,52.57694768988489],[-3.8567382957349423,52.600387956040265],[-3.834605738263406,52.633043797334324],[-3.840705905352422,52.65088783870374],[-3.808087803208764,52.67793037258957],[-3.759343913390069,52.66943149057175],[-3.682478614395734,52.694135893257794],[-3.619595511422915,52.697441248915425],[-3.5835079705155977,52.738608308227754],[-3.6069667132424,52.797486734626034],[-3.5864706170245313,52.82770322512465],[-3.50544405689692,52.841880111778664],[-3.4830091545480286,52.86543908394748],[-3.3888212168249083,52.876055670633605],[-3.3750126178372284,52.89243895759273],[-3.345648811442686,52.892526302447834],[-3.261801246229709,52.866593963641435],[-3.2164700236718318,52.876807680131265],[-3.1743807338829697,52.901560631818654],[-3.147503734608847,52.89015460764995]]]},"properties":{"objectid":216,"ctyua17cd":"W06000023","name":"Powys","namew":"Powys","bng_e":302328,"bng_n":273254,"long":-3.43532991,"lat":52.348628999999995,"st_areasha":0.685192197854353,"st_lengths":6.477392149666554},"id":"216"},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.3344604690745996,51.79039740971359],[-3.329048922768777,51.75871835986533],[-3.3017206257055136,51.73150356623751],[-3.27391864133142,51.6823326711168],[-3.3138941052279733,51.644675291632325],[-3.442549348173088,51.7556632468623],[-3.4165660016188895,51.76807503953239],[-3.44419233850482,51.81648087599257],[-3.3728530892977915,51.812194213393184],[-3.3344604690745996,51.79039740971359]]]},"properties":{"objectid":217,"ctyua17cd":"W06000024","name":"Merthyr Tydfil","namew":"Merthyr Tudful","bng_e":305916,"bng_n":206424,"long":-3.36424994,"lat":51.74858093,"st_areasha":0.014605162369961,"st_lengths":0.674447812578581},"id":"217"}]} \ No newline at end of file
diff --git a/src/templates/index.html.j2 b/src/templates/index.html.j2
new file mode 100644
index 0000000..68f9837
--- /dev/null
+++ b/src/templates/index.html.j2
@@ -0,0 +1,16 @@
+{% extends "template.html.j2" %}
+{% block content %}
+ <div id="multicharts">
+ <ul>
+ {% for elem in charts %}
+ <li>
+ <figure class="chart_container">
+ <div class="minichart" id="/minichart{{ elem['url'] }}">
+ </div>
+ </figure>
+ <a class="bottom_text" href="{{ elem['url'] }}">{{ elem['title'] }}</a>
+ </li>
+ {% endfor %}
+ </ul>
+ </div>
+{% endblock %} \ No newline at end of file
diff --git a/src/templates/plot.html.j2 b/src/templates/plot.html.j2
new file mode 100644
index 0000000..56f5e87
--- /dev/null
+++ b/src/templates/plot.html.j2
@@ -0,0 +1,8 @@
+{% extends "template.html.j2" %}
+{% block content %}
+ <figure id="singlechart" class="highcharts-figure">
+ <div class="chart" id="/chart{{ elem['url'] }}">
+ </div>
+ <p id=chart_alt class="highcharts-description">{{ alt }}</p>
+ </figure>
+{% endblock %} \ No newline at end of file
diff --git a/src/templates/search.html.j2 b/src/templates/search.html.j2
new file mode 100644
index 0000000..4de432c
--- /dev/null
+++ b/src/templates/search.html.j2
@@ -0,0 +1,16 @@
+{% extends "template.html.j2" %}
+{% block content %}
+ <div id="search">
+ {% if companies == [] %}
+ <a>There were no results for that search. Please refine your search.</a>
+ {% else %}
+ <ul>
+ {% for name, id_ in companies %}
+ <li>
+ <a href="{{ '/company/%s' % id_ }}">{{ name }}</a>
+ </li>
+ {% endfor %}
+ </ul>
+ {% endif %}
+ </div>
+{% endblock %} \ No newline at end of file
diff --git a/src/templates/template.html.j2 b/src/templates/template.html.j2
new file mode 100644
index 0000000..02da03a
--- /dev/null
+++ b/src/templates/template.html.j2
@@ -0,0 +1,95 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+ <title>UK Gender Pay Gap :: {{ title }}</title>
+ <!-- JQuery and JQurty UI current version -->
+ <script src='https://code.jquery.com/jquery-3.6.0.js'></script>
+ <script src="https://code.jquery.com/ui/1.13.1/jquery-ui.js"></script>
+
+ <!-- Highcharts libraries -->
+ <script type="text/javascript" src="https://code.highcharts.com/highcharts.js"></script>
+ <script type="text/javascript" src="https://code.highcharts.com/highcharts-more.js"></script>
+ <script type="text/javascript" src="https://code.highcharts.com/modules/exporting.js"></script>
+ <script type="text/javascript" src="https://code.highcharts.com/modules/export-data.js"></script>
+ <script type="text/javascript" src="https://code.highcharts.com/modules/accessibility.js"></script>
+
+ <script type="text/javascript" src="https://code.highcharts.com/maps/modules/map.js"></script>
+ <script type="text/javascript" src="https://code.highcharts.com/mapdata/custom/world-robinson.js"></script>
+
+ <!-- local Javascript files -->
+ <script type="text/javascript" src="{{ url_for('static', filename='scripts.js') }}"></script>
+ <!-- remote and local CSS stylesheet -->
+ <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
+</head>
+
+<body>
+ <header>
+ <a href="/"><h1>{{ title }}</h1></a>
+ <p>Data provided by the <a href="https://gender-pay-gap.service.gov.uk/">UK Government</a> and the <a href="https://www.ons.gov.uk/aboutus/transparencyandgovernance/freedomofinformationfoi/ukpostcodestownsandcounties">Office for National Statistics</a></p>
+ </header>
+
+ <aside>
+ <form id="searchform" action="/search_click" method="POST">
+ <input type="search" id="search_entry" name="search" required>
+ <input type="submit" value="Search" id="search_btn">
+ </form>
+ {% if filters is defined %}
+ <h4>Filters</h4>
+ <form id="filterform" method="POST">
+ {% for filter_name, filter_content in filters.items() %}
+ <h5>{{ filter_name }}</h5>
+ {% if len(filter_content["options"]) > 5 %}
+ <a class="collapsetoggle" id="collapsetoggle/{{ filter_name }}" onclick="collapseTogglePress('collapsable/{{ filter_name }}', 'collapsetoggle/{{ filter_name }}', {{ len(filter_content['options']) }})" href="javascript:void(0);">
+ {{ "Un-hide %d hidden filters" % len(filter_content["options"]) }}
+ </a>
+ <div class="collapsable" id="collapsable/{{ filter_name }}">
+ {% endif %}
+ {% if "yearslider" in filter_content.keys() %}
+ {% if "year" in current_filters.keys() %}
+ <p id="slider_val">Year range: {{ current_filters["year"] }}</p>
+ <input type="range" min="1" max="{{ len(filter_content['yearslider']) }}" value="{{ filter_content['yearslider'].index(current_filters['year']) + 1 }}" name="yearslider" id="yearslider"><br>
+ <input type="checkbox" id="allyears" name="allyears" value="allyears">
+ <label for="allyears">All years</label><br>
+ {% else %}
+ <p id="slider_val">Year range: {{ filter_content['yearslider'][0] }}</p>
+ <input type="range" min="1" max="{{ len(filter_content['yearslider']) }}" value="1" name="yearslider" id="yearslider"><br>
+ <input type="checkbox" id="allyears" name="allyears" value="allyears" checked="checked">
+ <label for="allyears">All years</label><br>
+ {% endif %}
+ {% else %}
+ {% for option in filter_content["options"] %}
+ {% if filter_name in current_filters.keys() %}
+ {% if current_filters[filter_name] == option %}
+ <input type="radio" id="{{ option }}" name="{{ filter_name }}" value = "{{ option }}" checked="checked">
+ {% else %}
+ <input type="radio" id="{{ option }}" name="{{ filter_name }}" value = "{{ option }}">
+ {% endif %}
+ {% else %}
+ <input type="radio" id="{{ option }}" name="{{ filter_name }}" value = "{{ option }}">
+ {% endif %}
+ <label for="{{ option }}">{{ option }}</label><br>
+ {% endfor %}
+ {% if len(filter_content["default"]) < 2 %}
+ <input type="radio" id="No filter" name="{{ filter_name }}" value = "No filter">
+ <label for="No filter">No filter</label><br>
+ {% endif %}
+ {% if len(filter_content["options"]) > 5 %}
+ </div>
+ {% endif %}
+ {% endif %}
+ {% endfor %}
+ <input type="submit" value="Apply" id="apply_btn">
+ </form>
+ {% endif %}
+ </aside>
+
+ <div id="main_content">
+ {% block content %}
+ {% endblock %}
+ </div>
+
+ <footer>
+ <p><a href="https://github.com/jwansek/UKGenderPayGap">Source code</a> released under GPLv3</p>
+ </footer>
+</body> \ No newline at end of file