The final data in the data file is information about wind velocity, specifically "wind_u"
which is the wind speed in $ms^{-1}$ towards the East and "wind_v"
which is the same towards the North.
with np.load("weather_data.npz") as weather:
wind_u = weather["wind_u"]
wind_v = weather["wind_v"]
temperature = weather["temperature"]
rain = weather["rain"]
uk_mask = weather["uk"]
irl_mask = weather["ireland"]
spain_mask = weather["spain"]
plt.imshow
)Using these arrays, calculate the following: