Sustainability: GHG Emission Analysis in SF 94108

Greenhouse gas (GHG) emission has been the heart of sustainability analysis for long. It’s the most direct global warming effect indicator and driving contributor. Common GHGs are CO2, methane, NxOy, and etc. Allocating the GHG emission responsibility by sectors can help us pinpoint the most emission-dense players on the market and devise a faster strategy accordingly, for reducing GHG emission overall. In 2019 in the United States, 29% of the total GHG emission goes into transportation and 13% goes into residential and commericial buildings (U.S. EPA). in the following study, on the outlook for the future of the Bay Area, we would like to look deeply into the GHG emission associated with commute transportation and building sector in the San Francisco 94108 ZIPCode region. The time period we would focus on is 2013 to 2019, pre-COVID era. What does the emission structure look like in the dense urban region? What percentage of GHG emission does commute transportation and building usage hold? Over the course of 7 years, how has the GHG emission trend evolve, and what are the potential driving factors? This study serves as a preliminary exploration into the GHG emission behaviors of the SF 94108 area, and may provide potential insights on strategies for GHG emission reduction on a policy level.

ZIPCode Region Overview

The location of this study (Fig @ref(fig:map-of-94108)) is 94108, the intersection of Lower Nob Hill, Chinatown, and SF downtown, in the heart of San Francisco City. This area is dense with commercial occupations as well as residential dwellings, serving as a base analysis model for combining commute transportation emissions with building emissions.

Mapview of the chosen sutdy area 94108, blue circle in census block group level.

Total GHG emission from commute transportation and building operation

The total GHG emission from both commute sector and building sector in 94108 over 2013 to 2019 can be found in Fig @ref(fig:ghg-vehicle-bldg). Note the building operation emission here consists of only commericial buildings and residential buildings (C&R), not including industrial buildings and not including building construction emissions.

The vehicle emission is estimated from vehicle miles traveled (VMTs) and vehicle fuel emission factors, with supporting base data from LODES Job-to-Job Origin-Destination data, Census ACS5 data, and etc. The building emission is estimated from building electricity and gas usage, and emission factors, with supporting data from PG&E Energy Data Quest. Detailed methods and data sources can be found in @ref(methodology-and-data).

From Fig @ref(fig:ghg-vehicle-bldg), we can see the total GHG emission associated with the two sectors presents a slight decreasing trend in 94108 from 2013 to 2019, with a peak value in 2014. Moreover, the building emission is a surprisingly small portion compared to the commute vehicle emission. This is especially counter-intuitive for non-energy people, given the assumably much shorter amount of time people spent in cars as compared to in buildings.

stack1 <- ct_trips_ghg_annual %>%
  mutate(
    source = "Commute Vehicle"
  ) %>%
  select(year, ghg, source)

bldg_energy_normalized %>%
  group_by(year = YEAR) %>%
  summarize(ghg = sum(as.numeric(TOTALTCO2E))) %>%
  mutate(source = "C&R Building") %>%
  rbind(stack1) %>%
  ggplot() +
    geom_bar(
      aes(x = year, y = ghg, fill = source),
      stat = "identity",
      position = "stack"
    ) + labs(
      x = "Year",
      y = "GHG emission (metric Tonnes)",
      title = "Total Annual GHG Emissions in 94108\n by emission source, 2013-2019",
      fill = "Emission Source"
    )
The total GHG emissions associated with commute transportation and building operation in 94108, from 2013 to 2019

The total GHG emissions associated with commute transportation and building operation in 94108, from 2013 to 2019

Building emission

Look closely at the building emission sector, the commercial and residential building present different emission patterns as well (Fig @ref(fig:total-bldg-ghg-plot)). Overall, the building GHG emission is decreasing in 2013-2019 period. The commercial buildings emit a lot more GHG in its electricity usage than residential buildings —— Think about the lighting and heavy HVAC in your big whole-floor offices! The GHG emission from gas consumption is relatively same in both commercial and residential, which typically is associated with heating and cooking. The gas GHG emission remains relative unchanged over the course of 7 years, while the electricity GHG emission is decreasing in both buildings. This decreasing trend may come from changes in the energy structure of electricity generation, or the number of occupants in the building.

The building GHG emission in 94108, by Building (c/r) and Energy (elec/gas) type

The building GHG emission in 94108, by Building (c/r) and Energy (elec/gas) type

While we look high level at the total GHG emission per economic sector, the real changes should happen at individual level as well. If every resident or building occupant starts to make smarter energy choices and modify their energy usage behavior, the combined upstream energy savings and related GHG reduction are revolutionary. Here we inspect further on the energy consumption behavior per resident or building occupant level in 94108, to see if there are positive or negative changes during 2013 to 2019.

Energy intensity (kBTU/occupant) is used to evaluate energy consumption behavior. Only electricity and gas are included in this study. The driving factors for electricity and gas are cooling and heating facilities in buildings, which can be represented through Cooling Degree Days and Heating Degree Days as defined by Cal-Adapt Degree Day tool. We thus used CDDs and HDDs to generated normalized energy intensity. Further methodology details can be found in @ref(methodology-and-data).

Even in terms of energy intensity, commercial buildings use way more electricity than residential, however residents consume more gas per person than commercial occupants (may coming from cooking facilities and shower-water heating). The energy intensity remains relatively steady over the course of 7 years, however if we normalize the intensity by CDD/HDD as shown in the second row in Fig @ref(fig:bldg-energy-intensity-plot), the energy intensity increases to a peak value in 2019 for both commercial and residential building occupants.

As indicated by the black line in Fig @ref(fig:bldg-energy-intensity-plot), the number of commercial building occupants decreased from 2018 to 2019, which may contributes to the peak of energy intensity. The number of jobs provided by each building in 94108 decreased, but the building is burning the same amount of energy either way. In residential buildings, the intensity increased very slightly towards 2019 and the number of residents decreased slightly accordingly. Note the occupant number is scaled for plotting, the y-axis only reflects intensity values.

The building energy usage intensity in 94108, by Building (c/r)

The building energy usage intensity in 94108, by Building (c/r)

Commute emission

Commute-associated GHG emission contributes majorly to the total GHG emission in an urban region. Commute transportation emission is strongly associated with individuals. How many people work in the given region? How many people commute to this region using what means and by what duration? Public transit, carpooling, or driving alone? Gas-fueled or electrified? Every single decision we as city occupants make, contributes to the final emission that, we as a whole, endure.

Commute trip patterns

First, let’s look at where the commute trips are happening. Below is a map of home locations (by tract level) of commuters to 94108 in 2019. The numbers indicate the total trips made by commuters from the tract to 94108 in 2019. As we can see, the chosen ZIP region at the heart of SF downtown, occupies a great variety of workers from all over the state. Among them, a great percentage may come to the area by airplanes while some are remote workers who contribute relatively negligible to 94108’s total GHG emission. This consideration would be reflected by the travel mode data we gathered from ACS5 in later GHG emission calculation.

Map of commute trip Origin-Destination, number showing trip counts between current tract and ZIP94108

Commute trips are cross boundary, with its GHG emission responsibility difficult to allocate to a certain region. Common allocation includes either to vehicles’ origin location or destination location, or split between two by certain portion. The following figure shows the GHG emission breakdown by vehicles’ commute direction. Here “inbound” indicates vehicles are traveling into 94108 for work, “outbound” indicates vehicles are traveling outside of 94108 for work, and “within” indicates the vehicle doesn’t leave 94108 region during commute trips. Surprisingly, inbound trips contribute to almost all of the GHG emission associated with the commute traveling in 94108.

The commute vehicle GHG emission by trip direction

The commute vehicle GHG emission by trip direction

The detailed numbers for the graph breakdown can be found below.

Commute GHG emission breakdown by trip direction
year inbound outbound within
2013 15202224483 26.79547 0
2014 16710013520 81.64430 0
2015 19098001693 78.53377 0
2016 18951489524 79.87810 0
2017 20251246069 89.44867 0
2018 21444963902 90.75299 0
2019 19313970697 80.22570 0

Total commute GHG emission

The commute-associated GHG emission in 94108 from 2013 to 2019 is shown in Fig @ref(fig:commute-emission-pop), with the black line indicating the relevant population growth (the number of job offered in the area and the number of residents). Intuitively speaking, the trend between commute emission and population growth is not corresponding in the period of 2013 to 2015. The commute emission had a particular peak value in 2014, then started to decrease significantly till the year 2016, afterwards it climbed back corresponding to relevant population change. The major emission shift from (2013,2015) period to (2016,2019) period may come from the change of commuter behavior.

The annual GHG emission associated with commute transportation in 94108 from 2013 to 2019

The annual GHG emission associated with commute transportation in 94108 from 2013 to 2019

Shown in Fig @ref(fig:commute-ghg-by-job-or-res), we aligned the job growth data and residential population data (shown in line) with the commute GHG emission (shown in bar). The number of jobs offered in the 94108 area is larger than its residing population, but they both show similar growth trends in 2013 to 2019, increasing from 2013 to 2018 and decreasing in 2019. Intuitively, job count growth presents a more corresponding pattern with the commute emission.

The commute GHG changes with respect to relevant population change in 94108

The commute GHG changes with respect to relevant population change in 94108

Reflection on GHG emission responsibility allocation

Looking at USEPA’s GHG overview, I support the Scope 2 allocation methodology, where the GHG emission happens within your system boundary (whether it’s per household or factory) is 100% allocation, plus the upstream emission associated with grid-supplied power etc. While Scope 3 is more end-use oriented, allocating the emissions associated with product manufacturer to users instead of direct profit holders (companies) seems less intuitive to me, and hard to incentivize.

Methodology and Data Sources

Commute transportation emission

LODES Job-to-Job Origin-Destination data is utilized in this study to get the number of commuters (job counts) travelling in and out the region of 94108 for work purposes. The job counts are aggregated to a tract to ZIP code level granularity. The distance and duration for each commute trip is estimated by the routing between each tract centroid and the ZIPcode 94108 centroid, supported by Mapbox routing function. We estimated each commuter travels 261 days to work per year, and the travel mode (vehicle occupancy) is interpreted by census acs5 “MEANS OF TRANSPORTATION BY TRAVEL TIME TO WORK.” The total VMTs are therefore estimated by aggregating commuter trips, distances, and travel modes. The total GHG emission is estimated by combing VMTs and vehicle type, emission factors from EMFAC.

Building emission

Building emission in 94108 is estimated from building operational energy usage and energy emission factors, both data from PG&E.

Demographic data

Residential population data is from acs5. Job count data is from LODES WAC data.

Code availability

Full code can be found in the supporter file.