colouring-montreal/etl
Ed Chalstrey c029976741 todo
2022-03-10 10:06:44 +00:00
..
join_building_data Add debug, no overwrite flags 2020-06-16 16:16:46 +01:00
check_ab_mm_match.py Update etl to load UPRNs to table 2018-10-02 21:12:46 +01:00
create_building_records.sh Update etl to load UPRNs to table 2018-10-02 21:12:46 +01:00
drop_outside_limit.sh Skip altering foreign key restrictions 2018-10-04 19:00:56 +01:00
extract_addressbase.sh Update etl to load UPRNs to table 2018-10-02 21:12:46 +01:00
extract_mastermap.sh unzip stage 2022-03-10 09:59:22 +00:00
filter_addressbase_csv.py Update etl to load UPRNs to table 2018-10-02 21:12:46 +01:00
filter_mastermap.py Update etl to load UPRNs to table 2018-10-02 21:12:46 +01:00
filter_transform_mastermap_for_loading.sh Fix sed quoting 2018-10-03 20:10:27 +01:00
get_test_polygons.py Fix use of osmnx to work with v0.14 2020-06-18 10:31:34 +01:00
load_geometries.sh Update etl to load UPRNs to table 2018-10-02 21:12:46 +01:00
load_postcodes.sh Set postcode zoom and class 2019-02-11 09:07:26 +00:00
load_uprns.sh Ensure index exists for uprn link 2018-10-04 21:13:25 +01:00
README.md todo 2022-03-10 10:06:44 +00:00
requirements.txt bump shapely version 2022-02-03 14:51:48 +00:00
run_all.sh Comment sections in etl run script 2018-10-21 20:47:31 +01:00
run_clean.sh Update etl to load UPRNs to table 2018-10-02 21:12:46 +01:00

Creating a Colouring London database from scratch

Data downloading

The scripts in this directory are used to extract, transform and load (ETL) the core datasets for Colouring London:

  1. Building geometries, sourced from Ordnance Survey (OS) MasterMap (Topography Layer)
  2. Unique Property Reference Numbers (UPRNs), sourced from Ordnance Survey AddressBase

To get the required datasets, you'll need to complete the following steps:

  1. Sign up for the Ordnance Survey Data Exploration License. You should receive an e-mail with a link to log in to the platform (this could take up to a week).
  2. Navigate to https://orders.ordnancesurvey.co.uk/orders and click the button for: ✏️ Order. From here you should be able to click another button to add a product.
  3. Drop a rectangle or Polygon over London and make the following selections, clicking the "Add to basket" button for each:

  1. You should be then able to check out your basket and download the files

Prerequisites

You should already have set up PostgreSQL and created a database. Make sure to create environment variables to use psql if you haven't already:

export PGPASSWORD=<pgpassword>
export PGUSER=<username>
export PGHOST=localhost
export PGDATABASE=<colouringlondondb>

Create the core database tables:

cd ~/colouring-london
psql < migrations/001.core.up.sql

There is some performance benefit to creating indexes after bulk loading data. Otherwise, it's fine to run all the migrations at this point and skip the index creation steps below.

Install GNU parallel, this is used to speed up loading bulk data.

Make data available to Ubuntu

If you didn't download the OS files to the Ubuntu machine where you are setting up your Colouring London application, you will need to make them available there. If you are using Virtualbox, you could host share a the two folders containing the files (one for MasterMap, one for AddressBase) with the VM via a shared folder (e.g. see these instructions for Mac).

Process and load Ordnance Survey data

The scripts should be run in the following order:

cd ~/colouring-london/etl
# extract both datasets
sudo ./extract_addressbase.sh ./addressbase_dir
sudo ./extract_mastermap.sh ./mastermap_dir
# filter mastermap ('building' polygons and any others referenced by addressbase)
sudo ./filter_transform_mastermap_for_loading.sh ./addressbase_dir ./mastermap_dir
# load all building outlines
sudo ./load_geometries.sh ./mastermap_dir
# index geometries (should be faster after loading)
psql < ../migrations/002.index-geometries.sql
# create a building record per outline
sudo ./create_building_records.sh
# add UPRNs where they match
load_uprns.py ./addressbase_dir
# index building records
psql < ../migrations/003.index-buildings.sql

Finally

Run the remaining migrations in ../migrations to create the rest of the database structure.

[WIP] Updating the Colouring London database with new OS data

TODO: this section should instruct how to update and existing db