Residential Demolitions in Austin

Residential Demolitions in Austin

Overview

In this tutorial, we will combine two tables of construction permit data — full and partial demolitions — into a single composite table using a stack operation. We will also add a derived demo_type column to each source table before stacking, so the combined result distinguishes between demolition types.

This workflow is based on an Austin American-Statesman analysis of residential demolition trends across central Austin neighborhoods.

Data Sources

Data comes from the City of Austin’s construction permit records, downloaded from the city’s open data portal and split into two files:

  • full-downloaded.csv — permits for complete home demolitions.
  • partials-downloaded.csv — permits for partial home demolitions.

Workflow Steps

Pre-processing

No pre-processing is required. The CSV files can be imported directly into OpenRoundup.

OpenRoundup Steps

  1. Import full-downloaded.csv and partials-downloaded.csv into OpenRoundup.alt text
  2. Stack these two tables together, which will combine the rows from both tables into a single composite table. alt text
  3. In the partials-downloaded.csv table, insert a new column at index one named demo_type and populate all rows with the value partial. alt text
  4. In the full-downloaded.csv table, insert a new column at index one named demo_type and populate all rows with the value full. alt text
  5. Inspect schema results, the alert shows that there are some columns with different types at indices: 11, 60, and 67. We can see that these are caused by values with a hyphen in it, and we can safely ignore it for now because this alert is just a warning and will not cause any issues with the stack operation. alt text
  6. Export the composite table.