For questions related to the python windrose meteorological graphics tool. Use the rose-plot tag for generic questions about rose plots.
Questions tagged [windrose]
33 questions
1
vote
3 answers
How to save a windrose plot
I plotted my wind data (direction and speed) with the windrose module https://windrose.readthedocs.io/en/latest/index.html.
The results look nice but I cannot export them as a figure (png, eps, or anything to start with) because the result is a…

Vroni
- 347
- 1
- 5
- 16
1
vote
2 answers
Controlling legend across multiple subplots with windrose axes
I cannot figure out how to make the legends not overlap with my figures (see below figure) in subplots. The problem is my axes are complicated because they are from a windrose. To get the axes:
1) I have downloaded the windrose.py from…

pwprnt
- 521
- 3
- 9
- 27
1
vote
1 answer
Tkinter canvas to plot windrose
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…

Rodrigo Prodohl
- 133
- 8
1
vote
1 answer
plot different subplots with the windrose module
I am trying to plot wind roses in subplots by using the module windrose in python
https://pypi.python.org/pypi/windrose/
Apart from some examples there is not too much documentation so I do not know how to use it to plot different subplots of wind…

gis20
- 1,024
- 2
- 15
- 33
1
vote
1 answer
windrose: __init__() got multiple values for keyword argument
I know this is not a new issue, but everything I tried using the informations from the blogs I saw doesn't work for me. I tried to run this example for windrose:
from windrose import WindroseAxes
from matplotlib import pyplot as plt
import…

elly
- 166
- 1
- 2
- 15
0
votes
1 answer
Removing statistics, title and increase legend size from openair windRose
I have produced a windRose using openair but when I change to annotate = F I lose all of the directions but I just want to remove the title and stats (circled in red in image). I also want to increase scale size so that my text is not…

gillisr
- 3
- 1
0
votes
0 answers
How to set colorbar range in windrose plotting
I am trying to analyze wind roses in Python, but it's difficult because I am unable to figure it out.
how to make all the plots with the same scale.
I have a CSV file with wind speed and direction
here is my code:
from windrose import…

hari
- 1
- 2
0
votes
0 answers
Generate windrose polar plot from frequency table
I'm trying to port some code from MATLAB to Python, this snippet should generate two identical windrose plot starting either from raw data of direction and speed for waves of from already calculated frequencies for directions. The first case (with…

rok
- 2,574
- 3
- 23
- 44
0
votes
0 answers
How to plot two windrose-diagrams side by side
I want to plot two windrose functions in python side by side, but I don't know how. I am using Panda and the windrose libary.
This is the Code I use to plot the two windroses:
from windrose import WindroseAxes
ax =…

Sarah
- 1
0
votes
1 answer
ValueError: cannot convert float NaN to integer when making wind rose
I wrote a code to create monthly pollution wind roses for a county in California. Pollution roses are similar to wind roses as they show the distribution of wind directions, but instead of showing the magnitude of the wind speed, they plot the…

obscuredbyclouds
- 189
- 1
- 1
- 15
0
votes
1 answer
Issue ploting WindRose using WINDROSE doc
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…

Lameira Gaspar LG
- 13
- 3
0
votes
2 answers
How to create a Wind Rose in KML format (google earth) using Python
I need to create a Wind Rose KML file to be opened in google earth with as (similar to) the following pictures.
I can create wind roses using windrose python module, like this one:
And I know how to create KML points and lines in python using…

Lucho
- 221
- 1
- 6
0
votes
1 answer
Why does the windrose package plot wrong values?
I want to create a windrose that only emphasizes the distribution of wind direction, so I have set all the wind speed values as the same. My final winddirection and windspeed arrays look like this:
wd= [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10,…

user3704545
- 51
- 1
- 2
- 5
0
votes
2 answers
How to plot a wind rose map with depend of color set to gas concentration
speed=[0.129438,0.0366483,0.439946,0.090253,0.19373,0.592419,0.00903306,0.520847,0.513714,1.16971,5.12548,4.37745,3.2362,2.91004,1.60186,0.115595,0.270153,0.19367,0.0865046,0.558443,0.613072,0.648203,0.0770592,0.81772,0.234523,1.04013,0.352675,0.0673…

AskNature
- 85
- 1
- 7
0
votes
1 answer
Using the windrose package yields Affine2dbase error
I am trying a simple python windrose example from here Windrose Notebook Example using Anaconda2. But I get error messages 'TypeError: unbound method __init__() must be called with Affine2DBase instance as first argument (got Affine2D instance…

squar_o
- 557
- 2
- 11
- 36