Exercise 3

Exercise 3

About

With exercise #1 and exercise #2, you compared two dust forecast models as well as near real-time monitoring with satellite data. From the results of the assignment, you see that it is difficult to know which forecast can be trusted more. Hence, even though model intercomparison is important, model outcomes also have to be compared with real-world observations. Just by comparing model outcomes with measurements from station data, we can better understand how the model performs.

Today, you will focus on how you can use station observations from AERONET to evaluate model forecasts.

Tasks

1. Brainstorm

  • What observation datasets do you know about?

  • Which variables do they measure?

  • Which data can you use to evaluate model predictions?

2. Download and plot time-series of AERONET data for Santa Cruz, Tenerife

  • Download and visualise AERONET v3.0 measurements of the station Santa Cruz, Tenerife for 21 to 25 February 2020.

  • Some questions to reflect on

    • Under which name is the station listed in AERONET?

    • What average level would you choose?

    • Which days do we have observations for?

  • Hint

3. Resample AERONET data to a 3-hourly resolution

  • Make use of AERONET index and time columns to create a DateTimeIndex in order to resample the observations to a 3-hourly temporal resolution

  • Hint

    • you have to combine the two columns index and time as one string variable

    • you can use the pandas function to_datetime() to create a DateTimeIndex and the function resample().mean() to resample and average the time-series to a given temporal resolution

  • Question to reflect on

    • How many row entries does the resampled data frame have?

4. Load time-series of the forecasts from CAMS and the MONARCH model and compare it with the AERONET observations

  • Interpret the plotting result.

  • Can you make a statement of the performance of the two forecast models?

  • What is your conclusion regarding AERONET observation data?