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

Recreating a New York Times analysis of how much of Madison’s residential areas only allowed single-family detached homes

Harald Kliems https://haraldkliems.netlify.app/
2019-06-20

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.

Load the data with the read_csv function.

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

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

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 created in QGIS and styled to look roughly similar to the NYT maps helps visualize this:

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.

Corrections

If you see mistakes or want to suggest changes, please create an issue on the source repository.

Reuse

Text and figures are licensed under Creative Commons Attribution CC BY-SA 4.0. Source code is available at https://github.com/vgXhc/madison_zoning, unless otherwise noted. The figures that have been reused from other sources don't fall under this license and can be recognized by a note in their caption: "Figure from ...".

Citation

For attribution, please cite this work as

Kliems (2019, June 19). Harald Kliems: How much of Madison allows only detached single-family housing?. Retrieved from https://haraldkliems.netlify.app/posts/how-much-of-madison-allows-only-detached-single-family-housing/

BibTeX citation

@misc{kliems2019how,
  author = {Kliems, Harald},
  title = {Harald Kliems: How much of Madison allows only detached single-family housing?},
  url = {https://haraldkliems.netlify.app/posts/how-much-of-madison-allows-only-detached-single-family-housing/},
  year = {2019}
}