> 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 = Basemap()
    x, y = bm(lon, lat)
    pl.scatter(x, y, ..., vmin=globalmin, vmax=globalmax)

that works nice, but how do i plot a global colorbar then?

i think this is a common thing, i want to compare one
map with different scatter plots on it ...

someone did something like that before?

thank you and best regards, yoshi

------------------------------------------------------------------------------
RSA(R) Conference 2012
Save $700 by Nov 18
Register now
http://p.sf.net/sfu/rsa-sfdev2dev1
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to