I'm trying to plot the windrose using a set of monthly (2 years) wind data from era5 for a fixed coordinate (a point, latlon)... I transformed the data into a DataFrame (with columns: Datetime; direction; speed) but when I try to plot I get the following error message (below):
Using the WindRoseDoc.
I have imported:
from windrose import WindroseAxes;
ax = WindroseAxes.from_ax(), and I have tried plot;
ax.bar(wind_df.direction, wind_df.speed, opening=0.8)
I expected to see the rose of the wind. But all I got was the error message: ValueError: 'Fire' is not a valid value for name; supported values are '538', 'accent', etc...