Merge branch 'master' into develop
This commit is contained in:
commit
6fcbfc1104
96
etl/join_building_data/load_csv.py
Normal file
96
etl/join_building_data/load_csv.py
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
"""Join csv data to buildings
|
||||||
|
|
||||||
|
This script uses the HTTP API, and can process CSV files which identify buildings by id, TOID,
|
||||||
|
UPRN.
|
||||||
|
|
||||||
|
The process:
|
||||||
|
- assume first line of the CSV is a header, where column names are either
|
||||||
|
- building identifiers - one of:
|
||||||
|
- building_id
|
||||||
|
- toid
|
||||||
|
- uprn
|
||||||
|
- building data field names
|
||||||
|
- read through lines of CSV:
|
||||||
|
- use building id if provided
|
||||||
|
- else lookup by toid
|
||||||
|
- else lookup by uprn
|
||||||
|
- else locate building by representative point
|
||||||
|
- update building
|
||||||
|
|
||||||
|
TODO extend to allow latitude,longitude or easting,northing columns and lookup by location.
|
||||||
|
|
||||||
|
"""
|
||||||
|
import csv
|
||||||
|
import json
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
|
||||||
|
import requests
|
||||||
|
|
||||||
|
|
||||||
|
def main(base_url, api_key, source_file):
|
||||||
|
"""Read from file, update buildings
|
||||||
|
"""
|
||||||
|
with open(source_file, 'r') as source:
|
||||||
|
reader = csv.reader(source)
|
||||||
|
for line in reader:
|
||||||
|
building_id = find_building(line, base_url)
|
||||||
|
|
||||||
|
if building_id is None:
|
||||||
|
continue
|
||||||
|
|
||||||
|
update_building(building_id, line, api_key, base_url)
|
||||||
|
|
||||||
|
|
||||||
|
def update_building(building_id, data, api_key, base_url):
|
||||||
|
"""Save data to a building
|
||||||
|
"""
|
||||||
|
r = requests.post(
|
||||||
|
"{}/buildings/{}.json?api_key={}".format(base_url, building_id, api_key),
|
||||||
|
json=data
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def find_building(data, base_url):
|
||||||
|
if 'toid' in data:
|
||||||
|
building_id = find_by_reference(base_url, 'toid', data['toid'])
|
||||||
|
print("match_by_toid", data['toid'], building_id)
|
||||||
|
return building_id
|
||||||
|
|
||||||
|
if 'uprn' in data:
|
||||||
|
building_id = find_by_reference(base_url, 'uprn', data['uprn'])
|
||||||
|
print("match_by_uprn", data['uprn'], building_id)
|
||||||
|
return building_id
|
||||||
|
|
||||||
|
print("no_match", data)
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def find_by_reference(base_url, ref_key, ref_id):
|
||||||
|
"""Find building_id by TOID or UPRN
|
||||||
|
"""
|
||||||
|
r = requests.get(base_url + "/buildings/reference", params={
|
||||||
|
'key': ref_key,
|
||||||
|
'id': ref_id
|
||||||
|
})
|
||||||
|
buildings = r.json()
|
||||||
|
|
||||||
|
if buildings and len(buildings) == 1:
|
||||||
|
building_id = buildings[0]['building_id']
|
||||||
|
else:
|
||||||
|
building_id = None
|
||||||
|
|
||||||
|
return building_id
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
try:
|
||||||
|
url, api_key, filename = sys.argv[1], sys.argv[2], sys.argv[3]
|
||||||
|
except IndexError:
|
||||||
|
print(
|
||||||
|
"Usage: {} <URL> <api_key> ./path/to/data.csv".format(
|
||||||
|
os.path.basename(__file__)
|
||||||
|
))
|
||||||
|
exit()
|
||||||
|
|
||||||
|
main(url, api_key, filename)
|
@ -64,4 +64,4 @@ ALTER TABLE buildings ADD COLUMN IF NOT EXISTS sust_embodied_carbon numeric(7,2)
|
|||||||
ALTER TABLE buildings ADD COLUMN IF NOT EXISTS sust_life_expectancy smallint;
|
ALTER TABLE buildings ADD COLUMN IF NOT EXISTS sust_life_expectancy smallint;
|
||||||
|
|
||||||
--Average lifespan of typology based on statistical analysis of similar stock
|
--Average lifespan of typology based on statistical analysis of similar stock
|
||||||
ALTER TABLE buildings ADD COLUMN IF NOTE EXISTS sust_lifespan_average smallint;
|
ALTER TABLE buildings ADD COLUMN IF NOT EXISTS sust_lifespan_average smallint;
|
||||||
|
9
migrations/012.type.down.sql
Normal file
9
migrations/012.type.down.sql
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
--Original building use, this is same NLUD fields as current building use
|
||||||
|
ALTER TABLE buildings DROP COLUMN IF EXISTS original_building_use;
|
||||||
|
|
||||||
|
-- Building attachment, ENUM: Detached, Semi-detached, End-Terrace, Mid-Terrace
|
||||||
|
ALTER TABLE buildings DROP COLUMN IF EXISTS building_attachment_form;
|
||||||
|
|
||||||
|
-- [Disabled for launch] Date of change of use
|
||||||
|
-- This needs to pair with demolition
|
||||||
|
ALTER TABLE buildings DROP COLUMN IF EXISTS date_change_building_use;
|
19
migrations/012.type.up.sql
Normal file
19
migrations/012.type.up.sql
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
--Original building use, this is same NLUD fields as current building use
|
||||||
|
ALTER TABLE buildings
|
||||||
|
ADD COLUMN IF NOT EXISTS original_building_use;
|
||||||
|
|
||||||
|
-- Building attachment, ENUM: Detached, Semi-detached, End-Terrace, Mid-Terrace
|
||||||
|
CREATE TYPE building_attachment_form
|
||||||
|
AS ENUM ('Detached',
|
||||||
|
'Semi-Detached',
|
||||||
|
'End-Terrace',
|
||||||
|
'Mid-Terrace',
|
||||||
|
'Unknown');
|
||||||
|
|
||||||
|
ALTER TABLE buildings
|
||||||
|
ADD COLUMN IF NOT EXISTS building_attachment_form building_attachment_form DEFAULT 'Unknown';
|
||||||
|
|
||||||
|
-- [Disabled for launch] Date of change of use
|
||||||
|
-- This needs to pair with demolition
|
||||||
|
ALTER TABLE buildings
|
||||||
|
ADD COLUMN IF NOT EXISTS date_change_building_use smallint;
|
Loading…
Reference in New Issue
Block a user