Depopulation and cooling at the county level

I’ve been trying to figure out why so many weather stations are cooling since 1900 in the US. You can check out the map of their locations here.

I’ve been using the Berkley Earth dataset, quality controlled. (not that I trust it for reasons demonstrated here) .

Then I came across a list of US Counties with 2010 population and Latitude and Longitude here. And I found a list of Population By County with data for 1900,1910,1920 up to 1990 here. So I wrote a small [R] script to import the files, massage them a tiny bit so I could merge them by FIPS code.

#http://www.census.gov/geo/www/2010census/centerpop2010/county/CenPop2010_Mean_CO.txt
filenameCLL = "F:/R/CenPop2010_Mean_CO.txt"

#http://www.nber.org/data/census-decennial-population.html
# download the xlsx file
## Change all . to 0 using text editor before next step
filenameCC = "F:/R/cencounts.csv"

dfCLL dfCLL[4:5, "fips"] dfCLL$fips
dfCC
# Merge the two files by FIPS
dfCounty = merge(dfCLL,dfCC)
# Rename 3 columns
# Notice the POPULATION column is pop2010
# For completeness I may track down pop2000

names(dfCounty)[names(dfCounty)=="LATITUDE"] <- "Latitude"
names(dfCounty)[names(dfCounty)=="LONGITUDE"] <- "Longitude"
names(dfCounty)[names(dfCounty)=="POPULATION"] <- "pop2010"

# calculate the dif
# so far no code deals with Alaska etc  where counties had 0 pop in 1900
# I just used a text editor to replace the no population placeholder . with 1
dfCounty[4:5, "difPct"] dfCounty$difPct dfCounty[4:5, "dif"] dfCounty$dif

And then I mapped those counties with the R package RGoogleMaps. In the map below I am only showing the counties that have been shrinking since 1900.

Doesn’t it look a like the map of cooling stations? Admittedly there is no an exact match because the Latitude Longitude is for the center (by population I think) of the counties and there is no guarantee that just because a county is losing population the area right around the station is losing population. But it might be a good indicator, or maybe UHI at the county level is important.

But I think I am zeroing in on the reason there are so many cooling stations in the mid to eastern USA. Depopulation. Deindustrialization. Negative UHI.

And if a shrinking population can cause stations to cool despite increasing CO2, could not the opposite be true? Could not the warming be caused exclusively by population growth?

Finally, that map is just the counties shrinking since 1990.

[1] "Counties Shrinking Since 1900: 694"
[1] "Counties Shrinking Since 1910: 865"
[1] "Counties Shrinking Since 1920: 955"
[1] "Counties Shrinking Since 1930: 979"
[1] "Counties Shrinking Since 1940: 1033"
[1] "Counties Shrinking Since 1950: 957"
[1] "Counties Shrinking Since 1960: 882"
[1] "Counties Shrinking Since 1970: 814"
[1] "Counties Shrinking Since 1980: 1028"
[1] "Counties Shrinking Since 1990: 823"

One thought on “Depopulation and cooling at the county level

  1. Pingback: sunshine hours

Leave a comment