How to use this website and prepare for each week#

Before going further, make sure that you have read the Getting Started instructions.

Organizing your notebooks#

The notebooks are central to this lecture. We won’t use anything else then notebooks to write code (+ text!) and you will have to return notebooks as final project report.

With the exception of Week 01 (for which I recommend to use MyBinder), all notebooks should be downloaded and run on your machine. You will also be asked to download data files (instructions). I recommend to organize your code and data so that you can have easy access to both. For example, my notebooks are organized in a weekly folder, and alongside my weekly folders there is a data folder where my data is stored. This way, all my paths in notebooks look like:

ds = xr.open_dataset(r'../data/CERES_EBAF-TOA_Ed4.1_Clim-2005-2015.nc')

The ../ is to navigate to the parent folder, and from there I can find the data file.

Preparing for each week#

Each week is organized around two notebooks:

  • a “lesson”, where you will learn new tools and which is mostly “click through” code that I wrote (and that you’ll re-use later) with some understanding questions in between.

  • an “assignment”, where you’ll apply the tools you’ve learned before.

Note

The main objective of the practicals is to learn about the climate system from the plots and analyses. Learning to use the notebooks and xarray is important as well, but only secondary!

Tips for the presenting group#

Each week, a volunteer group will present their results to the rest of the class. This part is not graded and will have no negative effect whatsoever on the rest of the class. The main objective of the group presentations is for me to focus on what is really creating problems for students (as opposed to me assuming what will).

Here are a few suggestions to prepare your contributions:

  • Make sure that you have managed to do parts of the requested analyses. It doesn’t have to be all of them or being 100% perfect (nothing is!), but if you have substantial problems with one exercise please contact me beforehand.

  • In your presentations, focus on the “assignment” notebook. If one of the points or questions in the “lesson” notebook was unclear for you, feel free to discuss as well!

  • Focus on the main plots / analyses and what you didn’t understand well: there are no stupid questions or comments! If you don’t understand something, feel free to address this in your presentation: it is very likely that all of us have the same issues.