Re: [Matplotlib-users] Basemap AxesGrid

2011-11-14 Thread Yoshi Rokuko
> grid = AxesGrid(fig, 132, > nrows_ncols = (3, 2), > axes_pad = 0.1, > cbar_location = "top", > cbar_mode="single", >) solved by using: grid = AxesGrid(fig, 111, ...) best regards, yoshi --

Re: [Matplotlib-users] Basemap AxesGrid

2011-11-08 Thread Yoshi Rokuko
+- Yoshi Rokuko ---+ > this works in principle, but however i can't increase > the size of the grid. > > even if i try something like: > > fig = plt.figure(1, (15,18)) > fig.subplots_adjust(left=0.01, bottom=0.01, > right=0.99, top=0.99) > g

Re: [Matplotlib-users] Basemap AxesGrid

2011-11-08 Thread Yoshi Rokuko
+-- Benjamin Root ---+ > Why not something like this: > > fig = plt.figure() > grid = AxesGrid(...) > bm = Basemap(...) > for ax in grid : > x, y = bm(lon, lat) > ax.scatter(x, y, vmin=globalmin, vmax=globalmax) > > I do variations of this all the time. Th

Re: [Matplotlib-users] Basemap AxesGrid

2011-11-07 Thread Benjamin Root
On Mon, Nov 7, 2011 at 1:40 PM, Yoshi Rokuko wrote: > > is there a way for using Basemap with AxisGrid? > > > > did someone try something like: > > > > grid = AxisGrid() > > for i in range(4): > > grid[i].scatter(with underlying Basemap) > > the common thing is probably something like: > > fi

Re: [Matplotlib-users] Basemap AxesGrid

2011-11-07 Thread Yoshi Rokuko
> is there a way for using Basemap with AxisGrid? > > did someone try something like: > > grid = AxisGrid() > for i in range(4): > grid[i].scatter(with underlying Basemap) the common thing is probably something like: fig = pl.figure() for i in range(4): fig.add_subplot(2,2,i) bm = B

[Matplotlib-users] Basemap AxesGrid

2011-11-07 Thread Yoshi Rokuko
is there a way for using Basemap with AxisGrid? did someone try something like: grid = AxisGrid() for i in range(4): grid[i].scatter(with underlying Basemap) ? thank you and best regards, yoshi -- RSA(R) Conference