> 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
--
+- 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
+-- 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
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
> 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
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