.. | ||
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_address_source
: type of source used for address datalocation_address_links
: link to source used for address datalocation_latitude
: latitudelocation_longitude
: longitudelocation_coordinates_source
: source type of coordinate datalocation_coordinates_links
: source links for coordinate datacurrent_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_storeys_source_type
: source type for number of storeyssize_storeys_source_links
: source links for number of storeyssize_height_apex
: height in metres to the building apexsize_height_apex_source_type
: source of apex height datasize_height_apex_source_links
: links to apex height datasize_height_eaves
: height in metres to the building eavessize_height_eaves_source_type
: source of eaves height datasize_height_eaves_source_links
: links to eaves height datasize_floor_area_ground
: ground floor floor area in square metressize_floor_area_total
: total floor area in square metressize_floor_area_source_type
: source of floor area datasize_floor_area_source_links
: link(s) to floor area datasize_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_crowdsourced_site_completion_status
: status of completion of costruction at given locationplanning_crowdsourced_site_completion_year
: year of completion of costruction at given locationplanning_crowdsourced_planning_id
: id of planning application for a given locationplanning_list_id
: National Heritage List for England IDplanning_in_conservation_area_id
: conservation area IDplanning_in_conservation_area_url
: conservation area appraisal linkplanning_in_conservation_area_source_url
: conservation area data source linkplanning_list_grade
: National Heritage List for England listing gradeplanning_heritage_at_risk_url
: Heritage at Risk linkplanning_world_list_id
: UNESCO World Heritage list idplanning_glher_url
: Greater London Historic Environment Record linkplanning_in_apa_url
: an Archeological Priority Area (APA) linkplanning_local_list_url
: local list reference linkplanning_historic_area_assessment_url
: historic area assessment reference linklikes_total
: number of times the building has been liked by Colouring London usersis_domestic
: is the building domestic/non-domestic/mixedis_domestic_source
: domestic data source type,is_domestic_links
: domestic data source links,survival_status
: survival status compared to historical maps,survival_source
: source of survival data,survival_links
: link(s) to survival data source,
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}