diff --git a/.gitignore b/.gitignore index f04dfa50..054ca434 100644 --- a/.gitignore +++ b/.gitignore @@ -15,11 +15,11 @@ demodata/ *.gfs .venv .direnv -/var/cache +var/cache /collection /specification ssl.pem -/var +var .junitxml pyrightconfig.json .idea diff --git a/digital_land/cli.py b/digital_land/cli.py index c533be7e..5649a37c 100644 --- a/digital_land/cli.py +++ b/digital_land/cli.py @@ -140,8 +140,6 @@ def convert_cmd(input_path, output_path): @column_field_dir @dataset_resource_dir @issue_dir -@click.option("--cache-dir", type=click.Path(), default="var/cache/parquet") -@click.option("--resource-path", type=click.Path(), default="collection/resource.csv") @click.argument("input-paths", nargs=-1, type=click.Path(exists=True)) @click.pass_context def dataset_create_cmd( @@ -152,8 +150,6 @@ def dataset_create_cmd( column_field_dir, dataset_resource_dir, issue_dir, - cache_dir, - resource_path, ): return dataset_create( input_paths=input_paths, @@ -165,8 +161,6 @@ def dataset_create_cmd( column_field_dir=column_field_dir, dataset_resource_dir=dataset_resource_dir, issue_dir=issue_dir, - cache_dir=cache_dir, - resource_path=resource_path, ) diff --git a/digital_land/commands.py b/digital_land/commands.py index 53836ef9..80619a61 100644 --- a/digital_land/commands.py +++ b/digital_land/commands.py @@ -12,8 +12,6 @@ import geojson import shapely -import subprocess - from digital_land.package.organisation import OrganisationPackage from digital_land.check import duplicate_reference_check from digital_land.specification import Specification @@ -28,7 +26,6 @@ ) from digital_land.organisation import Organisation from digital_land.package.dataset import DatasetPackage -from digital_land.package.datasetparquet import DatasetParquetPackage from digital_land.phase.combine import FactCombinePhase from digital_land.phase.concat import ConcatFieldPhase from digital_land.phase.convert import ConvertPhase, execute @@ -360,11 +357,7 @@ def dataset_create( issue_dir="issue", column_field_dir="var/column-field", dataset_resource_dir="var/dataset-resource", - cache_dir="var/cache/parquet", - resource_path="collection/resource.csv", ): - cache_dir = os.path.join(cache_dir, dataset) - if not output_path: print("missing output path", file=sys.stderr) sys.exit(2) @@ -384,8 +377,10 @@ def dataset_create( package.create() for path in input_paths: path_obj = Path(path) + package.load_transformed(path) package.load_column_fields(column_field_dir / dataset / path_obj.name) package.load_dataset_resource(dataset_resource_dir / dataset / path_obj.name) + package.load_entities() old_entity_path = os.path.join(pipeline.path, "old-entity.csv") if os.path.exists(old_entity_path): @@ -400,29 +395,9 @@ def dataset_create( package.add_counts() - # Repeat for parquet - # Set up cache directory to store parquet files. The sqlite files created from this will be saved in the dataset - if not os.path.exists(cache_dir): - os.makedirs(cache_dir) - - pqpackage = DatasetParquetPackage( - dataset, - organisation=organisation, - path=output_path, - cache_dir=cache_dir, - resource_path=resource_path, - specification_dir=None, # TBD: package should use this specification object - ) - pqpackage.create_temp_table(input_paths) - pqpackage.load_facts() - pqpackage.load_fact_resource() - pqpackage.load_entities() - pqpackage.pq_to_sqlite() - pqpackage.close_conn() - def dataset_dump(input_path, output_path): - cmd = f"sqlite3 -header -csv {input_path} 'select * from entity order by entity;' > {output_path}" + cmd = f"sqlite3 -header -csv {input_path} 'select * from entity;' > {output_path}" logging.info(cmd) os.system(cmd) @@ -434,7 +409,7 @@ def dataset_dump_flattened(csv_path, flattened_dir, specification, dataset): elif isinstance(csv_path, Path): dataset_name = csv_path.stem else: - logging.error(f"Can't extract datapackage name from {csv_path}") + logging.error(f"Can't extract datapackage name from {csv_path}") sys.exit(-1) flattened_csv_path = os.path.join(flattened_dir, f"{dataset_name}.csv") @@ -481,7 +456,6 @@ def dataset_dump_flattened(csv_path, flattened_dir, specification, dataset): batch_size = 100000 temp_geojson_files = [] geography_entities = [e for e in entities if e["typology"] == "geography"] - for i in range(0, len(geography_entities), batch_size): batch = geography_entities[i : i + batch_size] feature_collection = process_data_in_batches(batch, flattened_dir, dataset_name) @@ -496,13 +470,6 @@ def dataset_dump_flattened(csv_path, flattened_dir, specification, dataset): if all(os.path.isfile(path) for path in temp_geojson_files): rfc7946_geojson_path = os.path.join(flattened_dir, f"{dataset_name}.geojson") - env = os.environ.copy() - - out, _ = subprocess.Popen( - ["ogr2ogr", "--version"], - stdout=subprocess.PIPE, - stderr=subprocess.DEVNULL, - ).communicate() env = ( dict(os.environ, OGR_GEOJSON_MAX_OBJ_SIZE="0") if get_gdal_version() >= Version("3.5.2") diff --git a/digital_land/package/datasetparquet.py b/digital_land/package/datasetparquet.py deleted file mode 100644 index a306da47..00000000 --- a/digital_land/package/datasetparquet.py +++ /dev/null @@ -1,322 +0,0 @@ -import os -import logging -import duckdb -from .package import Package - -logger = logging.getLogger(__name__) - -# TBD: move to from specification datapackage definition -tables = { - "dataset-resource": None, - "column-field": None, - "issue": None, - "entity": None, - "fact": None, - "fact-resource": None, -} - -# TBD: infer from specification dataset -indexes = { - "fact": ["entity"], - "fact-resource": ["fact", "resource"], - "column-field": ["dataset", "resource", "column", "field"], - "issue": ["resource", "dataset", "field"], - "dataset-resource": ["resource"], -} - - -class DatasetParquetPackage(Package): - def __init__(self, dataset, organisation, cache_dir, resource_path, **kwargs): - self.suffix = ".parquet" - super().__init__(dataset, tables=tables, indexes=indexes, **kwargs) - self.dataset = dataset - self.organisation = organisation - self.cache_dir = cache_dir - self._spatialite = None - self.resource_path = resource_path - # Persistent connection for the class. Given name to ensure that table is stored on disk (not purely in memory) - os.makedirs(cache_dir, exist_ok=True) - self.duckdb_file = os.path.join(cache_dir, f"{dataset}.duckdb") - self.conn = duckdb.connect(self.duckdb_file) - self.schema = self.get_schema() - self.typology = self.specification.schema[dataset]["typology"] - - def get_schema(self): - schema = {} - - for field in sorted( - list( - set(self.specification.schema["fact"]["fields"]).union( - set(self.specification.schema["fact-resource"]["fields"]) - ) - ) - ): - datatype = self.specification.field[field]["datatype"] - schema[field] = "BIGINT" if datatype == "integer" else "VARCHAR" - - return schema - - def create_temp_table(self, input_paths): - # Create a temp table of the data from input_paths as we need the information stored there at various times - logging.info( - f"loading data into temp table from {os.path.dirname(input_paths[0])}" - ) - - input_paths_str = ", ".join([f"'{path}'" for path in input_paths]) - - self.conn.execute("DROP TABLE IF EXISTS temp_table") - query = f""" - CREATE TEMPORARY TABLE temp_table AS - SELECT * - FROM read_csv( - [{input_paths_str}], - columns = {self.schema}, - header = true, - force_not_null = {[field for field in self.schema.keys()]} - ) - """ - - self.conn.execute(query) - - def load_facts(self): - logging.info("loading facts from temp table") - - fact_fields = self.specification.schema["fact"]["fields"] - fields_str = ", ".join( - [f'"{field}"' if "-" in field else field for field in fact_fields] - ) - - # query to extract data from the temp table (containing raw data), group by a fact, and get the highest - # priority or latest record - query = f""" - SELECT {fields_str} - FROM temp_table - QUALIFY ROW_NUMBER() OVER ( - PARTITION BY fact ORDER BY priority, "entry-date" DESC, "entry-number" DESC - ) = 1 - """ - - self.conn.execute( - f""" - COPY ( - {query} - ) TO '{self.cache_dir}/fact{self.suffix}' (FORMAT PARQUET); - """ - ) - - def load_fact_resource(self): - logging.info("loading fact resources from temp table") - - fact_resource_fields = self.specification.schema["fact-resource"]["fields"] - fields_str = ", ".join( - [f'"{field}"' if "-" in field else field for field in fact_resource_fields] - ) - - # All CSV files have been loaded into a temporary table. Extract several columns and export - query = f""" - SELECT {fields_str} - FROM temp_table - """ - - self.conn.execute( - f""" - COPY ( - {query} - ) TO '{self.cache_dir}/fact_resource{self.suffix}' (FORMAT PARQUET); - """ - ) - - def load_entities(self): - organisation_path = self.organisation.organisation_path - - logging.info("loading entities from temp table") - - entity_fields = self.specification.schema["entity"]["fields"] - # Do this to match with later field names. - entity_fields = [e.replace("-", "_") for e in entity_fields] - input_paths_str = f"{self.cache_dir}/fact{self.suffix}" - - query = f""" - SELECT DISTINCT REPLACE(field,'-','_') - FROM parquet_scan('{str(input_paths_str)}') - """ - - # distinct_fields - list of fields in the field in fact - rows = self.conn.execute(query).fetchall() - distinct_fields = [row[0] for row in rows] - - # json fields - list of fields which are present in the fact table which - # do not exist separately in the entity table - # Need to ensure that 'organisation' is not included either - json_fields = [ - field - for field in distinct_fields - if field not in entity_fields + ["organisation"] - ] - - # null fields - list of fields which are not present in the fact tables which have - # to be in the entity table as a column - extra_fields = [ - "entity", - "dataset", - "typology", - "json", - "organisation_entity", - "organisation", - ] - null_fields = [ - field - for field in entity_fields - if field not in (distinct_fields + extra_fields) - ] - - # select fields - a list of fields which have to be selected directly from the pivoted table - # these are entity fields that are not null fields or a few special ones - extra_fields = [ - "json", - "organisation_entity", - "dataset", - "typology", - "organisation", - ] - select_fields = [ - field for field in entity_fields if field not in null_fields + extra_fields - ] - - # set fields - fields_to_include = ["entity", "field", "value"] - fields_str = ", ".join(fields_to_include) - - # Take original data, group by entity & field, and order by highest priority then latest record. - # If there are still matches then pick the first resource (and fact, just to make sure) - query = f""" - SELECT {fields_str} FROM ( - SELECT {fields_str}, CASE WHEN resource_csv."end-date" IS NULL THEN '2999-12-31' ELSE resource_csv."end-date" END AS resource_end_date - FROM temp_table - LEFT JOIN read_csv_auto('{self.resource_path}') resource_csv - ON temp_table.resource = resource_csv.resource - QUALIFY ROW_NUMBER() OVER ( - PARTITION BY entity, field - ORDER BY priority, "entry-date" DESC, "entry-number" DESC, resource_end_date DESC, temp_table.resource, fact - ) = 1 - ) - """ - - pivot_query = f""" - PIVOT ( - {query} - ) ON REPLACE(field,'-','_') - USING MAX(value) - """ - - # now use the field lists produced above to create specific statements to: - # add null columns which are missing - # include columns in the json statement - # Collate list of fields which don't exist but need to be in the final table - select_statement = ", ".join([f"t1.{field}" for field in select_fields]) - # Don't want to include anything that ends with "_geom" - null_fields_statement = ", ".join( - [ - f"''::VARCHAR AS \"{field}\"" - for field in null_fields - if not field.endswith("_geom") - ] - ) - json_statement = ", ".join( - [ - f"CASE WHEN t1.{field} IS NOT NULL THEN REPLACE('{field}', '_', '-') ELSE NULL END, t1.{field}" - for field in json_fields - ] - ) - - # define organisation query - org_csv = organisation_path - org_query = f""" - SELECT * FROM read_csv_auto('{org_csv}') - """ - - sql = f""" - INSTALL spatial; LOAD spatial; - COPY( - WITH computed_centroid AS ( - SELECT - * EXCLUDE (point), -- Calculate centroid point if not given - CASE - WHEN (geometry IS NOT NULL and geometry <> '') AND (point IS NULL OR point = '') - THEN ST_AsText(ST_ReducePrecision(ST_Centroid(ST_GeomFromText(geometry)),0.000001)) - ELSE point - END AS point - FROM ( - SELECT '{self.dataset}' as dataset, - '{self.typology}' as typology, - t2.entity as organisation_entity, - {select_statement}, - {null_fields_statement}, - json_object({json_statement}) as json, - FROM ({pivot_query}) as t1 - LEFT JOIN ({org_query}) as t2 - on t1.organisation = t2.organisation - ) - ) - SELECT - * EXCLUDE (json), - CASE WHEN json = '{{}}' THEN NULL ELSE json END AS json - FROM computed_centroid - ) TO '{self.cache_dir}/entity{self.suffix}' (FORMAT PARQUET); - """ - self.conn.execute(sql) - - def pq_to_sqlite(self): - # At present we are saving the parquet files in 'cache' but saving the sqlite files produced in 'dataset' - # In future when parquet files are saved to 'dataset' remove the 'cache_dir' in the function arguments and - # replace 'cache_dir' with 'output_path' in this function's code - logging.info( - f"loading sqlite3 tables in {self.path} from parquet files in {self.cache_dir}" - ) - query = "INSTALL sqlite; LOAD sqlite;" - self.conn.execute(query) - - parquet_files = [ - fn for fn in os.listdir(self.cache_dir) if fn.endswith(self.suffix) - ] - - for parquet_file in parquet_files: - table_name = os.path.splitext(os.path.basename(parquet_file))[0] - - # Load Parquet data into DuckDB temp table - self.conn.execute("DROP TABLE IF EXISTS temp_table;") - self.conn.execute( - f""" - CREATE TABLE temp_table AS - SELECT * FROM parquet_scan('{self.cache_dir}/{parquet_file}'); - """ - ) - - # Export the DuckDB table to the SQLite database - self.conn.execute( - f"ATTACH DATABASE '{self.path}' AS sqlite_db (TYPE SQLITE);" - ) - - # Fix the column names - for column in self.conn.execute("DESCRIBE TABLE temp_table;").fetchall(): - if "-" in column[0]: - self.conn.execute( - f"ALTER TABLE temp_table RENAME COLUMN '{column[0]}' TO '{column[0].replace('-','_')}';" - ) - - # Copy the data - self.conn.execute( - f"INSERT INTO sqlite_db.{table_name} BY NAME (SELECT * FROM temp_table);" - ) - - self.conn.execute("DETACH DATABASE sqlite_db;") - - def close_conn(self): - logging.info("Close connection to duckdb database in session") - if self.conn is not None: - self.conn.close() - if os.path.exists(self.duckdb_file): - os.remove(self.duckdb_file) - - def load(self): - pass diff --git a/setup.py b/setup.py index fce3257f..0f4b77b0 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,6 @@ def get_long_description(): "json-stream", "duckdb", "dask", - "arrow", "pyarrow", "pygit2", ], diff --git a/tests/acceptance/test_dataset_create.py b/tests/acceptance/test_dataset_create.py deleted file mode 100644 index de67328a..00000000 --- a/tests/acceptance/test_dataset_create.py +++ /dev/null @@ -1,156 +0,0 @@ -""" -A set of tests to mimic a user (computational or otherwise) running tests against -a sqlite dataset. There are quite a few things to set up and this specifically -""" - -import pytest - -import numpy as np -import pandas as pd -import os -import sqlite3 -from tempfile import TemporaryDirectory -from pathlib import Path - -from click.testing import CliRunner - -from digital_land.cli import cli - -test_collection = "conservation-area" -test_dataset = "conservation-area" - - -@pytest.fixture(scope="session") -def session_tmp_path(): - with TemporaryDirectory() as tmpdir: - yield Path(tmpdir) - - -@pytest.fixture -def input_paths(): - input_paths = [] - directory = f"tests/data/{test_collection}/transformed/{test_dataset}/" - for root, dirs, files in os.walk(directory): - for file in files: - full_path = os.path.join(root, file) - input_paths.append(full_path) - - return input_paths - - -@pytest.fixture -def organisation_path(): - """ - build an organisations dataset to use - """ - orgs_path = f"tests/data/{test_collection}/organisation.csv" - return orgs_path - - -@pytest.fixture -def cache_path(session_tmp_path): - cache_path = session_tmp_path / "var" / "cache" - os.makedirs(cache_path, exist_ok=True) - return cache_path - - -@pytest.fixture -def dataset_dir(session_tmp_path): - dataset_dir = session_tmp_path / "dataset" - os.makedirs(dataset_dir, exist_ok=True) - return dataset_dir - - -@pytest.fixture -def issue_dir(session_tmp_path): - issue_dir = session_tmp_path / "issue" - os.makedirs(issue_dir, exist_ok=True) - return issue_dir - - -@pytest.fixture -def resource_path(session_tmp_path): - resource_path = session_tmp_path / "resource.csv" - columns = ["resource", "end-date"] - with open(resource_path, "w") as f: - f.write(",".join(columns) + "\n") - return resource_path - - -def test_acceptance_dataset_create( - session_tmp_path, - organisation_path, - input_paths, - issue_dir, - cache_path, - dataset_dir, - resource_path, -): - output_path = dataset_dir / f"{test_dataset}.sqlite3" - - runner = CliRunner() - result = runner.invoke( - cli, - [ - "--dataset", - str(test_dataset), - "--pipeline-dir", - str(f"tests/data/{test_collection}/pipeline"), - "dataset-create", - "--output-path", - str(output_path), - "--organisation-path", - str(organisation_path), - "--column-field-dir", - str(f"tests/data/{test_collection}/var/column-field"), - "--dataset-resource-dir", - str(f"tests/data/{test_collection}/var/dataset-resource"), - "--issue-dir", - str(issue_dir), - "--cache-dir", - str(cache_path), - "--resource-path", - str(resource_path), - ] - + input_paths, - catch_exceptions=False, - ) - - # Check that the command exits with status code 0 (success) - if result.exit_code != 0: - # Print the command output if the test fails - print("Command failed with exit code:", result.exit_code) - print("Command output:") - print(result.output) - print("Command error output:") - print(result.exception) - - assert result.exit_code == 0, "error returned when building dataset" - pq_cache = os.path.join(cache_path, test_dataset) - pq_files = [file for file in os.listdir(pq_cache) if file.endswith(".parquet")] - assert len(pq_files) == 3, "Not all parquet files created" - assert np.all( - np.sort(pq_files) == ["entity.parquet", "fact.parquet", "fact_resource.parquet"] - ), "parquet file names not correct" - - # Check the sqlite file was created - assert os.path.exists(output_path), f"sqlite file {output_path} does not exists" - - conn = sqlite3.connect(output_path) - cursor = conn.cursor() - tables = cursor.execute( - "SELECT name FROM sqlite_master WHERE type='table';" - ).fetchall() - expected_tables = {"fact", "fact_resource", "entity"} - actual_tables = {table[0] for table in tables} - missing_tables = expected_tables - actual_tables - assert ( - len(missing_tables) == 0 - ), f"Missing following tables in sqlite database: {missing_tables}" - - for table in list(expected_tables): - pq_rows = len(pd.read_parquet(f"{pq_cache}/{table}.parquet")) - sql_rows = cursor.execute(f"SELECT COUNT(*) FROM {table};").fetchone()[0] - assert ( - pq_rows == sql_rows - ), f"Different rows between the parquet files and database table for {table}" diff --git a/tests/data/conservation-area/organisation.csv b/tests/data/conservation-area/organisation.csv deleted file mode 100644 index 1c7dcb59..00000000 --- a/tests/data/conservation-area/organisation.csv +++ /dev/null @@ -1,456 +0,0 @@ -addressbase-custodian,billing-authority,census-area,combined-authority,company,dataset,end-date,entity,entry-date,esd-inventory,local-authority-type,local-resilience-forum,local-planning-authority,local-authority-district,name,national-park,notes,official-name,opendatacommunities-uri,organisation,parliament-thesaurus,prefix,reference,region,shielding-hub,start-date,statistical-geography,website,wikidata,wikipedia -,,,,,development-corporation,,1,2024-06-26,,,,E60000330,,Old Oak and Park Royal Development Corporation,,,,http://opendatacommunities.org/id/dev-corp/old-oak-and-park-royal,development-corporation:Q20648596,424485,wikidata,Q20648596,,,2015-04-01,E51000002,https://www.london.gov.uk/about-us/organisations-we-work/old-oak-and-park-royal-development-corporation-opdc,Q20648596,Old_Oak_and_Park_Royal_Development_Corporation -,,,,,development-corporation,1998-07-01,2,2024-06-26,,,,,,Birmingham Heartlands Development Corporation,,,,,development-corporation:Q4916714,3882,wikidata,Q4916714,,,1992-01-01,,,Q4916714,Birmingham_Heartlands_Development_Corporation -,,,,,development-corporation,,3,2024-06-26,,,,E60000329,,London Legacy Development Corporation,,,,http://opendatacommunities.org/id/dev-corp/london-legacy,development-corporation:Q6670544,353643,wikidata,Q6670544,,,2012-03-09,E51000001,https://www.queenelizabetholympicpark.co.uk/planning-authority/planning-policy,Q6670544,London_Legacy_Development_Corporation -,,,,,development-corporation,2013-01-24,4,2024-06-26,,,,,,London Thames Gateway Development Corporation,,,,,development-corporation:Q6670837,43637,wikidata,Q6670837,,,2004-06-26,,http://www.ltgdc.org.uk/,Q6670837,London_Thames_Gateway_Development_Corporation -,,,,,development-corporation,,5,2024-06-26,,,,,,South Tees Development Corporation,,,,http://opendatacommunities.org/id/dev-corp/south-tees,development-corporation:Q72456968,430845,wikidata,Q72456968,,,2017-08-01,E51000004,https://www.southteesdc.com,Q72456968,South_Tees_Development_Corporation -,,,,,development-corporation,,6,2024-06-26,,,,E60000328,,Ebbsfleet Development Corporation,,,,http://opendatacommunities.org/id/dev-corp/ebbsfleet,development-corporation:Q72463795,416791,wikidata,Q72463795,,,2015-04-20,E51000003,https://ebbsfleetdc.org.uk,Q72463795,Ebbsfleet_Valley#Ebbsfleet_Development_Corporation -,,,,,development-corporation,2012-04-03,7,2024-06-26,,,,,,Thurrock Thames Gateway Development Corporation,,,,,development-corporation:Q7799380,83643,wikidata,Q7799380,,,2003-10-29,,https://www.gov.uk/government/organisations/thurrock-thames-gateway-development-corporation,Q7799380,Thurrock_Thames_Gateway_Development_Corporation -,,,,,development-corporation,1998-07-01,8,2024-06-26,,,,,,Tyne and Wear Development Corporation,,,,,development-corporation:Q7860503,84342,wikidata,Q7860503,,,1987-05-15,,,Q7860503,Tyne_and_Wear_Development_Corporation -,,,,,development-corporation,2014-03-31,9,2024-06-26,,,,,,West Northamptonshire Development Corporation,,,,,development-corporation:Q7986087,94528,wikidata,Q7986087,,,2004-12-15,,https://www.gov.uk/government/organisations/the-west-northamptonshire-development-corporation,Q7986087,West_Northamptonshire_Development_Corporation -,,,,,development-corporation,1988-03-31,600003,2024-06-26,,,,,,Aycliffe and Peterlee Development Corporation,,,,,development-corporation:Q105544651,2995,wikidata,Q105544651,,,,,,Q105544651, -,,,,,development-corporation,1986-03-31,600004,2024-06-26,,,,,,Basildon Development Corporation,,,,,development-corporation:Q105544654,3340,wikidata,Q105544654,,,,,,Q105544654, -,,,,,development-corporation,1996-07-01,600005,2024-06-26,,,,,,Central Manchester Development Corporation,,,,,development-corporation:Q5061392,19422,wikidata,Q5061392,,,1988-06-30,,,Q5061392,Central_Manchester_Development_Corporation -,,,,,development-corporation,1998-07-01,600006,2024-06-26,,,,,,London Docklands Development Corporation,,,,,development-corporation:Q3258953,43464,wikidata,Q3258953,,,1981-01-01,,,Q3258953,London_Docklands_Development_Corporation -,,,,,development-corporation,1990-09-30,600007,2024-06-26,,,,,,Telford Development Corporation,,,,,development-corporation:Q105544669,83207,wikidata,Q105544669,,,,,,Q105544669, -,,,,,development-corporation,1998-07-01,4700000,2024-06-26,,,,,,Teesside Development Corporation,,,,,development-corporation:Q7694573,83123,wikidata,Q7694573,,,1987-05-17,,,Q7694573,Teesside_Development_Corporation -,,,,,development-corporation,,4700001,2024-06-26,,,,,,Middlesbrough Development Corporation,,,,,development-corporation:Q117149370,512090,wikidata,Q117149370,,,2023-02-27,,https://teesvalley-ca.gov.uk/about/middlesbrough-development-corporation/,Q117149370,Middlesbrough_Development_Corporation -,,,,,development-corporation,,4700002,2024-06-26,,,,,,Hartlepool Development Corporation,,,,,development-corporation:Q124604981,512088,wikidata,Q124604981,,,2023-02-27,,https://teesvalley-ca.gov.uk/about/hartlepool-development-corporation/,Q124604981,Hartlepool_Development_Corporation -,,,,,development-corporation,1995-04-01,4700003,2024-06-26,,,,,,Leeds Development Corporation,,,,,development-corporation:Q6515953,42610,wikidata,Q6515953,,,1988-06-30,,,Q6515953,Leeds_Development_Corporation -,,,,,development-corporation,1995-04-01,4700004,2024-06-26,,,,,,Bristol Development Corporation,,,,,development-corporation:Q4968888,4406,wikidata,Q4968888,,,1989-01-19,,,Q4968888,Bristol_Development_Corporation -,,,,,development-corporation,1962-01-01,4700005,2024-06-26,,,,,,Crawley Development Corporation,,,,,development-corporation:Q5182976,,wikidata,Q5182976,,,1947-02-01,,,Q5182976,Crawley_Development_Corporation -,,,,,development-corporation,,4700006,2024-06-26,,,,,,Stockport Town Centre West Mayoral Development Corporation,,,,,development-corporation:Q115585981,,wikidata,Q115585981,,,2019-09-02,,https://www.stockportmdc.co.uk/,Q115585981, -,,,,,development-corporation,1998-07-01,4700007,2024-06-26,,,,,,Merseyside Development Development Corporation,,,,,development-corporation:Q3920908,45487,wikidata,Q3920908,,,1981-01-01,,,Q3920908,Merseyside_Development_Corporation -,,,,,development-corporation,1992-04-01,4700008,2024-06-26,,,,,,Milton Keynes Development Development Corporation,,,,,development-corporation:Q6861239,45854,wikidata,Q6861239,,,1969-01-01,,,Q6861239,Milton_Keynes_Development_Corporation -,,,,,development-corporation,1988-10-01,4700009,2024-06-26,,,,,,Peterborough Development Development Corporation,,,,,development-corporation:Q7177999,61540,wikidata,Q7177999,,,1967-07-27,,,Q7177999,Peterborough_Development_Corporation -,,,,,development-corporation,1998-07-01,4700010,2024-06-26,,,,,,Plymouth Development Development Corporation,,,,,development-corporation:Q7205796,82881,wikidata,Q7205796,,,1993-04-01,,,Q7205796,Plymouth_Development_Corporation -,,,,,development-corporation,1998-07-01,4700011,2024-06-26,,,,,,Trafford Park Development Corporation,,,,,development-corporation:Q7832579,83938,wikidata,Q7832579,,,1987-02-10,,,Q7832579,Trafford_Park_Development_Corporation -,,,,,government-organisation,,10,2024-07-10,,,,,,Office for National Statistics,,,,,government-organisation:D303,60225,government-organisation,D303,,,1996-04-01,,https://www.ons.gov.uk,Q1334971,Office_for_National_Statistics -7655,,,,,government-organisation,,11,2024-07-10,,,,,,Ordnance Survey,,,,,government-organisation:D38,60584,government-organisation,D38,,,1791-01-01,,https://www.gov.uk/government/organisations/ordnance-survey,Q548721,Ordnance_Survey -,,,,,government-organisation,2021-09-20,12,2024-07-10,,,,,,"Ministry of Housing, Communities and Local Government",,,,http://opendatacommunities.org/def/concept/folders/organisations/department-for-communities-and-local-government,government-organisation:D4,442434,government-organisation,D4,,,2006-05-01,,https://www.gov.uk/government/organisations/ministry-of-housing-communities-and-local-government,Q601819,"Department_for_Levelling_Up,_Housing_and_Communities" -,,,,,government-organisation,,13,2024-07-10,,,,,,HM Land Registry,,,,,government-organisation:D69,42350,government-organisation,D69,,,1862-01-01,,https://www.gov.uk/government/organisations/land-registry,Q5635120,HM_Land_Registry -,,,,,government-organisation,,14,2024-07-10,,,,,,Planning Inspectorate,,,,http://opendatacommunities.org/def/concept/folders/organisations/the-planning-inspectorate,government-organisation:EA39,82822,government-organisation,EA39,,,,,https://www.gov.uk/government/organisations/planning-inspectorate,Q7201367,Planning_Inspectorate -,,,,,government-organisation,,15,2024-07-10,,,,,,Valuation Office Agency,,,,,government-organisation:EA87,85516,government-organisation,EA87,,,,,https://www.gov.uk/government/organisations/valuation-office-agency,Q7912696,Valuation_Office_Agency -,,,,,government-organisation,,16,2024-07-10,,,,,,Historic England,,,,,government-organisation:PB1164,424432,government-organisation,PB1164,,,1984-01-01,,https://historicengland.org.uk,Q19604421,Historic_England -,,,,,government-organisation,,17,2024-07-10,,,,,,Valuation Tribunal for England,,,,,government-organisation:PB1204,85518,government-organisation,PB1204,,,,,https://www.gov.uk/government/organisations/valuation-tribunal-for-england,Q81075624, -,,,,,government-organisation,,18,2024-07-10,,,,,,Regulator of Social Housing,,,,,government-organisation:PB1218,,government-organisation,PB1218,,,2018-01-01,,https://www.gov.uk/government/organisations/regulator-of-social-housing,Q65071973,Regulator_of_Social_Housing -,,,,,government-organisation,,19,2024-07-10,,,,,,Homes England,,,,http://opendatacommunities.org/def/concept/folders/organisations/the-homes-and-communities-agency,government-organisation:PB1232,443354,government-organisation,PB1232,,,2018-01-01,,https://www.gov.uk/government/organisations/homes-england,Q5890410,Homes_England -,,,,,government-organisation,,20,2024-07-10,,,,,,Building Regulations Advisory Committee,,,,,government-organisation:PB160,16718,government-organisation,PB160,,,,,https://www.gov.uk/government/organisations/building-regulations-advisory-committee,Q39045922,Building_Regulations_Advisory_Committee -,,,,,government-organisation,,21,2024-07-10,,,,,,Health and Safety Executive,,,,,government-organisation:PB207,35742,government-organisation,PB207,,,,,https://www.gov.uk/government/organisations/health-and-safety-executive,Q1478750,Health_and_Safety_Executive -,,,,,government-organisation,,22,2024-07-10,,,,,,Housing Ombudsman,,,,,government-organisation:PB372,25340,government-organisation,PB372,,,,,https://www.housing-ombudsman.org.uk,Q39046108,Housing_Ombudsman -,,,,,government-organisation,,23,2024-07-10,,,,,,Leasehold Advisory Service,,,,,government-organisation:PB373,42573,government-organisation,PB373,,,,,https://www.gov.uk/government/organisations/leasehold-advisory-service,Q81054630, -,,,,,government-organisation,,24,2024-07-10,,,,,,Valuation Tribunal Service,,,,,government-organisation:PB375,85519,government-organisation,PB375,,,,,https://www.gov.uk/government/organisations/valuation-tribunal-service-for-england-valuation-tribunal-service,Q81056025, -,,,,,government-organisation,,25,2024-07-10,,,,,,Architects Registration Board,,,,,government-organisation:PC163,1711,government-organisation,PC163,,,,,https://www.gov.uk/government/organisations/architects-registration-board,Q4787008,Architects_Registration_Board -,,,,,government-organisation,,501910,2024-07-10,,,,,,Natural England,,,,,government-organisation:PB202,57927,government-organisation,PB202,,,2006-10-01,,https://www.gov.uk/government/organisations/natural-england,Q1699627,Natural_England -,,,,,government-organisation,,600001,2024-07-10,,,,,,"Ministry of Housing, Communities & Local Government",,,,http://opendatacommunities.org/def/concept/folders/organisations/department-for-communities-and-local-government,government-organisation:D1342,442434,government-organisation,D1342,,,2024-07-09,,https://www.gov.uk/government/organisations/ministry-of-housing-communities-local-government,Q601819,"Ministry_of_Housing,_Communities_and_Local_Government" -,,,,,government-organisation,,600002,2024-07-10,,,,,,"Department for Environment, Food & Rural Affairs",,,,,government-organisation:D7,28661,government-organisation,D7,,,2001-01-01,,https://www.gov.uk/government/organisations/department-for-environment-food-rural-affairs,Q3044721,"Department_for_Environment,_Food_and_Rural_Affairs" -,,,,,government-organisation,,600009,2024-07-10,,,,,,Environment Agency,,,,,government-organisation:EA199,17847,government-organisation,EA199,,,1996-04-01,,https://www.gov.uk/government/organisations/environment-agency,Q5381011,Environment_Agency -,,,,,government-organisation,,600010,2024-07-10,,,,,,Department for Transport,,,,,government-organisation:D9,28665,government-organisation,D9,,,2002-01-01,,https://www.gov.uk/government/organisations/department-for-transport,Q2982287,Department_for_Transport -,,,,,government-organisation,,600011,2024-07-10,,,,,,Forestry Commission,,,,,government-organisation:D85,34765,government-organisation,D85,,,1919-01-01,,https://www.gov.uk/government/organisations/forestry-commission,Q1437242,Forestry_Commission -,,,,,government-organisation,,600012,2024-07-10,,,,,,Department for Education,,,,,government-organisation:D6,348507,government-organisation,D6,,,2010-05-12,,https://www.gov.uk/government/organisations/department-for-education,Q2612019,Department_for_Education -3805,E3831,,,,local-authority,,26,2024-10-10,,NMD,sussex,E60000281,E07000223,Adur District Council,,,,http://opendatacommunities.org/id/district-council/adur,local-authority:ADU,453,local-authority,ADU,E12000008,,,E07000223,https://www.adur-worthing.gov.uk,Q72980889, -905,E0931,,,,local-authority,2023-03-31,27,2024-10-10,,NMD,cumbria,E60000019,E07000026,Allerdale Borough Council,,,,http://opendatacommunities.org/id/district-council/allerdale,local-authority:ALL,1131,local-authority,ALL,E12000002,,,E07000026,https://www.allerdale.gov.uk,Q72980920, -1005,E1031,,,,local-authority,,28,2024-10-10,,NMD,derbyshire,E60000077,E07000032,Amber Valley Borough Council,,,,http://opendatacommunities.org/id/district-council/amber-valley,local-authority:AMB,1257,local-authority,AMB,E12000004,,,E07000032,https://www.ambervalley.gov.uk,Q72980961, -3810,E3832,,,,local-authority,,29,2024-10-10,,NMD,sussex,E60000282,E07000224,Arun District Council,,,,http://opendatacommunities.org/id/district-council/arun,local-authority:ARU,1925,local-authority,ARU,E12000008,,,E07000224,https://www.arun.gov.uk,Q72980967, -2205,E2231,,,,local-authority,,30,2024-10-10,,NMD,kent,E60000253,E07000105,Ashford Borough Council,,,,http://opendatacommunities.org/id/district-council/ashford,local-authority:ASF,1962,local-authority,ASF,E12000008,,,E07000105,https://www.ashford.gov.uk,Q55098926,Ashford_Borough_Council -3005,E3031,,,,local-authority,,31,2024-10-10,,NMD,nottinghamshire,E60000106,E07000170,Ashfield District Council,,,,http://opendatacommunities.org/id/district-council/ashfield,local-authority:ASH,1958,local-authority,ASH,E12000004,,,E07000170,https://www.ashfield.gov.uk,Q73038329, -405,E0431,,,,local-authority,2020-03-31,32,2024-10-10,,NMD,thames-valley,E60000233,E07000004,Aylesbury Vale District Council,,,,http://opendatacommunities.org/id/district-council/aylesbury-vale,local-authority:AYL,3003,local-authority,AYL,E12000008,,,E07000004,https://www.aylesburyvaledc.gov.uk,Q61995983,Aylesbury_Vale_District_Council -3505,E3531,,,,local-authority,,33,2024-10-10,,NMD,suffolk,E60000183,E07000200,Babergh District Council,,,,http://opendatacommunities.org/id/district-council/babergh,local-authority:BAB,3042,local-authority,BAB,E12000006,,,E07000200,https://www.babergh.gov.uk,Q73039037, -3010,E3032,,,,local-authority,,34,2024-10-10,,NMD,nottinghamshire,E60000107,E07000171,Bassetlaw District Council,,,,http://opendatacommunities.org/id/district-council/bassetlaw,local-authority:BAE,3351,local-authority,BAE,E12000004,,,E07000171,https://www.bassetlaw.gov.uk,Q73045241, -1505,E1531,,,,local-authority,,35,2024-10-10,,NMD,essex,E60000154,E07000066,Basildon Borough Council,,,,http://opendatacommunities.org/id/district-council/basildon,local-authority:BAI,3341,local-authority,BAI,E12000006,,,E07000066,https://www.basildon.gov.uk,Q4867303,Basildon_Borough_Council -1705,E1731,,,,local-authority,,36,2024-10-10,,NMD,hampshire-&-isle-of-wight,E60000242,E07000084,Basingstoke and Deane Borough Council,,,,http://opendatacommunities.org/id/district-council/basingstoke,local-authority:BAN,3343,local-authority,BAN,E12000008,,,E07000084,https://www.basingstoke.gov.uk,Q73072528, -910,E0932,,,,local-authority,2023-03-31,37,2024-10-10,,NMD,cumbria,E60000020,E07000027,Barrow-in-Furness Borough Council,,,,http://opendatacommunities.org/id/district-council/barrow-in-furness,local-authority:BAR,3320,local-authority,BAR,E12000002,,,E07000027,https://www.barrowbc.gov.uk,Q73072525, -114,E0101,,WECA,,local-authority,,38,2024-10-10,,UA,avon-&-somerset,E60000288,E06000022,Bath and North East Somerset Council,,,,http://opendatacommunities.org/id/unitary-authority/bath-and-north-east-somerset,local-authority:BAS,3363,local-authority,BAS,E12000009,,1996-04-01,E06000022,https://www.bathnes.gov.uk,Q16966588,Bath_and_North_East_Somerset_Council -2372,E2301,,,,local-authority,,39,2024-10-10,,UA,lancashire,E60000013,E06000008,Blackburn with Darwen Borough Council,,,,http://opendatacommunities.org/id/unitary-authority/blackburn,local-authority:BBD,3991,local-authority,BBD,E12000002,,1998-04-01,E06000008,https://www.blackburn.gov.uk,Q16984481,Blackburn_with_Darwen_Borough_Council -235,E0202,,,,local-authority,,40,2024-10-10,,UA,bedfordshire,E60000143,E06000055,Bedford Borough Council,,,,http://opendatacommunities.org/id/unitary-authority/bedford,local-authority:BDF,3490,local-authority,BDF,E12000006,,2009-04-01,E06000055,https://www.bedford.gov.uk,Q16239012,Bedford_Borough_Council -5060,E5030,,,,local-authority,,41,2024-10-10,,LBO,london,E60000202,E09000002,London Borough of Barking and Dagenham,,,,http://opendatacommunities.org/id/london-borough-council/barking-and-dagenham,local-authority:BDG,3260,local-authority,BDG,E12000007,,,E09000002,https://www.lbbd.gov.uk,Q4861056,Barking_and_Dagenham_London_Borough_Council -5150,E5033,,,,local-authority,,42,2024-10-10,,LBO,london,E60000205,E09000005,London Borough of Brent,,,,http://opendatacommunities.org/id/london-borough-council/brent,local-authority:BEN,4304,local-authority,BEN,E12000007,,,E09000005,https://www.brent.gov.uk,Q4961461,Brent_London_Borough_Council -5120,E5032,,,,local-authority,,43,2024-10-10,,LBO,london,E60000204,E09000004,London Borough of Bexley,,,,http://opendatacommunities.org/id/london-borough-council/bexley,local-authority:BEX,3715,local-authority,BEX,E12000007,,,E09000004,https://www.bexley.gov.uk,Q4899799,Bexley_London_Borough_Council -4605,E4601,,WMCA,,local-authority,,44,2024-10-10,,MD,west-midlands,E60000130,E08000025,Birmingham City Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/birmingham,local-authority:BIR,3862,local-authority,BIR,E12000005,,1986-07-01,E08000025,https://www.birmingham.gov.uk,Q4916650,Birmingham_City_Council -,E0421,,,,local-authority,2020-03-31,45,2024-10-10,,CTY,,,E10000002,Buckinghamshire County Council,,,,http://opendatacommunities.org/id/county-council/buckinghamshire,local-authority:BKM,,local-authority,BKM,E12000008,,1905-06-19,E10000002,https://www.buckscc.gov.uk,Q4983255,Buckinghamshire_County_Council -2405,E2431,,,,local-authority,,46,2024-10-10,,NMD,leicestershire,E60000085,E07000129,Blaby District Council,,,,http://opendatacommunities.org/id/district-council/blaby,local-authority:BLA,3944,local-authority,BLA,E12000004,,,E07000129,https://www.blaby.gov.uk,Q73072529, -1250,E1202,,,,local-authority,2019-03-31,47,2024-10-10,,UA,,,E06000028,Bournemouth Borough Council,,,,http://opendatacommunities.org/id/unitary-authority/bournemouth,local-authority:BMH,4145,local-authority,BMH,E12000009,,1905-06-19,E06000028,https://www.bournemouth.gov.uk,Q1144019,Bournemouth_Borough_Council -5090,E5031,,,,local-authority,,48,2024-10-10,,LBO,london,E60000203,E09000003,London Borough of Barnet,,,,http://opendatacommunities.org/id/london-borough-council/barnet,local-authority:BNE,3278,local-authority,BNE,E12000007,,,E09000003,https://www.barnet.gov.uk,Q4861611,Barnet_London_Borough_Council -1445,E1401,,,,local-authority,,49,2024-10-10,,UA,sussex,E60000222,E06000043,Brighton and Hove City Council,,,,http://opendatacommunities.org/id/unitary-authority/brighton-and-hove,local-authority:BNH,4379,local-authority,BNH,E12000008,,1905-06-19,E06000043,https://www.brighton-hove.gov.uk,Q16953725,Brighton_and_Hove_City_Council -4405,E4401,,SYMCA,,local-authority,,50,2024-10-10,,MD,south-yorkshire,E60000064,E08000016,Barnsley Metropolitan Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/barnsley,local-authority:BNS,3296,local-authority,BNS,E12000003,,1974-04-01,E08000016,https://www.barnsley.gov.uk,Q16950416,Barnsley_Metropolitan_Borough_Council -4205,E4201,,GMCA,,local-authority,,51,2024-10-10,,MD,greater-manchester,E60000025,E08000001,Bolton Metropolitan Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/bolton,local-authority:BOL,4026,local-authority,BOL,E12000002,,1974-04-01,E08000001,https://www.bolton.gov.uk,Q16952682,Bolton_Council -1010,E1032,,,,local-authority,,52,2024-10-10,,NMD,derbyshire,E60000078,E07000033,Bolsover District Council,,,,http://opendatacommunities.org/id/district-council/bolsover,local-authority:BOS,4025,local-authority,BOS,E12000004,,,E07000033,https://www.bolsover.gov.uk,Q73072533, -2505,E2531,,,,local-authority,,53,2024-10-10,,NMD,lincolnshire,E60000092,E07000136,Boston Borough Council,,,,http://opendatacommunities.org/id/district-council/boston,local-authority:BOT,4119,local-authority,BOT,E12000004,,,E07000136,https://www.boston.gov.uk,Q73072538, -,,,,,local-authority,,54,2024-10-10,,UA,dorset,E60000289,E06000058,"Bournemouth, Christchurch and Poole Council",,,,http://opendatacommunities.org/id/unitary-authority/bournemouth-christchurch-and-poole,local-authority:BPC,453108,local-authority,BPC,E12000009,,2019-04-01,E06000058,https://www.bcpcouncil.gov.uk,Q54818205,"Bournemouth,_Christchurch_and_Poole_Council" -2373,E2302,,,,local-authority,,55,2024-10-10,,UA,lancashire,E60000014,E06000009,Blackpool Borough Council,,,,http://opendatacommunities.org/id/unitary-authority/blackpool,local-authority:BPL,3999,local-authority,BPL,E12000002,,1905-06-20,E06000009,https://www.blackpool.gov.uk,Q16984489,Blackpool_Council -1510,E1532,,,,local-authority,,56,2024-10-10,,NMD,essex,E60000155,E07000067,Braintree District Council,,,,http://opendatacommunities.org/id/district-council/braintree,local-authority:BRA,4247,local-authority,BRA,E12000006,,,E07000067,https://www.braintree.gov.uk,Q73072540, -335,E0301,,,,local-authority,,57,2024-10-10,,UA,thames-valley,E60000221,E06000036,Bracknell Forest Council,,,,http://opendatacommunities.org/id/unitary-authority/bracknell-forest,local-authority:BRC,4198,local-authority,BRC,E12000008,,1998-04-01,E06000036,https://www.bracknell-forest.gov.uk/,Q16985082,Bracknell_Forest_Council -4705,E4701,,WYCA,,local-authority,,58,2024-10-10,,MD,west-yorkshire,E60000068,E08000032,City of Bradford Metropolitan District Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/bradford,local-authority:BRD,4217,local-authority,BRD,E12000003,,1974-04-01,E08000032,https://www.bradford.gov.uk,Q16953331,City_of_Bradford_Metropolitan_District_Council -2605,E2631,,,,local-authority,,59,2024-10-10,,NMD,norfolk,E60000176,E07000143,Breckland District Council,,,,http://opendatacommunities.org/id/district-council/breckland,local-authority:BRE,4291,local-authority,BRE,E12000006,,,E07000143,https://www.breckland.gov.uk,Q73072542, -1805,E1831,,,,local-authority,,60,2024-10-10,,NMD,west-mercia,E60000137,E07000234,Bromsgrove District Council,,,,http://opendatacommunities.org/id/district-council/bromsgrove,local-authority:BRM,16573,local-authority,BRM,E12000005,,,E07000234,https://www.bromsgrove.gov.uk,Q73072550, -2610,E2632,,,,local-authority,,61,2024-10-10,,NMD,norfolk,E60000177,E07000144,Broadland District Council,,,,http://opendatacommunities.org/id/district-council/broadland,local-authority:BRO,16541,local-authority,BRO,E12000006,,,E07000144,https://www.broadland.gov.uk,Q73072548, -3015,E3033,,,,local-authority,,62,2024-10-10,,NMD,nottinghamshire,E60000108,E07000172,Broxtowe Borough Council,,,,http://opendatacommunities.org/id/district-council/broxtowe,local-authority:BRT,16608,local-authority,BRT,E12000004,,,E07000172,https://www.broxtowe.gov.uk,Q73072553, -1515,E1533,,,,local-authority,,63,2024-10-10,,NMD,essex,E60000156,E07000068,Brentwood Borough Council,,,,http://opendatacommunities.org/id/district-council/brentwood,local-authority:BRW,4318,local-authority,BRW,E12000006,,,E07000068,https://www.brentwood.gov.uk,Q73072544, -1905,E1931,,,,local-authority,,64,2024-10-10,,NMD,hertfordshire,E60000166,E07000095,Broxbourne Borough Council,,,,http://opendatacommunities.org/id/district-council/broxbourne,local-authority:BRX,,local-authority,BRX,E12000006,,,E07000095,https://www.broxbourne.gov.uk,Q4976877,Broxbourne_Borough_Council -5180,E5034,,,,local-authority,,65,2024-10-10,,LBO,london,E60000206,E09000006,London Borough of Bromley,,,,http://opendatacommunities.org/id/london-borough-council/bromley,local-authority:BRY,16566,local-authority,BRY,E12000007,,,E09000006,https://www.bromley.gov.uk,Q4973687,Bromley_London_Borough_Council -116,E0102,,WECA,,local-authority,,66,2024-10-10,,UA,avon-&-somerset,E60000290,E06000023,Bristol City Council,,,,http://opendatacommunities.org/id/unitary-authority/bristol,local-authority:BST,4400,local-authority,BST,E12000009,,1905-06-18,E06000023,https://www.bristol.gov.uk,Q16953796,Bristol_City_Council -,,,,,local-authority,,67,2024-10-10,,UA,,E60000331,E06000060,Buckinghamshire Council,,,,http://opendatacommunities.org/id/unitary-authority/buckinghamshire,local-authority:BUC,474721,local-authority,BUC,E12000008,,2020-04-01,E06000060,https://www.buckinghamshire.gov.uk/,Q65052846,Buckinghamshire_Council -2315,E2333,,,,local-authority,,68,2024-10-10,,NMD,lancashire,E60000035,E07000117,Burnley Borough Council,,,,http://opendatacommunities.org/id/district-council/burnley,local-authority:BUN,16795,local-authority,BUN,E12000002,,,E07000117,https://www.burnley.gov.uk,Q73072554, -4210,E4202,,GMCA,,local-authority,,69,2024-10-10,,MD,greater-manchester,E60000026,E08000002,Bury Metropolitan Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/bury,local-authority:BUR,16822,local-authority,BUR,E12000002,,1974-04-01,E08000002,https://www.bury.gov.uk,Q16954633,Bury_Metropolitan_Borough_Council -505,E0531,,CPCA,,local-authority,,70,2024-10-10,,NMD,cambridgeshire,E60000149,E07000008,Cambridge City Council,,,,http://opendatacommunities.org/id/district-council/cambridge,local-authority:CAB,18518,local-authority,CAB,E12000006,,,E07000008,https://www.cambridge.gov.uk,Q5025388,Cambridge_City_Council -,E0521,,,,local-authority,,71,2024-10-10,,CTY,,,E10000003,Cambridgeshire County Council,,,,http://opendatacommunities.org/id/county-council/cambridgeshire,local-authority:CAM,,local-authority,CAM,E12000006,,,E10000003,https://www.cambridgeshire.gov.uk,Q5025648,Cambridgeshire_County_Council -3405,E3431,,,,local-authority,,72,2024-10-10,,NMD,staffordshire,E60000117,E07000192,Cannock Chase District Council,,,,http://opendatacommunities.org/id/district-council/cannock-chase,local-authority:CAN,18802,local-authority,CAN,E12000005,,,E07000192,https://www.cannockchasedc.gov.uk,Q73072556, -915,E0933,,,,local-authority,2023-03-31,73,2024-10-10,,NMD,cumbria,E60000021,E07000028,Carlisle City Council,,,,http://opendatacommunities.org/id/district-council/carlisle,local-authority:CAR,19050,local-authority,CAR,E12000002,,,E07000028,https://www.carlisle.gov.uk,Q73072558, -1520,E1534,,,,local-authority,,74,2024-10-10,,NMD,essex,E60000157,E07000069,Castle Point Borough Council,,,,http://opendatacommunities.org/id/district-council/castle-point,local-authority:CAS,19160,local-authority,CAS,E12000006,,,E07000069,https://www.castlepoint.gov.uk,Q73072562, -2210,E2232,,,,local-authority,,75,2024-10-10,,NMD,kent,E60000254,E07000106,Canterbury City Council,,,,http://opendatacommunities.org/id/district-council/canterbury,local-authority:CAT,18820,local-authority,CAT,E12000008,,,E07000106,https://www.canterbury.gov.uk,Q55098924,Canterbury_City_Council -240,E0203,,,,local-authority,,76,2024-10-10,,UA,bedfordshire,E60000144,E06000056,Central Bedfordshire Council,,,,http://opendatacommunities.org/id/unitary-authority/central-bedfordshire,local-authority:CBF,297660,local-authority,CBF,E12000006,,2009-04-01,E06000056,https://www.centralbedfordshire.gov.uk,Q16986562,Central_Bedfordshire_Council -2410,E2432,,,,local-authority,,77,2024-10-10,,NMD,leicestershire,E60000086,E07000130,Charnwood Borough Council,,,,http://opendatacommunities.org/id/district-council/charnwood,local-authority:CHA,20089,local-authority,CHA,E12000004,,,E07000130,https://www.charnwood.gov.uk,Q73072564, -1210,E1232,,,,local-authority,2019-03-31,78,2024-10-10,,NMD,,,E07000048,Christchurch Borough Council,,,,http://opendatacommunities.org/id/district-council/christchurch,local-authority:CHC,20530,local-authority,CHC,E12000009,,,E07000048,https://www.dorsetforyou.com,Q73072580, -660,E0603,,,,local-authority,,79,2024-10-10,,UA,cheshire,E60000015,E06000049,Cheshire East Council,,,,http://opendatacommunities.org/id/unitary-authority/cheshire-east,local-authority:CHE,297110,local-authority,CHE,E12000002,,2009-04-01,E06000049,https://www.cheshireeast.gov.uk,Q16829355,Cheshire_East_Council -3815,E3833,,,,local-authority,,80,2024-10-10,,NMD,sussex,E60000283,E07000225,Chichester District Council,,,,http://opendatacommunities.org/id/district-council/chichester,local-authority:CHI,20277,local-authority,CHI,E12000008,,1974-04-01,E07000225,https://www.chichester.gov.uk,Q73072573,Chichester_District_Council -1525,E1535,,,,local-authority,,81,2024-10-10,,NMD,essex,E60000158,E07000070,Chelmsford City Council,,,,http://opendatacommunities.org/id/district-council/chelmsford,local-authority:CHL,20158,local-authority,CHL,E12000006,,,E07000070,https://www.chelmsford.gov.uk,Q73072566, -415,E0432,,,,local-authority,2020-03-31,82,2024-10-10,,NMD,thames-valley,E60000234,E07000005,Chiltern District Council,,,,http://opendatacommunities.org/id/district-council/chiltern,local-authority:CHN,20454,local-authority,CHN,E12000008,,,E07000005,https://www.chiltern.gov.uk,Q73072575, -2320,E2334,,,,local-authority,,83,2024-10-10,,NMD,lancashire,E60000036,E07000118,Chorley Borough Council,,,,http://opendatacommunities.org/id/district-council/chorley,local-authority:CHO,20522,local-authority,CHO,E12000002,,,E07000118,https://www.chorley.gov.uk,Q73072578, -3105,E3131,,,,local-authority,,84,2024-10-10,,NMD,thames-valley,E60000265,E07000177,Cherwell District Council,,,,http://opendatacommunities.org/id/district-council/cherwell,local-authority:CHR,20221,local-authority,CHR,E12000008,,,E07000177,https://www.cherwell-dc.gov.uk,Q73072569, -1015,E1033,,,,local-authority,,85,2024-10-10,,NMD,derbyshire,E60000079,E07000034,Chesterfield Borough Council,,,,http://opendatacommunities.org/id/district-council/chesterfield,local-authority:CHS,20253,local-authority,CHS,E12000004,,,E07000034,https://www.chesterfield.gov.uk,Q73072572, -1605,E1631,,,,local-authority,,86,2024-10-10,,NMD,gloucestershire,E60000308,E07000078,Cheltenham Borough Council,,,,http://opendatacommunities.org/id/district-council/cheltenham,local-authority:CHT,20180,local-authority,CHT,E12000009,,,E07000078,https://www.cheltenham.gov.uk,Q28401301,Cheltenham_Borough_Council -665,E0604,,,,local-authority,,87,2024-10-10,,UA,cheshire,E60000016,E06000050,Cheshire West and Chester Council,,,,http://opendatacommunities.org/id/unitary-authority/cheshire-west-and-chester,local-authority:CHW,297099,local-authority,CHW,E12000002,,2009-04-01,E06000050,https://www.cheshirewestandchester.gov.uk,Q16829360,Cheshire_West_and_Chester_Council -4710,E4702,,WYCA,,local-authority,,88,2024-10-10,,MD,west-yorkshire,E60000069,E08000033,Calderdale Metropolitan Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/calderdale,local-authority:CLD,18450,local-authority,CLD,E12000003,,1974-04-01,E08000033,https://www.calderdale.gov.uk,Q16985873,Calderdale_Metropolitan_Borough_Council -,E0920,,,,local-authority,,89,2024-10-10,,CTY,,,E10000006,Cumbria County Council,,,,http://opendatacommunities.org/id/county-council/cumbria,local-authority:CMA,28069,local-authority,CMA,E12000002,,,E10000006,https://www.cumbria.gov.uk,Q5194027,Cumbria_County_Council -5210,E5011,,,,local-authority,,90,2024-10-10,,LBO,london,E60000188,E09000007,London Borough of Camden,,,,http://opendatacommunities.org/id/london-borough-council/camden,local-authority:CMD,18584,local-authority,CMD,E12000007,,,E09000007,https://www.camden.gov.uk,Q5025790,Camden_London_Borough_Council -1530,E1536,,,,local-authority,,91,2024-10-10,,NMD,essex,E60000159,E07000071,Colchester Borough Council,,,,http://opendatacommunities.org/id/district-council/colchester,local-authority:COL,20998,local-authority,COL,E12000006,,,E07000071,https://www.colchester.gov.uk,Q73072586, -840,E0801,,,,local-authority,,92,2024-10-10,,UA,devon-cornwall-&-isle-of-scilly,E60000291,E06000052,Cornwall Council,,,,http://opendatacommunities.org/id/unitary-authority/cornwall,local-authority:CON,24599,local-authority,CON,E12000009,,2009-04-01,E06000052,https://www.cornwall.gov.uk,Q3774189,Cornwall_Council -920,E0934,,,,local-authority,2023-03-31,93,2024-10-10,,NMD,cumbria,E60000022,E07000029,Copeland Borough Council,,,,http://opendatacommunities.org/id/district-council/copeland,local-authority:COP,21482,local-authority,COP,E12000002,,,E07000029,https://www.copeland.gov.uk,Q73072589, -2805,E2831,,,,local-authority,2021-03-31,94,2024-10-10,,NMD,northamptonshire,,E07000150,Corby Borough Council,,,,http://opendatacommunities.org/id/district-council/corby,local-authority:COR,21503,local-authority,COR,E12000004,,1974-04-01,E07000150,https://www.corby.gov.uk,Q73072591, -1610,E1632,,,,local-authority,,95,2024-10-10,,NMD,gloucestershire,E60000309,E07000079,Cotswold District Council,,,,http://opendatacommunities.org/id/district-council/cotswold,local-authority:COT,25759,local-authority,COT,E12000009,,,E07000079,https://www.cotswold.gov.uk,Q5175478,Cotswold_District_Council -4610,E4602,,WMCA,,local-authority,,96,2024-10-10,,MD,west-midlands,E60000131,E08000026,Coventry City Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/coventry,local-authority:COV,27726,local-authority,COV,E12000005,,1974-04-01,E08000026,https://www.coventry.gov.uk,Q5179058,Coventry_City_Council -,,,,,local-authority,,97,2024-10-10,,COMB,,,E47000008,Cambridgeshire and Peterborough Combined Authority,,,,,local-authority:CPCA,432854,local-authority,CPCA,E12000006,,2014-04-01,E47000008,https://cambridgeshirepeterborough-ca.gov.uk,Q28451058,Cambridgeshire_and_Peterborough_Combined_Authority -2705,E2731,,,,local-authority,2023-03-31,98,2024-10-10,,NMD,north-yorkshire,E60000057,E07000163,Craven District Council,,,,http://opendatacommunities.org/id/district-council/craven,local-authority:CRA,27794,local-authority,CRA,E12000003,,,E07000163,https://www.cravendc.gov.uk,Q73072595, -3820,E3834,,,,local-authority,,99,2024-10-10,,NMD,sussex,E60000284,E07000226,Crawley Borough Council,,,,http://opendatacommunities.org/id/district-council/crawley,local-authority:CRW,27799,local-authority,CRW,E12000008,,1974-04-01,E07000226,https://www.crawley.gov.uk,Q30255982,Crawley_Borough_Council -5240,E5035,,,,local-authority,,100,2024-10-10,,LBO,london,E60000207,E09000008,London Borough of Croydon,,,,http://opendatacommunities.org/id/london-borough-council/croydon,local-authority:CRY,27989,local-authority,CRY,E12000007,,1965-04-01,E09000008,https://www.croydon.gov.uk,Q5189676,Croydon_London_Borough_Council -1910,E1932,,,,local-authority,,101,2024-10-10,,NMD,hertfordshire,E60000167,E07000096,Dacorum Borough Council,,,,http://opendatacommunities.org/id/district-council/dacorum,local-authority:DAC,28186,local-authority,DAC,E12000006,,,E07000096,https://www.dacorum.gov.uk,Q5207723,Dacorum_Borough_Council -1350,E1301,,TVCA,,local-authority,,102,2024-10-10,,UA,durham-&-darlington,E60000002,E06000005,Darlington Borough Council,,,,http://opendatacommunities.org/id/unitary-authority/darlington,local-authority:DAL,28281,local-authority,DAL,E12000001,,1997-04-01,E06000005,https://www.darlington.gov.uk,Q16948698,Darlington_Borough_Council -2215,E2233,,,,local-authority,,103,2024-10-10,,NMD,kent,E60000255,E07000107,Dartford Borough Council,,,,http://opendatacommunities.org/id/district-council/dartford,local-authority:DAR,28291,local-authority,DAR,E12000008,,,E07000107,https://www.dartford.gov.uk,Q55098919,Dartford_Borough_Council -2810,E2832,,,,local-authority,2021-03-31,104,2024-10-10,,NMD,northamptonshire,,E07000151,Daventry District Council,,,,http://opendatacommunities.org/id/district-council/daventry,local-authority:DAV,28340,local-authority,DAV,E12000004,,1974-04-01,E07000151,https://www.daventrydc.gov.uk,Q73072596, -,E1021,,EMCCA,,local-authority,,105,2024-10-10,,CTY,,,E10000007,Derbyshire County Council,,,,http://opendatacommunities.org/id/county-council/derbyshire,local-authority:DBY,,local-authority,DBY,E12000004,,,E10000007,https://www.derbyshire.gov.uk,Q5261561,Derbyshire_County_Council -1045,E1035,,,,local-authority,,106,2024-10-10,,NMD,derbyshire,E60000080,E07000035,Derbyshire Dales District Council,,,,http://opendatacommunities.org/id/district-council/derbyshire-dales,local-authority:DEB,28879,local-authority,DEB,E12000004,,,E07000035,https://www.derbyshiredales.gov.uk,Q73072598, -1055,E1001,,,,local-authority,,107,2024-10-10,,UA,derbyshire,E60000073,E06000015,Derby City Council,,,,http://opendatacommunities.org/id/unitary-authority/derby,local-authority:DER,28859,local-authority,DER,E12000004,,,E06000015,https://www.derby.gov.uk,Q5261430,Derby_City_Council -,E1121,,,,local-authority,,108,2024-10-10,,CTY,,,E10000008,Devon County Council,,,,http://opendatacommunities.org/id/county-council/devon,local-authority:DEV,,local-authority,DEV,E12000009,,,E10000008,https://www.devon.gov.uk,Q6385990,Devon_County_Council -4410,E4402,,SYMCA,,local-authority,,109,2024-10-10,,MD,south-yorkshire,E60000065,E08000017,Doncaster Metropolitan Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/doncaster,local-authority:DNC,29382,local-authority,DNC,E12000003,,1974-04-01,E08000017,https://www.doncaster.gov.uk,Q16988947,Doncaster_Metropolitan_Borough_Council -,E1221,,,,local-authority,2019-03-31,110,2024-10-10,,CTY,,,E10000009,Dorset County Council,,,,http://opendatacommunities.org/id/county-council/dorset,local-authority:DOR,,local-authority,DOR,E12000009,,,E10000009,https://www.dorsetforyou.com,Q5298839,Dorset_County_Council -2220,E2234,,,,local-authority,,111,2024-10-10,,NMD,kent,E60000256,E07000108,Dover District Council,,,,http://opendatacommunities.org/id/district-council/dover,local-authority:DOV,29433,local-authority,DOV,E12000008,,,E07000108,https://www.dover.gov.uk,Q55098918,Dover_District_Council -,,,,,local-authority,,112,2024-10-10,,UA,dorset,E60000292,E06000059,Dorset Council,,,,http://opendatacommunities.org/id/unitary-authority/dorset,local-authority:DST,453118,local-authority,DST,E12000009,,2019-04-01,E06000059,https://www.dorsetcouncil.gov.uk,Q55609905,Dorset_Council_(UK) -4615,E4603,,WMCA,,local-authority,,113,2024-10-10,,MD,west-midlands,E60000132,E08000027,Dudley Metropolitan Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/dudley,local-authority:DUD,29556,local-authority,DUD,E12000005,,1974-04-01,E08000027,https://www.dudley.gov.uk,Q16991635,Dudley_Metropolitan_Borough_Council -1355,E1302,,NNECA,,local-authority,,114,2024-10-10,,UA,durham-&-darlington,E60000001,E06000047,Durham County Council,,,,http://opendatacommunities.org/id/unitary-authority/county-durham,local-authority:DUR,29649,local-authority,DUR,E12000001,,2009-04-01,E06000047,https://www.durham.gov.uk,Q5316492,Durham_County_Council -5270,E5036,,,,local-authority,,115,2024-10-10,,LBO,london,E60000208,E09000009,London Borough of Ealing,,,,http://opendatacommunities.org/id/london-borough-council/ealing,local-authority:EAL,32803,local-authority,EAL,E12000007,,,E09000009,https://www.ealing.gov.uk,Q5325486,Ealing_London_Borough_Council -1410,E1432,,,,local-authority,,116,2024-10-10,,NMD,sussex,E60000237,E07000061,Eastbourne Borough Council,,,,http://opendatacommunities.org/id/district-council/eastbourne,local-authority:EAS,33037,local-authority,EAS,E12000008,,,E07000061,https://www.eastbourne.gov.uk,Q30588396,Eastbourne_Borough_Council -1715,E1733,,,,local-authority,,117,2024-10-10,,NMD,hampshire-&-isle-of-wight,E60000244,E07000086,Eastleigh Borough Council,,,,http://opendatacommunities.org/id/district-council/eastleigh,local-authority:EAT,33082,local-authority,EAT,E12000008,,,E07000086,https://www.eastleigh.gov.uk,Q73072609, -510,E0532,,CPCA,,local-authority,,118,2024-10-10,,NMD,cambridgeshire,E60000150,E07000009,East Cambridgeshire District Council,,,,http://opendatacommunities.org/id/district-council/east-cambridgeshire,local-authority:ECA,32869,local-authority,ECA,E12000006,,,E07000009,https://www.eastcambs.gov.uk,Q65090031,East_Cambridgeshire_District_Council -1105,E1131,,,,local-authority,,119,2024-10-10,,NMD,devon-cornwall-&-isle-of-scilly,E60000300,E07000040,East Devon District Council,,,,http://opendatacommunities.org/id/district-council/east-devon,local-authority:EDE,32877,local-authority,EDE,E12000009,,,E07000040,https://eastdevon.gov.uk,Q69118038, -925,E0935,,,,local-authority,2023-03-31,120,2024-10-10,,NMD,cumbria,E60000023,E07000030,Eden District Council,,,,http://opendatacommunities.org/id/district-council/eden,local-authority:EDN,17154,local-authority,EDN,E12000002,,,E07000030,https://www.eden.gov.uk,Q73072611, -1240,E1233,,,,local-authority,2019-03-31,121,2024-10-10,,NMD,,,E07000049,East Dorset District Council,,,,http://opendatacommunities.org/id/district-council/east-dorset,local-authority:EDO,32880,local-authority,EDO,E12000009,,1974-04-01,E07000049,http://www.eastdorsetdc.gov.uk/,Q73072599, -1710,E1732,,,,local-authority,,122,2024-10-10,,NMD,hampshire-&-isle-of-wight,E60000243,E07000085,East Hampshire District Council,,,,http://opendatacommunities.org/id/district-council/east-hampshire,local-authority:EHA,32901,local-authority,EHA,E12000008,,,E07000085,https://www.easthants.gov.uk,Q73072602, -1915,E1933,,,,local-authority,,123,2024-10-10,,NMD,hertfordshire,E60000168,E07000242,East Hertfordshire District Council,,,,http://opendatacommunities.org/id/district-council/east-hertfordshire,local-authority:EHE,32903,local-authority,EHE,E12000006,,,E07000242,https://www.eastherts.gov.uk,Q5328577,East_Hertfordshire_District_Council -2510,E2532,,,,local-authority,,124,2024-10-10,,NMD,lincolnshire,E60000093,E07000137,East Lindsey District Council,,,,http://opendatacommunities.org/id/district-council/east-lindsey,local-authority:ELI,32924,local-authority,ELI,E12000004,,,E07000137,https://www.e-lindsey.gov.uk,Q73072603, -3605,E3631,,,,local-authority,,125,2024-10-10,,NMD,surrey,E60000270,E07000207,Elmbridge Borough Council,,,,http://opendatacommunities.org/id/district-council/elmbridge,local-authority:ELM,17454,local-authority,ELM,E12000008,,,E07000207,https://www.elmbridge.gov.uk,Q73072615, -5300,E5037,,,,local-authority,,126,2024-10-10,,LBO,london,E60000209,E09000010,London Borough of Enfield,,,,http://opendatacommunities.org/id/london-borough-council/enfield,local-authority:ENF,17658,local-authority,ENF,E12000007,,1965-04-01,E09000010,https://www.enfield.gov.uk,Q5377310,Enfield_London_Borough_Council -2815,E2833,,,,local-authority,2021-03-31,127,2024-10-10,,NMD,northamptonshire,,E07000152,East Northamptonshire Council,,,,http://opendatacommunities.org/id/district-council/east-northamptonshire,local-authority:ENO,32974,local-authority,ENO,E12000004,,1974-04-01,E07000152,https://www.east-northamptonshire.gov.uk,Q73072604, -1535,E1537,,,,local-authority,,128,2024-10-10,,NMD,essex,E60000160,E07000072,Epping Forest District Council,,,,http://opendatacommunities.org/id/district-council/epping-forest,local-authority:EPP,18047,local-authority,EPP,E12000006,,,E07000072,https://www.eppingforestdc.gov.uk,Q73072617, -3610,E3632,,,,local-authority,,129,2024-10-10,,NMD,surrey,E60000271,E07000208,Epsom and Ewell Borough Council,,,,http://opendatacommunities.org/id/district-council/epsom-and-ewell,local-authority:EPS,18051,local-authority,EPS,E12000008,,,E07000208,https://www.epsom-ewell.gov.uk,Q73072619, -1025,E1036,,,,local-authority,,130,2024-10-10,,NMD,derbyshire,E60000081,E07000036,Erewash Borough Council,,,,http://opendatacommunities.org/id/district-council/erewash,local-authority:ERE,18115,local-authority,ERE,E12000004,,,E07000036,https://www.erewash.gov.uk,Q73072621, -2001,E2001,,,,local-authority,,131,2024-10-10,,UA,humber,E60000052,E06000011,East Riding of Yorkshire Council,,,,http://opendatacommunities.org/id/unitary-authority/east-riding,local-authority:ERY,32995,local-authority,ERY,E12000003,,1996-04-01,E06000011,https://www.eastriding.gov.uk/,Q16989282,East_Riding_of_Yorkshire_Council -,,,,,local-authority,,132,2024-10-10,,NMD,suffolk,E60000184,E07000244,East Suffolk Council,,,,http://opendatacommunities.org/id/district-council/east-suffolk,local-authority:ESK,444878,local-authority,ESK,E12000006,,2019-04-01,E07000244,https://www.eastsuffolk.gov.uk,Q59536023,East_Suffolk_Council -,E1521,,,,local-authority,,133,2024-10-10,,CTY,,,E10000012,Essex County Council,,,,http://opendatacommunities.org/id/county-council/essex,local-authority:ESS,,local-authority,ESS,E12000006,,,E10000012,https://www.essex.gov.uk/,Q5399679,Essex_County_Council -3410,E3432,,,,local-authority,,134,2024-10-10,,NMD,staffordshire,E60000118,E07000193,East Staffordshire Borough Council,,,,http://opendatacommunities.org/id/district-council/east-staffordshire,local-authority:EST,33000,local-authority,EST,E12000005,,,E07000193,https://www.eaststaffsbc.gov.uk,Q73072606, -,E1421,,,,local-authority,,135,2024-10-10,,CTY,,,E10000011,East Sussex County Council,,,,http://opendatacommunities.org/id/county-council/east-sussex,local-authority:ESX,,local-authority,ESX,E12000008,,,E10000011,https://www.eastsussex.gov.uk,Q5329458,East_Sussex_County_Council -1110,E1132,,,,local-authority,,136,2024-10-10,,NMD,devon-cornwall-&-isle-of-scilly,E60000301,E07000041,Exeter City Council,,,,http://opendatacommunities.org/id/district-council/exeter,local-authority:EXE,33690,local-authority,EXE,E12000009,,,E07000041,https://www.exeter.gov.uk,Q5420103,Exeter_City_Council -1720,E1734,,,,local-authority,,137,2024-10-10,,NMD,hampshire-&-isle-of-wight,E60000245,E07000087,Fareham Borough Council,,,,http://opendatacommunities.org/id/district-council/fareham,local-authority:FAR,33939,local-authority,FAR,E12000008,,,E07000087,https://www.fareham.gov.uk,Q73072624, -515,E0533,,CPCA,,local-authority,,138,2024-10-10,,NMD,cambridgeshire,E60000151,E07000010,Fenland District Council,,,,http://opendatacommunities.org/id/district-council/fenland,local-authority:FEN,34155,local-authority,FEN,E12000006,,,E07000010,https://www.fenland.gov.uk,Q73072625, -1615,E1633,,,,local-authority,,139,2024-10-10,,NMD,gloucestershire,E60000310,E07000080,Forest of Dean District Council,,,,http://opendatacommunities.org/id/district-council/forest-of-dean,local-authority:FOE,34755,local-authority,FOE,E12000009,,,E07000080,https://www.fdean.gov.uk,Q28401332,Forest_of_Dean_District_Council -3510,E3532,,,,local-authority,2019-03-31,140,2024-10-10,,NMD,,,E07000201,Forest Heath District Council,,,,http://opendatacommunities.org/id/district-council/forest-heath,local-authority:FOR,34753,local-authority,FOR,E12000006,,1974-04-01,E07000201,https://www.forest-heath.gov.uk,Q73072627, -2325,E2335,,,,local-authority,,141,2024-10-10,,NMD,lancashire,E60000037,E07000119,Fylde Borough Council,,,,http://opendatacommunities.org/id/district-council/fylde,local-authority:FYL,35252,local-authority,FYL,E12000002,,,E07000119,https://www.fylde.gov.uk,Q73072630, -4505,E4501,,NNECA,,local-authority,,142,2024-10-10,,MD,northumbria,E60000008,E08000037,Gateshead Metropolitan Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/gateshead,local-authority:GAT,35374,local-authority,GAT,E12000001,,1974-04-01,E08000037,https://www.gateshead.gov.uk,Q54666929, -3020,E3034,,,,local-authority,,143,2024-10-10,,NMD,nottinghamshire,E60000109,E07000173,Gedling Borough Council,,,,http://opendatacommunities.org/id/district-council/gedling,local-authority:GED,36252,local-authority,GED,E12000004,,,E07000173,https://www.gedling.gov.uk,Q73072632, -,E5100,,,,local-authority,,144,2024-10-10,,SRA,,,E12000007,Greater London Authority,,,,http://opendatacommunities.org/id/greater-london-authority/greater-london-authority,local-authority:GLA,37006,local-authority,GLA,E12000007,,1905-06-22,E12000007,https://www.london.gov.uk,Q1135166,Greater_London_Authority -1620,E1634,,,,local-authority,,145,2024-10-10,,NMD,gloucestershire,E60000311,E07000081,Gloucester City Council,,,,http://opendatacommunities.org/id/district-council/gloucester,local-authority:GLO,36678,local-authority,GLO,E12000009,,,E07000081,https://www.gloucester.gov.uk,Q28401303,Gloucester_City_Council -,E1620,,,,local-authority,,146,2024-10-10,,CTY,,,E10000013,Gloucestershire County Council,,,,http://opendatacommunities.org/id/county-council/gloucestershire,local-authority:GLS,,local-authority,GLS,E12000009,,,E10000013,https://www.gloucestershire.gov.uk,Q16839354,Gloucestershire_County_Council -,E6348,,,,local-authority,,147,2024-10-10,,COMB,,,E47000001,Greater Manchester Combined Authority,,,,http://opendatacommunities.org/id/greater-manchester-combined-authority/greater-manchester,local-authority:GMCA,401738,local-authority,GMCA,E12000002,,2014-04-01,E47000001,https://www.greatermanchester-ca.gov.uk,Q5600634,Greater_Manchester_Combined_Authority -1725,E1735,,,,local-authority,,148,2024-10-10,,NMD,hampshire-&-isle-of-wight,E60000246,E07000088,Gosport Borough Council,,,,http://opendatacommunities.org/id/district-council/gosport,local-authority:GOS,36777,local-authority,GOS,E12000008,,,E07000088,https://www.gosport.gov.uk,Q73072634,Gosport_Borough_Council -2230,E2236,,,,local-authority,,149,2024-10-10,,NMD,kent,E60000258,E07000109,Gravesham Borough Council,,,,http://opendatacommunities.org/id/district-council/gravesham,local-authority:GRA,36949,local-authority,GRA,E12000008,,,E07000109,https://www.gravesham.gov.uk,Q55098935,Gravesham_Borough_Council -5330,E5012,,,,local-authority,,150,2024-10-10,,LBO,london,E60000210,E09000011,Royal Borough of Greenwich,,,,http://opendatacommunities.org/id/london-borough-council/greenwich,local-authority:GRE,37126,local-authority,GRE,E12000007,,,E09000011,https://www.royalgreenwich.gov.uk,Q5604860,Greenwich_London_Borough_Council -3615,E3633,,,,local-authority,,151,2024-10-10,,NMD,surrey,E60000272,E07000209,Guildford Borough Council,,,,http://opendatacommunities.org/id/district-council/guildford,local-authority:GRT,37225,local-authority,GRT,E12000008,,,E07000209,https://www.guildford.gov.uk,Q73072637, -2615,E2633,,,,local-authority,,152,2024-10-10,,NMD,norfolk,E60000178,E07000145,Great Yarmouth Borough Council,,,,http://opendatacommunities.org/id/district-council/great-yarmouth,local-authority:GRY,36978,local-authority,GRY,E12000006,,,E07000145,https://www.great-yarmouth.gov.uk,Q73072635, -1735,E1737,,,,local-authority,,153,2024-10-10,,NMD,hampshire-&-isle-of-wight,E60000248,E07000090,Havant Borough Council,,,,http://opendatacommunities.org/id/district-council/havant,local-authority:HAA,35656,local-authority,HAA,E12000008,,,E07000090,https://www.havant.gov.uk,Q73072652, -2710,E2732,,,,local-authority,2023-03-31,154,2024-10-10,,NMD,north-yorkshire,E60000058,E07000164,Hambleton District Council,,,,http://opendatacommunities.org/id/district-council/hambleton,local-authority:HAE,35441,local-authority,HAE,E12000003,,,E07000164,https://www.hambleton.gov.uk,Q73072640, -2715,E2753,,,,local-authority,2023-03-31,155,2024-10-10,,NMD,north-yorkshire,E60000059,E07000165,Harrogate Borough Council,,,,http://opendatacommunities.org/id/district-council/harrogate,local-authority:HAG,35579,local-authority,HAG,E12000003,,,E07000165,https://www.harrogate.gov.uk,Q73072647, -650,E0601,,LCR,,local-authority,,156,2024-10-10,,UA,cheshire,E60000017,E06000006,Halton Borough Council,,,,http://opendatacommunities.org/id/unitary-authority/halton,local-authority:HAL,35432,local-authority,HAL,E12000002,,1998-04-01,E06000006,https://www.halton.gov.uk,Q16983144,Halton_Borough_Council -,E1721,,,,local-authority,,157,2024-10-10,,CTY,,,E10000014,Hampshire County Council,,,,http://opendatacommunities.org/id/county-council/hampshire,local-authority:HAM,,local-authority,HAM,E12000008,,,E10000014,https://www.hants.gov.uk,Q5646045,Hampshire_County_Council -2415,E2433,,,,local-authority,,158,2024-10-10,,NMD,leicestershire,E60000087,E07000131,Harborough District Council,,,,http://opendatacommunities.org/id/district-council/harborough,local-authority:HAO,35513,local-authority,HAO,E12000004,,,E07000131,https://www.harborough.gov.uk,Q73072642, -1540,E1538,,,,local-authority,,159,2024-10-10,,NMD,essex,E60000161,E07000073,Harlow District Council,,,,http://opendatacommunities.org/id/district-council/harlow,local-authority:HAR,35549,local-authority,HAR,E12000006,,,E07000073,https://www.harlow.gov.uk,Q73072645,Harlow_District_Council -1415,E1433,,,,local-authority,,160,2024-10-10,,NMD,sussex,E60000238,E07000062,Hastings Borough Council,,,,http://opendatacommunities.org/id/district-council/hastings,local-authority:HAS,35644,local-authority,HAS,E12000008,,,E07000062,https://www.hastings.gov.uk,Q73072650,Hastings_Borough_Council -1730,E1736,,,,local-authority,,161,2024-10-10,,NMD,hampshire-&-isle-of-wight,E60000247,E07000089,Hart District Council,,,,http://opendatacommunities.org/id/district-council/hart,local-authority:HAT,35600,local-authority,HAT,E12000008,,,E07000089,https://www.hart.gov.uk,Q73072649, -5480,E5040,,,,local-authority,,162,2024-10-10,,LBO,london,E60000212,E09000016,London Borough of Havering,,,,http://opendatacommunities.org/id/london-borough-council/havering,local-authority:HAV,35662,local-authority,HAV,E12000007,,,E09000016,https://www.havering.gov.uk,Q5683826,Havering_London_Borough_Council -5360,E5013,,,,local-authority,,163,2024-10-10,,LBO,london,E60000190,E09000012,London Borough of Hackney,,,,http://opendatacommunities.org/id/london-borough-council/hackney,local-authority:HCK,37322,local-authority,HCK,E12000007,,,E09000012,https://www.hackney.gov.uk,Q5637369,Hackney_London_Borough_Council -1850,E1801,,,,local-authority,,164,2024-10-10,,UA,west-mercia,E60000113,E06000019,Herefordshire Council,,,,http://opendatacommunities.org/id/unitary-authority/herefordshire,local-authority:HEF,36035,local-authority,HEF,E12000005,,1998-04-01,E06000019,https://www.herefordshire.gov.uk,Q5738061,Herefordshire_Council -1920,E1934,,,,local-authority,,165,2024-10-10,,NMD,hertfordshire,E60000169,E07000098,Hertsmere Borough Council,,,,http://opendatacommunities.org/id/district-council/hertsmere,local-authority:HER,36093,local-authority,HER,E12000006,,,E07000098,https://www.hertsmere.gov.uk,Q15223753,Hertsmere_Borough_Council -1030,E1037,,,,local-authority,,166,2024-10-10,,NMD,derbyshire,E60000082,E07000037,High Peak Borough Council,,,,http://opendatacommunities.org/id/district-council/high-peak,local-authority:HIG,36124,local-authority,HIG,E12000004,,,E07000037,https://www.highpeak.gov.uk,Q5756024,High_Peak_Borough_Council -5510,E5041,,,,local-authority,,167,2024-10-10,,LBO,london,E60000213,E09000017,London Borough of Hillingdon,,,,http://opendatacommunities.org/id/london-borough-council/hillingdon,local-authority:HIL,36213,local-authority,HIL,E12000007,,,E09000017,https://www.hillingdon.gov.uk,Q5763303,Hillingdon_London_Borough_Council -2420,E2434,,,,local-authority,,168,2024-10-10,,NMD,leicestershire,E60000088,E07000132,Hinckley and Bosworth Borough Council,,,,http://opendatacommunities.org/id/district-council/hinckley-and-bosworth,local-authority:HIN,24879,local-authority,HIN,E12000004,,,E07000132,https://www.hinckley-bosworth.gov.uk,Q73072654, -5390,E5014,,,,local-authority,,169,2024-10-10,,LBO,london,E60000191,E09000013,London Borough of Hammersmith & Fulham,,,,http://opendatacommunities.org/id/london-borough-council/hammersmith-and-fulham,local-authority:HMF,35451,local-authority,HMF,E12000007,,,E09000013,https://www.lbhf.gov.uk/,Q5645758,Hammersmith_and_Fulham_London_Borough_Council -5540,E5042,,,,local-authority,,170,2024-10-10,,LBO,london,E60000214,E09000018,London Borough of Hounslow,,,,http://opendatacommunities.org/id/london-borough-council/hounslow,local-authority:HNS,25248,local-authority,HNS,E12000007,,,E09000018,https://www.hounslow.gov.uk,Q5913301,Hounslow_London_Borough_Council -3825,E3835,,,,local-authority,,171,2024-10-10,,NMD,sussex,E60000285,E07000227,Horsham District Council,,,,http://opendatacommunities.org/id/district-council/horsham,local-authority:HOR,25203,local-authority,HOR,E12000008,,1974-04-01,E07000227,https://www.horsham.gov.uk,Q73072656, -724,E0701,,TVCA,,local-authority,,172,2024-10-10,,UA,cleveland,E60000003,E06000001,Hartlepool Borough Council,,,,http://opendatacommunities.org/id/unitary-authority/hartlepool,local-authority:HPL,35605,local-authority,HPL,E12000001,,1905-06-18,E06000001,https://www.hartlepool.gov.uk,Q16993720,Hartlepool_Borough_Council -,E1920,,,,local-authority,,173,2024-10-10,,CTY,,,E10000015,Hertfordshire County Council,,,,http://opendatacommunities.org/id/county-council/hertfordshire,local-authority:HRT,,local-authority,HRT,E12000006,,,E10000015,https://www.hertsdirect.org/,Q5744765,Hertfordshire_County_Council -5450,E5039,,,,local-authority,,174,2024-10-10,,LBO,london,E60000211,E09000015,London Borough of Harrow,,,,http://opendatacommunities.org/id/london-borough-council/harrow,local-authority:HRW,35586,local-authority,HRW,E12000007,,,E09000015,https://www.harrow.gov.uk,Q5666565,Harrow_London_Borough_Council -5420,E5038,,,,local-authority,,175,2024-10-10,,LBO,london,E60000192,E09000014,London Borough of Haringey,,,,http://opendatacommunities.org/id/london-borough-council/haringey,local-authority:HRY,35523,local-authority,HRY,E12000007,,1965-04-01,E09000014,https://www.haringey.gov.uk,Q5657624,Haringey_London_Borough_Council -520,E0551,,CPCA,,local-authority,,176,2024-10-10,,NMD,cambridgeshire,E60000152,E07000011,Huntingdonshire District Council,,,,http://opendatacommunities.org/id/district-council/huntingdonshire,local-authority:HUN,26266,local-authority,HUN,E12000006,,,E07000011,https://www.huntingdonshire.gov.uk,Q73072657,Huntingdonshire_District_Council -2330,E2336,,,,local-authority,,177,2024-10-10,,NMD,lancashire,E60000038,E07000120,Hyndburn Borough Council,,,,http://opendatacommunities.org/id/district-council/hyndburn,local-authority:HYN,26299,local-authority,HYN,E12000002,,,E07000120,https://www.hyndburnbc.gov.uk,Q65089006,Hyndburn_Borough_Council -835,E4001,,,,local-authority,,178,2024-10-10,,UA,devon-cornwall-&-isle-of-scilly,E60000293,E06000053,Council of the Isles of Scilly,,,,http://opendatacommunities.org/id/unitary-authority/scilly,local-authority:IOS,67774,local-authority,IOS,E12000009,,1974-04-01,E06000053,https://www.scilly.gov.uk,Q28195166,Council_of_the_Isles_of_Scilly -2114,E2101,,,,local-authority,,179,2024-10-10,,UA,hampshire-&-isle-of-wight,E60000223,E06000046,Isle of Wight Council,,,,http://opendatacommunities.org/id/unitary-authority/isle-of-wight,local-authority:IOW,41190,local-authority,IOW,E12000008,,1905-06-17,E06000046,https://www.iow.gov.uk/,Q6084095,Isle_of_Wight_Council -3515,E3533,,,,local-authority,,180,2024-10-10,,NMD,suffolk,E60000185,E07000202,Ipswich Borough Council,,,,http://opendatacommunities.org/id/district-council/ipswich,local-authority:IPS,41011,local-authority,IPS,E12000006,,,E07000202,https://www.ipswich.gov.uk,Q16191496,Ipswich_Borough_Council -5570,E5015,,,,local-authority,,181,2024-10-10,,LBO,london,E60000193,E09000019,London Borough of Islington,,,,http://opendatacommunities.org/id/london-borough-council/islington,local-authority:ISL,41201,local-authority,ISL,E12000007,,,E09000019,https://www.islington.gov.uk,Q6084379,Islington_London_Borough_Council -5600,E5016,,,,local-authority,,182,2024-10-10,,LBO,london,E60000194,E09000020,Royal Borough of Kensington and Chelsea,,,,http://opendatacommunities.org/id/london-borough-council/kensington-and-chelsea,local-authority:KEC,,local-authority,KEC,E12000007,,,E09000020,https://www.rbkc.gov.uk/,Q6391507,Kensington_and_Chelsea_London_Borough_Council -,E2221,,,,local-authority,,183,2024-10-10,,CTY,,,E10000016,Kent County Council,,,,http://opendatacommunities.org/id/county-council/kent,local-authority:KEN,,local-authority,KEN,E12000008,,,E10000016,https://www.kent.gov.uk,Q6386127,Kent_County_Council -2820,E2834,,,,local-authority,2021-03-31,184,2024-10-10,,NMD,northamptonshire,,E07000153,Kettering Borough Council,,,,http://opendatacommunities.org/id/district-council/kettering,local-authority:KET,41933,local-authority,KET,E12000004,,1974-04-01,E07000153,https://www.kettering.gov.uk,Q6395462,Kettering_Borough_Council -2004,E2002,,,,local-authority,,185,2024-10-10,,UA,humber,E60000053,E06000010,Hull City Council,,,,http://opendatacommunities.org/id/unitary-authority/hull,local-authority:KHL,42046,local-authority,KHL,E12000003,,1996-04-01,E06000010,https://www.hullcc.gov.uk,Q5935834,Hull_City_Council -2635,E2634,,,,local-authority,,186,2024-10-10,,NMD,norfolk,E60000179,E07000146,Borough Council of King's Lynn and West Norfolk,,,,http://opendatacommunities.org/id/district-council/west-norfolk,local-authority:KIN,42024,local-authority,KIN,E12000006,,,E07000146,https://www.west-norfolk.gov.uk,Q73072537, -4715,E4703,,WYCA,,local-authority,,187,2024-10-10,,MD,west-yorkshire,E60000070,E08000034,Kirklees Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/kirklees,local-authority:KIR,42066,local-authority,KIR,E12000003,,1974-04-01,E08000034,https://www.kirklees.gov.uk,Q16995709,Kirklees_Council -5630,E5043,,,,local-authority,,188,2024-10-10,,LBO,london,E60000215,E09000021,Royal Borough of Kingston upon Thames,,,,http://opendatacommunities.org/id/london-borough-council/kingston,local-authority:KTT,42050,local-authority,KTT,E12000007,,,E09000021,https://www.kingston.gov.uk,Q6413671,Kingston_upon_Thames_London_Borough_Council -4305,E4301,,LCR,,local-authority,,189,2024-10-10,,MD,merseyside,E60000047,E08000011,Knowsley Metropolitan Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/knowsley,local-authority:KWL,42093,local-authority,KWL,E12000002,,1974-04-01,E08000011,https://www.knowsley.gov.uk,Q16995750,Knowsley_Metropolitan_Borough_Council -2335,E2337,,,,local-authority,,190,2024-10-10,,NMD,lancashire,E60000039,E07000121,Lancaster City Council,,,,http://opendatacommunities.org/id/district-council/lancaster,local-authority:LAC,42333,local-authority,LAC,E12000002,,,E07000121,https://www.lancaster.gov.uk,Q73072658, -,E2321,,,,local-authority,,191,2024-10-10,,CTY,,,E10000017,Lancashire County Council,,,,http://opendatacommunities.org/id/county-council/lancashire,local-authority:LAN,,local-authority,LAN,E12000002,,,E10000017,https://www.lancashire.gov.uk,Q6386149,Lancashire_County_Council -5660,E5017,,,,local-authority,,192,2024-10-10,,LBO,london,E60000195,E09000022,London Borough of Lambeth,,,,http://opendatacommunities.org/id/london-borough-council/lambeth,local-authority:LBH,42273,local-authority,LBH,E12000007,,,E09000022,https://www.lambeth.gov.uk,Q6481450,Lambeth_London_Borough_Council -2465,E2401,,,,local-authority,,193,2024-10-10,,UA,leicestershire,E60000074,E06000016,Leicester City Council,,,,http://opendatacommunities.org/id/unitary-authority/leicester,local-authority:LCE,42695,local-authority,LCE,E12000004,,1905-06-19,E06000016,https://www.leicester.gov.uk,Q6519163,Leicester_City_Council -,,,,,local-authority,,194,2024-10-10,,COMB,,,E47000004,Liverpool City Region,,,,,local-authority:LCR,403217,local-authority,LCR,E12000002,,2014-04-01,E47000004,https://www.liverpoolcityregion-ca.gov.uk,Q16996746,Liverpool_City_Region_Combined_Authority -4720,E4704,,WYCA,,local-authority,,195,2024-10-10,,MD,west-yorkshire,E60000071,E08000035,Leeds City Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/leeds,local-authority:LDS,42600,local-authority,LDS,E12000003,,1905-06-08,E08000035,https://www.leeds.gov.uk,Q6515870,Leeds_City_Council -,E2421,,,,local-authority,,196,2024-10-10,,CTY,,,E10000018,Leicestershire County Council,,,,http://opendatacommunities.org/id/county-council/leicestershire,local-authority:LEC,,local-authority,LEC,E12000004,,1889-01-01,E10000018,https://www.leicestershire.gov.uk/,Q6386198,Leicestershire_County_Council -1425,E1435,,,,local-authority,,197,2024-10-10,,NMD,sussex,E60000239,E07000063,Lewes District Council,,,,http://opendatacommunities.org/id/district-council/lewes,local-authority:LEE,42802,local-authority,LEE,E12000008,,,E07000063,https://www.lewes-eastbourne.gov.uk,Q73072662, -5690,E5018,,,,local-authority,,198,2024-10-10,,LBO,london,E60000196,E09000023,London Borough of Lewisham,,,,http://opendatacommunities.org/id/london-borough-council/lewisham,local-authority:LEW,42816,local-authority,LEW,E12000007,,,E09000023,https://www.lewisham.gov.uk,Q6537320,Lewisham_London_Borough_Council -2515,E2533,,,,local-authority,,199,2024-10-10,,NMD,lincolnshire,E60000094,E07000138,City of Lincoln Council,,,,http://opendatacommunities.org/id/district-council/lincoln,local-authority:LIC,42978,local-authority,LIC,E12000004,,,E07000138,https://www.lincoln.gov.uk,Q73072583,City_of_Lincoln_Council -3415,E3433,,,,local-authority,,200,2024-10-10,,NMD,staffordshire,E60000119,E07000194,Lichfield District Council,,,,http://opendatacommunities.org/id/district-council/lichfield,local-authority:LIF,42924,local-authority,LIF,E12000005,,,E07000194,https://www.lichfielddc.gov.uk,Q6543271,Lichfield_District_Council -,E2520,,,,local-authority,,201,2024-10-10,,CTY,,,E10000019,Lincolnshire County Council,,,,http://opendatacommunities.org/id/county-council/lincolnshire,local-authority:LIN,,local-authority,LIN,E12000004,,,E10000019,https://www.lincolnshire.gov.uk,Q16996347,Lincolnshire_County_Council -4310,E4302,,LCR,,local-authority,,202,2024-10-10,,MD,merseyside,E60000048,E08000012,Liverpool City Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/liverpool,local-authority:LIV,43089,local-authority,LIV,E12000002,,1905-06-08,E08000012,https://www.liverpool.gov.uk,Q6658351,Liverpool_City_Council -5030,E5010,,,,local-authority,,203,2024-10-10,,CC,london,E60000189,E09000001,City of London Corporation,,,,http://opendatacommunities.org/id/london-borough-council/city-of-london,local-authority:LND,20561,local-authority,LND,E12000007,,1905-06-28,E09000001,https://www.cityoflondon.gov.uk/,Q1094147,City_of_London_Corporation -230,E0201,,,,local-authority,,204,2024-10-10,,UA,bedfordshire,E60000145,E06000032,Luton Borough Council,,,,http://opendatacommunities.org/id/unitary-authority/luton,local-authority:LUT,43852,local-authority,LUT,E12000006,,1905-06-19,E06000032,https://www.luton.gov.uk,Q16997109,Luton_Borough_Council -2235,E2237,,,,local-authority,,205,2024-10-10,,NMD,kent,E60000259,E07000110,Maidstone Borough Council,,,,http://opendatacommunities.org/id/district-council/maidstone,local-authority:MAI,43979,local-authority,MAI,E12000008,,,E07000110,https://www.maidstone.gov.uk,Q16997208,Maidstone_Borough_Council -1545,E1539,,,,local-authority,,206,2024-10-10,,NMD,essex,E60000162,E07000074,Maldon District Council,,,,http://opendatacommunities.org/id/district-council/maldon,local-authority:MAL,44031,local-authority,MAL,E12000006,,,E07000074,https://www.maldon.gov.uk,Q73072663, -4215,E4203,,GMCA,,local-authority,,207,2024-10-10,,MD,greater-manchester,E60000027,E08000003,Manchester City Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/manchester,local-authority:MAN,44096,local-authority,MAN,E12000002,,1974-04-01,E08000003,https://www.manchester.gov.uk,Q2302252,Manchester_City_Council -3025,E3035,,,,local-authority,,208,2024-10-10,,NMD,nottinghamshire,E60000110,E07000174,Mansfield District Council,,,,http://opendatacommunities.org/id/district-council/mansfield,local-authority:MAS,44158,local-authority,MAS,E12000004,,,E07000174,https://www.mansfield.gov.uk,Q73072669, -1820,E1851,,,,local-authority,,209,2024-10-10,,NMD,west-mercia,E60000138,E07000235,Malvern Hills District Council,,,,http://opendatacommunities.org/id/district-council/malvern-hills,local-authority:MAV,44044,local-authority,MAV,E12000005,,,E07000235,https://www.malvernhills.gov.uk,Q73072667, -734,E0702,,TVCA,,local-authority,,210,2024-10-10,,UA,cleveland,E60000004,E06000002,Middlesbrough Borough Council,,,,http://opendatacommunities.org/id/unitary-authority/middlesbrough,local-authority:MDB,45710,local-authority,MDB,E12000001,,1905-06-18,E06000002,https://www.middlesbrough.gov.uk,Q6841843,Middlesbrough_Council -1135,E1133,,,,local-authority,,211,2024-10-10,,NMD,devon-cornwall-&-isle-of-scilly,E60000302,E07000042,Mid Devon District Council,,,,http://opendatacommunities.org/id/district-council/mid-devon,local-authority:MDE,45648,local-authority,MDE,E12000009,,,E07000042,https://www.middevon.gov.uk,Q73072676, -2280,E2201,,,,local-authority,,212,2024-10-10,,UA,kent,E60000224,E06000035,Medway Council,,,,http://opendatacommunities.org/id/unitary-authority/medway,local-authority:MDW,45310,local-authority,MDW,E12000008,,1998-04-01,E06000035,https://www.medway.gov.uk,Q16997526,Medway_Council -2430,E2436,,,,local-authority,,213,2024-10-10,,NMD,leicestershire,E60000089,E07000133,Melton Borough Council,,,,http://opendatacommunities.org/id/district-council/melton,local-authority:MEL,45336,local-authority,MEL,E12000004,,,E07000133,https://www.melton.gov.uk,Q73072672, -3305,E3331,,,,local-authority,2023-03-31,214,2024-10-10,,NMD,avon-&-somerset,E60000314,E07000187,Mendip District Council,,,,http://opendatacommunities.org/id/district-council/mendip,local-authority:MEN,45352,local-authority,MEN,E12000009,,,E07000187,https://www.mendip.gov.uk,Q73072673, -435,E0401,,,,local-authority,,215,2024-10-10,,UA,thames-valley,E60000225,E06000042,Milton Keynes Council,,,,http://opendatacommunities.org/id/unitary-authority/milton-keynes,local-authority:MIK,45853,local-authority,MIK,E12000008,,1905-06-19,E06000042,https://www.milton-keynes.gov.uk/,Q16997843,Milton_Keynes_City_Council -3620,E3634,,,,local-authority,,216,2024-10-10,,NMD,surrey,E60000273,E07000210,Mole Valley District Council,,,,http://opendatacommunities.org/id/district-council/mole-valley,local-authority:MOL,46115,local-authority,MOL,E12000008,,,E07000210,https://www.molevalley.gov.uk,Q73072681, -5720,E5044,,,,local-authority,,217,2024-10-10,,LBO,london,E60000216,E09000024,London Borough of Merton,,,,http://opendatacommunities.org/id/london-borough-council/merton,local-authority:MRT,45518,local-authority,MRT,E12000007,,,E09000024,https://www.merton.gov.uk,Q6820723,Merton_London_Borough_Council -3830,E3836,,,,local-authority,,218,2024-10-10,,NMD,sussex,E60000286,E07000228,Mid Sussex District Council,,,,http://opendatacommunities.org/id/district-council/mid-sussex,local-authority:MSS,45680,local-authority,MSS,E12000008,,1974-04-01,E07000228,https://www.midsussex.gov.uk,Q73072679, -3520,E3534,,,,local-authority,,219,2024-10-10,,NMD,suffolk,E60000186,E07000203,Mid Suffolk District Council,,,,http://opendatacommunities.org/id/district-council/mid-suffolk,local-authority:MSU,45677,local-authority,MSU,E12000006,,,E07000203,https://www.midsuffolk.gov.uk,Q73072678, -2935,E2901,,NNECA,,local-authority,,220,2024-10-10,,UA,northumbria,E60000005,E06000057,Northumberland County Council,,,,http://opendatacommunities.org/id/unitary-authority/northumberland,local-authority:NBL,59853,local-authority,NBL,E12000001,,2009-04-01,E06000057,https://www.northumberland.gov.uk,Q6386521,Northumberland_County_Council -1115,E1134,,,,local-authority,,221,2024-10-10,,NMD,devon-cornwall-&-isle-of-scilly,E60000303,E07000043,North Devon District Council,,,,http://opendatacommunities.org/id/district-council/north-devon,local-authority:NDE,59060,local-authority,NDE,E12000009,,,E07000043,https://www.northdevon.gov.uk,Q7055115,North_Devon_Council -1215,E1234,,,,local-authority,2019-03-31,222,2024-10-10,,NMD,,,E07000050,North Dorset District Council,,,,http://opendatacommunities.org/id/district-council/north-dorset,local-authority:NDO,59067,local-authority,NDO,E12000009,,,E07000050,https://www.dorsetforyou.com,Q73072691, -3030,E3036,,,,local-authority,,223,2024-10-10,,NMD,nottinghamshire,E60000111,E07000175,Newark and Sherwood District Council,,,,http://opendatacommunities.org/id/district-council/newark-and-sherwood,local-authority:NEA,58572,local-authority,NEA,E12000004,,,E07000175,https://www.newark-sherwooddc.gov.uk,Q73072684, -3420,E3434,,,,local-authority,,224,2024-10-10,,NMD,staffordshire,E60000120,E07000195,Newcastle-under-Lyme Borough Council,,,,http://opendatacommunities.org/id/district-council/newcastle-staffs,local-authority:NEC,58616,local-authority,NEC,E12000005,,,E07000195,https://www.newcastle-staffs.gov.uk,Q73072687, -,,,,,local-authority,2024-05-06,225,2024-10-10,,COMB,,,E47000010,North East Combined Authority,,,,,local-authority:NECA,403198,local-authority,NECA,E12000001,,2014-04-15,E47000010,https://northeastca.gov.uk/,Q16986408,E47000014 -1035,E1038,,,,local-authority,,226,2024-10-10,,NMD,derbyshire,E60000083,E07000038,North East Derbyshire District Council,,,,http://opendatacommunities.org/id/district-council/north-east-derbyshire,local-authority:NED,59093,local-authority,NED,E12000004,,,E07000038,https://www.ne-derbyshire.gov.uk,Q73072692, -2002,E2003,,,,local-authority,,227,2024-10-10,,UA,humber,E60000054,E06000012,North East Lincolnshire Council,,,,http://opendatacommunities.org/id/unitary-authority/north-east-lincolnshire,local-authority:NEL,59103,local-authority,NEL,E12000003,,1996-04-01,E06000012,https://www.nelincs.gov.uk,Q17016820,North_East_Lincolnshire_Council -4510,E4502,,NNECA,,local-authority,,228,2024-10-10,,MD,northumbria,E60000009,E08000021,Newcastle City Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/newcastle,local-authority:NET,58605,local-authority,NET,E12000001,,1974-04-01,E08000021,https://www.newcastle.gov.uk,Q16998823,Newcastle_City_Council -1740,E1738,,,,local-authority,,229,2024-10-10,,NMD,hampshire-&-isle-of-wight,E60000249,E07000091,New Forest District Council,,,,http://opendatacommunities.org/id/district-council/new-forest,local-authority:NEW,58464,local-authority,NEW,E12000008,,,E07000091,https://www.newforestdc.gov.uk,Q73072682, -,E2620,,,,local-authority,,230,2024-10-10,,CTY,,,E10000020,Norfolk County Council,,,,http://opendatacommunities.org/id/county-council/norfolk,local-authority:NFK,,local-authority,NFK,E12000006,,,E10000020,https://www.norfolk.gov.uk,Q6386227,Norfolk_County_Council -3060,E3001,,,,local-authority,,231,2024-10-10,,UA,nottinghamshire,E60000075,E06000018,Nottingham City Council,,,,http://opendatacommunities.org/id/unitary-authority/nottingham,local-authority:NGM,59938,local-authority,NGM,E12000004,,1905-06-20,E06000018,https://www.nottinghamcity.gov.uk,Q7063612,Nottingham_City_Council -1925,E1935,,,,local-authority,,232,2024-10-10,,NMD,hertfordshire,E60000170,E07000099,North Hertfordshire District Council,,,,http://opendatacommunities.org/id/district-council/north-hertfordshire,local-authority:NHE,59164,local-authority,NHE,E12000006,,,E07000099,https://www.north-herts.gov.uk,Q7055592,North_Hertfordshire_District_Council -2520,E2534,,,,local-authority,,233,2024-10-10,,NMD,lincolnshire,E60000095,E07000139,North Kesteven District Council,,,,http://opendatacommunities.org/id/district-council/north-kesteven,local-authority:NKE,59176,local-authority,NKE,E12000004,,,E07000139,https://www.n-kesteven.gov.uk,Q28401189,North_Kesteven_District_Council -2003,E2004,,,,local-authority,,234,2024-10-10,,UA,humber,E60000055,E06000013,North Lincolnshire Council,,,,http://opendatacommunities.org/id/unitary-authority/north-lincolnshire,local-authority:NLN,59184,local-authority,NLN,E12000003,,1996-04-01,E06000013,https://www.northlincs.gov.uk,Q17016863,North_Lincolnshire_Council -2620,E2635,,,,local-authority,,235,2024-10-10,,NMD,norfolk,E60000180,E07000147,North Norfolk District Council,,,,http://opendatacommunities.org/id/district-council/north-norfolk,local-authority:NNO,59203,local-authority,NNO,E12000006,,,E07000147,https://www.northnorfolk.org/,Q73072695, -2825,E2835,,,,local-authority,2020-03-31,236,2024-10-10,,NMD,northamptonshire,,E07000154,Northampton Borough Council,,,,http://opendatacommunities.org/id/district-council/northampton,local-authority:NOR,,local-authority,NOR,E12000004,,1974-04-01,E07000154,https://www.northampton.gov.uk,Q73072702,Northampton_Borough_Council -2625,E2636,,,,local-authority,,237,2024-10-10,,NMD,norfolk,E60000181,E07000148,Norwich City Council,,,,http://opendatacommunities.org/id/district-council/norwich,local-authority:NOW,59917,local-authority,NOW,E12000006,,,E07000148,https://www.norwich.gov.uk,Q17012769,Norwich_City_Council -121,E0104,,,,local-authority,,238,2024-10-10,,UA,avon-&-somerset,E60000294,E06000024,North Somerset Council,,,,http://opendatacommunities.org/id/unitary-authority/north-somerset,local-authority:NSM,59245,local-authority,NSM,E12000009,,1996-04-01,E06000024,https://www.n-somerset.gov.uk,Q17016922,North_Somerset_Council -,,,,,local-authority,2024-05-07,239,2024-10-10,,COMB,,,E47000011,North of Tyne Combined Authority,,,,,local-authority:NTCA,449341,local-authority,NTCA,E12000001,,2018-11-02,E47000011,https://www.northoftyne-ca.gov.uk/,Q55136954,North_of_Tyne_Combined_Authority -,E2820,,,,local-authority,2021-03-31,240,2024-10-10,,CTY,,,E10000021,Northamptonshire County Council,,,,http://opendatacommunities.org/id/county-council/northamptonshire,local-authority:NTH,59427,local-authority,NTH,E12000004,,1974-04-01,E10000021,https://www.northamptonshire.gov.uk,Q14942414,Northamptonshire_County_Council -,E3021,,EMCCA,,local-authority,,241,2024-10-10,,CTY,,,E10000024,Nottinghamshire County Council,,,,http://opendatacommunities.org/id/county-council/nottinghamshire,local-authority:NTT,,local-authority,NTT,E12000004,,1937-01-01,E10000024,https://www.nottinghamshire.gov.uk/council-and-democracy,Q16934215,Nottinghamshire_County_Council -4515,E4503,,NNECA,,local-authority,,242,2024-10-10,,MD,northumbria,E60000010,E08000022,North Tyneside Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/north-tyneside,local-authority:NTY,59283,local-authority,NTY,E12000001,,1974-04-01,E08000022,https://www.northtyneside.gov.uk,Q17017005,North_Tyneside_Council -3710,E3732,,,,local-authority,,243,2024-10-10,,NMD,warwickshire,E60000126,E07000219,Nuneaton and Bedworth Borough Council,,,,http://opendatacommunities.org/id/district-council/nuneaton-and-bedworth,local-authority:NUN,60081,local-authority,NUN,E12000005,,,E07000219,https://www.nuneatonandbedworth.gov.uk,Q73072703, -3705,E3731,,,,local-authority,,244,2024-10-10,,NMD,warwickshire,E60000125,E07000218,North Warwickshire Borough Council,,,,http://opendatacommunities.org/id/district-council/north-warwickshire,local-authority:NWA,59314,local-authority,NWA,E12000005,,,E07000218,https://www.northwarks.gov.uk,Q73072698, -2435,E2437,,,,local-authority,,245,2024-10-10,,NMD,leicestershire,E60000090,E07000134,North West Leicestershire District Council,,,,http://opendatacommunities.org/id/district-council/north-west-leicestershire,local-authority:NWL,59353,local-authority,NWL,E12000004,,,E07000134,https://www.nwleics.gov.uk,Q73072699, -5750,E5045,,,,local-authority,,246,2024-10-10,,LBO,london,E60000197,E09000025,London Borough of Newham,,,,http://opendatacommunities.org/id/london-borough-council/newham,local-authority:NWM,43395,local-authority,NWM,E12000007,,,E09000025,https://www.newham.gov.uk,Q7018141,Newham_London_Borough_Council -,E2721,,,,local-authority,2023-03-31,247,2024-10-10,,CTY,,,E10000023,North Yorkshire County Council,,,,http://opendatacommunities.org/id/county-council/north-yorkshire,local-authority:NYK,,local-authority,NYK,E12000003,,,E10000023,https://www.northyorks.gov.uk,Q17017103,North_Yorkshire_County_Council -2440,E2438,,,,local-authority,,248,2024-10-10,,NMD,leicestershire,E60000091,E07000135,Oadby and Wigston Borough Council,,,,http://opendatacommunities.org/id/district-council/oadby-and-wigston,local-authority:OAD,60132,local-authority,OAD,E12000004,,,E07000135,https://oadby-wigston.gov.uk,Q73072704, -4220,E4204,,GMCA,,local-authority,,249,2024-10-10,,MD,greater-manchester,E60000028,E08000004,Oldham Metropolitan Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/oldham,local-authority:OLD,60400,local-authority,OLD,E12000002,,1905-06-07,E08000004,https://www.oldham.gov.uk,Q17017730,Oldham_Council -,E3120,,,,local-authority,,250,2024-10-10,,CTY,,,E10000025,Oxfordshire County Council,,,,http://opendatacommunities.org/id/county-council/oxfordshire,local-authority:OXF,,local-authority,OXF,E12000008,,,E10000025,https://www.oxfordshire.gov.uk,Q6386253,Oxfordshire_County_Council -3110,E3132,,,,local-authority,,251,2024-10-10,,NMD,thames-valley,E60000266,E07000178,Oxford City Council,,,,http://opendatacommunities.org/id/district-council/oxford,local-authority:OXO,60776,local-authority,OXO,E12000008,,,E07000178,https://www.oxford.gov.uk,Q7115277,Oxford_City_Council -2340,E2338,,,,local-authority,,252,2024-10-10,,NMD,lancashire,E60000040,E07000122,Pendle Borough Council,,,,http://opendatacommunities.org/id/district-council/pendle,local-authority:PEN,61329,local-authority,PEN,E12000002,,,E07000122,https://www.pendle.gov.uk,Q7162423,Pendle_Borough_Council -1160,E1101,,,,local-authority,,253,2024-10-10,,UA,devon-cornwall-&-isle-of-scilly,E60000295,E06000026,Plymouth City Council,,,,http://opendatacommunities.org/id/unitary-authority/plymouth,local-authority:PLY,82878,local-authority,PLY,E12000009,,1998-04-01,E06000026,https://www.plymouth.gov.uk,Q7205775,Plymouth_City_Council -1255,E1201,,,,local-authority,2019-03-31,254,2024-10-10,,UA,,,E06000029,Borough of Poole,,,,http://opendatacommunities.org/id/unitary-authority/poole,local-authority:POL,61608,local-authority,POL,E12000009,,1997-04-01,E06000029,https://www.boroughofpoole.com,Q7228609,Poole_Borough_Council -1775,E1701,,,,local-authority,,255,2024-10-10,,UA,hampshire-&-isle-of-wight,E60000226,E06000044,Portsmouth City Council,,,,http://opendatacommunities.org/id/unitary-authority/portsmouth,local-authority:POR,61679,local-authority,POR,E12000008,,1905-06-20,E06000044,https://www.portsmouth.gov.uk,Q17104656,Portsmouth_City_Council -2345,E2339,,,,local-authority,,256,2024-10-10,,NMD,lancashire,E60000041,E07000123,Preston City Council,,,,http://opendatacommunities.org/id/district-council/preston,local-authority:PRE,61876,local-authority,PRE,E12000002,,,E07000123,https://www.preston.gov.uk,Q65089357,Preston_City_Council -540,E0501,,CPCA,,local-authority,,257,2024-10-10,,UA,cambridgeshire,E60000146,E06000031,Peterborough City Council,,,,http://opendatacommunities.org/id/unitary-authority/peterborough,local-authority:PTE,61538,local-authority,PTE,E12000006,,1905-06-20,E06000031,https://www.peterborough.gov.uk,Q6664413,Peterborough_City_Council -1225,E1236,,,,local-authority,2019-03-31,258,2024-10-10,,NMD,,,E07000051,Purbeck District Council,,,,http://opendatacommunities.org/id/district-council/purbeck,local-authority:PUR,65559,local-authority,PUR,E12000009,,,E07000051,https://www.dorsetforyou.com,Q73072707, -728,E0703,,TVCA,,local-authority,,259,2024-10-10,,UA,cleveland,E60000006,E06000003,Redcar and Cleveland Borough Council,,,,http://opendatacommunities.org/id/unitary-authority/redcar-and-cleveland,local-authority:RCC,66064,local-authority,RCC,E12000001,,1996-04-01,E06000003,https://www.redcar-cleveland.gov.uk,Q17019415,Redcar_and_Cleveland_Borough_Council -4225,E4205,,GMCA,,local-authority,,260,2024-10-10,,MD,greater-manchester,E60000029,E08000005,Rochdale Metropolitan Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/rochdale,local-authority:RCH,66760,local-authority,RCH,E12000002,,1905-05-27,E08000005,https://www.rochdale.gov.uk,Q17019804,Rochdale_Borough_Council -5780,E5046,,,,local-authority,,261,2024-10-10,,LBO,london,E60000217,E09000026,London Borough of Redbridge,,,,http://opendatacommunities.org/id/london-borough-council/redbridge,local-authority:RDB,66059,local-authority,RDB,E12000007,,,E09000026,https://www.redbridge.gov.uk,Q7305508,Redbridge_London_Borough_Council -345,E0303,,,,local-authority,,262,2024-10-10,,UA,thames-valley,E60000227,E06000038,Reading Borough Council,,,,http://opendatacommunities.org/id/unitary-authority/reading,local-authority:RDG,66004,local-authority,RDG,E12000008,,1905-05-27,E06000038,http://www.reading.gov.uk,Q17018654,Reading_Borough_Council -1825,E1835,,,,local-authority,,263,2024-10-10,,NMD,west-mercia,E60000139,E07000236,Redditch Borough Council,,,,http://opendatacommunities.org/id/district-council/redditch,local-authority:RED,66070,local-authority,RED,E12000005,,,E07000236,https://www.redditchbc.gov.uk,Q14978996,Redditch_Borough_Council -3625,E3635,,,,local-authority,,264,2024-10-10,,NMD,surrey,E60000274,E07000211,Reigate and Banstead Borough Council,,,,http://opendatacommunities.org/id/district-council/reigate-banstead,local-authority:REI,66252,local-authority,REI,E12000008,,,E07000211,https://www.reigate-banstead.gov.uk,Q73072709, -2350,E2340,,,,local-authority,,265,2024-10-10,,NMD,lancashire,E60000042,E07000124,Ribble Valley Borough Council,,,,http://opendatacommunities.org/id/district-council/ribble-valley,local-authority:RIB,66591,local-authority,RIB,E12000002,,,E07000124,https://www.ribblevalley.gov.uk,Q73072712, -5810,E5047,,,,local-authority,,266,2024-10-10,,LBO,london,E60000218,E09000027,London Borough of Richmond upon Thames,,,,http://opendatacommunities.org/id/london-borough-council/richmond,local-authority:RIC,66618,local-authority,RIC,E12000007,,,E09000027,https://www.richmond.gov.uk,Q7331065,Richmond_upon_Thames_London_Borough_Council -2720,E2734,,,,local-authority,2023-03-31,267,2024-10-10,,NMD,north-yorkshire,E60000060,E07000166,Richmondshire District Council,,,,http://opendatacommunities.org/id/district-council/richmondshire,local-authority:RIH,66622,local-authority,RIH,E12000003,,,E07000166,https://richmondshire.gov.uk,Q73072715, -1550,E1540,,,,local-authority,,268,2024-10-10,,NMD,essex,E60000163,E07000075,Rochford District Council,,,,http://opendatacommunities.org/id/district-council/rochford,local-authority:ROC,66766,local-authority,ROC,E12000006,,,E07000075,https://www.rochford.gov.uk,Q73072717, -1430,E1436,,,,local-authority,,269,2024-10-10,,NMD,sussex,E60000240,E07000064,Rother District Council,,,,http://opendatacommunities.org/id/district-council/rother,local-authority:ROH,66849,local-authority,ROH,E12000008,,,E07000064,https://www.rother.gov.uk,Q73072720,Rother_District_Council -2355,E2341,,,,local-authority,,270,2024-10-10,,NMD,lancashire,E60000043,E07000125,Rossendale Borough Council,,,,http://opendatacommunities.org/id/district-council/rossendale,local-authority:ROS,66840,local-authority,ROS,E12000002,,,E07000125,https://www.rossendale.gov.uk,Q7369771,Rossendale_Borough_Council -4415,E4403,,SYMCA,,local-authority,,271,2024-10-10,,MD,south-yorkshire,E60000066,E08000018,Rotherham Metropolitan Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/rotherham,local-authority:ROT,66858,local-authority,ROT,E12000003,,1905-05-27,E08000018,https://www.rotherham.gov.uk,Q17020059,Rotherham_Metropolitan_Borough_Council -3715,E3733,,,,local-authority,,272,2024-10-10,,NMD,warwickshire,E60000127,E07000220,Rugby Borough Council,,,,http://opendatacommunities.org/id/district-council/rugby,local-authority:RUG,67239,local-authority,RUG,E12000005,,,E07000220,https://www.rugby.gov.uk,Q73072725, -1750,E1740,,,,local-authority,,273,2024-10-10,,NMD,hampshire-&-isle-of-wight,E60000250,E07000092,Rushmoor Borough Council,,,,http://opendatacommunities.org/id/district-council/rushmoor,local-authority:RUH,67311,local-authority,RUH,E12000008,,,E07000092,https://www.rushmoor.gov.uk,Q73072730, -3630,E3636,,,,local-authority,,274,2024-10-10,,NMD,surrey,E60000275,E07000212,Runnymede Borough Council,,,,http://opendatacommunities.org/id/district-council/runnymede,local-authority:RUN,67252,local-authority,RUN,E12000008,,,E07000212,https://www.runnymede.gov.uk,Q73072726, -3040,E3038,,,,local-authority,,275,2024-10-10,,NMD,nottinghamshire,E60000112,E07000176,Rushcliffe Borough Council,,,,http://opendatacommunities.org/id/district-council/rushcliffe,local-authority:RUS,67309,local-authority,RUS,E12000004,,,E07000176,https://www.rushcliffe.gov.uk,Q73072729, -2470,E2402,,,,local-authority,,276,2024-10-10,,UA,leicestershire,E60000076,E06000017,Rutland County Council,,,,http://opendatacommunities.org/id/unitary-authority/rutland,local-authority:RUT,67340,local-authority,RUT,E12000004,,1997-04-01,E06000017,https://www.rutland.gov.uk,Q7383481,Rutland_County_Council -2725,E2755,,,,local-authority,2023-03-31,277,2024-10-10,,NMD,north-yorkshire,E60000061,E07000167,Ryedale District Council,,,,http://opendatacommunities.org/id/district-council/ryedale,local-authority:RYE,67358,local-authority,RYE,E12000003,,,E07000167,https://www.ryedale.gov.uk,Q73072732, -1930,E1936,,,,local-authority,,278,2024-10-10,,NMD,hertfordshire,E60000171,E07000240,St Albans City and District Council,,,,http://opendatacommunities.org/id/district-council/st-albans,local-authority:SAL,68877,local-authority,SAL,E12000006,,1974-04-01,E07000240,https://www.stalbans.gov.uk,Q7592257,St_Albans_City_and_District_Council -4620,E4604,,WMCA,,local-authority,,279,2024-10-10,,MD,west-midlands,E60000133,E08000028,Sandwell Metropolitan Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/sandwell,local-authority:SAW,67499,local-authority,SAW,E12000005,,1905-06-07,E08000028,https://www.sandwell.gov.uk,Q7417057,Sandwell_Metropolitan_Borough_Council -410,E0434,,,,local-authority,2020-03-31,280,2024-10-10,,NMD,thames-valley,E60000235,E07000006,South Bucks District Council,,,,http://opendatacommunities.org/id/district-council/south-bucks,local-authority:SBU,426086,local-authority,SBU,E12000008,,,E07000006,https://www.southbucks.gov.uk,Q65089619,South_Bucks_District_Council -530,E0536,,CPCA,,local-authority,,281,2024-10-10,,NMD,cambridgeshire,E60000153,E07000012,South Cambridgeshire District Council,,,,http://opendatacommunities.org/id/district-council/south-cambridgeshire,local-authority:SCA,68236,local-authority,SCA,E12000006,,,E07000012,https://www.scambs.gov.uk,Q7566485,South_Cambridgeshire_District_Council -2730,E2736,,,,local-authority,2023-03-31,282,2024-10-10,,NMD,north-yorkshire,E60000062,E07000168,Scarborough Borough Council,,,,http://opendatacommunities.org/id/district-council/scarborough,local-authority:SCE,67582,local-authority,SCE,E12000003,,,E07000168,https://www.scarborough.gov.uk,Q73072735, -2024-01-01,,,,,local-authority,,283,2024-10-10,,COMB,,,E47000002,South Yorkshire Mayoral Combined Authority,,,,,local-authority:SYMCA,494227,local-authority,SYMCA,E12000003,,2018-05-03,E47000002,https://www.southyorkshire-ca.gov.uk/,Q17020947,South_Yorkshire_Mayoral_Combined_Authority -1040,E1039,,,,local-authority,,284,2024-10-10,,NMD,derbyshire,E60000084,E07000039,South Derbyshire District Council,,,,http://opendatacommunities.org/id/district-council/south-derbyshire,local-authority:SDE,68248,local-authority,SDE,E12000004,,,E07000039,https://www.southderbyshire.gov.uk/,Q73072741, -3525,E3535,,,,local-authority,2019-03-31,285,2024-10-10,,NMD,,,E07000204,St Edmundsbury Borough Council,,,,http://opendatacommunities.org/id/district-council/st-edmundsbury,local-authority:SED,68906,local-authority,SED,E12000006,,,E07000204,https://www.stedmundsbury.gov.uk,Q73072776, -3310,E3332,,,,local-authority,2023-03-31,286,2024-10-10,,NMD,avon-&-somerset,E60000315,E07000188,Sedgemoor District Council,,,,http://opendatacommunities.org/id/district-council/sedgemoor,local-authority:SEG,69746,local-authority,SEG,E12000009,,,E07000188,https://www.sedgemoor.gov.uk,Q73072737,Sedgemoor_District_Council -2735,E2757,,,,local-authority,2023-03-31,287,2024-10-10,,NMD,north-yorkshire,E60000063,E07000169,Selby District Council,,,,http://opendatacommunities.org/id/district-council/selby,local-authority:SEL,69766,local-authority,SEL,E12000003,,,E07000169,https://www.selby.gov.uk,Q73072740, -2245,E2239,,,,local-authority,,288,2024-10-10,,NMD,kent,E60000260,E07000111,Sevenoaks District Council,,,,http://opendatacommunities.org/id/district-council/sevenoaks,local-authority:SEV,69874,local-authority,SEV,E12000008,,,E07000111,https://www.sevenoaks.gov.uk,Q55098936,Sevenoaks_District_Council -,E3520,,,,local-authority,,289,2024-10-10,,CTY,,,E10000029,Suffolk County Council,,,,http://opendatacommunities.org/id/county-council/suffolk,local-authority:SFK,,local-authority,SFK,E12000006,,,E10000029,https://www.suffolk.gov.uk,Q3305205,Suffolk_County_Council -4320,E4304,,LCR,,local-authority,,290,2024-10-10,,MD,merseyside,E60000049,E08000014,Sefton Metropolitan Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/sefton,local-authority:SFT,69756,local-authority,SFT,E12000002,,1905-06-08,E08000014,https://www.sefton.gov.uk,Q7446119,Sefton_Council -119,E0103,,WECA,,local-authority,,291,2024-10-10,,UA,avon-&-somerset,E60000296,E06000025,South Gloucestershire Council,,,,http://opendatacommunities.org/id/unitary-authority/south-gloucestershire,local-authority:SGC,68358,local-authority,SGC,E12000009,,1905-06-18,E06000025,https://www.southglos.gov.uk,Q17020724,South_Gloucestershire_Council -1125,E1136,,,,local-authority,,292,2024-10-10,,NMD,devon-cornwall-&-isle-of-scilly,E60000304,E07000044,South Hams District Council,,,,http://opendatacommunities.org/id/district-council/south-hams,local-authority:SHA,68363,local-authority,SHA,E12000009,,,E07000044,https://www.southhams.gov.uk/,Q23461861,South_Hams_District_Council -2250,E2240,,,,local-authority,,293,2024-10-10,,NMD,kent,E60000257,E07000112,Folkestone and Hythe Council,,,,http://opendatacommunities.org/id/district-council/shepway,local-authority:SHE,,local-authority,SHE,E12000008,,,E07000112,https://www.folkestone-hythe.gov.uk,Q55099243,Folkestone_%26_Hythe_District_Council -4420,E4404,,SYMCA,,local-authority,,294,2024-10-10,,MD,south-yorkshire,E60000067,E08000019,Sheffield City Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/sheffield,local-authority:SHF,69983,local-authority,SHF,E12000003,,1905-06-08,E08000019,https://www.sheffield.gov.uk,Q7492609,Sheffield_City_Council -4315,E4303,,LCR,,local-authority,,295,2024-10-10,,MD,merseyside,E60000050,E08000013,St Helens Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/st-helens,local-authority:SHN,68925,local-authority,SHN,E12000002,,1905-06-08,E08000013,https://www.sthelens.gov.uk,Q17022094,St_Helens_Council -2525,E2535,,,,local-authority,,296,2024-10-10,,NMD,lincolnshire,E60000096,E07000140,South Holland District Council,,,,http://opendatacommunities.org/id/district-council/south-holland,local-authority:SHO,68364,local-authority,SHO,E12000004,,,E07000140,https://www.sholland.gov.uk,Q73072743, -3245,E3202,,,,local-authority,,297,2024-10-10,,UA,west-mercia,E60000114,E06000051,Shropshire Council,,,,http://opendatacommunities.org/id/unitary-authority/shropshire,local-authority:SHR,70144,local-authority,SHR,E12000005,,2009-04-01,E06000051,https://www.shropshire.gov.uk,Q93612,Shropshire_Council -2530,E2536,,,,local-authority,,298,2024-10-10,,NMD,lincolnshire,E60000097,E07000141,South Kesteven District Council,,,,http://opendatacommunities.org/id/district-council/south-kesteven,local-authority:SKE,68371,local-authority,SKE,E12000004,,,E07000141,https://www.southkesteven.gov.uk,Q73072747, -4235,E4207,,GMCA,,local-authority,,299,2024-10-10,,MD,greater-manchester,E60000031,E08000007,Stockport Metropolitan Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/stockport,local-authority:SKP,69323,local-authority,SKP,E12000002,,1905-05-27,E08000007,https://www.stockport.gov.uk,Q7618164,Stockport_Metropolitan_Borough_Council -930,E0936,,,,local-authority,2023-03-31,300,2024-10-10,,NMD,cumbria,E60000024,E07000031,South Lakeland District Council,,,,http://opendatacommunities.org/id/district-council/south-lakeland,local-authority:SLA,68373,local-authority,SLA,E12000002,,,E07000031,https://www.southlakeland.gov.uk,Q73072749, -4230,E4206,,GMCA,,local-authority,,301,2024-10-10,,MD,greater-manchester,E60000030,E08000006,Salford City Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/salford,local-authority:SLF,67435,local-authority,SLF,E12000002,,1905-05-27,E08000006,https://www.salford.gov.uk,Q17020402,Salford_City_Council -350,E0304,,,,local-authority,,302,2024-10-10,,UA,thames-valley,E60000228,E06000039,Slough Borough Council,,,,http://opendatacommunities.org/id/unitary-authority/slough,local-authority:SLG,70343,local-authority,SLG,E12000008,,1998-04-01,E06000039,https://www.slough.gov.uk,Q7541466,Slough_Borough_Council -4525,E4505,,NNECA,,local-authority,,303,2024-10-10,,MD,northumbria,E60000012,E08000024,Sunderland City Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/sunderland,local-authority:SND,82112,local-authority,SND,E12000001,,1905-05-27,E08000024,https://www.sunderland.gov.uk,Q17022675,Sunderland_City_Council -2630,E2637,,,,local-authority,,304,2024-10-10,,NMD,norfolk,E60000182,E07000149,South Norfolk District Council,,,,http://opendatacommunities.org/id/district-council/south-norfolk,local-authority:SNO,69084,local-authority,SNO,E12000006,,,E07000149,https://www.south-norfolk.gov.uk,Q73072752, -2830,E2836,,,,local-authority,2021-03-31,305,2024-10-10,,NMD,northamptonshire,E60000104,E07000155,South Northamptonshire Council,,,,http://opendatacommunities.org/id/district-council/south-northamptonshire,local-authority:SNR,69085,local-authority,SNR,E12000004,,1974-04-01,E07000155,https://www.southnorthants.gov.uk,Q105544722, -4625,E4605,,WMCA,,local-authority,,306,2024-10-10,,MD,west-midlands,E60000134,E08000029,Solihull Metropolitan Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/solihull,local-authority:SOL,68088,local-authority,SOL,E12000005,,1905-05-27,E08000029,https://www.solihull.gov.uk,Q17021590,Solihull_Metropolitan_Borough_Council -,E3320,,,,local-authority,2023-03-31,307,2024-10-10,,CTY,,,E10000027,Somerset County Council,,,,http://opendatacommunities.org/id/county-council/somerset,local-authority:SOM,,local-authority,SOM,E12000009,,,E10000027,https://www.somerset.gov.uk,Q6386270,Somerset_County_Council -1590,E1501,,,,local-authority,,308,2024-10-10,,UA,essex,E60000147,E06000033,Southend-on-Sea Borough Council,,,,http://opendatacommunities.org/id/unitary-authority/southend,local-authority:SOS,70563,local-authority,SOS,E12000006,,1905-06-20,E06000033,https://www.southend.gov.uk,Q7569516,Southend-on-Sea_City_Council -3115,E3133,,,,local-authority,,309,2024-10-10,,NMD,thames-valley,E60000267,E07000179,South Oxfordshire District Council,,,,http://opendatacommunities.org/id/district-council/south-oxfordshire,local-authority:SOX,69089,local-authority,SOX,E12000008,,,E07000179,https://www.southoxon.gov.uk,Q65089301,South_Oxfordshire_District_Council -3635,E3637,,,,local-authority,,310,2024-10-10,,NMD,surrey,E60000276,E07000213,Spelthorne Borough Council,,,,http://opendatacommunities.org/id/district-council/spelthorne,local-authority:SPE,68783,local-authority,SPE,E12000008,,,E07000213,https://www.spelthorne.gov.uk,Q73072774,Spelthorne_Borough_Council -2360,E2342,,,,local-authority,,311,2024-10-10,,NMD,lancashire,E60000044,E07000126,South Ribble Borough Council,,,,http://opendatacommunities.org/id/district-council/south-ribble,local-authority:SRI,69096,local-authority,SRI,E12000002,,,E07000126,https://www.southribble.gov.uk,Q73072755, -,E3620,,,,local-authority,,312,2024-10-10,,CTY,,,E10000030,Surrey County Council,,,,http://opendatacommunities.org/id/county-council/surrey,local-authority:SRY,,local-authority,SRY,E12000008,,,E10000030,https://www.surreycc.gov.uk,Q6386325,Surrey_County_Council -3325,E3334,,,,local-authority,2023-03-31,313,2024-10-10,,NMD,avon-&-somerset,E60000317,E07000189,South Somerset District Council,,,,http://opendatacommunities.org/id/district-council/south-somerset,local-authority:SSO,69105,local-authority,SSO,E12000009,,,E07000189,https://www.southsomerset.gov.uk,Q73072757, -3430,E3435,,,,local-authority,,314,2024-10-10,,NMD,staffordshire,E60000121,E07000196,South Staffordshire Council,,,,http://opendatacommunities.org/id/district-council/south-staffordshire,local-authority:SST,69110,local-authority,SST,E12000005,,,E07000196,https://www.sstaffs.gov.uk,Q73072759, -3425,E3436,,,,local-authority,,315,2024-10-10,,NMD,staffordshire,E60000122,E07000197,Stafford Borough Council,,,,http://opendatacommunities.org/id/district-council/stafford,local-authority:STA,68980,local-authority,STA,E12000005,,,E07000197,https://www.staffordbc.gov.uk,Q73072778, -3455,E3401,,,,local-authority,,316,2024-10-10,,UA,staffordshire,E60000115,E06000021,Stoke-on-Trent City Council,,,,http://opendatacommunities.org/id/unitary-authority/stoke-on-trent,local-authority:STE,69336,local-authority,STE,E12000005,,1905-06-20,E06000021,https://www.stoke.gov.uk,Q17022507,Stoke-on-Trent_City_Council -3435,E3437,,,,local-authority,,317,2024-10-10,,NMD,staffordshire,E60000123,E07000198,Staffordshire Moorlands District Council,,,,http://opendatacommunities.org/id/district-council/staffordshire-moorlands,local-authority:STF,69001,local-authority,STF,E12000005,,,E07000198,https://www.staffsmoorlands.gov.uk,Q73072779, -1780,E1702,,,,local-authority,,318,2024-10-10,,UA,hampshire-&-isle-of-wight,E60000229,E06000045,Southampton City Council,,,,http://opendatacommunities.org/id/unitary-authority/southampton,local-authority:STH,70539,local-authority,STH,E12000008,,1905-06-19,E06000045,https://www.southampton.gov.uk/,Q17021809,Southampton_City_Council -5870,E5048,,,,local-authority,,319,2024-10-10,,LBO,london,E60000219,E09000029,London Borough of Sutton,,,,http://opendatacommunities.org/id/london-borough-council/sutton,local-authority:STN,82284,local-authority,STN,E12000007,,,E09000029,https://www.sutton.gov.uk,Q7650288,Sutton_London_Borough_Council -1625,E1635,,,,local-authority,,320,2024-10-10,,NMD,gloucestershire,E60000312,E07000082,Stroud District Council,,,,http://opendatacommunities.org/id/district-council/stroud,local-authority:STO,81990,local-authority,STO,E12000009,,,E07000082,https://www.stroud.gov.uk,Q28401169,Stroud_District_Council -3720,E3734,,,,local-authority,,321,2024-10-10,,NMD,warwickshire,E60000128,E07000221,Stratford-on-Avon District Council,,,,http://opendatacommunities.org/id/district-council/stratford,local-authority:STR,81948,local-authority,STR,E12000005,,,E07000221,https://www.stratford.gov.uk,Q73072781, -,E3421,,,,local-authority,,322,2024-10-10,,CTY,,,E10000028,Staffordshire County Council,,,,http://opendatacommunities.org/id/county-council/staffordshire,local-authority:STS,,local-authority,STS,E12000005,,,E10000028,https://www.staffordshire.gov.uk,Q6386295,Staffordshire_County_Council -738,E0704,,TVCA,,local-authority,,323,2024-10-10,,UA,cleveland,E60000007,E06000004,Stockton-on-Tees Borough Council,,,,http://opendatacommunities.org/id/unitary-authority/stockton-on-tees,local-authority:STT,69329,local-authority,STT,E12000001,,1905-06-18,E06000004,https://www.stockton.gov.uk,Q17022493,Stockton-on-Tees_Borough_Council -1935,E1937,,,,local-authority,,324,2024-10-10,,NMD,hertfordshire,E60000172,E07000243,Stevenage Borough Council,,,,http://opendatacommunities.org/id/district-council/stevenage,local-authority:STV,69286,local-authority,STV,E12000006,,,E07000243,https://www.stevenage.gov.uk,Q7615422,Stevenage_Borough_Council -4520,E4504,,NNECA,,local-authority,,325,2024-10-10,,MD,northumbria,E60000011,E08000023,South Tyneside Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/south-tyneside,local-authority:STY,69133,local-authority,STY,E12000001,,1974-04-01,E08000023,https://www.southtyneside.info,Q23463529,South_Tyneside_Council -3530,E3536,,,,local-authority,2019-03-31,326,2024-10-10,,NMD,,,E07000205,Suffolk Coastal District Council,,,,http://opendatacommunities.org/id/district-council/suffolk-coastal,local-authority:SUF,82061,local-authority,SUF,E12000006,,,E07000205,https://www.suffolkcoastal.gov.uk,Q73072783, -3640,E3638,,,,local-authority,,327,2024-10-10,,NMD,surrey,E60000277,E07000214,Surrey Heath Borough Council,,,,http://opendatacommunities.org/id/district-council/surrey-heath,local-authority:SUR,82191,local-authority,SUR,E12000008,,,E07000214,https://www.surreyheath.gov.uk,Q73072785, -3935,E3901,,,,local-authority,,328,2024-10-10,,UA,wiltshire-&-swindon,E60000297,E06000030,Swindon Borough Council,,,,http://opendatacommunities.org/id/unitary-authority/swindon,local-authority:SWD,82385,local-authority,SWD,E12000009,,1905-06-20,E06000030,https://www.swindon.gov.uk,Q17040033,Swindon_Borough_Council -5840,E5019,,,,local-authority,,329,2024-10-10,,LBO,london,E60000198,E09000028,London Borough of Southwark,,,,http://opendatacommunities.org/id/london-borough-council/southwark,local-authority:SWK,70632,local-authority,SWK,E12000007,,,E09000028,https://www.southwark.gov.uk,Q7571153,Southwark_London_Borough_Council -2255,E2241,,,,local-authority,,330,2024-10-10,,NMD,kent,E60000261,E07000113,Swale Borough Council,,,,http://opendatacommunities.org/id/district-council/swale,local-authority:SWL,82294,local-authority,SWL,E12000008,,,E07000113,https://www.swale.gov.uk,Q55098937,Swale_Borough_Council -,,,,,local-authority,2023-03-31,331,2024-10-10,,NMD,avon-&-somerset,E60000316,E07000246,Somerset West and Taunton Council,,,,http://opendatacommunities.org/id/district-council/somerset-west-and-taunton,local-authority:SWT,444772,local-authority,SWT,E12000009,,2019-04-01,E07000246,https://www.somersetwestandtaunton.gov.uk,Q60790331,Somerset_West_and_Taunton_Council -4240,E4208,,GMCA,,local-authority,,332,2024-10-10,,MD,greater-manchester,E60000032,E08000008,Tameside Metropolitan Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/tameside,local-authority:TAM,82504,local-authority,TAM,E12000002,,1974-04-01,E08000008,https://www.tameside.gov.uk,Q17041259,Tameside_Metropolitan_Borough_Council -3645,E3639,,,,local-authority,,333,2024-10-10,,NMD,surrey,E60000278,E07000215,Tandridge District Council,,,,http://opendatacommunities.org/id/district-council/tandridge,local-authority:TAN,82515,local-authority,TAN,E12000008,,,E07000215,https://www.tandridge.gov.uk,Q73072790, -3315,E3333,,,,local-authority,2019-03-31,334,2024-10-10,,NMD,,,E07000190,Taunton Deane Borough Council,,,,http://opendatacommunities.org/id/district-council/taunton-deane,local-authority:TAU,82564,local-authority,TAU,E12000009,,,E07000190,https://www.tauntondeane.gov.uk,Q73072791, -3445,E3439,,,,local-authority,,335,2024-10-10,,NMD,staffordshire,E60000124,E07000199,Tamworth Borough Council,,,,http://opendatacommunities.org/id/district-council/tamworth,local-authority:TAW,82511,local-authority,TAW,E12000005,,,E07000199,https://www.tamworth.gov.uk,Q73072788,Tamworth_Borough_Council -1130,E1137,,,,local-authority,,336,2024-10-10,,NMD,devon-cornwall-&-isle-of-scilly,E60000305,E07000045,Teignbridge District Council,,,,http://opendatacommunities.org/id/district-council/teignbridge,local-authority:TEI,83135,local-authority,TEI,E12000009,,,E07000045,https://www.teignbridge.gov.uk,Q73072792, -1560,E1542,,,,local-authority,,337,2024-10-10,,NMD,essex,E60000164,E07000076,Tendring District Council,,,,http://opendatacommunities.org/id/district-council/tendring,local-authority:TEN,83228,local-authority,TEN,E12000006,,,E07000076,https://www.tendringdc.gov.uk,Q73072799, -1760,E1742,,,,local-authority,,338,2024-10-10,,NMD,hampshire-&-isle-of-wight,E60000251,E07000093,Test Valley Borough Council,,,,http://opendatacommunities.org/id/district-council/test-valley,local-authority:TES,83261,local-authority,TES,E12000008,,,E07000093,https://www.testvalley.gov.uk,Q73072801, -1630,E1636,,,,local-authority,,339,2024-10-10,,NMD,gloucestershire,E60000313,E07000083,Tewkesbury Borough Council,,,,http://opendatacommunities.org/id/district-council/tewkesbury,local-authority:TEW,83265,local-authority,TEW,E12000009,,,E07000083,https://tewkesbury.gov.uk,Q27183368,Tewkesbury_Borough_Council -3240,E3201,,,,local-authority,,340,2024-10-10,,UA,west-mercia,E60000116,E06000020,Telford & Wrekin Council,,,,http://opendatacommunities.org/id/unitary-authority/telford-and-wrekin,local-authority:TFW,83204,local-authority,TFW,E12000005,,1905-06-20,E06000020,https://www.telford.gov.uk,Q17059334,Telford_and_Wrekin_Council -2260,E2242,,,,local-authority,,341,2024-10-10,,NMD,kent,E60000262,E07000114,Thanet District Council,,,,http://opendatacommunities.org/id/district-council/thanet,local-authority:THA,83534,local-authority,THA,E12000008,,,E07000114,https://thanet.gov.uk,Q7710261,Thanet_District_Council -1940,E1938,,,,local-authority,,342,2024-10-10,,NMD,hertfordshire,E60000173,E07000102,Three Rivers District Council,,,,http://opendatacommunities.org/id/district-council/three-rivers,local-authority:THE,83632,local-authority,THE,E12000006,,1974-04-01,E07000102,https://www.threerivers.gov.uk,Q7797746,Three_Rivers_District_Council -1595,E1502,,,,local-authority,,343,2024-10-10,,UA,essex,E60000148,E06000034,Thurrock Council,,,,http://opendatacommunities.org/id/unitary-authority/thurrock,local-authority:THR,83638,local-authority,THR,E12000006,,1905-06-20,E06000034,https://www.thurrock.gov.uk,Q1646552,Thurrock_Council -1165,E1102,,,,local-authority,,344,2024-10-10,,UA,devon-cornwall-&-isle-of-scilly,E60000298,E06000027,Torbay Council,,,,http://opendatacommunities.org/id/unitary-authority/torbay,local-authority:TOB,83775,local-authority,TOB,E12000009,,1905-06-20,E06000027,https://www.torbay.gov.uk,Q17034697,Torbay_Council -2265,E2243,,,,local-authority,,345,2024-10-10,,NMD,kent,E60000263,E07000115,Tonbridge and Malling Borough Council,,,,http://opendatacommunities.org/id/district-council/tonbridge-and-malling,local-authority:TON,83760,local-authority,TON,E12000008,,,E07000115,https://www.tmbc.gov.uk,Q16901812,Tonbridge_and_Malling_Borough_Council -1145,E1139,,,,local-authority,,346,2024-10-10,,NMD,devon-cornwall-&-isle-of-scilly,E60000306,E07000046,Torridge District Council,,,,http://opendatacommunities.org/id/district-council/torridge,local-authority:TOR,83788,local-authority,TOR,E12000009,,,E07000046,https://www.torridge.gov.uk,Q73072804, -4245,E4209,,GMCA,,local-authority,,347,2024-10-10,,MD,greater-manchester,E60000033,E08000009,Trafford Metropolitan Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/trafford,local-authority:TRF,83935,local-authority,TRF,E12000002,,1974-04-01,E08000009,https://www.trafford.gov.uk,Q17034839,Trafford_Council -2270,E2244,,,,local-authority,,348,2024-10-10,,NMD,kent,E60000264,E07000116,Tunbridge Wells Borough Council,,,,http://opendatacommunities.org/id/district-council/tunbridge-wells,local-authority:TUN,84256,local-authority,TUN,E12000008,,,E07000116,https://www.tunbridgewells.gov.uk,Q55098930,Tunbridge_Wells_Borough_Council -,,,,,local-authority,,349,2024-10-10,,COMB,,,E47000006,Tees Valley Combined Authority,,,,,local-authority:TVCA,428826,local-authority,TVCA,E12000001,,2014-04-01,E47000006,https://teesvalley-ca.gov.uk,Q21061639,Tees_Valley_Combined_Authority -5900,E5020,,,,local-authority,,350,2024-10-10,,LBO,london,E60000199,E09000030,London Borough of Tower Hamlets,,,,http://opendatacommunities.org/id/london-borough-council/tower-hamlets,local-authority:TWH,83840,local-authority,TWH,E12000007,,,E09000030,https://www.towerhamlets.gov.uk,Q7829677,Tower_Hamlets_London_Borough_Council -1570,E1544,,,,local-authority,,351,2024-10-10,,NMD,essex,E60000165,E07000077,Uttlesford District Council,,,,http://opendatacommunities.org/id/district-council/uttlesford,local-authority:UTT,85475,local-authority,UTT,E12000006,,,E07000077,https://www.uttlesford.gov.uk,Q73072805, -3120,E3134,,,,local-authority,,352,2024-10-10,,NMD,thames-valley,E60000268,E07000180,Vale of White Horse District Council,,,,http://opendatacommunities.org/id/district-council/vale-of-white-horse,local-authority:VAL,85495,local-authority,VAL,E12000008,,,E07000180,https://www.whitehorsedc.gov.uk,Q65090041,Vale_of_White_Horse_District_Council -3650,E3640,,,,local-authority,,353,2024-10-10,,NMD,surrey,E60000279,E07000216,Waverley Borough Council,,,,http://opendatacommunities.org/id/district-council/waverley,local-authority:WAE,87043,local-authority,WAE,E12000008,,,E07000216,https://www.waverley.gov.uk/,Q73072816,Waverley_Borough_Council -,E3720,,,,local-authority,,354,2024-10-10,,CTY,,,E10000031,Warwickshire County Council,,,,http://opendatacommunities.org/id/county-council/warwickshire,local-authority:WAR,,local-authority,WAR,E12000005,,,E10000031,https://www.warwickshire.gov.uk,Q17066348,Warwickshire_County_Council -1945,E1939,,,,local-authority,,355,2024-10-10,,NMD,hertfordshire,E60000174,E07000103,Watford Borough Council,,,,http://opendatacommunities.org/id/district-council/watford,local-authority:WAT,87027,local-authority,WAT,E12000006,,,E07000103,https://www.watford.gov.uk,Q7974596,Watford_Borough_Council -3535,E3537,,,,local-authority,2019-03-31,356,2024-10-10,,NMD,,E60000279,E07000206,Waveney District Council,,,,http://opendatacommunities.org/id/district-council/waveney,local-authority:WAV,87040,local-authority,WAV,E12000006,,,E07000206,https://www.waveney.gov.uk,Q73072811, -3725,E3735,,,,local-authority,,357,2024-10-10,,NMD,warwickshire,E60000129,E07000222,Warwick District Council,,,,http://opendatacommunities.org/id/district-council/warwick,local-authority:WAW,86093,local-authority,WAW,E12000005,,,E07000222,https://www.warwickdc.gov.uk,Q73072810, -340,E0302,,,,local-authority,,358,2024-10-10,,UA,thames-valley,E60000230,E06000037,West Berkshire Council,,,,http://opendatacommunities.org/id/unitary-authority/west-berkshire,local-authority:WBK,94368,local-authority,WBK,E12000008,,1905-06-20,E06000037,https://www.westberks.gov.uk,Q17041496,West_Berkshire_Council -1150,E1140,,,,local-authority,,359,2024-10-10,,NMD,devon-cornwall-&-isle-of-scilly,E60000307,E07000047,West Devon Borough Council,,,,http://opendatacommunities.org/id/district-council/west-devon,local-authority:WDE,94385,local-authority,WDE,E12000009,,,E07000047,https://www.westdevon.gov.uk,Q73072823, -1230,E1237,,,,local-authority,2019-03-31,360,2024-10-10,,NMD,,,E07000052,West Dorset District Council,,,,http://opendatacommunities.org/id/district-council/west-dorset,local-authority:WDO,94388,local-authority,WDO,E12000009,,,E07000052,https://www.dorsetforyou.com,Q73072826, -1435,E1437,,,,local-authority,,361,2024-10-10,,NMD,sussex,E60000241,E07000065,Wealden District Council,,,,http://opendatacommunities.org/id/district-council/wealden,local-authority:WEA,87054,local-authority,WEA,E12000008,,,E07000065,https://www.wealden.gov.uk,Q73072817, -,,,,,local-authority,,362,2024-10-10,,COMB,,,E47000009,West of England Combined Authority,,,,,local-authority:WECA,433447,local-authority,WECA,E12000005,,2017-02-09,E47000009,https://www.westofengland-ca.gov.uk,Q24993670,West_of_England_Combined_Authority -2835,E2837,,,,local-authority,2021-03-31,363,2024-10-10,,NMD,northamptonshire,,E07000156,Wellingborough Borough Council,,,,http://opendatacommunities.org/id/district-council/wellingborough,local-authority:WEL,87107,local-authority,WEL,E12000004,,1974-04-01,E07000156,https://www.wellingborough.gov.uk,Q73072820, -1950,E1940,,,,local-authority,,364,2024-10-10,,NMD,hertfordshire,E60000175,E07000241,Welwyn Hatfield Borough Council,,,,http://opendatacommunities.org/id/district-council/welwyn-hatfield,local-authority:WEW,94325,local-authority,WEW,E12000006,,,E07000241,https://www.welhat.gov.uk,Q7982137,Welwyn_Hatfield_Borough_Council -1235,E1238,,,,local-authority,2019-03-31,365,2024-10-10,,NMD,,,E07000053,Weymouth and Portland Borough Council,,,,http://opendatacommunities.org/id/district-council/weymouth-and-portland,local-authority:WEY,94732,local-authority,WEY,E12000009,,,E07000053,https://www.dorsetforyou.com,Q73072840, -5930,E5049,,,,local-authority,,366,2024-10-10,,LBO,london,E60000220,E09000031,London Borough of Waltham Forest,,,,http://opendatacommunities.org/id/london-borough-council/waltham-forest,local-authority:WFT,86024,local-authority,WFT,E12000007,,,E09000031,https://www.walthamforest.gov.uk/,Q7966606,Waltham_Forest_London_Borough_Council -4250,E4210,,GMCA,,local-authority,,367,2024-10-10,,MD,greater-manchester,E60000034,E08000010,Wigan Metropolitan Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/wigan,local-authority:WGN,94803,local-authority,WGN,E12000002,,1974-04-01,E08000010,https://www.wigan.gov.uk,Q7999507,Wigan_Metropolitan_Borough_Council -3940,E3902,,,,local-authority,,368,2024-10-10,,UA,wiltshire-&-swindon,E60000299,E06000054,Wiltshire Council,,,,http://opendatacommunities.org/id/unitary-authority/wiltshire,local-authority:WIL,86185,local-authority,WIL,E12000009,,2009-04-01,E06000054,https://wiltshire.gov.uk,Q1990879,Wiltshire_Council -1765,E1743,,,,local-authority,,369,2024-10-10,,NMD,hampshire-&-isle-of-wight,E60000252,E07000094,Winchester City Council,,,,http://opendatacommunities.org/id/district-council/winchester,local-authority:WIN,86201,local-authority,WIN,E12000008,,,E07000094,https://www.winchester.gov.uk,Q73072843, -4725,E4705,,WYCA,,local-authority,,370,2024-10-10,,MD,west-yorkshire,E60000072,E08000036,Wakefield Metropolitan District Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/wakefield,local-authority:WKF,85898,local-authority,WKF,E12000003,,1974-04-01,E08000036,https://www.wakefield.gov.uk,Q7961061,Wakefield_Council -2365,E2343,,,,local-authority,,371,2024-10-10,,NMD,lancashire,E60000045,E07000127,West Lancashire Borough Council,,,,http://opendatacommunities.org/id/district-council/west-lancashire,local-authority:WLA,94446,local-authority,WLA,E12000002,,,E07000127,https://www.westlancs.gov.uk,Q73072828, -2535,E2537,,,,local-authority,,372,2024-10-10,,NMD,lincolnshire,E60000098,E07000142,West Lindsey District Council,,,,http://opendatacommunities.org/id/district-council/west-lindsey,local-authority:WLI,94451,local-authority,WLI,E12000004,,,E07000142,https://www.west-lindsey.gov.uk,Q73072831, -4630,E4606,,WMCA,,local-authority,,373,2024-10-10,,MD,west-midlands,E60000135,E08000030,Walsall Metropolitan Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/walsall,local-authority:WLL,86014,local-authority,WLL,E12000005,,1974-04-01,E08000030,https://www.walsall.gov.uk,Q7963789,Walsall_Council -4635,E4607,,WMCA,,local-authority,,374,2024-10-10,,MD,west-midlands,E60000136,E08000031,City of Wolverhampton Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/wolverhampton,local-authority:WLV,86288,local-authority,WLV,E12000005,,1974-04-01,E08000031,https://www.wolverhampton.gov.uk,Q8030462,City_of_Wolverhampton_Council -,,,,,local-authority,,375,2024-10-10,,COMB,,,E47000007,West Midlands Combined Authority,,,,,local-authority:WMCA,420895,local-authority,WMCA,E12000005,,2016-06-17,E47000007,https://www.wmca.org.uk,Q21061625,West_Midlands_Combined_Authority -5960,E5021,,,,local-authority,,376,2024-10-10,,LBO,london,E60000200,E09000032,London Borough of Wandsworth,,,,http://opendatacommunities.org/id/london-borough-council/wandsworth,local-authority:WND,86038,local-authority,WND,E12000007,,,E09000032,https://www.wandsworth.gov.uk,Q7967311,Wandsworth_London_Borough_Council -355,E0305,,,,local-authority,,377,2024-10-10,,UA,thames-valley,E60000231,E06000040,Royal Borough of Windsor and Maidenhead,,,,http://opendatacommunities.org/id/unitary-authority/windsor-and-maidenhead,local-authority:WNM,41858,local-authority,WNM,E12000008,,1905-06-20,E06000040,https://www.rbwm.gov.uk/,Q17038560,Windsor_and_Maidenhead_Borough_Council -1835,E1837,,,,local-authority,,378,2024-10-10,,NMD,west-mercia,E60000140,E07000237,Worcester City Council,,,,http://opendatacommunities.org/id/district-council/worcester,local-authority:WOC,86420,local-authority,WOC,E12000005,,,E07000237,https://www.worcester.gov.uk,Q73072848, -3655,E3641,,,,local-authority,,379,2024-10-10,,NMD,surrey,E60000280,E07000217,Woking Borough Council,,,,http://opendatacommunities.org/id/district-council/woking,local-authority:WOI,86275,local-authority,WOI,E12000008,,,E07000217,https://www.woking.gov.uk,Q73072846,Woking_Borough_Council -360,E0306,,,,local-authority,,380,2024-10-10,,UA,thames-valley,E60000232,E06000041,Wokingham Borough Council,,,,http://opendatacommunities.org/id/unitary-authority/wokingham,local-authority:WOK,86278,local-authority,WOK,E12000008,,1905-06-20,E06000041,https://www.wokingham.gov.uk,Q17039435,Wokingham_Borough_Council -,E1821,,,,local-authority,,381,2024-10-10,,CTY,,,E10000034,Worcestershire County Council,,,,http://opendatacommunities.org/id/county-council/worcestershire,local-authority:WOR,,local-authority,WOR,E12000005,,,E10000034,https://www.worcestershire.gov.uk,Q8034245,Worcestershire_County_Council -3835,E3837,,,,local-authority,,382,2024-10-10,,NMD,sussex,E60000287,E07000229,Worthing Borough Council,,,,http://opendatacommunities.org/id/district-council/worthing,local-authority:WOT,86609,local-authority,WOT,E12000008,,1905-06-25,E07000229,https://www.adur-worthing.gov.uk,Q55098923,Worthing_Borough_Council -3125,E3135,,,,local-authority,,383,2024-10-10,,NMD,thames-valley,E60000269,E07000181,West Oxfordshire District Council,,,,http://opendatacommunities.org/id/district-council/west-oxfordshire,local-authority:WOX,94543,local-authority,WOX,E12000008,,,E07000181,https://www.westoxon.gov.uk,Q73072833, -4325,E4305,,LCR,,local-authority,,384,2024-10-10,,MD,merseyside,E60000051,E08000015,Wirral Borough Council,,,,http://opendatacommunities.org/id/metropolitan-district-council/wirral,local-authority:WRL,86247,local-authority,WRL,E12000002,,1974-04-01,E08000015,https://www.wirral.gov.uk,Q17038877,Wirral_Council -655,E0602,,,,local-authority,,385,2024-10-10,,UA,cheshire,E60000018,E06000007,Warrington Borough Council,,,,http://opendatacommunities.org/id/unitary-authority/warrington,local-authority:WRT,86081,local-authority,WRT,E12000002,,1905-06-20,E06000007,https://www.warrington.gov.uk,Q17033474,Warrington_Borough_Council -,,,,,local-authority,,386,2024-10-10,,NMD,suffolk,E60000187,E07000245,West Suffolk Council,,,,http://opendatacommunities.org/id/district-council/west-suffolk,local-authority:WSK,444761,local-authority,WSK,E12000006,,2019-04-01,E07000245,https://www.westsuffolk.gov.uk,Q73072837,West_Suffolk_Council -5990,E5022,,,,local-authority,,387,2024-10-10,,LBO,london,E60000201,E09000033,City of Westminster,,,,http://opendatacommunities.org/id/london-borough-council/westminster,local-authority:WSM,94689,local-authority,WSM,E12000007,,,E09000033,https://www.westminster.gov.uk,Q7989145,Westminster_City_Council -3320,E3335,,,,local-authority,2019-03-31,388,2024-10-10,,NMD,,,E07000191,West Somerset District Council,,,,http://opendatacommunities.org/id/district-council/west-somerset,local-authority:WSO,94548,local-authority,WSO,E12000009,,,E07000191,https://www.westsomersetonline.gov.uk,Q73072834, -,E3820,,,,local-authority,,389,2024-10-10,,CTY,,,E10000032,West Sussex County Council,,,,http://opendatacommunities.org/id/county-council/west-sussex,local-authority:WSX,,local-authority,WSX,E12000008,,,E10000032,https://www.westsussex.gov.uk,Q6386353,West_Sussex_County_Council -1840,E1838,,,,local-authority,,390,2024-10-10,,NMD,west-mercia,E60000141,E07000238,Wychavon District Council,,,,http://opendatacommunities.org/id/district-council/wychavon,local-authority:WYC,86662,local-authority,WYC,E12000005,,,E07000238,https://www.wychavon.gov.uk,Q73072850, -,,,,,local-authority,,391,2024-10-10,,COMB,,,E47000003,West Yorkshire Combined Authority,,,,,local-authority:WYCA,401709,local-authority,WYCA,E12000003,,2014-04-01,E47000003,https://www.westyorks-ca.gov.uk/,Q17035952,West_Yorkshire_Combined_Authority -1845,E1839,,,,local-authority,,392,2024-10-10,,NMD,west-mercia,E60000142,E07000239,Wyre Forest District Council,,,,http://opendatacommunities.org/id/district-council/wyre-forest,local-authority:WYE,86677,local-authority,WYE,E12000005,,,E07000239,https://www.wyreforestdc.gov.uk,Q73072859,Wyre_Forest_District_Council -425,E0435,,,,local-authority,2020-03-31,393,2024-10-10,,NMD,thames-valley,E60000236,E07000007,Wycombe District Council,,,,http://opendatacommunities.org/id/district-council/wycombe,local-authority:WYO,86663,local-authority,WYO,E12000008,,,E07000007,https://www.wycombe.gov.uk,Q65088676,Wycombe_District_Council -2370,E2344,,,,local-authority,,394,2024-10-10,,NMD,lancashire,E60000046,E07000128,Wyre Borough Council,,,,http://opendatacommunities.org/id/district-council/wyre,local-authority:WYR,86676,local-authority,WYR,E12000002,,,E07000128,https://www.wyre.gov.uk,Q73072856, -2741,E2701,,YNYCA,,local-authority,,395,2024-10-10,,UA,north-yorkshire,E60000056,E06000014,City of York Council,,,,http://opendatacommunities.org/id/unitary-authority/york,local-authority:YOR,20574,local-authority,YOR,E12000003,,1905-06-18,E06000014,https://www.york.gov.uk,Q17059453,City_of_York_Council -,,,,,local-authority,,10000,2024-10-10,,UA,,E60000334,E06000063,Cumberland Unitary Authority,,,,,local-authority:CUA,,local-authority,CUA,E12000002,,2023-04-01,E06000063,https://www.cumberland.gov.uk/,Q112160997, -,,,,,local-authority,,10001,2024-10-10,,UA,,E60000335,E06000064,Westmorland and Furness Council,,,,,local-authority:WFUA,,local-authority,WFUA,E12000002,,2023-04-01,E06000064,https://www.westmorlandandfurness.gov.uk/,Q111962803,Westmorland_and_Furness_Council -,,,,,local-authority,,10003,2024-10-10,,UA,,E60000337,E06000066,Somerset Council,,,,,local-authority:SUA,,local-authority,SUA,E12000009,,2023-04-01,E06000066,https://www.somerset.gov.uk/,Q110682463, -,,,YNYCA,,local-authority,,10004,2024-10-10,,UA,,E60000336,E06000065,North Yorkshire Council,,,,,local-authority:NYUA,,local-authority,NYUA,E12000003,,2023-04-01,E06000065,https://www.northyorks.gov.uk/,Q107980431, -,,,,,local-authority,,10005,2024-10-10,,COMB,,,E47000012,York and North Yorkshire Combined Authority,,,,,local-authority:YNYCA,549922,local-authority,YNYCA,E12000003,,2024-02-01,E47000012,https://yorknorthyorks-ca.gov.uk/,Q123082103,York_and_North_Yorkshire_Combined_Authority -,,,,,local-authority,,10006,2024-10-10,,COMB,,,E47000014,North East Combined Authority,,,,,local-authority:NNECA,527515,local-authority,NNECA,E12000001,,2024-05-07,E47000014,https://www.northeast-ca.gov.uk/,Q116179003,North_East_Combined_Authority -,,,,,local-authority,,10007,2024-10-10,,COMB,,,E47000013,East Midlands Combined County Authority,,,,,local-authority:EMCCA,524490,local-authority,EMCCA,E12000004,,2024-02-28,E47000013,https://www.eastmidlands-cca.gov.uk/,Q121568187,East_Midlands_Combined_County_Authority -,,,,,local-authority,,501908,2024-10-10,,UA,,E60000332,E06000061,North Northamtonshire Council,,,,,local-authority:NNUA,,local-authority,NNUA,E12000004,,2020-04-01,E06000061,https://www.northnorthants.gov.uk/,Q111232446, -,,,,,local-authority,,501909,2024-10-10,,UA,,E60000333,E06000062,West Northamtonshire Council,,,,,local-authority:WNUA,493012,local-authority,WNUA,E12000004,,2020-04-01,E06000062,https://www.westnorthants.gov.uk/,Q111232469,West_Northamptonshire -,E6410,,,,national-park-authority,,396,2024-06-26,,,,E60000325,,South Downs National Park Authority,E26000010,,,http://opendatacommunities.org/id/national-park-authority/south-downs,national-park-authority:Q20198711,68260,wikidata,Q20198711,,,,E26000010,https://www.southdowns.gov.uk,Q20198711, -,E6403,,,,national-park-authority,,397,2024-06-26,,,,E60000320,,Lake District National Park Authority,E26000003,,,http://opendatacommunities.org/id/national-park-authority/lake-district,national-park-authority:Q27159704,42263,wikidata,Q27159704,,,,E26000003,https://www.lakedistrict.gov.uk,Q27159704, -,E6407,,,,national-park-authority,,398,2024-06-26,,,,E60000327,,Yorkshire Dales National Park Authority,E26000008,,,http://opendatacommunities.org/id/national-park-authority/yorkshire-dales,national-park-authority:Q27178932,86781,wikidata,Q27178932,,,,E26000008,https://www.yorkshiredales.org.uk,Q27178932, -,E6408,,,,national-park-authority,,399,2024-06-26,,,,E60000326,,Broads Authority,E26000007,,,http://opendatacommunities.org/id/national-park-authority/the-broads,national-park-authority:Q4972284,16547,wikidata,Q4972284,,,1978-01-01,E26000007,http://www.broads-authority.gov.uk/broads-authority,Q4972284,Broads_Authority -,E6401,,,,national-park-authority,,400,2024-06-26,,,,E60000318,,Dartmoor National Park Authority,E26000001,,,http://opendatacommunities.org/id/national-park-authority/dartmoor,national-park-authority:Q5225646,28306,wikidata,Q5225646,,,,E26000001,https://www.dartmoor.gov.uk,Q5225646,Dartmoor_National_Park_Authority -,E6409,,,,national-park-authority,,401,2024-06-26,,,,E60000321,,New Forest National Park Authority,E26000009,,,http://opendatacommunities.org/id/national-park-authority/new-forest,national-park-authority:Q72617158,58466,wikidata,Q72617158,,,,E26000009,https://www.newforestnpa.gov.uk,Q72617158, -,E6404,,,,national-park-authority,,402,2024-06-26,,,,E60000322,,North York Moors National Park Authority,E26000005,,,http://opendatacommunities.org/id/national-park-authority/north-york-moors,national-park-authority:Q72617669,59402,wikidata,Q72617669,,,,E26000005,https://www.northyorkmoors.org.uk,Q72617669, -,E6402,,,,national-park-authority,,403,2024-06-26,,,,E60000319,,Exmoor National Park Authority,E26000002,,,http://opendatacommunities.org/id/national-park-authority/exmoor,national-park-authority:Q72617784,33701,wikidata,Q72617784,,,,E26000002,https://www.exmoor-nationalpark.gov.uk,Q72617784, -,E6405,,,,national-park-authority,,404,2024-06-26,,,,E60000323,,Northumberland National Park Authority,E26000004,,,http://opendatacommunities.org/id/national-park-authority/northumberland,national-park-authority:Q72617890,59862,wikidata,Q72617890,,,,E26000004,https://www.northumberlandnationalpark.org.uk,Q72617890, -,E6406,,,,national-park-authority,,405,2024-06-26,,,,E60000324,,Peak District National Park Authority,E26000006,,,http://opendatacommunities.org/id/national-park-authority/peak-district,national-park-authority:Q72617988,61261,wikidata,Q72617988,,,,E26000006,https://www.peakdistrict.gov.uk,Q72617988, -,,,,,nonprofit,,600008,2024-06-26,,,,,,Wikimedia Foundation,,,,,nonprofit:Q180,,wikidata,Q180,,,2003-06-20,,https://wikimediafoundation.org/,Q180,Wikimedia_Foundation -,,,,OC359627,public-authority,,406,2024-06-26,,,,,,GeoPlace,,,,,public-authority:Q5533909,,wikidata,Q5533909,,,,,https://www.geoplace.co.uk/,Q5533909,GeoPlace -,,,,,passenger-transport-executive,2016-06-17,408,2024-06-26,,,,,,West Midlands Passenger Transport Executive,,,,,passenger-transport-executive:Q25171369,94501,wikidata,Q25171369,,,1969-10-01,,,Q25171369,West_Midlands_Passenger_Transport_Executive -,,,,,passenger-transport-executive,,409,2024-06-26,,,,,,Merseytravel,,,,,passenger-transport-executive:Q6820591,,wikidata,Q6820591,,,1969-12-01,,http://www.merseytravel.gov.uk,Q6820591,Merseytravel -,,,,,passenger-transport-executive,,410,2024-06-26,,,,,,Transport for London,,,,,passenger-transport-executive:Q682520,84027,wikidata,Q682520,,,2000-07-03,,https://tfl.gov.uk/,Q682520,Transport_for_London -,,,,,passenger-transport-executive,,411,2024-06-26,,,,,,South Yorkshire Passenger Transport Executive,,,,,passenger-transport-executive:Q7569004,68146,wikidata,Q7569004,,,1974-01-01,,http://www.sypte.co.uk/,Q7569004,South_Yorkshire_Passenger_Transport_Executive -,,,,,passenger-transport-executive,,412,2024-06-26,,,,,,Transport for Greater Manchester,,,,,passenger-transport-executive:Q7834921,402762,wikidata,Q7834921,,,2011-04-01,,http://www.tfgm.com/,Q7834921,Transport_for_Greater_Manchester -,,,,,passenger-transport-executive,,413,2024-06-26,,,,,,Tyne and Wear Passenger Transport Executive,,,,,passenger-transport-executive:Q7860508,84349,wikidata,Q7860508,,,1974-04-01,,http://www.nexus.org.uk,Q7860508,Tyne_and_Wear_Passenger_Transport_Executive -,,,,,passenger-transport-executive,,414,2024-06-26,,,,,,Transport for West Midlands,,,,,passenger-transport-executive:Q7985947,,wikidata,Q7985947,,,1969-10-01,,https://www.tfwm.org.uk/,Q7985947,Transport_for_West_Midlands -,,,,,passenger-transport-executive,2014-04-01,415,2024-06-26,,,,,,West Yorkshire Passenger Transport Executive,,,,,passenger-transport-executive:Q7987043,94597,wikidata,Q7987043,,,1974-01-01,,http://www.wymetro.com/,Q7987043,West_Yorkshire_Metro -,,,,,passenger-transport-executive,2011-04-01,15300000,2024-06-26,,,,,,Greater Manchester Passenger Transport Executive,,,,,passenger-transport-executive:Q54817549,37053,wikidata,Q54817549,,,1974-04-01,,,Q54817549,Greater_Manchester_Passenger_Transport_Executive -,E6803,,,,regional-park-authority,,407,2024-06-26,,,,,,Lee Valley Regional Park Authority,,,,http://opendatacommunities.org/id/regional-park-authority/lee-valley,regional-park-authority:Q6515400,42590,wikidata,Q6515400,,,,,https://www.leevalleypark.org.uk/,Q6515400,Lee_Valley_Regional_Park_Authority -,E6201,,,,waste-authority,,416,2024-06-26,,,,,,East London Waste Authority,,,,http://opendatacommunities.org/id/waste-authority/east-london,waste-authority:Q20711950,,wikidata,Q20711950,,,1986-01-01,,http://www.recycleforyourcommunity.com,Q20711950,East_London_Waste_Authority -,E6205,,,,waste-authority,,417,2024-06-26,,,,,,North London Waste Authority,,,,http://opendatacommunities.org/id/waste-authority/north-london,waste-authority:Q20713477,59193,wikidata,Q20713477,,,1986-01-01,,http://nlwa.gov.uk/,Q20713477,North_London_Waste_Authority -,E6207,,,,waste-authority,,418,2024-06-26,,,,,,West London Waste Authority,,,,http://opendatacommunities.org/id/waste-authority/west-london,waste-authority:Q21921612,,wikidata,Q21921612,,,1986-01-01,,http://westlondonwaste.gov.uk,Q21921612,West_London_Waste_Authority -,E6206,,,,waste-authority,,419,2024-06-26,,,,,,Western Riverside Waste Authority,,,,http://opendatacommunities.org/id/waste-authority/western-riverside,waste-authority:Q21935501,,wikidata,Q21935501,,,,,http://www.wrwa.gov.uk/,Q21935501, -,E6202,,,,waste-authority,2018-04-01,420,2024-06-26,,,,,,Greater Manchester Waste Disposal Authority,,,,http://opendatacommunities.org/id/waste-authority/greater-manchester,waste-authority:Q5600652,37067,wikidata,Q5600652,,,1986-01-01,,http://www.gmwda.gov.uk/,Q5600652,Greater_Manchester_Waste_Disposal_Authority diff --git a/tests/data/conservation-area/transformed/conservation-area/7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb.csv b/tests/data/conservation-area/transformed/conservation-area/7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb.csv deleted file mode 100644 index 64997350..00000000 --- a/tests/data/conservation-area/transformed/conservation-area/7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb.csv +++ /dev/null @@ -1,154 +0,0 @@ -end-date,entity,entry-date,entry-number,fact,field,priority,reference-entity,resource,start-date,value -,44005175,2007-03-06,1,8872945ca0510260c6712bf33ea14404a9c8b23f9e1b1fa0307126af29b25820,document-url,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,https://www.northlincs.gov.uk/planning-and-environment/historic-environment-record/ -,44005175,2007-03-06,1,e08d2ba1205c4c5b2b4073d7df339373d2e22989fa7ab8498f84b6d013959b17,end-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,, -,44005175,2007-03-06,1,4a16827d1209f4e39f894387e9b1e2ebe4c87cc1e45f9e5cf88cce47d6aa24ef,entry-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,2007-03-06 -,44005175,2007-03-06,1,dee0f8139b7fef8803f58819e688b18be7b9d0f76c9c4c8e373e0dbe02898a90,geometry,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,"MULTIPOLYGON (((-0.659715 53.688288,-0.660611 53.688640,-0.660868 53.688419,-0.660901 53.688375,-0.660974 53.688324,-0.661596 53.687780,-0.662106 53.687347,-0.662455 53.687459,-0.663662 53.687924,-0.663938 53.688072,-0.664006 53.688139,-0.664548 53.688394,-0.665611 53.687836,-0.665265 53.687686,-0.665542 53.687180,-0.665484 53.686720,-0.665707 53.686746,-0.665841 53.686642,-0.666135 53.686769,-0.666240 53.686669,-0.666324 53.686602,-0.666413 53.686613,-0.666540 53.686615,-0.666623 53.686607,-0.666871 53.686527,-0.666980 53.686440,-0.667027 53.686392,-0.667437 53.686072,-0.667626 53.685904,-0.667838 53.685741,-0.667853 53.685750,-0.668041 53.685610,-0.668141 53.685524,-0.668214 53.685449,-0.668262 53.685376,-0.668421 53.685184,-0.668913 53.684863,-0.669708 53.684374,-0.670043 53.684146,-0.670187 53.684033,-0.670284 53.683980,-0.670543 53.683866,-0.670755 53.683718,-0.671155 53.683378,-0.671363 53.683191,-0.671419 53.683131,-0.671611 53.682885,-0.671968 53.682498,-0.672117 53.682369,-0.672266 53.682265,-0.672422 53.682339,-0.672789 53.682490,-0.673135 53.682657,-0.674043 53.681963,-0.674296 53.681790,-0.674538 53.681648,-0.675134 53.681198,-0.675575 53.680797,-0.676533 53.680342,-0.676779 53.680181,-0.676842 53.680114,-0.676865 53.680032,-0.676840 53.679935,-0.676564 53.679587,-0.676538 53.679568,-0.676516 53.679530,-0.676920 53.679264,-0.677001 53.679220,-0.677222 53.679037,-0.677449 53.678879,-0.678170 53.678033,-0.678500 53.678132,-0.678609 53.678146,-0.678944 53.678124,-0.679220 53.678148,-0.679310 53.678139,-0.679390 53.678112,-0.679519 53.678000,-0.679555 53.677950,-0.679799 53.677678,-0.680274 53.677180,-0.680349 53.677025,-0.680395 53.676968,-0.679945 53.676832,-0.680032 53.676774,-0.679404 53.676580,-0.679812 53.676117,-0.679717 53.676096,-0.679563 53.676017,-0.679331 53.675928,-0.679021 53.675837,-0.678979 53.675807,-0.678989 53.675798,-0.678909 53.675761,-0.678870 53.675804,-0.678841 53.675876,-0.678825 53.675972,-0.678790 53.676085,-0.678770 53.676125,-0.678710 53.676169,-0.678655 53.676191,-0.678514 53.676205,-0.678371 53.676191,-0.678266 53.676165,-0.677418 53.675920,-0.677275 53.675897,-0.676745 53.675787,-0.676290 53.675681,-0.675742 53.675575,-0.675271 53.675508,-0.673962 53.675436,-0.673925 53.675388,-0.673953 53.675292,-0.673969 53.675181,-0.673954 53.674840,-0.674032 53.674423,-0.674022 53.674382,-0.673995 53.674331,-0.673996 53.674297,-0.674055 53.674060,-0.674838 53.674026,-0.674853 53.673959,-0.674861 53.673862,-0.674863 53.673617,-0.673530 53.673719,-0.672931 53.673791,-0.672803 53.673816,-0.672833 53.674006,-0.672870 53.674648,-0.672871 53.674727,-0.672863 53.674760,-0.672886 53.674867,-0.672220 53.674966,-0.672292 53.675155,-0.672476 53.675709,-0.672524 53.675713,-0.672422 53.675819,-0.672355 53.675938,-0.672319 53.676028,-0.672252 53.676336,-0.672229 53.676520,-0.672200 53.676675,-0.672135 53.676881,-0.671998 53.677146,-0.671793 53.677475,-0.671214 53.677412,-0.671107 53.677694,-0.670964 53.677676,-0.670728 53.677601,-0.670644 53.676999,-0.670181 53.677035,-0.670260 53.677151,-0.670289 53.677223,-0.669356 53.677361,-0.669531 53.677778,-0.669541 53.677841,-0.669566 53.677894,-0.669652 53.678200,-0.669665 53.678314,-0.669855 53.678459,-0.669793 53.678597,-0.669575 53.679313,-0.669459 53.679607,-0.669401 53.679720,-0.669192 53.680041,-0.668730 53.680717,-0.668175 53.681448,-0.668118 53.681439,-0.667949 53.681633,-0.667866 53.681699,-0.667811 53.681729,-0.667765 53.681732,-0.667731 53.681747,-0.667734 53.681766,-0.667675 53.681795,-0.667625 53.681799,-0.667599 53.681814,-0.667600 53.681839,-0.667481 53.681917,-0.667368 53.682027,-0.667242 53.682132,-0.667225 53.682127,-0.667091 53.682241,-0.667101 53.682247,-0.666928 53.682396,-0.666913 53.682391,-0.666887 53.682407,-0.666901 53.682415,-0.666730 53.682564,-0.666718 53.682562,-0.666681 53.682594,-0.666685 53.682600,-0.666519 53.682743,-0.666501 53.682738,-0.666479 53.682752,-0.666495 53.682764,-0.666225 53.683049,-0.666164 53.683068,-0.666112 53.683069,-0.665826 53.683029,-0.665797 53.683109,-0.665763 53.683248,-0.665750 53.683345,-0.665322 53.683270,-0.665238 53.683421,-0.665232 53.683459,-0.665109 53.683640,-0.665024 53.683787,-0.665040 53.683791,-0.664988 53.683864,-0.664929 53.683979,-0.664708 53.684187,-0.664671 53.684203,-0.664446 53.684189,-0.664386 53.684205,-0.664355 53.684232,-0.664245 53.684378,-0.664197 53.684394,-0.664193 53.684474,-0.663785 53.684540,-0.663276 53.684561,-0.662862 53.684601,-0.662048 53.684506,-0.661597 53.685559,-0.661435 53.685968,-0.661386 53.686201,-0.661429 53.686205,-0.661367 53.686448,-0.661303 53.686826,-0.660985 53.686834,-0.660940 53.686949,-0.660929 53.687019,-0.661411 53.687173,-0.661347 53.687244,-0.661095 53.687472,-0.660860 53.687683,-0.660687 53.687826,-0.660538 53.687836,-0.660268 53.687834,-0.659715 53.688288)))" -,44005175,2007-03-06,1,a6487cdcab11a55120c8eedfca177f1d1bb5b9bd59dad39885d143241152ba7b,name,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,Alkborough Conservation area -,44005175,2007-03-06,1,8c5ca02082d5af4ccf6060788f287fb891f276d2ea1b0009adf4208fc8b137e0,organisation,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,local-authority:NLN -,44005175,2007-03-06,1,bdd2226799df554f358c5d88845235cfece27f73cf5d2544f478ec22a20023f6,prefix,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,conservation-area -,44005175,2007-03-06,1,04714a1b1b3bf588fe58474d5eed5ac4a7930f7bf806b159f4a40d605a021735,reference,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,DLS1915 -,44005175,2007-03-06,1,07e16b339043b96d725c142e5ee361db41404aca34076e85bd10c6c6fd08d0b9,start-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,1970-01-01 -,44005181,2001-03-06,2,3ae7eeccbf36509e74f85ec2de57b9fddfc78ac25ee908cb7384c78cdb6899d6,document-url,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,https://www.northlincs.gov.uk/planning-and-environment/historic-environment-record/ -,44005181,2001-03-06,2,c8f3efd26df3559cb0b7531c8db408bf62ac327e9fad3f69def92400d54fbccc,end-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,, -,44005181,2001-03-06,2,7c9a28891d16765ce1646390266c7d9007e275b041a7ecceab5f2fe43a59e4c5,entry-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,2001-03-06 -,44005181,2001-03-06,2,4229c81262eb1f0d2c2d75ebcc0a560331ba25bbb93d41bbde35d88114861094,geometry,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,"MULTIPOLYGON (((-0.376039 53.680543,-0.376165 53.680578,-0.376505 53.680596,-0.376502 53.680621,-0.376537 53.680622,-0.376538 53.680615,-0.377071 53.680631,-0.377017 53.680368,-0.377110 53.680359,-0.377384 53.680355,-0.377783 53.680362,-0.377773 53.680481,-0.378621 53.680505,-0.378651 53.680311,-0.378650 53.680201,-0.378947 53.680230,-0.378973 53.680225,-0.378914 53.679979,-0.378916 53.679953,-0.379049 53.679954,-0.379014 53.679713,-0.378906 53.679437,-0.378877 53.679401,-0.378950 53.679392,-0.379008 53.679346,-0.379074 53.679348,-0.379077 53.679306,-0.378998 53.679180,-0.378965 53.679107,-0.379001 53.678990,-0.379042 53.679005,-0.379052 53.678971,-0.379233 53.678976,-0.379236 53.678881,-0.379631 53.678882,-0.379647 53.678750,-0.379677 53.678673,-0.379850 53.678624,-0.379996 53.678606,-0.380059 53.678584,-0.380074 53.678573,-0.380155 53.678423,-0.380200 53.678364,-0.380219 53.678331,-0.379762 53.678266,-0.379654 53.678002,-0.379654 53.677984,-0.379681 53.677918,-0.379589 53.677872,-0.379783 53.677650,-0.379856 53.677596,-0.380312 53.677759,-0.380594 53.677434,-0.380584 53.677431,-0.380737 53.677243,-0.380714 53.677236,-0.380912 53.677009,-0.380718 53.676964,-0.380784 53.676879,-0.380964 53.676546,-0.381083 53.676403,-0.380985 53.676382,-0.381074 53.676261,-0.381081 53.676263,-0.381235 53.676089,-0.381410 53.675967,-0.381253 53.675931,-0.381367 53.675779,-0.381031 53.675681,-0.381149 53.675588,-0.381564 53.675181,-0.381614 53.675019,-0.381727 53.674801,-0.381541 53.674722,-0.381478 53.674709,-0.381256 53.674693,-0.380217 53.674494,-0.380206 53.674445,-0.380058 53.674456,-0.380005 53.674216,-0.380003 53.674149,-0.380025 53.674093,-0.380080 53.674056,-0.380114 53.674045,-0.380063 53.673997,-0.379964 53.673995,-0.379912 53.673975,-0.379808 53.673893,-0.379780 53.673859,-0.380511 53.673683,-0.380263 53.673345,-0.380247 53.673244,-0.380569 53.673122,-0.380607 53.673113,-0.380652 53.673117,-0.380919 53.673449,-0.380869 53.673464,-0.381143 53.673730,-0.381479 53.673605,-0.381679 53.673821,-0.381711 53.673881,-0.381718 53.673917,-0.381722 53.673992,-0.381695 53.674119,-0.381673 53.674186,-0.381603 53.674307,-0.381744 53.674349,-0.381786 53.674306,-0.381855 53.674264,-0.381931 53.674250,-0.382063 53.674244,-0.382322 53.674270,-0.382667 53.674332,-0.382789 53.674347,-0.382959 53.674347,-0.383042 53.674327,-0.383206 53.674380,-0.383194 53.674394,-0.383510 53.674536,-0.383654 53.674321,-0.383425 53.674196,-0.382966 53.674018,-0.382922 53.674056,-0.382084 53.673811,-0.382059 53.673811,-0.382026 53.673786,-0.382229 53.673594,-0.382350 53.673517,-0.382480 53.673396,-0.382275 53.673224,-0.382081 53.673034,-0.381685 53.673221,-0.381548 53.673073,-0.381942 53.672894,-0.381693 53.672672,-0.381544 53.672556,-0.381467 53.672473,-0.381524 53.672452,-0.381777 53.672315,-0.381438 53.672215,-0.381259 53.672078,-0.381227 53.672063,-0.381203 53.672043,-0.381218 53.672037,-0.381203 53.672027,-0.381221 53.672019,-0.381094 53.671933,-0.380542 53.672246,-0.380504 53.672280,-0.380493 53.672300,-0.380490 53.672375,-0.380507 53.672409,-0.380652 53.672522,-0.380779 53.672636,-0.380574 53.672675,-0.380456 53.672708,-0.379961 53.672899,-0.379884 53.672935,-0.379246 53.673160,-0.379099 53.673188,-0.379154 53.673277,-0.379474 53.673707,-0.379560 53.673770,-0.379252 53.673851,-0.379010 53.673902,-0.379240 53.674133,-0.379303 53.674112,-0.379383 53.674153,-0.379558 53.674213,-0.379861 53.674152,-0.379893 53.674209,-0.379896 53.674234,-0.379888 53.674262,-0.379851 53.674317,-0.379853 53.674372,-0.379871 53.674430,-0.379892 53.674461,-0.379944 53.674499,-0.379791 53.674508,-0.379333 53.674573,-0.379677 53.674704,-0.379780 53.674736,-0.379892 53.674734,-0.379891 53.674806,-0.379829 53.674999,-0.378782 53.674769,-0.378442 53.674702,-0.378262 53.674626,-0.378171 53.674568,-0.378041 53.674606,-0.377497 53.674806,-0.377026 53.674943,-0.377276 53.675169,-0.376387 53.675659,-0.376902 53.675992,-0.377295 53.675764,-0.377147 53.675663,-0.377315 53.675565,-0.377303 53.675496,-0.377315 53.675458,-0.377254 53.675413,-0.377336 53.675369,-0.377384 53.675327,-0.377436 53.675303,-0.377579 53.675354,-0.377811 53.675535,-0.378730 53.675123,-0.378796 53.675178,-0.378869 53.675214,-0.378964 53.675181,-0.378995 53.675131,-0.379114 53.675157,-0.379323 53.675223,-0.379508 53.675334,-0.379549 53.675517,-0.379467 53.675563,-0.379809 53.675710,-0.379565 53.675868,-0.379704 53.675948,-0.379626 53.676061,-0.379534 53.676160,-0.379516 53.676168,-0.379455 53.676232,-0.379404 53.676233,-0.378339 53.677069,-0.377762 53.676822,-0.377374 53.676600,-0.376780 53.676786,-0.376894 53.676929,-0.377008 53.677027,-0.377037 53.677004,-0.377247 53.677163,-0.377542 53.677318,-0.377560 53.677304,-0.377982 53.677493,-0.377456 53.677906,-0.377244 53.677835,-0.377008 53.677981,-0.377393 53.678052,-0.377708 53.678143,-0.377382 53.678419,-0.376848 53.678782,-0.376501 53.679311,-0.376474 53.679342,-0.376399 53.679503,-0.376369 53.679613,-0.376121 53.679610,-0.375973 53.679412,-0.375935 53.679336,-0.375908 53.679234,-0.375742 53.679209,-0.375581 53.679219,-0.375396 53.679259,-0.375381 53.679464,-0.375293 53.679767,-0.375307 53.679768,-0.375274 53.679950,-0.375634 53.679955,-0.375634 53.679967,-0.376093 53.679966,-0.376083 53.680010,-0.376081 53.680190,-0.376039 53.680543)))" -,44005181,2001-03-06,2,70e7cce3d507cd4dd8d4e770a8e24962c41d6353b41a634be9187d552baa44c6,name,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,Barrow upon Humber Conservation area -,44005181,2001-03-06,2,ef9bc423cd5c31173b13289184c83a623ed17ab0f6df6323ce0facec9caa1bf4,organisation,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,local-authority:NLN -,44005181,2001-03-06,2,ca5b13004341b65684fc31d142533f384bc7e273f6f2d878820d4501480d50a4,prefix,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,conservation-area -,44005181,2001-03-06,2,b6589a274ebf46d4a71fb7e7d3a757d06e5272744823f7800f5c44abc3c985b6,reference,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,DLS1917 -,44005181,2001-03-06,2,83a04095c5c8aa5e594bab71fc6a3da662966d1108fc005cd38c19058b59d91c,start-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,1974-01-01 -,44005180,2007-03-06,3,b1931d114089bc7daefc9fcf8391463bcb70a5c793ce0b5bb883196a2764c5fd,document-url,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,https://www.northlincs.gov.uk/planning-and-environment/historic-environment-record/ -,44005180,2007-03-06,3,7a478a9ec56ce45f54d9a63313a828f8528387bd369b78b97b6c79633bece768,end-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,, -,44005180,2007-03-06,3,bc5a594c7db9e716761b6ded1cdd18eefb5df24c89ea0cb12544f21294a3feba,entry-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,2007-03-06 -,44005180,2007-03-06,3,81688f5f719819b185d6c3c9239789760e53d798b0b9c45dae90e6db2160f3e2,geometry,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,"MULTIPOLYGON (((-0.442437 53.688332,-0.442768 53.688561,-0.443005 53.688417,-0.443160 53.688366,-0.443274 53.688343,-0.443434 53.688324,-0.443615 53.688334,-0.443661 53.688326,-0.443767 53.688440,-0.443781 53.688479,-0.443806 53.688632,-0.443834 53.688674,-0.443875 53.688696,-0.443971 53.688715,-0.444211 53.688700,-0.444558 53.688607,-0.444730 53.688236,-0.445032 53.687539,-0.446373 53.687748,-0.446408 53.687675,-0.446559 53.687283,-0.446401 53.687247,-0.446575 53.686782,-0.446634 53.686707,-0.446898 53.686229,-0.447268 53.686319,-0.447287 53.686294,-0.447910 53.686446,-0.449230 53.686602,-0.449310 53.686455,-0.449441 53.685911,-0.451757 53.685987,-0.451770 53.685335,-0.451786 53.685026,-0.450959 53.685003,-0.450974 53.684743,-0.450967 53.684737,-0.445930 53.684531,-0.445764 53.684536,-0.445601 53.684935,-0.445378 53.684903,-0.445398 53.684853,-0.445209 53.684823,-0.444767 53.684712,-0.444477 53.684454,-0.444114 53.684359,-0.444361 53.684241,-0.444059 53.684149,-0.443594 53.684474,-0.443462 53.684506,-0.442785 53.684176,-0.442110 53.683909,-0.442166 53.683855,-0.442331 53.683723,-0.442276 53.683700,-0.442576 53.683460,-0.442566 53.683445,-0.441883 53.683182,-0.441895 53.683172,-0.441691 53.683099,-0.441375 53.682994,-0.440786 53.682827,-0.440546 53.682742,-0.440483 53.682657,-0.440671 53.682468,-0.440413 53.682377,-0.440421 53.682369,-0.440370 53.682354,-0.440342 53.682397,-0.440259 53.682370,-0.440148 53.682517,-0.438925 53.682280,-0.438862 53.682266,-0.438793 53.682238,-0.438772 53.682219,-0.438764 53.682198,-0.438777 53.682154,-0.439121 53.681850,-0.439150 53.681839,-0.439175 53.681840,-0.439199 53.681813,-0.439191 53.681801,-0.439265 53.681718,-0.439322 53.681702,-0.439343 53.681676,-0.439330 53.681649,-0.439481 53.681492,-0.439539 53.681480,-0.439555 53.681454,-0.439533 53.681431,-0.439748 53.681200,-0.439789 53.681115,-0.440867 53.681063,-0.440924 53.681052,-0.440962 53.681036,-0.440995 53.680992,-0.440980 53.680207,-0.440966 53.679900,-0.440928 53.679531,-0.440900 53.679343,-0.440742 53.678613,-0.440683 53.678424,-0.440500 53.677964,-0.439342 53.677994,-0.439633 53.677172,-0.439688 53.676996,-0.440813 53.677036,-0.440801 53.677017,-0.440813 53.676948,-0.440853 53.676763,-0.440871 53.676764,-0.440902 53.676627,-0.440891 53.676619,-0.440894 53.676585,-0.439806 53.676510,-0.439738 53.675903,-0.439705 53.675433,-0.438794 53.675452,-0.437389 53.675497,-0.437433 53.675614,-0.437432 53.675652,-0.435268 53.675722,-0.434124 53.675773,-0.434122 53.675766,-0.434021 53.675778,-0.434031 53.675804,-0.434068 53.675837,-0.434067 53.675880,-0.434203 53.676180,-0.434294 53.676158,-0.434760 53.676162,-0.434785 53.676257,-0.434838 53.676539,-0.434794 53.676620,-0.434804 53.676660,-0.434869 53.676785,-0.434925 53.676789,-0.437625 53.676707,-0.437674 53.677076,-0.437763 53.677449,-0.437786 53.677604,-0.437797 53.677786,-0.436639 53.677818,-0.436733 53.678419,-0.436746 53.678553,-0.436828 53.679038,-0.435464 53.679089,-0.435527 53.679148,-0.435586 53.679181,-0.435900 53.679298,-0.436138 53.679411,-0.438052 53.679341,-0.438105 53.679597,-0.438110 53.679718,-0.437978 53.680404,-0.438420 53.680419,-0.438370 53.680662,-0.438213 53.680655,-0.438036 53.680837,-0.437931 53.680996,-0.437878 53.680982,-0.437540 53.680963,-0.437457 53.680969,-0.437291 53.681025,-0.437181 53.681074,-0.437060 53.681110,-0.436774 53.681082,-0.436510 53.681080,-0.436507 53.681123,-0.436530 53.681123,-0.436505 53.681418,-0.436503 53.681565,-0.436387 53.682169,-0.436343 53.682262,-0.436187 53.682543,-0.435990 53.683015,-0.435570 53.683050,-0.435017 53.683083,-0.434819 53.683033,-0.434615 53.683459,-0.434552 53.683485,-0.434464 53.683388,-0.434277 53.683224,-0.434191 53.683169,-0.434072 53.683109,-0.433968 53.683066,-0.433779 53.683019,-0.433712 53.683029,-0.433639 53.683072,-0.433575 53.683145,-0.433404 53.683402,-0.433306 53.683521,-0.433201 53.683793,-0.433135 53.683936,-0.433105 53.684026,-0.433075 53.684198,-0.433072 53.684311,-0.433102 53.684458,-0.433103 53.684534,-0.433089 53.684555,-0.433072 53.684556,-0.433067 53.684578,-0.433074 53.684615,-0.433151 53.684610,-0.433336 53.684579,-0.433458 53.684544,-0.433788 53.684396,-0.433884 53.684558,-0.433929 53.684547,-0.434250 53.684552,-0.434244 53.684705,-0.434227 53.684706,-0.434218 53.684873,-0.433932 53.684862,-0.433244 53.684877,-0.433281 53.684939,-0.433454 53.685362,-0.433462 53.685369,-0.433908 53.685362,-0.434182 53.685334,-0.434134 53.685417,-0.434357 53.685462,-0.434424 53.685482,-0.434423 53.685492,-0.434663 53.685540,-0.434750 53.685395,-0.435145 53.685501,-0.435250 53.685341,-0.435423 53.685051,-0.435359 53.684901,-0.435349 53.684753,-0.435299 53.684743,-0.435475 53.684473,-0.435948 53.684596,-0.435946 53.684623,-0.436044 53.684617,-0.436025 53.684768,-0.436226 53.684995,-0.436265 53.684983,-0.436281 53.685002,-0.436359 53.684978,-0.436743 53.685058,-0.436747 53.685093,-0.436858 53.685110,-0.436967 53.685098,-0.437261 53.685155,-0.437133 53.685369,-0.437003 53.685609,-0.437516 53.685709,-0.436732 53.686039,-0.436541 53.685940,-0.436346 53.686060,-0.435665 53.686535,-0.436321 53.686661,-0.436249 53.686823,-0.436204 53.686990,-0.436183 53.687142,-0.436163 53.687538,-0.436254 53.687537,-0.436454 53.687560,-0.437179 53.687663,-0.438495 53.687829,-0.438493 53.687927,-0.439094 53.687960,-0.439101 53.687919,-0.439584 53.687944,-0.439603 53.687795,-0.439692 53.687801,-0.439695 53.687784,-0.439729 53.687786,-0.439850 53.687160,-0.439904 53.687000,-0.440282 53.687045,-0.440492 53.687060,-0.440461 53.687168,-0.440748 53.687194,-0.440776 53.687060,-0.440820 53.687067,-0.440840 53.687023,-0.441315 53.687098,-0.441845 53.687155,-0.441827 53.687201,-0.441973 53.687231,-0.442073 53.687242,-0.442076 53.687235,-0.442413 53.687271,-0.442593 53.687304,-0.442833 53.687332,-0.442766 53.687506,-0.442510 53.688091,-0.442517 53.688092,-0.442508 53.688122,-0.442437 53.688332)))" -,44005180,2007-03-06,3,6c2305f5e86aa4269415ee617c76b08ca3f17e5a33cdc214672f0421dbf9c896,name,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,Barton upon Humber Conservation area -,44005180,2007-03-06,3,9e578b11b070b3cbfd73bc601aee7b42aeb489f6a501411dae053c0e8143445d,organisation,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,local-authority:NLN -,44005180,2007-03-06,3,5da749cde351c2e74916927fbd84428bb135bf6ab09784e4ec4baa211586a999,prefix,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,conservation-area -,44005180,2007-03-06,3,81e5170d4636758c08a40a1ed24943251471115fff9129e23c25e3fe5191a1ab,reference,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,DLS1918 -,44005180,2007-03-06,3,f4986ffe54a3020a7782c5ee8ce01c0aa0a7defc72e035919bb0a3e8cee08d17,start-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,1972-01-01 -,44005173,2007-03-06,4,e07b386302f6fc18917c67b4843a3ef370870129bbfde53b06fd2d2786e04421,document-url,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,https://www.northlincs.gov.uk/planning-and-environment/historic-environment-record/ -,44005173,2007-03-06,4,0154ded82874ad12fa6c973e3c84b70d9e1a26f5aa30aaacd6b6c07ae06b7087,end-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,, -,44005173,2007-03-06,4,e830065c2dd2de4ea5af0ad4b2bac982d95df3fc2b83cd4499ad2553d75e1e13,entry-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,2007-03-06 -,44005173,2007-03-06,4,ad0e87ae9dc8120c1e3cb2c5950ad4d8be26cd1f648240c860a9c88a67616b20,geometry,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,"MULTIPOLYGON (((-0.640624 53.586236,-0.640273 53.586253,-0.640384 53.587168,-0.640407 53.587262,-0.640927 53.587172,-0.642584 53.586913,-0.645210 53.586508,-0.646016 53.586391,-0.645937 53.585699,-0.642524 53.585875,-0.642442 53.585190,-0.642418 53.584918,-0.642435 53.584918,-0.642404 53.584659,-0.641964 53.584690,-0.641987 53.584898,-0.640925 53.584944,-0.641015 53.585714,-0.640919 53.585718,-0.640917 53.585699,-0.640564 53.585713,-0.640592 53.586012,-0.640624 53.586236)))" -,44005173,2007-03-06,4,06d46a395e7e8bae2f7dc82c759d48c6b079d267b07bf6fec276527302b13781,name,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,New Frodingham Conservation area -,44005173,2007-03-06,4,a255e061d3eae0c43ed4539124dd9aa81d04f8d39874df4d6f37a0e683060fe5,organisation,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,local-authority:NLN -,44005173,2007-03-06,4,ecd9d19af041defaa526934b3a2bd7080ce9218c807b1d854d9bc75b5505bca0,prefix,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,conservation-area -,44005173,2007-03-06,4,662619cb70f84c4ff21b0ce273fbf4f35bdd4c03532cba3f56c976d5fdd9859b,reference,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,DLS1922 -,44005173,2007-03-06,4,4ec1ecd41ae862461c6324459ae1541c00034f4a3afc62d245e9cc3577c070d6,start-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,1986-01-01 -,44005177,2011-07-24,5,6189e10d78b7ea8ee44ff8d7d1cbe174c26570db4c183fc19eb7bbe0a4a05fae,document-url,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,https://www.northlincs.gov.uk/planning-and-environment/historic-environment-record/ -,44005177,2011-07-24,5,e669c7d072b22734db77473877b11f2392f92e81f8f51db02476fe227f55c68e,end-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,, -,44005177,2011-07-24,5,5f5acda1173c3c24a0937d8adc342ca7fde3a732c73815faf0a8c82809752a0e,entry-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,2011-07-24 -,44005177,2011-07-24,5,27559e7a00d1b22bf0124e85be74d33f32c1b76c6530aab605f92fabcc886150,geometry,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,"MULTIPOLYGON (((-0.601269 53.654892,-0.601594 53.654852,-0.601713 53.654808,-0.601695 53.654777,-0.601651 53.654632,-0.601695 53.654618,-0.601680 53.654553,-0.601657 53.654547,-0.601639 53.654516,-0.601618 53.654449,-0.602223 53.654371,-0.602189 53.654289,-0.602573 53.654209,-0.602386 53.653887,-0.602267 53.653720,-0.602068 53.653709,-0.601901 53.653735,-0.601677 53.653857,-0.601359 53.653921,-0.601365 53.653935,-0.600978 53.653960,-0.600823 53.653437,-0.600237 53.653468,-0.600073 53.652802,-0.599675 53.652765,-0.599460 53.652702,-0.599389 53.652693,-0.599086 53.652680,-0.598594 53.652620,-0.598580 53.652595,-0.598323 53.652330,-0.597783 53.652509,-0.597161 53.652734,-0.597104 53.652772,-0.597039 53.652847,-0.597013 53.652906,-0.596981 53.653013,-0.596662 53.652973,-0.596503 53.652961,-0.596423 53.652939,-0.596245 53.652849,-0.596035 53.652779,-0.596050 53.652769,-0.596063 53.652741,-0.594761 53.652765,-0.594777 53.652588,-0.593701 53.652645,-0.593692 53.652803,-0.593327 53.652821,-0.593295 53.652828,-0.593298 53.652851,-0.593219 53.652865,-0.592879 53.652796,-0.592835 53.652798,-0.592793 53.652811,-0.592572 53.652806,-0.591921 53.652730,-0.591768 53.652678,-0.591662 53.653035,-0.591647 53.653052,-0.591607 53.653139,-0.591511 53.653502,-0.591378 53.653498,-0.591241 53.653474,-0.591128 53.653469,-0.591132 53.653477,-0.591045 53.653929,-0.590725 53.653904,-0.589879 53.653897,-0.589871 53.653675,-0.589391 53.653675,-0.589390 53.653573,-0.589269 53.652736,-0.589247 53.652643,-0.589187 53.652628,-0.589163 53.652602,-0.589161 53.652525,-0.588875 53.652542,-0.588618 53.652492,-0.588581 53.652491,-0.588525 53.652501,-0.588350 53.652559,-0.588178 53.652570,-0.588072 53.652615,-0.588032 53.652620,-0.587958 53.652613,-0.587931 53.652621,-0.587909 53.652657,-0.587907 53.652729,-0.587896 53.652777,-0.587920 53.652863,-0.587894 53.652934,-0.587899 53.653057,-0.586838 53.652924,-0.586406 53.652877,-0.586394 53.652851,-0.584836 53.652648,-0.584309 53.652570,-0.584093 53.652518,-0.584028 53.652511,-0.583978 53.652518,-0.583969 53.652556,-0.583657 53.652603,-0.583674 53.652645,-0.583654 53.653138,-0.583662 53.653277,-0.583683 53.653456,-0.583704 53.653554,-0.583740 53.653662,-0.583770 53.653802,-0.583761 53.653840,-0.583730 53.653893,-0.583710 53.653897,-0.583638 53.653886,-0.583636 53.654036,-0.583686 53.654046,-0.583713 53.654065,-0.583745 53.654124,-0.583801 53.654426,-0.583850 53.654581,-0.583867 53.654707,-0.583847 53.654706,-0.583842 53.654751,-0.583845 53.655252,-0.583838 53.655611,-0.583815 53.655765,-0.585348 53.655904,-0.585415 53.654854,-0.585295 53.654843,-0.585335 53.654740,-0.585369 53.654418,-0.585839 53.654432,-0.585845 53.654399,-0.586075 53.654420,-0.586520 53.654470,-0.586515 53.654508,-0.586779 53.654517,-0.586776 53.654549,-0.587181 53.654562,-0.587577 53.654564,-0.588400 53.654522,-0.588409 53.654173,-0.588403 53.654131,-0.588453 53.654128,-0.588469 53.654103,-0.588739 53.654084,-0.588731 53.654021,-0.589476 53.654010,-0.589513 53.654514,-0.589914 53.654547,-0.589957 53.654546,-0.589974 53.654533,-0.590284 53.654525,-0.590289 53.654534,-0.590314 53.654534,-0.590438 53.654583,-0.591082 53.654627,-0.591093 53.654469,-0.591609 53.654464,-0.591616 53.654532,-0.591661 53.654734,-0.591685 53.655116,-0.592063 53.655132,-0.592059 53.655320,-0.592015 53.655486,-0.591982 53.655564,-0.592001 53.655712,-0.592023 53.655787,-0.592134 53.655741,-0.592306 53.655653,-0.592398 53.655663,-0.592467 53.655424,-0.592480 53.655350,-0.592939 53.655347,-0.593311 53.655366,-0.593729 53.655409,-0.594878 53.655558,-0.595870 53.655713,-0.596335 53.655816,-0.597153 53.655873,-0.597192 53.656030,-0.597289 53.656204,-0.597294 53.656244,-0.597284 53.656270,-0.597268 53.656284,-0.597237 53.656397,-0.597236 53.656446,-0.597717 53.656457,-0.597736 53.656140,-0.597756 53.656005,-0.597790 53.655922,-0.598845 53.656001,-0.599769 53.656047,-0.599747 53.656264,-0.599735 53.656568,-0.599896 53.656553,-0.600355 53.656553,-0.600362 53.656467,-0.600672 53.656476,-0.600966 53.656498,-0.601507 53.656505,-0.601475 53.656317,-0.602021 53.656336,-0.602032 53.655915,-0.601516 53.655929,-0.601350 53.655949,-0.601353 53.655995,-0.601333 53.656028,-0.601273 53.656062,-0.601185 53.656078,-0.601186 53.656026,-0.601161 53.655797,-0.600844 53.655797,-0.600831 53.655503,-0.600813 53.655306,-0.600928 53.655313,-0.600922 53.655213,-0.601287 53.655199,-0.601269 53.654892)))" -,44005177,2011-07-24,5,33126e21812f8ffe7023917c5ef1abcf1e3ee5eec8e9e872060c2aec4d22fada,name,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,Winterton Conservation area -,44005177,2011-07-24,5,d39c4f14c523c7df7019366f1a9b31138ffc2371d9adf44142cc946644b8d947,organisation,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,local-authority:NLN -,44005177,2011-07-24,5,be5020ee021eac8afbfc0df0a3d8a89c82b523048710db4e5ed88baa81c4830f,prefix,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,conservation-area -,44005177,2011-07-24,5,e622d402fb4c96fe8b4e3fc267f04a076c4f57afa2f60faf46bae52dfa88acc5,reference,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,DLS1926 -,44005177,2011-07-24,5,2e2bedec454df4ecbe815d8f1b76a76b2a4cec23f057901bad106859c4e1668f,start-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,1985-01-01 -,44005179,2007-03-06,6,df8621bd3351901d6a8d1f9763158b612b1515ac26b3d9529310416db1cb84c2,document-url,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,https://www.northlincs.gov.uk/planning-and-environment/historic-environment-record/ -,44005179,2007-03-06,6,0132c0ba685853cd78320bb6caacab4ede054a9448af805212185070c8624992,end-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,, -,44005179,2007-03-06,6,11294b6d54f5399c2144459d8db0e109658af843697ed4227136c0b48483c9d4,entry-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,2007-03-06 -,44005179,2007-03-06,6,01415a006dfbfc435f02498556535de7e7432d9aa443f964b6e84a2b37c15325,geometry,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,"MULTIPOLYGON (((-0.499871 53.642166,-0.499926 53.642233,-0.499943 53.642283,-0.499960 53.642382,-0.499905 53.642578,-0.499803 53.642738,-0.499752 53.642797,-0.499255 53.643334,-0.499118 53.643462,-0.499303 53.643578,-0.499321 53.643608,-0.499267 53.643675,-0.499247 53.643725,-0.499246 53.643761,-0.499262 53.643827,-0.499678 53.644340,-0.499818 53.644324,-0.501086 53.644059,-0.501699 53.644978,-0.501911 53.645320,-0.502437 53.645199,-0.502968 53.645061,-0.503512 53.644972,-0.504564 53.644827,-0.504691 53.645243,-0.505206 53.645194,-0.505276 53.645354,-0.505428 53.645338,-0.505449 53.645402,-0.505501 53.645642,-0.505414 53.645988,-0.505361 53.646025,-0.505340 53.646070,-0.505237 53.646185,-0.505178 53.646277,-0.505109 53.646421,-0.505079 53.646548,-0.506678 53.646396,-0.506599 53.646085,-0.506567 53.645988,-0.506134 53.644969,-0.506072 53.644843,-0.505834 53.644477,-0.505366 53.643842,-0.505172 53.643564,-0.505068 53.643396,-0.504875 53.643005,-0.504657 53.642467,-0.504334 53.641573,-0.504273 53.641367,-0.504233 53.641183,-0.504309 53.641172,-0.504306 53.641120,-0.505059 53.641020,-0.507173 53.640769,-0.507008 53.640356,-0.506863 53.640020,-0.506840 53.639936,-0.506781 53.639825,-0.506724 53.639693,-0.506638 53.639692,-0.506479 53.639709,-0.506463 53.639627,-0.506394 53.639436,-0.506042 53.639481,-0.505860 53.639056,-0.505692 53.638703,-0.505564 53.638388,-0.505499 53.638300,-0.505244 53.637843,-0.505202 53.637844,-0.505142 53.637683,-0.505009 53.637437,-0.504951 53.637357,-0.506612 53.637176,-0.506668 53.637188,-0.506839 53.637171,-0.510051 53.636825,-0.510127 53.636823,-0.510096 53.636806,-0.510366 53.636779,-0.512204 53.636515,-0.512478 53.636446,-0.512564 53.636407,-0.512600 53.636373,-0.512640 53.636283,-0.512652 53.636197,-0.512638 53.636157,-0.512567 53.636041,-0.514050 53.635690,-0.514472 53.635601,-0.513632 53.634646,-0.513546 53.634687,-0.513522 53.634722,-0.513434 53.634949,-0.513371 53.635235,-0.513368 53.635321,-0.513384 53.635371,-0.513413 53.635423,-0.512316 53.635716,-0.512265 53.635665,-0.512178 53.635645,-0.511550 53.635676,-0.510516 53.635747,-0.510446 53.635748,-0.510312 53.635732,-0.510149 53.635674,-0.510036 53.635616,-0.509951 53.635545,-0.509875 53.635460,-0.509781 53.635293,-0.509540 53.634763,-0.509515 53.634736,-0.508877 53.634423,-0.508599 53.634259,-0.507599 53.633716,-0.507407 53.633615,-0.507382 53.633610,-0.507343 53.633614,-0.506105 53.633995,-0.505568 53.633667,-0.505244 53.633802,-0.505163 53.633774,-0.505077 53.633780,-0.504466 53.634017,-0.504084 53.634178,-0.503507 53.634392,-0.503364 53.634470,-0.503277 53.634506,-0.503095 53.634290,-0.502926 53.634131,-0.502468 53.634313,-0.502405 53.634259,-0.502192 53.633998,-0.502010 53.633792,-0.501828 53.633614,-0.501029 53.633901,-0.500816 53.633622,-0.500616 53.633292,-0.500386 53.633383,-0.500301 53.633292,-0.500093 53.633127,-0.499653 53.633329,-0.499109 53.632880,-0.498343 53.632308,-0.498215 53.632228,-0.497629 53.631897,-0.497287 53.631742,-0.497016 53.631630,-0.496530 53.631461,-0.495779 53.631242,-0.495077 53.631058,-0.494148 53.630796,-0.493767 53.631042,-0.493423 53.631204,-0.492765 53.631488,-0.491964 53.631813,-0.490653 53.632324,-0.489654 53.632770,-0.487676 53.633497,-0.487678 53.633529,-0.487248 53.633702,-0.486924 53.633851,-0.486664 53.633990,-0.486459 53.634114,-0.486288 53.634228,-0.486109 53.634365,-0.486017 53.634455,-0.485775 53.634719,-0.487175 53.635196,-0.488676 53.634093,-0.488988 53.634053,-0.489214 53.633997,-0.489328 53.633990,-0.489445 53.633996,-0.489709 53.634027,-0.490867 53.634194,-0.491693 53.634284,-0.492705 53.634445,-0.492964 53.634509,-0.494166 53.634972,-0.494957 53.635297,-0.494378 53.635481,-0.494513 53.635609,-0.494659 53.635628,-0.495205 53.635726,-0.495335 53.635735,-0.495803 53.635725,-0.496035 53.636137,-0.496177 53.636452,-0.496198 53.636520,-0.496209 53.636591,-0.496192 53.636720,-0.496135 53.636903,-0.496031 53.637099,-0.495883 53.637335,-0.495827 53.637394,-0.495757 53.637450,-0.495642 53.637527,-0.495509 53.637600,-0.495297 53.637700,-0.494904 53.637865,-0.494724 53.637952,-0.495078 53.638267,-0.496576 53.637986,-0.496727 53.638347,-0.497077 53.639007,-0.497451 53.639544,-0.497812 53.640082,-0.498124 53.640410,-0.498249 53.640572,-0.498451 53.640775,-0.498897 53.641267,-0.499179 53.641653,-0.499285 53.641747,-0.499490 53.641892,-0.499814 53.642105,-0.499871 53.642166)))" -,44005179,2007-03-06,6,b0f86a235eb02b530f96022583044efffd50990b3990ce05f22fd8f77086f9a0,name,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,Saxby All Saints Conservation area -,44005179,2007-03-06,6,3887cd7b62470f3f6e37dd03457b986c57620bb187ca48e000979817948d972c,organisation,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,local-authority:NLN -,44005179,2007-03-06,6,3a9018399fbd0979dec43c11e93029d545023f5c0d98653b9edf77c2aef7e2f5,prefix,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,conservation-area -,44005179,2007-03-06,6,eff47b477c40452562b8046793154fb3290211446ef772e4d7a62aa63b6a62f1,reference,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,DLS1928 -,44005179,2007-03-06,6,a10c99d51f3833e91a5b64b496e47dc4eec28dc6427f78f58c71ff057f274dc0,start-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,1977-01-01 -,44005174,2011-07-27,7,51f6f0f65c16f02fd9a712e2ccb292ff9a9b06f9cb8be630956f7ec8031cecd7,document-url,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,https://www.northlincs.gov.uk/planning-and-environment/historic-environment-record/ -,44005174,2011-07-27,7,c2d141fe01a7a0c06eda97af5479c2e52abcdf1af43f82d226e1dae7e42dded3,end-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,, -,44005174,2011-07-27,7,5448653a0dcb6254ea8848c457761d9c1dfd8de791c310134ea4ca8881dee270,entry-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,2011-07-27 -,44005174,2011-07-27,7,712a3dea6a5523dc99b2b2477e240b9ee8f90f4b48aa99ca1388597fd980d93d,geometry,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,"MULTIPOLYGON (((-0.684653 53.650829,-0.685229 53.650846,-0.685820 53.650848,-0.685909 53.650834,-0.685812 53.650362,-0.685961 53.650298,-0.686141 53.649804,-0.686307 53.649754,-0.686321 53.649744,-0.686412 53.649236,-0.686135 53.649225,-0.686139 53.649171,-0.686234 53.649148,-0.686315 53.649114,-0.686371 53.649073,-0.686551 53.648770,-0.686427 53.648766,-0.686506 53.648343,-0.686351 53.648333,-0.686365 53.648230,-0.686369 53.648112,-0.686348 53.648012,-0.686315 53.647950,-0.686431 53.647960,-0.686451 53.647690,-0.686420 53.647689,-0.686426 53.647644,-0.686200 53.647647,-0.685992 53.647630,-0.685996 53.647622,-0.685523 53.647586,-0.685529 53.647576,-0.685123 53.647540,-0.684920 53.647503,-0.684910 53.647522,-0.684335 53.647478,-0.684261 53.647482,-0.684210 53.647576,-0.684132 53.647615,-0.684046 53.647528,-0.683788 53.647379,-0.683670 53.647489,-0.683629 53.647518,-0.683635 53.647521,-0.683614 53.647549,-0.683626 53.647601,-0.683614 53.647660,-0.683506 53.647691,-0.683493 53.647733,-0.683680 53.647742,-0.683678 53.647843,-0.683649 53.647842,-0.683646 53.647873,-0.683682 53.648266,-0.683862 53.648257,-0.683918 53.648495,-0.683758 53.648506,-0.683867 53.648819,-0.683205 53.648848,-0.683231 53.649029,-0.683256 53.649028,-0.683256 53.649176,-0.683229 53.649291,-0.683170 53.649483,-0.683152 53.649519,-0.682275 53.649643,-0.682440 53.650064,-0.682533 53.650275,-0.682588 53.650354,-0.683115 53.650245,-0.683177 53.650482,-0.683062 53.650563,-0.683018 53.650614,-0.683016 53.650647,-0.683029 53.650679,-0.683085 53.650744,-0.683144 53.650780,-0.683204 53.650805,-0.683314 53.650826,-0.683330 53.650879,-0.683851 53.650839,-0.683954 53.650729,-0.684244 53.650848,-0.684260 53.650835,-0.684372 53.650833,-0.684374 53.650857,-0.684384 53.650864,-0.684476 53.650869,-0.684648 53.650855,-0.684653 53.650829)))" -,44005174,2011-07-27,7,7a06a10b8f6805fa5db83fe98b0eda11eaad0b175f6f83d03cc248011130baaa,name,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,Burton upon Stather Conservation area -,44005174,2011-07-27,7,dc225af1f04918d30178f65b6631dd6a53191d73a314a1e3c97e3de3d5c0e944,organisation,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,local-authority:NLN -,44005174,2011-07-27,7,713bf59a8560f89949c7a60b311287370d831de6f78dcd64b793a598f87bf4f8,prefix,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,conservation-area -,44005174,2011-07-27,7,b5f109cc66a90a09a62222e87207858b336fe25cfc00bb31efd8f14ee92797b1,reference,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,DLS1919 -,44005174,2011-07-27,7,b758adfed8e655fc3376d85ffcf25887695c89b264fa91ae4e265b35c04c0c9c,start-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,1970-01-01 -,44005172,2011-07-27,8,0a1bfc6006ae080dc8d6369319f3d2d30c8fa330b88c06b9eee15b7564910dd6,document-url,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,https://www.northlincs.gov.uk/planning-and-environment/historic-environment-record/ -,44005172,2011-07-27,8,c4b22d3a7ba58f22f5213f81f467f7884e0be1e71e725336335f16ac17f15fdd,end-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,, -,44005172,2011-07-27,8,5625213de701ee18d0c646b66bdc045a30e1545ed1a2773d5c667813a9f518f7,entry-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,2011-07-27 -,44005172,2011-07-27,8,c1863cdadd908f6578eb433cff22b23b8b6c90a69cd1ed4d7dcd2a38f71dbdb7,geometry,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,"MULTIPOLYGON (((-0.548307 53.541208,-0.548036 53.540736,-0.547909 53.540760,-0.547339 53.539783,-0.546338 53.539986,-0.544639 53.540352,-0.544531 53.540093,-0.544085 53.538939,-0.544045 53.538869,-0.544047 53.538859,-0.544023 53.538811,-0.543948 53.538596,-0.543306 53.538731,-0.543239 53.538727,-0.543145 53.538734,-0.543048 53.538760,-0.542958 53.538582,-0.542510 53.538671,-0.542479 53.538612,-0.542095 53.538683,-0.542008 53.538520,-0.541976 53.538333,-0.541953 53.538334,-0.541920 53.538127,-0.541829 53.537791,-0.541516 53.537474,-0.541555 53.537397,-0.541397 53.537109,-0.541852 53.537000,-0.542051 53.536997,-0.542400 53.537020,-0.542534 53.537018,-0.542951 53.536931,-0.543018 53.536898,-0.543114 53.536826,-0.543038 53.536683,-0.542892 53.536495,-0.542859 53.536493,-0.542675 53.536528,-0.542521 53.536102,-0.542423 53.535793,-0.542623 53.535762,-0.542336 53.535152,-0.543449 53.535037,-0.544884 53.534940,-0.544808 53.534531,-0.544815 53.534517,-0.544827 53.534517,-0.544767 53.534161,-0.544748 53.533955,-0.544515 53.532841,-0.542566 53.533165,-0.540045 53.533628,-0.539467 53.533724,-0.539867 53.535093,-0.539054 53.535187,-0.539131 53.535565,-0.539190 53.536096,-0.537893 53.536121,-0.536244 53.536242,-0.536481 53.537110,-0.535774 53.537177,-0.534809 53.537313,-0.534700 53.537354,-0.534795 53.537524,-0.534225 53.537575,-0.533823 53.537628,-0.533356 53.537668,-0.533174 53.537699,-0.533369 53.537889,-0.534267 53.537758,-0.534564 53.537730,-0.534686 53.538150,-0.534824 53.538130,-0.535074 53.538739,-0.535106 53.538772,-0.534998 53.538944,-0.534909 53.539046,-0.534794 53.539136,-0.534552 53.539253,-0.534495 53.539294,-0.534455 53.539379,-0.534371 53.539508,-0.534351 53.539632,-0.534354 53.539663,-0.534394 53.539688,-0.534431 53.539693,-0.534614 53.539686,-0.534862 53.539661,-0.535205 53.539583,-0.535368 53.539516,-0.535400 53.539476,-0.535416 53.539316,-0.535420 53.539170,-0.535440 53.539101,-0.535462 53.539068,-0.535538 53.539001,-0.535632 53.538957,-0.535716 53.538936,-0.535807 53.538925,-0.536434 53.538908,-0.536536 53.538912,-0.536741 53.538941,-0.537067 53.539026,-0.537192 53.539039,-0.537266 53.539029,-0.537309 53.539054,-0.537427 53.539073,-0.537812 53.539088,-0.538044 53.539072,-0.538161 53.539163,-0.538207 53.539185,-0.538187 53.539191,-0.538197 53.539217,-0.538269 53.539329,-0.538336 53.539405,-0.538436 53.539500,-0.538668 53.539692,-0.538935 53.539862,-0.539462 53.540079,-0.539977 53.540261,-0.540250 53.540341,-0.540489 53.540390,-0.540575 53.540398,-0.540721 53.540395,-0.541040 53.540352,-0.541607 53.540307,-0.541794 53.540309,-0.542013 53.540325,-0.542388 53.540380,-0.542591 53.540428,-0.542898 53.540532,-0.543561 53.540892,-0.543966 53.541013,-0.544096 53.541030,-0.544140 53.541020,-0.544406 53.541255,-0.544650 53.541490,-0.544783 53.541631,-0.544912 53.541783,-0.545133 53.541733,-0.546680 53.541474,-0.547956 53.541272,-0.548307 53.541208),(-0.536485 53.537110,-0.536486 53.537127,-0.536481 53.537110,-0.536485 53.537110)))" -,44005172,2011-07-27,8,ea8ac14a4c3e0baabe84b82f4d5af11f480114fb7d55b0a8adbdb6f512967903,name,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,Scawby Conservation area -,44005172,2011-07-27,8,1e999393a4e83678796db3c703ebfe601ac5752f16b6fa67929998539a8965d8,organisation,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,local-authority:NLN -,44005172,2011-07-27,8,46acf3966cb87f691eaddd2ab555d1de45b04f8a2b99e789d58525d339c18dc3,prefix,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,conservation-area -,44005172,2011-07-27,8,99b4efad0f95e0c22beca84fdaaeb3bb5599d5c4ee64dbbd0f2b47a03cc6bf2b,reference,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,DLS1921 -,44005172,2011-07-27,8,6b170cc43c25065feadbf76066ba2c94e073afd3bd96056fa6de6497615de90a,start-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,1985-01-01 -,44005169,2007-03-06,9,b2d327d36cb301739f1a4e8c0b5838a499cb10abf0bca9d82d8fe66dec9fff06,document-url,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,https://www.northlincs.gov.uk/planning-and-environment/historic-environment-record/ -,44005169,2007-03-06,9,bb2ded040325084a6b6f4f26ced02bbe9b00190aac7d61fded488e53bc36a082,end-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,, -,44005169,2007-03-06,9,2e14c7f9b901d08b95aaeff04a3631256b180aa9d2f8711f66c92db4856f6abb,entry-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,2007-03-06 -,44005169,2007-03-06,9,3264b9e528cccfd05400c428b6287fb8699c916d957d3485f211ed99d8662445,geometry,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,"MULTIPOLYGON (((-0.819231 53.526058,-0.818816 53.526060,-0.818073 53.526087,-0.818189 53.526485,-0.817862 53.526674,-0.817858 53.526823,-0.817132 53.526867,-0.817161 53.527334,-0.818063 53.527341,-0.818343 53.527336,-0.819181 53.527219,-0.819587 53.527171,-0.819603 53.527161,-0.819623 53.527095,-0.820095 53.527085,-0.820263 53.527058,-0.820311 53.527085,-0.820363 53.527098,-0.820953 53.527121,-0.820953 53.527139,-0.821917 53.527234,-0.822017 53.526622,-0.823115 53.526700,-0.823184 53.526703,-0.823220 53.526690,-0.823469 53.526709,-0.823502 53.526588,-0.823572 53.526410,-0.823574 53.526356,-0.823595 53.526339,-0.823696 53.526135,-0.823562 53.526094,-0.823774 53.525675,-0.823788 53.525628,-0.823485 53.525582,-0.823592 53.525286,-0.823244 53.525237,-0.823308 53.525055,-0.821817 53.524889,-0.821530 53.524848,-0.821173 53.524830,-0.821212 53.524415,-0.820741 53.524390,-0.820751 53.524310,-0.820819 53.524049,-0.820265 53.524017,-0.820260 53.524157,-0.819489 53.524095,-0.819482 53.524118,-0.819499 53.524120,-0.819575 53.524292,-0.819476 53.524391,-0.819433 53.524377,-0.819323 53.524496,-0.819302 53.524503,-0.819257 53.524541,-0.819021 53.524409,-0.818834 53.524267,-0.818735 53.524293,-0.818718 53.524316,-0.818575 53.524346,-0.818012 53.524334,-0.818011 53.524533,-0.818569 53.524531,-0.818578 53.524765,-0.818488 53.524772,-0.818501 53.524914,-0.818477 53.524915,-0.818480 53.524966,-0.818494 53.524963,-0.818498 53.525049,-0.818510 53.525049,-0.818512 53.525122,-0.818954 53.525106,-0.818954 53.525130,-0.818975 53.525130,-0.818980 53.525306,-0.819278 53.525285,-0.819302 53.525335,-0.819286 53.525519,-0.818983 53.525525,-0.819040 53.525821,-0.819232 53.525809,-0.819231 53.526058)))" -,44005169,2007-03-06,9,a404149cd7fb2a28c77b17d54714ecf5e6166108b10cf0bb1eb8883e28a08056,name,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,Epworth Conservation area -,44005169,2007-03-06,9,3a721bdeacb09989c79c9e46dbd69b1ebf703ddae5cc2d60d8feb3fdf109ba83,organisation,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,local-authority:NLN -,44005169,2007-03-06,9,73b8ef79912d2f9e414e10d57acd5d52d848ac7b3cbde8428fe7f629a272298d,prefix,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,conservation-area -,44005169,2007-03-06,9,ee767e67265018581d054764d705bb019871f76717a5be151c23e62aad74626b,reference,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,DLS1929 -,44005169,2007-03-06,9,fefec0d7e0dafb126eb0bfa585819d2aea778058ef0ccf70b9ce1b8700fccd16,start-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,1970-01-01 -,44005178,2011-07-27,10,c4c10099a2cafe4b70054c121f913d7aa5c7ddf7745dc90816cc093c5dcabdd5,document-url,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,https://www.northlincs.gov.uk/planning-and-environment/historic-environment-record/ -,44005178,2011-07-27,10,e0e23f0b1494af56eaef3fb96c30bafd043894f32df41ca6ab92ca1ecfb2bf5f,end-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,, -,44005178,2011-07-27,10,abc09301a1ac211238a213f8ff002e9d64da9bd175add88c729a10f0f974a20c,entry-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,2011-07-27 -,44005178,2011-07-27,10,14861e40a7f15fb3d38ae0f959dc3d2bf7e558820e3a3ab01bd183ccc5c9a752,geometry,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,"MULTIPOLYGON (((-0.560139 53.624437,-0.560541 53.624377,-0.560720 53.624235,-0.560893 53.624138,-0.560965 53.624103,-0.561330 53.623963,-0.561617 53.624942,-0.561823 53.625027,-0.562018 53.625135,-0.562239 53.625302,-0.562397 53.625453,-0.562574 53.625589,-0.562895 53.625859,-0.562996 53.625980,-0.563024 53.626349,-0.563352 53.627175,-0.564638 53.626932,-0.566085 53.626720,-0.566149 53.626717,-0.566345 53.626743,-0.566464 53.626743,-0.566753 53.626762,-0.566873 53.626799,-0.567279 53.626969,-0.567404 53.626983,-0.567447 53.626975,-0.567506 53.626978,-0.567379 53.626572,-0.567129 53.625667,-0.566978 53.624981,-0.567098 53.624969,-0.567182 53.624909,-0.567258 53.624874,-0.567306 53.624861,-0.567845 53.624795,-0.567936 53.624803,-0.568185 53.624881,-0.568253 53.624886,-0.568380 53.624877,-0.568378 53.624862,-0.568551 53.624855,-0.568738 53.624872,-0.569332 53.624813,-0.569677 53.624770,-0.569609 53.624384,-0.569550 53.624330,-0.568617 53.623815,-0.568370 53.622848,-0.568203 53.622023,-0.568889 53.622073,-0.568827 53.621769,-0.567853 53.621740,-0.567641 53.621716,-0.567572 53.621653,-0.567482 53.621231,-0.567454 53.621139,-0.567274 53.620364,-0.567261 53.620339,-0.567240 53.620328,-0.567213 53.620324,-0.567145 53.620336,-0.566735 53.619499,-0.566579 53.619361,-0.566506 53.619209,-0.566464 53.619153,-0.566430 53.619144,-0.565822 53.619209,-0.565832 53.619359,-0.565730 53.619371,-0.565332 53.619456,-0.565099 53.619490,-0.565127 53.619487,-0.565090 53.619491,-0.565027 53.619490,-0.564947 53.619483,-0.564501 53.619383,-0.563676 53.619463,-0.563488 53.619497,-0.563152 53.619663,-0.562714 53.619928,-0.562764 53.620070,-0.562450 53.620128,-0.562430 53.620124,-0.562378 53.620133,-0.561358 53.620351,-0.560144 53.620541,-0.559256 53.620601,-0.559244 53.620736,-0.559214 53.620768,-0.559155 53.620802,-0.559002 53.620845,-0.557555 53.620981,-0.557425 53.620986,-0.556896 53.620961,-0.556773 53.620964,-0.556709 53.620979,-0.556661 53.621001,-0.556611 53.621046,-0.556589 53.621070,-0.556535 53.621259,-0.556574 53.621264,-0.556568 53.621333,-0.557529 53.621290,-0.557598 53.621341,-0.557738 53.621478,-0.557852 53.621544,-0.557749 53.621576,-0.557463 53.621642,-0.557642 53.621912,-0.557684 53.622006,-0.557803 53.622144,-0.557123 53.622281,-0.557206 53.622429,-0.557475 53.622367,-0.557476 53.622453,-0.557513 53.622496,-0.557578 53.622530,-0.557691 53.622758,-0.557487 53.622833,-0.557049 53.622839,-0.556960 53.622849,-0.556864 53.622875,-0.556775 53.622889,-0.556526 53.622898,-0.556521 53.622957,-0.556543 53.622981,-0.556586 53.623021,-0.556641 53.623055,-0.556800 53.623117,-0.556901 53.623186,-0.556993 53.623299,-0.557292 53.623616,-0.557497 53.623585,-0.557699 53.623904,-0.557739 53.623953,-0.559613 53.623618,-0.559691 53.623761,-0.559939 53.624152,-0.560139 53.624437)))" -,44005178,2011-07-27,10,d7bd89607bf8a31ed1633eb150f2fcde4c68639ab516c36376b7c5839d126ad5,name,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,Appleby Conservation area -,44005178,2011-07-27,10,6933a59dd5bcdd26af8c6b5a2c9d6b82ef2a7edee80954a8ef7ef92d2d26ac08,organisation,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,local-authority:NLN -,44005178,2011-07-27,10,678ee4a0e4124b424cdf2d486f7795b0e29eac0a30d72cb44f5c1f8ce43adfd0,prefix,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,conservation-area -,44005178,2011-07-27,10,6615d998ddd15f8983c30797f7a2a267eb1b342e4ab5fd0c5669d8ada934b0b9,reference,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,DLS1916 -,44005178,2011-07-27,10,d68422f8176f71cb0e48031406f766aab9ac1a0b160d02046389b97a0d86df12,start-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,1972-01-01 -,44005170,2007-03-06,11,4e9b80ca6235774659d32d23f91a926ea3296e3e3da23efba51137c39720c738,document-url,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,https://www.northlincs.gov.uk/planning-and-environment/historic-environment-record/ -,44005170,2007-03-06,11,87d5b3d4c525e7ec7da965b5bad1524029b8a7308d52f970348554d3b60c0440,end-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,, -,44005170,2007-03-06,11,61464c2a002a54623a06c244527e3f36b9e88f91f63e0a4e121d0058aafd474b,entry-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,2007-03-06 -,44005170,2007-03-06,11,d32c886762879348b548d52da6912691c51dcdeac10444b58a155d10618a1b5b,geometry,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,"MULTIPOLYGON (((-0.533539 53.486509,-0.533684 53.486776,-0.533722 53.486806,-0.533764 53.486823,-0.533848 53.486821,-0.533935 53.486967,-0.533957 53.487025,-0.533494 53.486983,-0.533280 53.486981,-0.533054 53.487002,-0.532957 53.487030,-0.532903 53.487054,-0.532718 53.487211,-0.532668 53.487276,-0.532631 53.487356,-0.532629 53.487423,-0.532699 53.487554,-0.532709 53.487592,-0.532707 53.487632,-0.532686 53.487687,-0.532637 53.487738,-0.532427 53.487855,-0.532415 53.487885,-0.532895 53.487924,-0.532979 53.487923,-0.533041 53.488024,-0.533092 53.488159,-0.533256 53.488386,-0.533968 53.488285,-0.534117 53.488740,-0.535248 53.488611,-0.535232 53.488677,-0.535109 53.488954,-0.535301 53.488938,-0.535786 53.488854,-0.535950 53.488833,-0.536227 53.488815,-0.537089 53.488793,-0.537238 53.488768,-0.537394 53.488719,-0.537509 53.488646,-0.537544 53.488605,-0.537567 53.488554,-0.537576 53.488497,-0.537659 53.488312,-0.537658 53.488217,-0.537678 53.488123,-0.537691 53.488098,-0.537806 53.487974,-0.537831 53.487881,-0.537905 53.487389,-0.538382 53.487290,-0.538972 53.487155,-0.539023 53.487135,-0.539057 53.487119,-0.539084 53.487088,-0.539034 53.486957,-0.539058 53.486956,-0.539062 53.486916,-0.539112 53.486857,-0.539174 53.486829,-0.539264 53.486738,-0.539524 53.486656,-0.539542 53.486621,-0.540356 53.486442,-0.540394 53.486373,-0.540387 53.486339,-0.540357 53.486286,-0.540028 53.485813,-0.539936 53.485763,-0.539827 53.485745,-0.539001 53.485948,-0.538927 53.485935,-0.538899 53.485895,-0.538846 53.485907,-0.538472 53.485374,-0.538694 53.485129,-0.538881 53.485056,-0.538864 53.485025,-0.538874 53.485009,-0.539007 53.484925,-0.539137 53.484884,-0.539223 53.484874,-0.539278 53.484829,-0.539293 53.484786,-0.539324 53.484755,-0.539380 53.484748,-0.539480 53.484849,-0.539486 53.484887,-0.539550 53.484935,-0.539758 53.484806,-0.539800 53.484758,-0.539825 53.484683,-0.539819 53.484604,-0.539789 53.484553,-0.539733 53.484514,-0.539639 53.484502,-0.539443 53.484502,-0.539148 53.484530,-0.538984 53.484532,-0.538918 53.484526,-0.538500 53.484436,-0.538481 53.484558,-0.538326 53.484944,-0.538054 53.485281,-0.537909 53.485246,-0.537642 53.485217,-0.537220 53.485619,-0.537029 53.485730,-0.537069 53.485887,-0.536628 53.485904,-0.536624 53.485888,-0.536428 53.485898,-0.536202 53.485919,-0.536163 53.485935,-0.536051 53.485944,-0.535895 53.485434,-0.535847 53.485333,-0.535650 53.485377,-0.535440 53.485406,-0.535284 53.485410,-0.533884 53.485559,-0.533714 53.486004,-0.533612 53.486317,-0.533539 53.486509)))" -,44005170,2007-03-06,11,057cf97a5d0870446b7bb2c075d577fee69269ba84bfd84287bf0f60bec02fc3,name,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,Redbourne Conservation area -,44005170,2007-03-06,11,39cf7feee0aaa590e20eb507c6c7f5bc9f3df9551d5c657ea419176dd34b67f1,organisation,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,local-authority:NLN -,44005170,2007-03-06,11,fbdabbab695f51d8e0e47d1b2655ace98bd91800ada77fd7288af9e294ca5b7e,prefix,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,conservation-area -,44005170,2007-03-06,11,0daa55ad7b25bee08d72287ac5dd85e9adeff238b83dc9ee0415899478560c1f,reference,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,DLS1920 -,44005170,2007-03-06,11,7d6b17b3a1d3b95d98ff4595332504dd858f13079b475e22638368f8c0bca998,start-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,1985-01-01 -,44001414,2007-03-06,12,fe9d2a30f7280ffc03f44c378006714fab5116a152e3a3c0af7653399c3398aa,document-url,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,https://www.northlincs.gov.uk/planning-and-environment/historic-environment-record/ -,44001414,2007-03-06,12,d7cd9b51074b2ede7edab9349769f33ab15f3f222d754f4e33be4c134714bed6,end-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,, -,44001414,2007-03-06,12,c3056f1d86d69ab1067092bb60dbb6a05e4a8a1c8095f34d74a6e682c04695f4,entry-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,2007-03-06 -,44001414,2007-03-06,12,4716ae117b3785ae7266c94e87d1d3a714746c6c3d29b6231d77b3ae71ba1626,geometry,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,"MULTIPOLYGON (((-0.652490 53.599013,-0.652830 53.598915,-0.653294 53.598853,-0.653303 53.598878,-0.654238 53.598744,-0.654588 53.598552,-0.654921 53.598538,-0.655105 53.598474,-0.655245 53.598481,-0.655235 53.598350,-0.655240 53.598294,-0.656040 53.598359,-0.655972 53.598002,-0.655272 53.598070,-0.655193 53.598024,-0.655048 53.598038,-0.655019 53.597932,-0.654884 53.597947,-0.653536 53.598037,-0.653232 53.598045,-0.653222 53.598051,-0.652913 53.598068,-0.652484 53.598111,-0.652493 53.598165,-0.652387 53.598172,-0.651850 53.598240,-0.651702 53.598244,-0.651756 53.598365,-0.651598 53.598387,-0.651596 53.598382,-0.651534 53.598396,-0.651541 53.598448,-0.651223 53.598538,-0.651059 53.598617,-0.651214 53.598763,-0.651350 53.598761,-0.652199 53.598548,-0.652490 53.599013)))" -,44001414,2007-03-06,12,aab9a12dd7b0d40586a411cfc4c0f64f25e91f18d23507b8719f339c0599efaa,name,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,Old Crosby Conservation area -,44001414,2007-03-06,12,01bd36f1a43472be61f8af579e4b1be9d49c4b6ae04957d122c529f81a4618fc,organisation,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,local-authority:NLN -,44001414,2007-03-06,12,389f958fc1ce36fa4bc69e2b3fe6c2ee75d3346fd6d7eda2a47c763ee50cb23f,prefix,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,conservation-area -,44001414,2007-03-06,12,cd51b165cde591cd0c5748c9195c0bfac9646f4a63b3bb7ff821261fcbc9d400,reference,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,DLS1923 -,44001414,2007-03-06,12,8ddd664112078dd47b4553e27dcc379d5188c2abb83232546a622d8316a4a905,start-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,1976-01-01 -,44001415,2007-03-06,13,e62added2aa97e9224f7691e83156467a8f875f0ed39d070acdab95fc4c79a25,document-url,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,https://www.northlincs.gov.uk/planning-and-environment/historic-environment-record/ -,44001415,2007-03-06,13,45e279b39dd6958be74e7bcfb12e1e0c6779cf7354739778ec9c01966e48f8b5,end-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,, -,44001415,2007-03-06,13,2a347365ff9426cd665b1dfdc27adddba94c0959ef6b7e6e5ad3613de43b6b05,entry-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,2007-03-06 -,44001415,2007-03-06,13,f6d58186c82939975a002810feaa4c9e5bbe3ac65d5546a3b232857e51de2abd,geometry,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,"MULTIPOLYGON (((-0.673189 53.639911,-0.673177 53.639611,-0.673146 53.639482,-0.673120 53.639451,-0.673093 53.639432,-0.673044 53.639419,-0.672803 53.639413,-0.672325 53.639218,-0.672299 53.639197,-0.672273 53.639157,-0.672136 53.639068,-0.672040 53.639018,-0.671993 53.639012,-0.671799 53.639020,-0.671658 53.639040,-0.671617 53.639021,-0.671544 53.639011,-0.671418 53.639029,-0.671406 53.638903,-0.671328 53.638918,-0.670999 53.639035,-0.670512 53.639095,-0.670441 53.639093,-0.670434 53.639077,-0.670406 53.639068,-0.669874 53.639013,-0.669785 53.638994,-0.669712 53.638968,-0.669685 53.638950,-0.669669 53.638925,-0.669676 53.638801,-0.669699 53.638642,-0.669700 53.638563,-0.669685 53.638525,-0.669630 53.638443,-0.669631 53.638275,-0.669612 53.638241,-0.669548 53.638169,-0.669529 53.638134,-0.669473 53.638082,-0.669465 53.638225,-0.669457 53.638227,-0.668566 53.638210,-0.668515 53.638779,-0.668491 53.638904,-0.668392 53.638907,-0.668329 53.638900,-0.668088 53.638851,-0.667837 53.638913,-0.667233 53.638912,-0.667226 53.638807,-0.667218 53.638790,-0.667164 53.638773,-0.667030 53.638797,-0.666830 53.638870,-0.666471 53.638860,-0.666183 53.638866,-0.666120 53.638116,-0.665638 53.638103,-0.665615 53.638053,-0.665539 53.637962,-0.665443 53.637880,-0.665309 53.637816,-0.665102 53.637786,-0.664862 53.638489,-0.664520 53.639608,-0.664378 53.639870,-0.664343 53.639981,-0.663963 53.640659,-0.666313 53.640683,-0.666495 53.640703,-0.666642 53.640730,-0.667133 53.640848,-0.667260 53.640871,-0.667386 53.640862,-0.667669 53.640915,-0.667689 53.640963,-0.667672 53.640998,-0.667930 53.641037,-0.667961 53.641102,-0.667961 53.641180,-0.667974 53.641244,-0.667992 53.641278,-0.668011 53.641300,-0.668061 53.641328,-0.668167 53.641350,-0.668111 53.641585,-0.668393 53.641621,-0.668461 53.641368,-0.668542 53.641306,-0.668997 53.641091,-0.669280 53.641275,-0.669400 53.641337,-0.669734 53.641478,-0.670064 53.641586,-0.670542 53.641729,-0.671006 53.641828,-0.671468 53.641938,-0.672190 53.642143,-0.672306 53.641943,-0.672621 53.641278,-0.674466 53.641311,-0.674466 53.641052,-0.674558 53.641053,-0.674568 53.640968,-0.674581 53.640941,-0.674687 53.640844,-0.674696 53.640797,-0.674422 53.640773,-0.674214 53.640771,-0.673232 53.640791,-0.673189 53.639911)))" -,44001415,2007-03-06,13,5f4c9181538d8298ff3ad9b7869fd7ca5baece946d6212b362966021a802f1aa,name,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,Normanby Conservation area -,44001415,2007-03-06,13,1079c0b79bb3b1b8b983a1e71b3d18e7d9a9aa0876fb29ae020591ad3b3d0c7e,organisation,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,local-authority:NLN -,44001415,2007-03-06,13,38bec5a643b9de1f074657843240aa5d0438b6e34801430a24842fb03e723e17,prefix,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,conservation-area -,44001415,2007-03-06,13,4ae3dd61a1f60996d03e108ed3aa572ca559cac226315700bb46ac8f0532aab5,reference,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,DLS1924 -,44001415,2007-03-06,13,618ce8e22ad5c9ea6f64b84cedf656889acd5fc7d7c6998039c31f6539fa7dfd,start-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,1985-01-01 -,44001416,2007-03-06,14,557675601a33c44a085bc36b46c513d3f73c0450c16c25349d112a353d740c5b,document-url,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,https://www.northlincs.gov.uk/planning-and-environment/historic-environment-record/ -,44001416,2007-03-06,14,e61f2a74c2c39492d1bdba837414eeed86d163e60e669fef13aa6f15a0d0b0bf,end-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,, -,44001416,2007-03-06,14,a2763fc6b35867d19611e2a066512236a9e464bd988cc65adf8f7c1b1a77c90f,entry-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,2007-03-06 -,44001416,2007-03-06,14,b072f6475d117851a972264fd1e2bbc2f5d7025503c443ca647418c69b84aea4,geometry,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,"MULTIPOLYGON (((-0.832102 53.609487,-0.832571 53.609377,-0.833200 53.609207,-0.833310 53.609158,-0.833385 53.609227,-0.833441 53.609296,-0.833640 53.609275,-0.833687 53.609459,-0.833917 53.609446,-0.834010 53.609433,-0.834015 53.609444,-0.834118 53.609426,-0.834186 53.609584,-0.834194 53.609671,-0.834242 53.609769,-0.834418 53.609741,-0.834414 53.609735,-0.834496 53.609718,-0.834523 53.609786,-0.835021 53.609711,-0.835045 53.609781,-0.835138 53.609770,-0.835150 53.609757,-0.835392 53.609814,-0.835265 53.609332,-0.835596 53.609284,-0.835563 53.609180,-0.835878 53.609159,-0.835832 53.609048,-0.836098 53.609025,-0.836109 53.609070,-0.836174 53.609066,-0.836158 53.608982,-0.836143 53.608955,-0.836348 53.608940,-0.836389 53.608808,-0.836372 53.608760,-0.836387 53.608762,-0.836398 53.608688,-0.836414 53.608215,-0.835930 53.608278,-0.835792 53.607939,-0.836362 53.607858,-0.836075 53.607160,-0.835172 53.607227,-0.835068 53.607218,-0.835106 53.607043,-0.834856 53.607010,-0.834769 53.606991,-0.834658 53.606950,-0.833935 53.606844,-0.833654 53.606734,-0.833665 53.606725,-0.833702 53.606726,-0.833734 53.606420,-0.833780 53.606320,-0.833891 53.606306,-0.834133 53.606246,-0.834106 53.606040,-0.834086 53.606038,-0.834043 53.605628,-0.833626 53.605624,-0.833612 53.605458,-0.833346 53.605469,-0.833344 53.605344,-0.833320 53.605177,-0.832952 53.605180,-0.832786 53.604943,-0.832736 53.604957,-0.832449 53.604662,-0.831564 53.604909,-0.831594 53.604966,-0.831754 53.605176,-0.831820 53.605278,-0.831925 53.605490,-0.831991 53.605657,-0.832101 53.606021,-0.832054 53.606048,-0.832065 53.606087,-0.832122 53.606102,-0.832145 53.606296,-0.832170 53.606636,-0.831588 53.606670,-0.831447 53.606592,-0.831233 53.606615,-0.831318 53.607141,-0.830805 53.607167,-0.830947 53.607881,-0.830648 53.607904,-0.830696 53.608152,-0.830872 53.608834,-0.831130 53.608801,-0.831374 53.608787,-0.831727 53.608747,-0.831741 53.608786,-0.831776 53.608810,-0.831792 53.608893,-0.831786 53.608892,-0.831806 53.608945,-0.831888 53.609261,-0.831870 53.609364,-0.831584 53.609315,-0.831552 53.609572,-0.832111 53.609525,-0.832102 53.609487)))" -,44001416,2007-03-06,14,771e40e954fb1c3dde0bcfed1391b67c7eff9274e68f86763dfe62d98a082c77,name,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,Crowle Conservation area -,44001416,2007-03-06,14,fb39caa9b2b00a4dd16f10441e7d718e1a65afd4cdc90785e258e18fd7291056,organisation,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,local-authority:NLN -,44001416,2007-03-06,14,b077cc624b4005966df9be9f4c40e4b201a0940fb2b95fdb1492fd87ccc92452,prefix,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,conservation-area -,44001416,2007-03-06,14,dd2efafeccc6263e39611d4289102de9b23d01d33b306a6e8be098250029103c,reference,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,DLS1925 -,44001416,2007-03-06,14,2beca7c63f7145c24ba87c6b2b2ac3cdd659cbb1feca96d13c1565a5a728e5bf,start-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,1989-01-01 -,44005171,2007-03-06,15,b2093d3bf89bf3b92dda9a63de0749d572604665208d780c733341265f897469,document-url,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,https://www.northlincs.gov.uk/planning-and-environment/historic-environment-record/ -,44005171,2007-03-06,15,055d0cab8d48781fe8ddfc9f6edef77de71cf8af723c11d7431c005129f340f1,end-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,, -,44005171,2007-03-06,15,8d2a13e99440d2fa4f5ec2ce6a31151f974219d3c478e6efe59037c273760de4,entry-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,2007-03-06 -,44005171,2007-03-06,15,d08639a86304a163fbae1ac3acf196a323539079c3a18e6e3b0d351ae974082c,geometry,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,"MULTIPOLYGON (((-0.483187 53.550822,-0.483484 53.550989,-0.483987 53.551215,-0.484522 53.551489,-0.484584 53.551526,-0.484673 53.551609,-0.484894 53.552050,-0.484898 53.552104,-0.484852 53.552140,-0.484486 53.552500,-0.484501 53.552505,-0.484432 53.552577,-0.484384 53.552571,-0.484227 53.552714,-0.483673 53.552809,-0.483888 53.553268,-0.484027 53.553246,-0.484022 53.553229,-0.484081 53.553220,-0.484108 53.553232,-0.484185 53.553221,-0.484331 53.553265,-0.484707 53.553284,-0.484924 53.553686,-0.485407 53.553586,-0.485324 53.553503,-0.485466 53.553345,-0.485449 53.553341,-0.485521 53.553276,-0.485548 53.553288,-0.485614 53.553229,-0.486089 53.553108,-0.486131 53.553137,-0.486154 53.553136,-0.486372 53.553058,-0.486385 53.553029,-0.486380 53.553021,-0.486028 53.552652,-0.485899 53.552494,-0.485814 53.552428,-0.485847 53.552396,-0.486321 53.552267,-0.486434 53.552229,-0.486895 53.552157,-0.487193 53.552476,-0.487441 53.552724,-0.488145 53.552513,-0.488478 53.552442,-0.488629 53.552419,-0.488673 53.552520,-0.488707 53.552514,-0.488767 53.552654,-0.488676 53.552666,-0.488957 53.552888,-0.489206 53.553070,-0.489324 53.553140,-0.489423 53.553168,-0.489458 53.553165,-0.489957 53.553061,-0.489880 53.552920,-0.490376 53.552818,-0.490429 53.552909,-0.490607 53.552862,-0.490688 53.552798,-0.490743 53.552768,-0.490848 53.552732,-0.490947 53.552711,-0.491886 53.552629,-0.492127 53.552601,-0.492316 53.552570,-0.492311 53.552505,-0.492558 53.552490,-0.492604 53.552810,-0.492782 53.552801,-0.493252 53.552713,-0.494238 53.552601,-0.494255 53.552590,-0.494259 53.552578,-0.494375 53.552522,-0.494307 53.552478,-0.494534 53.552352,-0.494490 53.552324,-0.494856 53.552130,-0.494713 53.552012,-0.494826 53.551965,-0.495084 53.551907,-0.495115 53.551935,-0.495302 53.551881,-0.495281 53.551857,-0.495657 53.551757,-0.495738 53.551725,-0.495739 53.551704,-0.495707 53.551631,-0.495643 53.551551,-0.495658 53.551546,-0.495587 53.551462,-0.495925 53.551401,-0.496342 53.551300,-0.496280 53.551191,-0.496155 53.551005,-0.496020 53.551038,-0.495859 53.551065,-0.495743 53.551098,-0.495654 53.550983,-0.495544 53.551013,-0.495402 53.550842,-0.495372 53.550851,-0.495296 53.550743,-0.495092 53.550793,-0.494960 53.550578,-0.494798 53.550616,-0.494815 53.550641,-0.494636 53.550678,-0.494680 53.550753,-0.494700 53.550749,-0.494841 53.550960,-0.494886 53.550960,-0.494947 53.550978,-0.494995 53.551008,-0.495052 53.551067,-0.494919 53.551111,-0.494960 53.551173,-0.494008 53.551272,-0.493796 53.550978,-0.493498 53.550616,-0.492817 53.550768,-0.492902 53.550901,-0.492838 53.550916,-0.492860 53.550957,-0.492729 53.550976,-0.492748 53.551040,-0.492517 53.551045,-0.492511 53.551151,-0.491861 53.551146,-0.491883 53.551528,-0.491612 53.551519,-0.491615 53.551457,-0.491445 53.551455,-0.491225 53.551433,-0.491208 53.551274,-0.490998 53.551284,-0.490986 53.551308,-0.490897 53.551307,-0.490894 53.551340,-0.490879 53.551339,-0.490863 53.551460,-0.490147 53.551415,-0.490094 53.551562,-0.489562 53.551463,-0.489384 53.551415,-0.488958 53.551338,-0.488984 53.551002,-0.488540 53.550992,-0.488520 53.551243,-0.488396 53.551225,-0.487996 53.551136,-0.487959 53.551116,-0.487949 53.551102,-0.487905 53.551110,-0.487605 53.551048,-0.487468 53.550805,-0.486978 53.550688,-0.485814 53.550433,-0.485980 53.550176,-0.485296 53.550032,-0.485368 53.549909,-0.484894 53.549994,-0.484700 53.550036,-0.484424 53.550077,-0.484297 53.550274,-0.483754 53.550164,-0.483702 53.550218,-0.483418 53.550168,-0.483304 53.550264,-0.483862 53.550595,-0.483699 53.550698,-0.483145 53.550792,-0.483187 53.550822)))" -,44005171,2007-03-06,15,93d4a062d34ef42cb1b8df86faee2eca11e28b14a41364db26a44c541d85950d,name,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,Brigg Conservation area -,44005171,2007-03-06,15,2847808e8e5cb32d162506b73c4f90f24800df7cfb3eec755673bb9e5a0cec8b,organisation,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,local-authority:NLN -,44005171,2007-03-06,15,cb18d279b174046c2a38c789002809e0889b82fa3f701eba94c1f4ac44e7dba1,prefix,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,conservation-area -,44005171,2007-03-06,15,05f543953ac5f8576b01274f5ea474499362eb70ae2b3c4658d46d1c4d0dc545,reference,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,DLS1927 -,44005171,2007-03-06,15,3a477c1ea59e340f912bc1d7f8aa96e662c398273142cd42218fbac3fec9dd6f,start-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,1971-01-01 -,44001417,2007-03-06,16,9f102cdec731f6b9530a5b734e067a85b79cfd3cae69cd8257e098daa749f6e9,document-url,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,https://www.northlincs.gov.uk/planning-and-environment/historic-environment-record/ -,44001417,2007-03-06,16,73449972eef51359b30ed0daebfe55205f782f46882e791f7a899191b1f193c2,end-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,, -,44001417,2007-03-06,16,6a0a446d842f7325ba4928af32ac434a9028bf7e44426940f0e509eae6cf3b32,entry-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,2007-03-06 -,44001417,2007-03-06,16,a4169f3a2ae456f566f0ad2f7c97c65d10ea44e2705b67fa12852274fc4c1d24,geometry,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,"MULTIPOLYGON (((-0.590663 53.475224,-0.590185 53.475134,-0.590004 53.475065,-0.589930 53.475141,-0.589861 53.475128,-0.589753 53.475061,-0.589671 53.474997,-0.589800 53.474946,-0.589581 53.474755,-0.589546 53.474705,-0.589409 53.474569,-0.589128 53.474660,-0.589109 53.474640,-0.589057 53.474619,-0.588905 53.474412,-0.588476 53.474361,-0.588015 53.474253,-0.587894 53.474242,-0.586790 53.474315,-0.586948 53.474720,-0.587094 53.474699,-0.587155 53.474842,-0.586525 53.474872,-0.586587 53.475565,-0.586608 53.476030,-0.586407 53.476041,-0.586414 53.476087,-0.586320 53.476093,-0.586340 53.476317,-0.586523 53.476306,-0.586534 53.476365,-0.586560 53.477419,-0.586762 53.477416,-0.586877 53.477444,-0.586956 53.477484,-0.586985 53.477513,-0.587005 53.477557,-0.587027 53.477770,-0.587427 53.477765,-0.587894 53.477548,-0.588054 53.477753,-0.588056 53.477834,-0.589164 53.477824,-0.589164 53.477814,-0.589381 53.477815,-0.589381 53.477823,-0.589587 53.477826,-0.589633 53.477752,-0.589649 53.477694,-0.589758 53.477510,-0.589841 53.477534,-0.589888 53.477493,-0.590337 53.477492,-0.590237 53.477386,-0.590388 53.477339,-0.590947 53.477192,-0.591036 53.477331,-0.591189 53.477544,-0.591226 53.477583,-0.591549 53.477511,-0.591563 53.477532,-0.591991 53.477431,-0.592126 53.477667,-0.592173 53.477724,-0.592248 53.477771,-0.592443 53.477786,-0.592760 53.477785,-0.593295 53.477766,-0.593429 53.477722,-0.593518 53.477671,-0.593534 53.477586,-0.593519 53.477434,-0.593475 53.477290,-0.593570 53.477154,-0.593690 53.476646,-0.593985 53.476602,-0.594209 53.476581,-0.594201 53.476509,-0.594218 53.476507,-0.594200 53.476469,-0.594165 53.476440,-0.594322 53.476434,-0.594534 53.476411,-0.594562 53.476504,-0.594580 53.476501,-0.594650 53.476677,-0.594711 53.476738,-0.595111 53.476668,-0.595269 53.476627,-0.595229 53.476578,-0.595045 53.476215,-0.595209 53.476167,-0.595095 53.476009,-0.595183 53.475984,-0.595051 53.475788,-0.594836 53.475827,-0.594828 53.475797,-0.594810 53.475691,-0.594809 53.475633,-0.594840 53.475506,-0.594946 53.475437,-0.594961 53.475393,-0.594951 53.475252,-0.594930 53.475173,-0.594533 53.475216,-0.594379 53.475245,-0.594345 53.475177,-0.594323 53.475104,-0.594315 53.475064,-0.594324 53.474987,-0.594382 53.474801,-0.594429 53.474673,-0.594584 53.474364,-0.594663 53.474145,-0.594703 53.473998,-0.594700 53.473911,-0.594663 53.473790,-0.594614 53.473727,-0.594581 53.473701,-0.594515 53.473670,-0.594408 53.473660,-0.594370 53.473665,-0.594326 53.473682,-0.594299 53.473704,-0.594318 53.473717,-0.593847 53.473980,-0.593373 53.474189,-0.593315 53.474229,-0.593302 53.474256,-0.593306 53.474303,-0.593341 53.474353,-0.593568 53.474496,-0.593682 53.474590,-0.593711 53.474670,-0.593060 53.474770,-0.593003 53.474787,-0.592933 53.474823,-0.592849 53.474750,-0.592626 53.474597,-0.592313 53.474729,-0.592341 53.474754,-0.592238 53.474796,-0.592294 53.474853,-0.592305 53.474874,-0.592307 53.474908,-0.592141 53.474972,-0.592042 53.475044,-0.591966 53.475074,-0.591879 53.475100,-0.591682 53.475142,-0.591595 53.475172,-0.590663 53.475224)))" -,44001417,2007-03-06,16,06512f952b3a67115eb01ebd56d81f37ad5ce876a0c15c82f5724c5330415d44,name,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,Kirton in Lindsey Conservation area -,44001417,2007-03-06,16,44132976b1dc83d5844c9d6cf9bd527114718129e5e985571e435d9c433b6ffe,organisation,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,local-authority:NLN -,44001417,2007-03-06,16,117a65a754c79427430bed2a466d2c3c2e4eaa1ce8b80c0754ff29ca8672723f,prefix,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,conservation-area -,44001417,2007-03-06,16,582d3e3e10f7a0f3aa631ff6c1e87f47cbf30dcdb8f4e8df0062090f6f31e739,reference,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,DLS1930 -,44001417,2007-03-06,16,5a2955699d8ee30a4dc5176bd908b416159d0e62d7bbd105923c6816c8359713,start-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,1970-01-01 -,44005176,2011-07-27,17,6446a9705bb9b40823d825c801ac4804a8bb15d38908a181374b36c9143556c4,document-url,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,https://www.northlincs.gov.uk/planning-and-environment/historic-environment-record/ -,44005176,2011-07-27,17,904ddf917bc299b00234d6785984103583379845df603755b6e5cf94c758f9dc,end-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,, -,44005176,2011-07-27,17,2c18570f614b89d16e2489a94d8a420c144504f5504c34c06ca0173c12e38409,entry-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,2011-07-27 -,44005176,2011-07-27,17,e278dac73e6948447473a4972e8d3725160af15c5decbc06faefc5c565f68c90,geometry,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,"MULTIPOLYGON (((-0.594040 53.689230,-0.594072 53.689201,-0.594266 53.688663,-0.594315 53.688578,-0.592954 53.688240,-0.593103 53.688021,-0.592924 53.687979,-0.592898 53.687959,-0.592412 53.687852,-0.592593 53.687610,-0.592637 53.687514,-0.592479 53.687467,-0.592147 53.687349,-0.592017 53.687270,-0.591968 53.687204,-0.591943 53.687121,-0.592256 53.686284,-0.592159 53.686048,-0.592099 53.685948,-0.592062 53.685925,-0.591918 53.685872,-0.591674 53.685809,-0.591578 53.685794,-0.591368 53.685719,-0.591128 53.685709,-0.589213 53.685685,-0.588784 53.685658,-0.588340 53.685616,-0.588322 53.685630,-0.587552 53.685751,-0.587462 53.686299,-0.587332 53.686247,-0.587102 53.686178,-0.587028 53.686171,-0.587018 53.686180,-0.586627 53.686088,-0.585977 53.686750,-0.586628 53.686988,-0.586488 53.687289,-0.587039 53.687467,-0.587516 53.687660,-0.587649 53.687497,-0.588155 53.687654,-0.588562 53.687804,-0.588709 53.687649,-0.589072 53.687768,-0.589186 53.687637,-0.589434 53.687718,-0.589594 53.687792,-0.589227 53.688212,-0.588773 53.688703,-0.588529 53.689013,-0.589241 53.689234,-0.589030 53.689507,-0.589164 53.689566,-0.589773 53.689734,-0.589847 53.689643,-0.589915 53.689661,-0.590134 53.689330,-0.590855 53.689472,-0.591070 53.689089,-0.591154 53.689099,-0.591968 53.689307,-0.592211 53.688921,-0.592638 53.689030,-0.592989 53.689091,-0.593624 53.689224,-0.593908 53.689258,-0.594009 53.689244,-0.594040 53.689230)),((-0.601847 53.690569,-0.601827 53.690375,-0.601824 53.690242,-0.601877 53.690227,-0.601974 53.690177,-0.602047 53.690124,-0.602116 53.690054,-0.602377 53.690099,-0.602536 53.689863,-0.602314 53.689783,-0.602262 53.689700,-0.602558 53.689374,-0.602537 53.689359,-0.602475 53.689337,-0.601891 53.689363,-0.601776 53.689383,-0.601490 53.689381,-0.601435 53.689389,-0.601363 53.689407,-0.601203 53.689508,-0.601156 53.689532,-0.601042 53.689571,-0.600946 53.689653,-0.600471 53.689608,-0.600107 53.689633,-0.599931 53.689940,-0.599889 53.689945,-0.599766 53.689915,-0.599434 53.689783,-0.599314 53.689752,-0.598635 53.689713,-0.598449 53.689681,-0.597929 53.689695,-0.597883 53.689512,-0.597680 53.689504,-0.597587 53.689478,-0.597600 53.689192,-0.597506 53.689181,-0.597538 53.689092,-0.597296 53.689061,-0.597334 53.688822,-0.597272 53.688764,-0.597214 53.688588,-0.597223 53.688241,-0.596863 53.688243,-0.596317 53.688156,-0.596181 53.688153,-0.596053 53.688172,-0.596036 53.688477,-0.595962 53.688502,-0.595736 53.688426,-0.595442 53.688369,-0.595335 53.688709,-0.595362 53.688798,-0.595310 53.688917,-0.595504 53.688980,-0.595274 53.689433,-0.595600 53.689479,-0.595653 53.689462,-0.595749 53.689476,-0.595706 53.689589,-0.595621 53.689642,-0.595556 53.689805,-0.595690 53.689827,-0.595620 53.689981,-0.595590 53.690026,-0.595557 53.690043,-0.595362 53.690513,-0.596257 53.690577,-0.596205 53.690761,-0.596739 53.690794,-0.596745 53.690728,-0.597519 53.690865,-0.597543 53.690822,-0.597595 53.690828,-0.597946 53.690904,-0.598078 53.690920,-0.598446 53.690943,-0.598417 53.691102,-0.598893 53.691121,-0.599404 53.690988,-0.599591 53.691021,-0.599743 53.691036,-0.599826 53.691025,-0.599918 53.691000,-0.600013 53.690966,-0.600195 53.690877,-0.600320 53.690803,-0.600356 53.690775,-0.600385 53.690732,-0.600405 53.690664,-0.600468 53.690601,-0.600613 53.690662,-0.601324 53.690584,-0.601847 53.690569)))" -,44005176,2011-07-27,17,f6c01223f2301cd0291490e2298f5febd9d3546ffbfe589951e970f4b3cfbda5,name,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,Winteringham Conservation area -,44005176,2011-07-27,17,92f5595d6cb1592cdb719c5251a8501b54ed95e69a45c9e4775b5de23874a834,organisation,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,local-authority:NLN -,44005176,2011-07-27,17,7f5d1ffb1904be935ca247730028470a9d2297bd4b5f277e1de749327dd3b37d,prefix,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,conservation-area -,44005176,2011-07-27,17,4c035ab936d21782cded50bb3d06ee634bb381810deed16a22a97d3cf9dcc882,reference,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,DLS1931 -,44005176,2011-07-27,17,575e9e9e4644e73cc6d65c6a49ef6c3d91be232d619f42314137bcfe783d6834,start-date,2,,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,,1986-01-01 diff --git a/tests/data/conservation-area/var/column-field/conservation-area/7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb.csv b/tests/data/conservation-area/var/column-field/conservation-area/7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb.csv deleted file mode 100644 index 1b23dfba..00000000 --- a/tests/data/conservation-area/var/column-field/conservation-area/7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb.csv +++ /dev/null @@ -1,8 +0,0 @@ -dataset,resource,column,field -conservation-area,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,WKT,geometry -conservation-area,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,reference,reference -conservation-area,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,document-url,document-url -conservation-area,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,end-date,end-date -conservation-area,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,entry-date,entry-date -conservation-area,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,name,name -conservation-area,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,start-date,start-date diff --git a/tests/data/conservation-area/var/dataset-resource/conservation-area/7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb.csv b/tests/data/conservation-area/var/dataset-resource/conservation-area/7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb.csv deleted file mode 100644 index 2d6ad466..00000000 --- a/tests/data/conservation-area/var/dataset-resource/conservation-area/7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb.csv +++ /dev/null @@ -1,2 +0,0 @@ -dataset,resource,entry-count,line-count,mime-type,internal-path,internal-mime-type -conservation-area,7844cb273d28a551fd55ceb6b7140f1b85ff3c46b4ee8c652e935c6e91b5d4eb,17,18,application/json;charset=ASCII,, diff --git a/tests/integration/test_package_datasetparquet.py b/tests/integration/test_package_datasetparquet.py deleted file mode 100644 index 3f40e4ea..00000000 --- a/tests/integration/test_package_datasetparquet.py +++ /dev/null @@ -1,704 +0,0 @@ -import sqlite3 -import numpy as np -import pandas as pd -import pytest -import os -import json -from digital_land.package.datasetparquet import DatasetParquetPackage - - -class MockOrganisation(object): - def __init__(self, organisation_path): - self.organisation_path = organisation_path - - -# Fixture to create a shared temporary directory -@pytest.fixture(scope="session") -def temp_dir(tmpdir_factory): - temp_dir = tmpdir_factory.mktemp("shared_session_temp_dir") - yield temp_dir - - -@pytest.fixture -def test_dataset_parquet_package(temp_dir): - # Set up temporary files with mock data - input_paths = [ - temp_dir / "hash1.csv", - temp_dir / "hash2.csv", - temp_dir / "hash3.csv", - ] - columns = [ - "end-date", - "entity", - "entry-date", - "entry-number", - "fact", - "field", - "priority", - "reference-entity", - "resource", - "start-date", - "value", - ] - # Test data for the tables. This checks that 'field' get pivoted - test_geometry = "MULTIPOLYGON(((-0.49901924 53.81622,-0.5177418 53.76114,-0.4268378 53.78454,-0.49901924 53.81622)))" - data = [ - [ - np.nan, - 11, - "2023-01-01", - 2, - "abcdef1", - "entry-date", - 2, - np.nan, - "zyxwvu", - np.nan, - "2023-01-01", - ], - [ - np.nan, - 11, - "2023-01-01", - 2, - "abcdef2", - "geometry", - 2, - np.nan, - "zyxwvu", - np.nan, - f'"{test_geometry}"', - ], - [ - np.nan, - 11, - "2023-01-01", - 2, - "abcdef2p", - "point", - 2, - np.nan, - "zyxwvu", - np.nan, - '"POINT(-0.481 53.788)"', # This checks that point is not recalculated if given - ], - [ - np.nan, - 11, - "2023-01-01", - 2, - "abcdef3", - "document-url", - 2, - np.nan, - "zyxwvu", - np.nan, - "https://www.test.xyz", - ], - [ - np.nan, - 11, - "2023-01-01", - 2, - "abcdef4", - "organisation", - 2, - np.nan, - "zyxwvu", - np.nan, - "local-authority:AAA", - ], - [ - np.nan, - 12, - "2023-02-01", - 2, - "abc1231", - "entry-date", - 2, - np.nan, - "yxwvut", - np.nan, - "2023-01-01", - ], - [ - np.nan, - 12, - "2023-02-01", - 2, - "abc1232", - "geometry", - 2, - np.nan, - "yxwvut", - np.nan, - f'"{test_geometry}"', - ], - [ - np.nan, - 12, - "2023-01-01", - 2, - "abc1233", - "organisation", - 2, - np.nan, - "zyxwvu", - np.nan, - "local-authority:BBB", - ], - [ - np.nan, - 13, - "2023-01-01", - 2, - "def4561", - "entry-date", - 2, - np.nan, - "xwvuts", - np.nan, - "2023-01-01", - ], - [ - np.nan, - 13, - "2023-01-01", - 2, - "def4562", - "geometry", - 2, - np.nan, - "xwvuts", - np.nan, - f'"{test_geometry}"', - ], - [ - np.nan, - 13, - "2023-01-01", - 2, - "def4563", - "organisation", - 2, - np.nan, - "zyxwvu", - np.nan, - "local-authority:CCC", - ], - [ - np.nan, - 14, - "2023-01-01", - 2, - "a1b2c31", - "entry-date", - 2, - np.nan, - "wvutsr", - np.nan, - "2023-01-01", - ], - [ - np.nan, - 14, - "2023-01-01", - 2, - "a1b2c32", - "geometry", - 2, - np.nan, - "wvutsr", - np.nan, - f'"{test_geometry}"', - ], - [ - np.nan, - 14, - "2023-01-01", - 2, - "a1b2c33", - "document-url", - 2, - np.nan, - "zyxwvu", - np.nan, - "https://www.testing.yyz", - ], - [ - np.nan, - 14, - "2023-01-01", - 2, - "a1b2c34", - "notes-checking", - 2, - np.nan, - "zyxwvu", - np.nan, - "Something random", - ], - [ - np.nan, - 14, - "2023-01-01", - 2, - "a1b2c35", - "organisation", - 2, - np.nan, - "zyxwvu", - np.nan, - "local-authority:DDD", - ], - ] - with open(input_paths[0], "w") as f: - f.write(",".join(columns) + "\n") - for row in data: - f.write( - ",".join(map(lambda x: str(x) if x is not np.nan else "", row)) + "\n" - ) - - # Test data for the tables. This has plenty of 'duplicates' to check - data = [ - [ - np.nan, - 110, - "2023-01-01", - 2, - "badcfe1", - "entry-date", - 2, - np.nan, - "zyx123", - np.nan, - "2023-01-01", - ], - [ - np.nan, - 110, - "2023-01-01", - 2, - "badcfe2", - "entry-date", - 2, - np.nan, - "zyx123", - np.nan, - "2023-01-01", - ], # same - [ - np.nan, - 110, - "2023-01-01", - 2, - "badcfe3", - "organisation", - 2, - np.nan, - "zyx123", - np.nan, - "local-authority:DDD", - ], - [ - np.nan, - 111, - "2023-01-01", - 2, - "fedcba1", - "entry-date", - 2, - np.nan, - "zxy123", - np.nan, - "2023-01-01", - ], - [ - np.nan, - 111, - "2023-02-01", - 2, - "fedcba2", - "entry-date", - 2, - np.nan, - "zxy123", - np.nan, - "2023-02-01", - ], # ent-date - [ - np.nan, - 111, - "2023-02-01", - 2, - "fedcba3", - "organisation", - 2, - np.nan, - "zxy123", - np.nan, - "local-authority:EEE", - ], - [ - np.nan, - 112, - "2023-02-01", - 2, - "bcdefg1", - "entry-date", - 2, - np.nan, - "yxw456", - np.nan, - "2023-02-01", - ], - [ - np.nan, - 112, - "2023-02-01", - 12, - "bcdefg2", - "entry-date", - 2, - np.nan, - "yxw456", - np.nan, - "2023-02-01", - ], # ent-no - [ - np.nan, - 112, - "2023-01-01", - 12, - "bcdefg3", - "organisation", - 2, - np.nan, - "yxw456", - np.nan, - "local-authority:FFF", - ], - [ - np.nan, - 113, - "2023-01-01", - 2, - "cdefgh1", - "entry-date", - 2, - np.nan, - "xwv789", - np.nan, - "2023-01-01", - ], - [ - np.nan, - 113, - "2023-01-01", - 2, - "hgfedc1", - "entry-date", - 2, - np.nan, - "xwv789", - np.nan, - "2023-01-01", - ], # fact - [ - np.nan, - 113, - "2023-01-01", - 2, - "cdefgh2", - "organisation", - 2, - np.nan, - "xwv789", - np.nan, - "local-authority:GGG", - ], - [ - np.nan, - 114, - "2023-04-01", - 2, - "efghij1", - "entry-date", - 1, - np.nan, - "xyz123", - np.nan, - "2023-04-01", - ], - [ - np.nan, - 114, - "2023-05-01", - 2, - "efghij2", - "entry-date", - 2, - np.nan, - "xyz123", - np.nan, - "2023-05-01", - ], # priority - [ - np.nan, - 114, - "2023-01-01", - 2, - "efghij3", - "organisation", - 1, - np.nan, - "xyz123", - np.nan, - "local-authority:HHH", - ], - [ - np.nan, - 115, - "2023-01-01", - 2, - "defghi1", - "entry-date", - 2, - np.nan, - "uvw456", - np.nan, - "2023-01-01", - ], - [ - np.nan, - 115, - "2023-01-01", - 2, - "defghi2", - "entry-date", - 2, - np.nan, - "wvu654", - np.nan, - "2023-01-01", - ], # resource - [ - np.nan, - 115, - "2023-01-01", - 2, - "defghi3", - "organisation", - 2, - np.nan, - "uvw456", - np.nan, - "local-authority:III", - ], - [ - np.nan, - 116, - "2023-01-01", - 2, - "ihgfed1", - "entry-date", - 2, - np.nan, - "rta357", - np.nan, - "2023-01-01", - ], # No org - ] - with open(input_paths[1], "w") as f: - f.write(",".join(columns) + "\n") - for row in data: - f.write( - ",".join(map(lambda x: str(x) if x is not np.nan else "", row)) + "\n" - ) - - # Leave hash3.csv empty except for the headers (to test that an empty csv doesn't screw things up). - with open(input_paths[2], "w") as f: - f.write(",".join(columns) + "\n") - - resource_path = str(temp_dir / "resource.csv") - resource_columns = ["resource", "end-date"] - with open(resource_path, "w") as f: - f.write(",".join(resource_columns) + "\n") - - # Instantiate the DatasetParquetPackage with temp_dir input paths and a mock schema - package = DatasetParquetPackage( - dataset="conservation-area", - organisation=MockOrganisation(os.path.join(temp_dir, "organisation.csv")), - path=os.path.join(temp_dir, "integration_test.sqlite3"), - cache_dir=temp_dir, - resource_path=resource_path, - specification_dir=None, - ) - package.create_temp_table(input_paths) - - yield package - - -def test_load_fact_basic(test_dataset_parquet_package, temp_dir): - output_dir = temp_dir - test_dataset_parquet_package.load_facts() - - output_file = output_dir / "fact.parquet" - assert os.path.exists(output_file), "fact.parquet file does not exist" - - df = pd.read_parquet(output_file) - - assert len(df) > 0, "No data in fact.parquet file" - assert len(df) == 35, "No. of facts is not correct" # No of unique facts - assert df.shape[1] == 9, "Not all columns saved in fact.parquet file" - - -def test_load_fact_resource_basic(test_dataset_parquet_package, temp_dir): - output_dir = temp_dir - test_dataset_parquet_package.load_fact_resource() - - # Check if the output parquet file exists and verify contents - output_file = output_dir / "fact_resource.parquet" - assert os.path.exists(output_file), "fact-resource.parquet file does not exist" - - # Load Parquet into a DataFrame to verify data correctness - df = pd.read_parquet(output_file) - - assert len(df) > 0, "No data in fact-resource,parquet file" - assert len(df) == 35, "Not all data saved in fact-resource.parquet file" - - assert df.shape[1] == 7, "Not all columns saved in fact-resource.parquet file" - - -def test_load_entities_basic(test_dataset_parquet_package, temp_dir): - output_dir = temp_dir - # Create dummy organisation.csv file for use in 'load_entities' - columns = ["organisation", "entity"] - # Test data for the tables. This checks that 'field' get pivoted - data = [ - ["local-authority:AAA", "E06000001"], - ["local-authority:BBB", "E06000002"], - ["local-authority:CCC", "E06000003"], - ["local-authority:DDD", "E06000004"], - ["local-authority:EEE", "E06000005"], - ["local-authority:FFF", "E06000006"], - ["local-authority:GGG", "E06000007"], - ["local-authority:HHH", "E06000008"], - ["local-authority:III", "E06000009"], - ] - with open(f"{temp_dir}/organisation.csv", "w") as f: - f.write(",".join(columns) + "\n") - for row in data: - f.write(",".join(map(str, row)) + "\n") - - test_dataset_parquet_package.load_entities() - - output_file = os.path.join(output_dir, "entity.parquet") - assert os.path.exists(output_file), "entity.parquet file does not exist" - - df = pd.read_parquet(output_file) - - assert len(df) > 0, "No data in entity.parquet file" - assert len(df) == 11, "No. of entities is not correct" - assert df.shape[1] == 14, "Not all columns saved in entity.parquet file" - assert df["end_date"].isin([""]).all() # Check null handling - assert df["geojson"].isin([""]).all() # Check null handling - - -def test_load_pq_to_sqlite_basic(test_dataset_parquet_package, temp_dir): - output_path = os.path.join(temp_dir, "integration_test.sqlite3") - conn = sqlite3.connect(output_path) - conn.execute( - """ - CREATE TABLE entity( - dataset TEXT, - end_date TEXT, - entity INTEGER PRIMARY KEY, - entry_date TEXT, - geojson JSON, - geometry TEXT, - json JSON, - name TEXT, - organisation_entity TEXT, - point TEXT, - prefix TEXT, - reference TEXT, - start_date TEXT, - typology TEXT - ); - """ - ) - conn.execute( - """ - CREATE TABLE fact( - end_date TEXT, - entity INTEGER, - fact TEXT PRIMARY KEY, - field TEXT, - entry_date TEXT, - priority INTEGER, - reference_entity TEXT, - start_date TEXT, - value TEXT, - FOREIGN KEY(entity) REFERENCES entity(entity) - ); - """ - ) - conn.execute( - """ - CREATE TABLE fact_resource( - end_date TEXT, - fact TEXT, - entry_date TEXT, - entry_number INTEGER, - priority INTEGER, - resource TEXT, - start_date TEXT, - FOREIGN KEY(fact) REFERENCES fact(fact) - ); - """ - ) - - conn.commit() - conn.close() - - test_dataset_parquet_package.pq_to_sqlite() - - assert os.path.exists(output_path), "sqlite3 file does not exist" - - cnx = sqlite3.connect(output_path) - df_sql = pd.read_sql_query("SELECT * FROM fact_resource", cnx) - assert len(df_sql) > 0, "No data in fact_resource table" - assert len(df_sql) == 35, "Not all data saved in fact_resource table" - assert np.all( - len(df_sql["end_date"] == 0) - ), "Non-empty strings in end_date from fact_resource table" - - df_sql = pd.read_sql_query("SELECT * FROM fact", cnx) - assert len(df_sql) > 0, "No data in fact table" - assert len(df_sql) == 35, "Not all data saved in fact table" - assert np.all( - len(df_sql["end_date"] == 0) - ), "Non-empty strings in end_date from fact table" - - df_sql = pd.read_sql_query("SELECT * FROM entity", cnx) - assert len(df_sql) > 0, "No data in entity table" - assert len(df_sql) == 11, "Not all data saved in entity table" - assert np.any( - len(df_sql["geometry"] == 0) - ), "All geometries from entity table have values" - assert np.any( - len(df_sql["geometry"] == 0) - ), "All geometries from entity table have non-blank values" - assert not any( - [ - ( - any("_" in key for key in json.loads(row).keys()) - if isinstance(row, str) - else False - ) - for row in df_sql["json"] - ] - ), "Some json object have underscores in their 'keys'" - - cnx.close()