I'll be continuously updating this page throughout the Earth Data Analytics certificate program!

For this project, I investigated annual mean temperature in Bozeman, Montana within the last century. I live in Bozeman - it’s a beautiful town characterized by long, cold, snowy winters and short, cool summers. Personally, I think it’s a fantastic climate, as do many residents in town. However, long-time residents often wax poetic on how great the summers used to be and how much hotter & smokier they are now, as well as how much colder and snowier the winters used to be. These claims are worth paying attention to, so I performed an Ordinary Least Squares (OLS) Linear Regression to begin investigating how climate change is impacting Bozeman.
To perform this analysis, I accessed the Global Historical Climate Network - Daily (GHCND) dataset maintained by the National Center for Environmental Information, using their Climate Data Online portal API. The station I accessed uses the Station ID: USC00241044. These data were collected by a weather station installed at Montana State University (MSU). The dataset starts in 1892 and is still growing. However, after preliminary analysis, I found that the dataset has a significant amount of information missing in its early years; until 1933, each year has at least one month (Days 1-31) of missing values. These gaps often occurred from November 1 to March 31, though other months were missing in the 1892-1933 period as well. My hypothesis is that, given MSU’s origin as a land grant agricultural university, the weatherstation operator did not collect data during the winter months; perhaps they were not concerned with temperatures while the ground was snow covered.
Displayed below are annual average temperatures in Bozeman, Montana. Given the gaps in the dataset, I decided to exclude all years before 1933, so the years I’ve analyzed are 1933-2024.

Check out an interactive version of the plot here. You can mouse over any point on the graph to view the annual mean temperature from any given year.
Just from a glance at the plot, it looks like there’s a warming trend. So, I performed an OLS Linear Regression to see if annual mean temperature in Bozeman is, in fact, warming, and if so, by how much:

The regression clearly shows a warming trend in Bozeman, MT between 1933-2024. Indeed, annual mean Bozeman has warmed by .056°F per year in this period. That’s over half a degree each decade, and over 5°F in the time period (91 years). This finding is in line with other analyses - for example, Climate Central, an organization dedicated to sharing the effects of climate change with the public, shows that Bozeman has warmed by 2.2°F since 1970, which is about halfway through my dataset.
To access the dataset I used or reproduce my analysis, please check out the Jupyter Notebook I used.