Does anyone know how (if?) I can control the vmin
and vmax
of an Iris quickplot pcolormesh animation using iris.experimental.animate.animate
?
wind = iris.load_cube('/my/pp/file')
cube_iter = wind.slices(('longitude', 'latitude'))
ani = animate(cube_iter, qplt.contourf,vmin=0,vmax=20)
plt.show()
I'm using Iris version 2.4.0.
In this code, the animation works, but vmax is ignored (see attached screenshot).
Does anyone know how to fix this?
Thanks!
This is a bit of a fudge, but we can produce a more sensible animation by using the functools.partial function to fix the
levels
andextend
keyword.