Glacial Regression in Switzerland Between 1850 and 2010
Making Sense of 160 Years of Glacial Data
Author
Nico Tayao
1 Introduction
The warming climate is a conerning change in the status quo, especially for alpine countries such as Switzerland. A country famed for its natural beauty and high altitude mountains, the country is especially vulnerable to the the changing climate given its potential implications for the environment. Switzerland also has a large amount of glaciers, one of the highest numbers of glaciers per capita in the entire world, these glaciers serve an integral role in the alpine environment such as a stable water supply, insulation for the permafrost in the mountains, as well as a stablizing factor for the wider microclimates in the mountainous regions in the country. Furthermore, in a problem that concerns not just Switzerland but the wider alpine regions of Europe, such as Austria, Northern Italy, the French Alps, as well as Southern Germany, glaciers serve a pivotal role in moderating the climate especially during warming times we see today. Perhaps one of the reasons why the climate in the alpine regions, despite the rising temperature, is still relatively stable is owed in no small part to the presence of these ancient glaciers.
The continued melting of the glaciers are a direct threat to the environment not just because of the climate but also the potential for the exposure of the permafrost. For the case of the permafrost in Switzerland, as well as other alpine areas beyond its borders, that permafrost is situated under the glaciers, meaning if the glaciers melt, it would expose this layer. Perhaps not a pressing concern at first, but the permafrost could be understood as a bit of a frozen time-bomb that trapped diseases from centuries past. The Grosser Aletsch Gletscher, by far the largest glacier in Switzerland, is by itself already more than a hundred thousand square kilometers in size. This particular glacier itself has already lost a large part of its mass over the years. The dissappearance of this glacier alone would expose hundreds of kilometers of permafrost to the elements, potentially exposing the larger population to diseases that they may not have immunity to. Given the recent experience the world had with the coronavirus pandemic just a few years ago, the introduction of old diseases the world has no immunity to must not be dismissed.
Between 1850 and 2010, which this project will focus on, has seen an accellerated increase in temperature in the alps, which has translated into the accellerated regression of the glaciers. Troubling still is that this process is not a linear phenomenon in which each year there is an expected figure of glacial regression, instead, this figure seems to be accelerating, especially in the last few decades. This project aims to map the glacial levels in Switzerland in 1850 as well as 2010, one hundred-sixty years of data obervations that would situate this study in three centuries. This scope is large enough to understand just how many glaciers were lost in these centuries, as well as compare the glacial levels between a year that is relatively stable in 1850, versus that of 2010 that there is a clear regression in climate quality.
2 Data Sources
This project takes data from GLAMOS, a publicly funded institution that is co-operated by the universities of Zurich, Fribourg, as well as ETH. Given that modern data mapping was not present in 1850, the data gathered to map the glaciers incorporated the use of historical maps of the glaciers as well as geomorphological evidence that are available to the public as shape files. For the glacial data in 2010 however, where modern tools are available, aerial imagery as well as sophistoicated geographic measuring coming fom experts using huts within the mountains themseleves were utilized. As reflected in the code in this document, four years among the one hundred – sixty year year period were downloaded, 1850, 1931, 1973, and 2010 in the interest of the wider message of glacial regression, the years of 1850 and 2010 were selected. However, the code will still be reflected in this project should an interest in further reproductions of this project arise.
Utilizing data from GADM in order to get a hold of the shape files of Switzerland, as well as its municipalities. This data, in connection to the larger files downloaded from GLAMOS, allows this project not only to map out glacial regression, but to combine this data with the regions as well. This means that this project is able to isolate the regions in Switzerland and look specifically in these regions to see how much glaciers were lost.
3 Glacier Dense Areas
For better visualization, these are some drone videos and photos from parts of the Swiss Alps
Bachalpsee Frozen in Winter
Eastern Switzerland
Saas-Fee Glaciers (Leukerbad)
4 Calculating Glacial Levels in 1850 and 2010
Understanding the Glacial Regression means isolating the two years furthest apart in the available data for the difference to be most clearly seen, this case it would mean comparing 1850 to 2010 and to see how much has changed.
4.1 Reading the Data
#Setting Directorylibrary("dplyr")
Attaching package: 'dplyr'
The following objects are masked from 'package:stats':
filter, lag
The following objects are masked from 'package:base':
intersect, setdiff, setequal, union
library(sf)
Linking to GEOS 3.11.0, GDAL 3.5.3, PROJ 9.1.0; sf_use_s2() is TRUE
Warning in st_simplify.sfc(st_geometry(x), preserveTopology, dTolerance):
st_simplify does not correctly simplify longitude/latitude data, dTolerance
needs to be in decimal degrees
Warning in st_simplify.sfc(st_geometry(x), preserveTopology, dTolerance):
st_simplify does not correctly simplify longitude/latitude data, dTolerance
needs to be in decimal degrees
Warning in st_simplify.sfc(st_geometry(x), preserveTopology, dTolerance):
st_simplify does not correctly simplify longitude/latitude data, dTolerance
needs to be in decimal degrees
Warning in st_simplify.sfc(st_geometry(x), preserveTopology, dTolerance):
st_simplify does not correctly simplify longitude/latitude data, dTolerance
needs to be in decimal degrees
ch2010b$glacial_id<-rownames(ch2010b)
4.3 Combining Counties with Glaciers
#Combining the Counties with Glaciers and Joining Repetitive Datalibrary(units)
udunits database from /Library/Frameworks/R.framework/Versions/4.3-x86_64/Resources/library/units/share/udunits/udunits2.xml
#Calculate area countyswitzerland3$area_county<-set_units(st_area(switzerland3), 'km2')swiss_name3<-subset(switzerland3, select =c(NAME_3, area_county))
Merging the datasets by “NAME_3” and isolating the regions that have glaciers inside them
#Left joinmerged_1850<-left_join(swiss_name3, glacial_area_by_county1850, by =c("NAME_3"="NAME_3"))merged_1850$area_all_glacier_1850_by_county[is.na(merged_1850$area_all_glacier_1850_by_county)]<-0merged_1850$area_all_glacier_1850_by_county<-as.numeric(merged_1850$area_all_glacier_1850_by_county)
#Plotting 1850 Glacial Regions with Legend ggplot()+geom_sf(data=merged_1850, aes(fill=area_all_glacier_1850_by_county))+labs(title ="Glacial Levels in Swiss Regions for 1850") +scale_fill_viridis_c(option ="turbo")+theme_void()
#Plotting the Maps Together library(ggpubr)fig1_1850<-ggplot()+geom_sf(data=merged_1850, aes(fill=area_all_glacier_1850_by_county))+scale_fill_viridis_c(option ="turbo")+guides(fill="none")fig2_1850<-ggplot()+geom_sf(data=swiss_name3)+geom_sf(data=ch1850b, fill=alpha("Black", 0.9), color=NA)ggarrange(fig1_1850, fig2_1850, ncol=2)
#Calculate area countyswitzerland3$area_county<-set_units(st_area(switzerland3), 'km2')swiss_name3<-subset(switzerland3, select =c(NAME_3, area_county))
Merging the datasets by “NAME_3” and isolating the regions that have glaciers inside them
#Left joinmerged_2010<-left_join(swiss_name3, glacial_area_by_county2010, by =c("NAME_3"="NAME_3"))merged_2010$area_glacial[is.na(merged_2010$area_glacial)]<-0merged_2010$area_glacial<-as.numeric(merged_2010$area_glacial)
#Plotting 2010 Glacial Levels in 2010fig1_2010<-ggplot()+geom_sf(data=merged_2010, aes(fill=area_glacial))+labs(title ="Glacial Levels in Swiss Regions for 2010") +scale_fill_viridis_c(option ="turbo")+theme_void()fig1_2010
#Plotting the Mapslibrary(ggpubr)fig1_2010<-ggplot()+geom_sf(data=merged_2010, aes(fill=area_glacial))+scale_fill_viridis_c(option ="turbo")+guides(fill="none")fig2_2010<-ggplot()+geom_sf(data=swiss_name3)+geom_sf(data=ch2010b, fill=alpha("black", 0.9), color=NA)ggarrange(fig1_2010, fig2_2010, ncol=2)
5 Comparing the Data
Combining the 1850 and 2010 maps show a clear difference between these two data sets, the 1850 shape file show clear signs of glaciers in the southeastern part of the country. This is in contrast with the 2010 data where the southeastern glaciers are almost completely gone. This data is significant because these glaciers are by the italian border, which means if there is a lot of glacial regression in this area for Switzerland, it would be a fair assumption the glaciers on the Italian side would certainly be affected as well.
Further still, when looking at the regions that still do have large amounts of glaciers, there are significant decreases of glacial levels as reflected in the legend. Interesting still is in the regions that experienced the most amout of glacial regression are also some of Switzerland’s natural crown jewels. The regions around the Matterhorn as well as the Aletsch Glacier seem to be particularly affected by this change, this has a direct impact not just in the environment, but in the tourism sector as well. In comparing the maps of 1850 and 2010 show a clear difference in glacial levels as well as the regions most affected.
Lets Focus on Zermatt, one of Switzerland’s most famous destinations, and home to the famous “Matterhorn” (The Mountain you see on Toblerone Bars)
Perhaps the single most famous municipality in Switzerland, Zermatt is one of the crowning jewels not just just of the Swiss alps, but the entire alpine region of continental Europe given this is the municipality that the Matterhorn calls home. Because the richness of the data gathered, this gives us the capability of mapping out every single municipality, we can isolate the area around the Matterhorn and see how much glacier was lost from 1850 until 2010. As mapped below, the green area highlighted is the glacier masses that was lost since 1850. In fact, the dataframes show that in the 160 year scope of this project, 40 square kilometers of glacier was lost in Zermatt, the highest example of glacial regression in the alps.
Zermattdiff<-ggplot()+geom_sf(data=switzerland, fill ="White")+geom_sf(data=Zermatt_1850, fill ="Green")+geom_sf(data=Zermatt_2010, fill ="Blue")+labs(title ="Glacier Loss in Zermatt") +theme_void()Zermattdiff
7 Subtracting 2010 Glacier Levels in Comparison to 1850 Levels
If we isolate the municipalities in Switzerland that have glaciers, compare the glacier levels of 1850 and subtract the glacier levels from 2010, we can find out the municipalities that have experienced the most amount of glacial regression in the 160 year scope of this study. The results show that the Swiss German/French region of Valais/Wallis, as the region that has had the most amount of glaciers lost in terms of square kilometers. And the municipality that has lost the most amount of glacier mass is Zermatt, 40 square kilometers of glacier lost.
together2<-togethertogether2$diff[together2$diff==0]<-NAdiff_pic<-ggplot()+geom_sf(data=together2, aes(fill=diff))+labs(title ="Regional Glacial Regression") +scale_fill_viridis_c(option ="turbo", direction =-1)+theme_void()diff_pic
8 Conclusion
After mapping the glaciers present in 1850 and comparing them to those that remained in 2010 show the unfortunate reality of hundreds of kilometers of lost glacier mass in the almost two century scope of this project. The data shows the troubling, yet lesser talked about problem of glacial regression rampant within the Swiss alps. The findings of this project highlight the challenge the coming decades present in terms of not just preserving the safe water drinking levels of Switzerland as well as the general well being of the alpine environment, but also the threat of the melting permafrost that lay trapped underneath the ice. One can only imagine the potential diseases that the glaciers protected us from the frozen permafrost, unfortunately, it seems the day when we find out will come sooner rather than later.
The data presented in the visual maps speak for themselves, the environment of the alps is changing, and its changing fast. Given the alps are present not just in Switzerland but in Germany, France, Italy, as well as Austria, it is a reasonable assumption that this problem is not just a Swiss problem, but one that concerns this region of Europe. Unfortunately, given the continued warming of the climate all over the world, the phenomenon of melting glaciers seem unlikely to change. The message is clear, if you like glaciers and you want to see them in their full beauty in the alps, you would be well advised to book that trip sooner rather than later.