Summary

This notebook examines the amount of land that was given out in California under the 1862 Morrill Act, to support the establishment of Land Grant Universities throughout the US. The number of parcels and acreage is totaled for each state which received land in California under the Morrill Act either directly (i.e., California) or as land scrip that was given to other states and ultimately redeemed in California. For more information on the Morrill Act, and the role it played in establishing public universities in the US, see Wikipedia.

The data source for this exercise is a polygon layer of parcels that were transferred from the Federal government to public and private (mostly private) entities. For details see:

Click the ‘Code’ button to the right to view how the map data was imported.

# Load Packages
library(dplyr)
library(ggplot2)
library(sf)
library(tmap)
library(DT)
# library(scales)
# library(leaflet)   
# library(crosstalk) 

## Load the Morrill Act parcels for California:
data_dir <- "./data"
hcnparc_ca_sf <- sf::st_read(file.path(data_dir, "hcnparc_loc_ca.geojson"), quiet = TRUE)

## Import the California boundary
cabnd_sf <- sf::st_read(file.path(data_dir, "ca_bnd.geojson"), quiet = TRUE)


Distribution of Morrill Act Parcels within California

tm_shape(cabnd_sf) +
  tm_borders(col = "black", lwd = 1) +
tm_shape(hcnparc_ca_sf) +
  tm_polygons(col = "#B22222", border.col = "#B22222") +
tm_layout(main.title = "Parcels in California Transferred Under the 1862 Morrill Act",
          main.title.size = 0.8)

For an interactive version of this map, please visit http://bit.ly/ca-morrill-map.

Number of parcels and acreage by State

The majority of land transferred in California from Federal public to private ownership under the Morrill Act went to benefit public universities in 26 other states. Only 8.5% of the 1.7m acres ultimately transferred went to support the University of California endowment.

The reason for this is because under the act land was distributed according to the number of Congressional representatives. Hence states like New York with large populations got a large allotment of land. States that didn’t have sufficient amounts of Federal public land within their own borders were instead given ‘coupons’ (Land scrip), that could be redeemed anywhere in the US. They were required to sell these coupons on the open market to fund endowments for their nascent land grant universities. California was a popular state for homesteaders and land speculators to redeem their land scrip due to its large holdings of public land, fertile agricultural areas, and rich timber resources.

all_acres <- sum(hcnparc_ca_sf$Acres) 

state_totals_tbl <- hcnparc_ca_sf %>% 
  st_drop_geometry() %>% 
  group_by(LG_State) %>% 
  summarise(Num_Parcels = n(), Total_acres = sum(Acres)) %>% 
  mutate(Percent_total_acreage = 100 * round(Total_acres / all_acres, 3))

DT::datatable(state_totals_tbl,
              colnames = c("State", "Number Parcels", 
                           "Total Area (acres)", "Prcnt Total Acres"),
              extensions = 'Buttons',
              width = 600,
              rownames = TRUE, 
              options = list(paging = FALSE,
                             searching = FALSE,
                             info = FALSE,
                             fixedColumns = TRUE,
                             autoWidth = TRUE,
                             ordering = TRUE,
                             dom = 'tB',
                             buttons = c('copy', 'csv')
                            ),
              class = "display"
            ) %>% 
   formatRound(columns = "Total_acres", digits = 0)

Acreage by state in descending order:

ggplot(data = state_totals_tbl, 
       aes(x = Total_acres, y = reorder(LG_State, Total_acres))) + 
  geom_bar(stat="identity") +
  xlab("Acres") +
  ylab("State Proceeds Went To") +
  ggtitle("Parcels in California Transferred Under the 1862 Morrill Act") +
  scale_x_continuous(labels = scales::comma)


Please email for questions and feedback.