wsdhrqqc
wsdhrqqc
> Hi, > You do a good job. How to set continuous colorbar like this? >  > > `from windrose import WindroseAxes > from matplotlib import...
I believe something between these lines: ```python str=['N','N-E','E','S-E','S','S-W','W','N-W'] ax.set_xticklabels(str) ax.set_theta_zero_location('N') #设置零度方向北 ax.set_theta_direction(-1) ``` I pulled in my data and it shows a 90 degree rotated, that is how i know.