Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion act/plotting/windrosedisplay.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def plot(
# We need to wrap around

deg_width = 360.0 / num_dirs
dir_bins_mid = np.linspace(0.0, 360.0 - 3 * deg_width / 2.0, num_dirs)
dir_bins_mid = np.linspace(deg_width / 2.0, 360.0 - deg_width / 2.0, num_dirs)
wind_hist = np.zeros((num_dirs, len(spd_bins) - 1))

for i in range(num_dirs):
Expand Down
Loading