rose-plot

Issue ploting WindRose using WINDROSE doc

Issue ploting WindRose using WINDROSE doc Question: 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 …

Total answers: 1

Change properties of rose plot

Change properties of rose plot Question: I use the function rose2 in my script in order to plot a rose plot. I am working with Matlab 2016a and thus still use the rose function. I use rose2 in order to be able to set the maximum value for the r axis and fill the triangles. …

Total answers: 2

Superimposing 2 Wind Roses into 1 Wind Rose

Superimposing 2 Wind Roses into 1 Wind Rose Question: I have 2 dataframes (1 is a climate average and 1 is a current month) of wind speed and wind direction of the same length that I need to combine or superimpose to 1 windrose. The idea is to combine in one image, the climate average …

Total answers: 1

Plotly: modified rose chart (pie chart with variable radius)

Plotly: modified rose chart (pie chart with variable radius) Question: I have a dataframe with name df with colmns categories and weight. My goal is to do a graph like one of the listed here (but larger!) from the row data in df, where every color belongs to only one row and the radius is …

Total answers: 1

subplots in windrose diagram

subplots in windrose diagram Question: I am very beginner to python. By following this example I tried to make windrose subplots like: but I am getting plots in this way: The code that I tried is: ws = np.random.random(500) * 6 wd = np.random.random(500) * 360 fig=plt.figure() rect=[0,0.5,0.4,0.4] wa=WindroseAxes(fig, rect) fig.add_axes(wa) wa.bar(wd, ws, normed=True, opening=0.8, …

Total answers: 1

Plotting a wind rose the Windrose Library

Plotting a wind rose the Windrose Library Question: 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: …

Total answers: 1

Tkinter canvas to plot windrose

Tkinter canvas to plot windrose Question: Having some trouble with plotting a Windrose within a tkinter window. I cant get the windrose to show by itself, the window shows another grid behind the plot(see picture below). Is there some way I could get this to only show the windrose without the extra grid in the …

Total answers: 1

Windrose legend bracket format and loc

Windrose legend bracket format and loc Question: Below I have plotted a wind rose using Windrose based on this. Firstly, the legend is covering part of the rose but when I try to use loc to set its location the legend disappears. Secondly, the legend closing brackets are wrong i.e. [0.0 : 1.0[ any idea …

Total answers: 1