Reno-ductions

Loss of Gentle Density in Toronto

Jeff Allen, Remus Herteg, Ahmad Al-Musa

January 2024

Many Canadian cities are changing their bylaws to allow for more gentle density. For example, the City of Toronto now allows up to four units per lot in residential zones. Hamilton allows the conversion of single-family homes into up to four units. On the West Coast, cities like Victoria allows between four and six units per lot. Vancouver also allows up to six units per lot, and that number could be increased to up to eight units for purpose-built rentals.

Why are cities making these changes, and why are they targeting more gentle density?

Such changes came into place in response to the current housing crisis, and as relatively easy and fast way to provide more housing supply that answers to the diverse housing needs. In addition to providing fast supply, such changes also generate less of a carbon footprint by utilizing existing buildings and infrastructure and by using fewer new materials to create more units. Gentle density reduces sprawl, uses urban space more efficiently, and creates more walkable, and connected neighborhoods. In other words, gently densifying neighbourhoods can provide more sustainable communities and can create more inclusive, diverse, and resilient community fabric, all while striking the balance between growth and preservation.

But how often is the opposite happening? How often is a city losing dwelling units due to reno-ductions of small multi-family structures such as duplexes and triplexes, into single-family homes?

To try to answer this, we looked at building permit application data in Toronto, flagging all records where a multi-family residential structure was converted into a structure with fewer dwelling units - for example, a duplex being converted into a single-family home or a triplex being converted into a duplex. Specifically, we first filtered only for residential projects, and then compared two columns; "CURRENT_USE" and "PROPOSED_USE". We also tried to validate our findings by looking at the "DESCRIPTION" column of each filtered record, which describes in varying levels of detail the work being done.

The main limitation with the City of Toronto's building permit data is that the inputs for the "CURRENT_USE" and "PROPOSED_USE" columns are not standardized: i.e. it would appear that permit applicants are able to include whatever information they want when they apply for a building permit, and the data are not classified when being inputted into the database. There are hundreds of unique values in each of these two columns, many pertaining to the same type of use but with different spellings (e.g. "Detached SFD", "Detached-Sfd", "Sfd - Detached", etc.). So it is likely that we are underreporting the true number of reno-ductions, as a result of incorrectly-inputted information and records missed by us during the analysis (we tried our best!). The following results should therefore be thought of as more of an exploratory analysis rather than exact numbers.

Reno-ductions in Toronto identifiedfrom building permit data by year 20 2017 2017 22 2018 2018 30 2019 2019 28 2020 2020 22 2021 2021 26 2022 2022 43 2023 2023 0 10 20 30 40 50

Based on this building permit data, we conclude that between 2017 and 2023 the City of Toronto has lost at least 200 units due to the conversion of multi-family homes into single-family homes, an average of 28 units per year. The trend seems to have dropped in 2021, then picked up again over the past two years. There has been an increase in reno-ductions from just 22 in 2021 to 43 in 2023, almost doubling in this two year period. These numbers are quite a bit lower than the number of rear-yard and secondary suites built in Toronto during the same time period.

We've also plotted each reno-duction identified by us on a map of Toronto. Each point is a reno-duction that occurred between 2017 and 2023. Clicking on a point will display below the details of the building permit and the change that occurred.

Location of lost gentle density dwelling units (click on a dot to show details)

Permit Number: _

Address: _

Issued Date: _

Completed Date: _

Previous Use: _

Completed Use: _

Description: _

There is a clear concentration of reno-ductions in the south-central part of the city – an area that historically has allowed for multi-family dwellings (many of the city's low-density residential neighbourhoods have only recently been permitted for multiplexes). Many of the central areas where we are seeing a greater clustering of reno-ductions have gentrified / are gentrifying, and have undergone population loss over long periods of time.

Data & Methods

Our filtered building permit dataset can be downloaded here. The code used to create this webpage is on GitHub. It was built with the help of Python (pandas, geopandas), Svelte, Maplibre, and D3.

The data filtering process was conducted as follows: After taking the original permit data, it was filtered out through Python to only show residential units. Since many buildings had several permits for the same project, all multiples were removed to only show one permit per project. To identify loss in units we used the current and proposed use columns in the permits file. These columns don't seem to have a system to them so it proved difficult to write a script to identify them. For this reason we had to manually go through each row and look at whether or not the permit changed into anything else, and if that change led to a loss in units. For example, a permit may have a current use as “triplex” but its proposed use is “single family home”, in this case there was a loss of 2 units. A new column was also added to show the apparent decrease in units, and all other permits that did not have a loss of units were then removed. There was a column already in the dataset noting change in units, but it was very sparse and unreliable upon initial inspection, so we created our own.