Group project: the Climate System#

Instructions#

Objectives

In this final project, you will apply the methods you learned over the past weeks to answer the questions below.

Deadline

Please submit your project via OLAT before Thursday January 12 at 00H (in the night from Wednesday to Thursday).

Formal requirements

You will work in groups of two. If we are an odd number of students, one group can have three participants. (Tip: I recommend that students who have not followed my programming class to team up with students who have).

Each group will submit one (executed) jupyter notebook containing the code, plots, and answers to the questions (text in the markdown format). Please also submit an HTML version of the notebook. Each group member must contribute to the notebook. The notebook should be self-contained and the answers must be well structured. The plots must be as understandable as possible (title, units, x and y axis labels, appropriate colors and levels…).

Please be concise in your answer. I expect a few sentences per answer at most - there is no need to write a new text book in this project! Use links and references to the literature or your class slides where appropriate.

Grading

I will give one grade per project, according to the following table (total 10 points):

  • correctness of the code and the plots: content, legends, colors, units, etc. (3 points)

  • quality of the answers: correctness, preciseness, appropriate use of links and references to literature or external resources (5 points)

  • originality and quality of the open research question (2 points)

# Import the tools we are going to need today:
import matplotlib.pyplot as plt  # plotting library
import numpy as np  # numerical library
import xarray as xr  # netCDF library
import pandas as pd  # tabular library
import cartopy  # Map projections libary
import cartopy.crs as ccrs  # Projections list
# Some defaults:
plt.rcParams['figure.figsize'] = (12, 5)  # Default plot size

Part 1 - temperature climatology#

Open the ERA5 temperature data:

ds = xr.open_dataset('../data/ERA5_LowRes_Monthly_t2m.nc')

Plot three global maps:

  • Compute and plot the temporal mean temperature \(\overline{T}\) for the entire period (unit °C)

  • Compute and plot \(\overline{T^{*}}\) (see lesson), the zonal anomaly map of average temperature.

  • Compute the monthly average temperature for each month \(\overline{T_M}\) (annual cycle). I expect a variable of dimensions (month: 12, latitude: 241, longitude: 480). Hint: remember the .groupby() command we learned in the lesson. Now plot the average monthly temperature range, i.e. \(\overline{T_M}max\) - \(\overline{T_M}min\) on a map.

Questions:

  1. Look at the zonal temperature anomaly map.

    • Explain why norther Europe and the North Atlantic region is significantly warmer than the same latitudes in North America or Russia.

    • Explain why the Northern Pacific Ocean does not have a similar pattern.

  2. Look at the average monthly temperature range map.

    • Explain why the temperature range is smaller in the tropics than at higher latitudes

    • Explain why the temperature range is smaller over oceans than over land

    • Where is the temperature range largest? Explain why.

# Your answers here

Part 2 - Precipitation climatology#

Open the precipitation file and explore it. The units of monthly precipitation are wrongly labeled (unfortunately). They should read: m per day.

ds = xr.open_dataset('../data/ERA5_LowRes_Monthly_tp.nc')

Using .groupby(), compute the average daily precipitation for each month of the year (I expect a variable of dimensions (month: 12, latitude: 241, longitude: 480)). Convert the units to mm per day. Plot a map of average daily precipitation in January and in August with the levels [0.5, 1, 2, 3, 4, 5, 7, 10, 15, 20, 40] and the colormap `YlGnBu’

Questions:

  1. Describe the location of the ITCZ in January and February. Without going into the details, explain (in one or two sentences)

  2. Describe the precipitation seasonality in West Africa and in India. Name the phenomenon at play.

# Your answers here

Part 3: sea-level pressure and surface winds#

Open the file containing the surface winds (u10 and v10) and sea-level pressure (msl).

ds = xr.open_dataset('../data/ERA5_LowRes_MonthlyAvg_uvslp.nc')

Compute \(\left[ \overline{SLP} \right]\) (the temporal and zonal average of sea-level pressure). Convert it to hPa, and plot it (line plot). With the help of plt.axhline, add the standard atmosphere pressure line to the plot to emphasize high and low pressure regions. Repeat with \(\left[ \overline{u_{10}} \right]\) and \(\left[ \overline{v_{10}} \right]\) (in m s\(^{-1}\)) and add the 0 horizontal line to the plot (to detect surface westerlies from easterlies for example).

Questions:

  1. Based on your knowledge about the general circulation of the atmosphere, explain the latitude location of the climatological high and low pressure systems of Earth.

  2. Similarly, explain the direction and strength of the zonal and meridional winds on earth (tip: the sea-level pressure plot helps)

# Your answers here

Part 4: temperature change and CO\(_2\) concentrations#

Download the global average CO\(_2\) concentration timeseries data in the CSV format (source: NOAA). Here, let me help your read them using pandas:

df = pd.read_csv('co2_mm_gl.csv', skiprows=55, dtype={'year':str, 'month':str})
df['date'] = pd.to_datetime(df.pop('year') + df.pop('month'), format="%Y%m")
df = df.set_index('date')

Prepare three plots:

  • plot the monthly global CO\(_2\) concentration as a function of time.

  • plot the annual average timeseries of global CO\(_2\) concentration as a function of time.

  • plot the annual average timeseries of global CO\(_2\) concentration and of global 2m temperature from ERA5 on the same plot (using a secondary y axis for temperature).

Questions:

  1. Describe and explain the annual cycle of CO\(_2\) concentrations

  2. What was the CO\(_2\) concentration in the atmosphere in the pre-industrial era? Compute the annual increase in CO\(_2\) concentration (unit: ppm per year) between 1980 and 1985 and between 2016 and 2021.

  3. Describe the relationship between global temperatures and CO\(_2\) concentrations. Beside CO\(_2\), name three processes that can influence temperature variability and change at the global scale.

# Your answers here

Part 5: variability and ENSO (open research question)#

Using the available data, describe the global effect of an El Niño year and a La Niña year on sea-surface temperature, precipitation, and air temperature. I suggest to look for literature or a google search on strong ENSO events in the past 40 years, and select one good example for a positive and a negative phase. Then use annual or seasonal anomaly maps to show the patterns of SST, temperature and precipitation anomalies during these events. With citation or links, explain why you picked these years as examples.

# Your answers here