The problem I have looks pretty simple : whenever I do a polar plot, the angle ticks are taken care of by ThetaFormatter, which labels them in degrees.
I am aware of this question, where the ticks labels are replaced with wind rose names, and of this example where it looks like matplotlib does what I want in a cartesian setting, but I haven't found how to do the same in a polar plot... where it would be the most natural!
Here is some simple example of a polar plot:
from pylab import *
fig = figure()
axe = fig.gca(polar=True)
thetas = linspace(0,2*pi,200)
rhos = 3+cos(5*thetas)
axe.plot(thetas, rhos)
fig.show()