Re: [Matplotlib-users] Limit data for plot Basemap

2012-09-04 Thread Benjamin Root
On Fri, Aug 24, 2012 at 12:21 PM, John Bluee wrote: > I have lat and lon as coordinates and to each point a value. So far I use > contourf to plot. > > Sorry for not getting back to you sooner. May I suggest the following: values = np.ma.masked_outside(values, -1e-8, 1e-9, copy=False) values =

Re: [Matplotlib-users] Limit data for plot Basemap

2012-08-24 Thread John Bluee
I have lat and lon as coordinates and to each point a value. So far I use contourf to plot. Am 24.08.2012 um 18:14 schrieb Benjamin Root : > > > On Fri, Aug 24, 2012 at 11:57 AM, John Bluee wrote: > Hi all > > I have to plot seismic data on a worldmap and use the Basemap framework to do >

Re: [Matplotlib-users] Limit data for plot Basemap

2012-08-24 Thread Benjamin Root
On Fri, Aug 24, 2012 at 11:57 AM, John Bluee wrote: > Hi all > > I have to plot seismic data on a worldmap and use the Basemap framework to > do it. > My dataset contains important data in the range of -1e-8 to -1e-14 and > 1e-14 to 1e-9. Can I limit the plot to only display data in this range? >

[Matplotlib-users] Limit data for plot Basemap

2012-08-24 Thread John Bluee
Hi all I have to plot seismic data on a worldmap and use the Basemap framework to do it. My dataset contains important data in the range of -1e-8 to -1e-14 and 1e-14 to 1e-9. Can I limit the plot to only display data in this range? thanks and greets --