Re: [Matplotlib-users] Basemap and clim, has this changed in 0.99

2009-09-29 Thread Evan Mason
On Tue, Sep 29, 2009 at 7:12 PM, Jeff Whitaker wrote: > Evan Mason wrote: >> >> Hi, I've just upgraded to mpl 0.99 (from svn) and Basemap (also from svn). >> >> >> > > Evan:  I believe Ryan May just fixed this yesterday - so if you update > basemap from svn again it should work. > > -Jeff >> >> It

Re: [Matplotlib-users] Basemap and clim, has this changed in 0.99

2009-09-29 Thread Jeff Whitaker
Evan Mason wrote: > Hi, I've just upgraded to mpl 0.99 (from svn) and Basemap (also from svn). > > > Evan: I believe Ryan May just fixed this yesterday - so if you update basemap from svn again it should work. -Jeff > It seems that plt.clim(vmin,vmax) no longer works with Basemap > objects.

Re: [Matplotlib-users] Basemap and clim, has this changed in 0.99

2009-09-29 Thread Ryan May
On Tue, Sep 29, 2009 at 12:52 PM, Evan Mason wrote: > Hi, I've just upgraded to mpl 0.99 (from svn) and Basemap (also from svn). > > > > It seems that plt.clim(vmin,vmax) no longer works with Basemap > objects.  Here is an example, which before used to work: > > > In [92]: M.pcolormesh(x, y, a_var

[Matplotlib-users] Basemap and clim, has this changed in 0.99

2009-09-29 Thread Evan Mason
Hi, I've just upgraded to mpl 0.99 (from svn) and Basemap (also from svn). It seems that plt.clim(vmin,vmax) no longer works with Basemap objects. Here is an example, which before used to work: In [92]: M.pcolormesh(x, y, a_var,cmap=cm) Out[92]: In [93]: plt.clim(-10,10) ---