Madison_single_family_housing

How much of Madison allows only detached single-family housing?

Background

The New York Times recently published an analaysis of how much land in several US cities only allows the construction of detached single-family houses. https://www.nytimes.com/interactive/2019/06/18/upshot/cities-across-america-question-single-family-zoning.html

The cities analyzed were

City Proportion detached single-family to all housing
New York 15%
Washington 36%
Minneapolis 70%
Los Angeles 75%
Portland (OR) 77%
Seattle 81%
Charlotte (NC) 84%
Sandy Springs (GA) 85%
Arlington (TX) 89%
San Jose (CA) 94%

I immediately wondered how my current hometown, Madison (WI), would compare.

Data sources

Analysis

I’ll work with R’s tidyverse package.

library(tidyverse)
## -- Attaching packages ----------------------------------------------- tidyverse 1.2.1 --
## v ggplot2 3.1.0       v purrr   0.3.2  
## v tibble  2.1.1       v dplyr   0.8.0.1
## v tidyr   0.8.3       v stringr 1.4.0  
## v readr   1.3.1       v forcats 0.4.0
## -- Conflicts -------------------------------------------------- tidyverse_conflicts() --
## x dplyr::filter() masks stats::filter()
## x dplyr::lag()    masks stats::lag()

Load the data with the read_csv function.

data <- read_csv(
  "https://opendata.arcgis.com/datasets/4bfd0deffa8f4d5f8eefe868ab91493c_9.csv",
  col_types = "iccccddcc")

Determine what counts as residential

The New York Times analysis focused exclusively on residential districts, leaving out commercial or mixed use districts: “These maps highlight the land exclusively set aside for housing.” Ordinance 28.032 defines the following as residential districts: SR-C1, SR-C2, SR-C3, SR-V1, SR-V2, TR-C1, TR-C2, TR-C3, TR-C4, TR-V1, TR-V2, TR-U1, TR-U2, TR-R, TR-P

I will therefore excldue all other Madison zoning codes from the analysis.

#create variables for residential zoning and single-family zoning codes
res_zones <- c("SR-C1", 
                 "SR-C2", 
                 "SR-C3", 
                 "SR-V1",
                 "SR-V2",
                 "TR-C1",
                 "TR-C2", 
                 "TR-C3",
                 "TR-C4",
                 "TR-V1",
                 "TR-V2", 
                 "TR-U1", 
                 "TR-U2", 
                 "TR-R",
                 "TR-P")

Determine what counts as “zoned for detached single-family homes”

The Times focuses on “codes devoted to detached single-family homes, grouping rowhouses more common in older East Coast cities like Washington and New York into a second category covering all other housing types.”

Ordinance 28.033 lists the following building forms:

Table of Residential Building Forms

Table of Residential Building Forms

Determining what falls under detached single-family homes appears straightforward: SR-C1, SR-C2, TR-C1, TR-C2, TR-C3, TR-R.

sfr_zones <- c("SR-C1", 
         "SR-C2",
         "TR-C1", 
         "TR-C2", 
         "TR-C3", 
         "TR-R")

Now all that remains is to sum up the areas for all single-family detached and divide by the total residential area.

res_total <- data %>%
  filter(ZONING_CODE %in% res_zones) %>%
  summarize(sum(ShapeSTArea))

res_sfr <- data %>%
  filter(ZONING_CODE %in% sfr_zones) %>%
  summarize(sum(ShapeSTArea))

SFR_ratio <- round((res_sfr/res_total)*100, digits = 0)

Results

So pretty much exactly 75 percent of all residentially zoned land in Madison allows only detached single-family housing. When I had first read the NYT article, my guess was Madison would be between somewhere 75 and 85 percent. I’m happy to see that the actual number is at the lower bounds of my guess, and fairly good compared to the cities mentioned in the original article:

City Proportion single-family detached to all housing
New York 15%
Washington 36%
Minneapolis 70%
Madison (WI) 75%
Los Angeles 75%
Portland (OR) 77%
Seattle 81%
Charlotte (NC) 84%
Sandy Springs (GA) 85%
Arlington (TX) 89%
San Jose (CA) 94%

But of course it also means that a huge proportion of our residential lands is off limits for even medium density development.

A map (styled to look roughly similar to the NYT maps) helps visualize this:

Map of all residential and single-family detached zoning in Madison

Map of all residential and single-family detached zoning in Madison

Limitations

In a Twitter thread, Christopher Schmidt pointed out that even cities that seemingly don’t limit most parts of the city to single-family homes, requirements such as lot sizes or building setbacks effectively still make it impossible to build anything but single-family homes.

Read More