I've got wind data which includes wind speed and wind direction.
However, my wind direction is defined anti-clockwise. Meaning, 45 deg for my data is actually NW.
Is there any chance to change this using Windrose in Python?
I've got the following code to plot the Windrose:
from windrose import WindroseAxes
import matplotlib.pyplot as plt
theta = [0, 60, 120, 180, 240, 300]
speed = [10, 0, 10, 40, 50, 40]
ax = WindroseAxes.from_ax()
ax.bar(theta, speed)
plt.show()