Hi,
It seems that the default directions along the axis circle is not correct anymore. 0° pointing to East
To use the example in the example notebook:
%matplotlib inline
import pandas as pd
import numpy as np
from matplotlib import pyplot as plt
import matplotlib.cm as cm
import numpy as np
from math import pi
from windrose import WindroseAxes
N = 500
ws = np.random.random(N)*6
wd = np.random.random(N)*360
df = pd.DataFrame({"speed": ws, "direction": wd})
ax = WindroseAxes.from_ax()
ax.bar(df.direction, df.speed, normed=True, opening=0.8, edgecolor='white')
ax.set_legend()

Hi,
It seems that the default directions along the axis circle is not correct anymore. 0° pointing to East
To use the example in the example notebook: