Re: [Matplotlib-users] Best way to plot grid point values on a map?

2007-04-04 Thread Simon Kammerer
Thanks Jeff, that does what I want. It seems to be efficient, as long as you don't try to plot 10.000+ values on a small map (results in a colored rectangle anyway...). After thinning out my data data = data.compress(maskX, axis=1) data = data.compress(maskY, axis=0) it seems to be only a littl

Re: [Matplotlib-users] Best way to plot grid point values on a map?

2007-04-03 Thread Jeff Whitaker
Simon Kammerer wrote: > Hi list, > > what's the best (meaning most efficient/fastest) way to plot grid > point values on a map created with basemap? > > I'd like to plot the raw values of my data-array to the correspondig > gridpoints, instead of having it transformed to something like contour >

[Matplotlib-users] Best way to plot grid point values on a map?

2007-04-03 Thread Simon Kammerer
Hi list, what's the best (meaning most efficient/fastest) way to plot grid point values on a map created with basemap? I'd like to plot the raw values of my data-array to the correspondig gridpoints, instead of having it transformed to something like contour or contourf. The ne plus ultra woul