By the end you will have a complete, working Python computer model that fully meets the three advanced requirements on page 5 of the 2026 brief:
From page 5 of the official brief:
All four points must be fully working.
Your model must include:
| Example Data Sources | Possible Use |
|---|---|
| Met Éireann historical rainfall/temperature | Long-term drought prediction |
| Irish Forest Strategy tree density data | Afforestation what-if |
| Canadian Fire Weather Index formula | Wildfire risk calculation |
| Your own simulated future climate data | +2 °C or –40 % rainfall scenarios |
All sources must be cited in your code comments per brief guidelines (page 6).
Add the required libraries to the top of your model file, for example:
import pandas as pd
import matplotlib.pyplot as plt
import numpy as np
from datetime import datetime
Your final model.py must contain all of these sections: