.. | ||
export_attributes.sql | ||
export_edit_history.sql | ||
export_uprns.sql | ||
extract_data.py | ||
README.md |
Colouring London Data Extract
This extract contains a snapshot of contributions to Colouring London (https://colouring.london).
Colouring London is a citizen science platform collecting information on every building in London, to help make the city more sustainable.
The data included are open data, licensed under the Open Data Commons Open Database License (ODbL, http://opendatacommons.org/licenses/odbl/) by Colouring London contributors.
You are free to copy, distribute, transmit and adapt the data, as long as you credit Colouring London and our contributors. If you alter or build upon our data, you may distribute the result only under the same licence.
Contents
This extract contains four files:
- README.txt
- building_attributes.csv
- building_uprns.csv
- edit_history.csv
Building Attributes
This is the main table, containing almost all data collected by Colouring London. Apart from
building_id
, revision_id
and ref_toid
, all of these fields are optional.
building_id
: unique building ID for Colouring London buildingsrevision_id
: unique revision ID for Colouring London, cross-references to our edit historyref_toid
: cross-reference to Ordnance Survey MasterMap TOIDref_osm_id
: cross-reference to OpenStreetMap feature osm_idlocation_name
: building namelocation_number
: building numberlocation_street
: street namelocation_line_two
: additional address linelocation_town
: townlocation_postcode
: postcodelocation_latitude
: latitudelocation_longitude
: longitudecurrent_landuse_group
: current land use groupcurrent_landuse_order
: current land use orderbuilding_attachment_form
: building attachment formdate_change_building_use
: year of last building use changedate_year
: year builtdate_lower
: lower bound on year builtdate_upper
: upper bound on year builtdate_source
: type of source for building datesdate_source_detail
: details of source for building datesdate_link
: list of links to further information relating to building datesfacade_year
: facade datefacade_upper
: upper bound on facade datefacade_lower
: lower bound on facade datefacade_source
: type of source for facade datesfacade_source_detail
: details of source for facade datessize_storeys_attic
: number of attic storeyssize_storeys_core
: number of core storeyssize_storeys_basement
: number of basement storeyssize_height_apex
: height in metres to the building apexsize_floor_area_ground
: ground floor floor area in square metressize_floor_area_total
: total floor area in square metressize_width_frontage
: width of frontage in metresconstruction_core_material
: main structural materialconstruction_secondary_materials
: other structural materialsconstruction_roof_covering
: main roof coveringsust_breeam_rating
: BREEAM ratingsust_dec
: DEC ratingsust_retrofit_date
: year of last significant retrofitplanning_portal_link
: link to an entry on https://www.planningportal.co.uk/planning_in_conservation_area
: in a conservation area? (True/False)planning_conservation_area_name
: conservation area nameplanning_in_list
: in the National Heritage List for England? (True/False)planning_list_id
: National Heritage List for England IDplanning_list_cat
: National Heritage List for England listing typeplanning_list_grade
: National Heritage List for England listing gradeplanning_heritage_at_risk_id
: on the Heritage at Risk list? (True/False)planning_world_list_id
: UNESCO World Heritage list IDplanning_in_glher
: in the Greater London Historic Environment Record? (True/False)planning_glher_url
: Greater London Historic Environment Record linkplanning_in_apa
: in an Architectural Priority Area? (True/False)planning_apa_name
: Architectural Priority Area nameplanning_apa_tier
: Architectural Priority Area tierplanning_in_local_list
: in a local list? (True/False)planning_local_list_url
: local list reference linkplanning_in_historic_area_assessment
: within a historic area assessment? (True/False)planning_historic_area_assessment_url
: historic area assessment reference linklikes_total
: number of times the building has been liked by Colouring London users
Building UPRNs
Buildings are matched to UPRNs (Unique Property Reference Numbers), which should help link Colouring London data against other datasets.
Read more about UPRNs: https://www.ordnancesurvey.co.uk/business-government/tools-support/uprn
building_uprns.csv
looks something like this:
building_id,uprn,parent_uprn
2810432,10091093495,100023038313
2810432,10091093496,100023038313
2810432,10091093497,
building_id
: Colouring London unique building ID, references the building_id in building_attributes.csvuprn
: Unique Property Reference Number associated with the building. In some cases multiple UPRNs are associated with a single Colouring London building, for example in blocks of flats or mixed-use buildings.parent_uprn
: optional. Some UPRNs are grouped by a parent-child relationship, so while each UPRN is unique, multiple UPRNs may share the same parent.
Edit History
Each change to the Colouring London database is recorded, so it is possible to explore how the dataset evolves over time.
The edit history logs changes made by users, with the following fields:
revision_id
: unique change id, referenced by building_attributesrevision_timestamp
: date and time of the changebuilding_id
: Colouring London building ID, references building_attributesforward_patch
: the changes made, encoded as a JSON string where keys are attribute/column names, and values are the values set by this change.reverse_patch
: the reverse of the change, encoded as a JSON string. This shows what the values were before this change was made.user
: username of the user who made the change
For example a forward patch might show a building date being provided, along with some source details:
{"date_year": 1911, "date_source_details": "Survey of London Marylebone draft text"}
Where the reverse patch shows that there was no previous data stored:
{"date_year": None, "date_source_details": None}