Samuël Weber/GwendalD

Results 21 comments of Samuël Weber/GwendalD

Hello, Just for completness: windrose uses regular matplotlib function and a windrose axe inherit from a PolarAxe. So every matplotlib function applies to windrose. You can then customize the tick...

HéHé. This code fails for python 2. Do we care about supporting it?

Indeed. It's just that I am not a fan of "kwar.poping" things, because it hide the potential argument of the function. For the mutable argument, I agree. Normally it is...

Hello, You have several issue with your code. You create first 2 figures, then call the `WindroseAxe.from_ax()` , which also create a figure if none is passed. Also, the wrapper...

It is now possible with v1.6.8, and documented here: https://windrose.readthedocs.io/en/latest/usage.html#overlay-of-a-map Do we wan't a full built-in integration of this in windrose? Right now, it's work thanks of a bit of...

Indeed, to me a detail example in the doc is enough.

I think the issue is solved, according to this minimum example: ```python import numpy as np import matplotlib.pyplot as plt import windrose ws = np.random.random(500) * 6 wd = np.random.random(500)...

Hello, Windrose changes the base Zorder for every drawing to default to -1000, in order to have the grid on. Otherwise, strange things happen for the yticklabels: ![image](https://user-images.githubusercontent.com/25247745/92727341-3daeb280-f36f-11ea-9f02-e78bcb258325.png) the `ax.set_axisbelow(True)`...

Hello, I was trying to find something for that as well, without success. So, I ended up by writing a custom scanner for that. I am *not at all* a...

any news on this PR?