Re: [Matplotlib-users] plotting wind-speed time series

2007-05-07 Thread Derek Hohls
John If you look through the thread, you will see I have responded before saying I that had used this code successfully. I did not find any detailed documentation necessary... the program is really self- explanatory and well-commented. Here is a sample that works for me: from pylab import *

Re: [Matplotlib-users] plotting wind-speed time series

2007-05-07 Thread kc106_2005-matplotlib
Thanks to everybody that responded to my question. After looking at the different options, I do agree that windrose.py fits my need the best. Unfortunately, there is insufficient information embedded in the code to the point where I can use it. I sent the author a email requesting more info a

Re: [Matplotlib-users] Anyone using TkAgg on OS X successfully

2007-05-07 Thread Russell E Owen
At 2:30 PM -0600 2007-05-07, Samuel M. Smith wrote: >If you see my other post titled (Segmentation Fault TkAgg backend). >I was getting a seg fault >It appears to be a problem with the MPL in the scipy superpack. When >I reinstalled your package it >worked again. The reason I installed the scipy

Re: [Matplotlib-users] Anyone using TkAgg on OS X successfully

2007-05-07 Thread Samuel M. Smith
If you see my other post titled (Segmentation Fault TkAgg backend). I was getting a seg fault It appears to be a problem with the MPL in the scipy superpack. When I reinstalled your package it worked again. The reason I installed the scipy superpack was it was the only package installer for s

Re: [Matplotlib-users] Animation with WX on OSX

2007-05-07 Thread Samuel M. Smith
> > I'm not too surprised. OS-X double buffers behind the scenes, and I > think it waits until it thinks there is good reason to before it > updates > the screen. You need to force it in your code quite explicitly in a > way > you don't on other platforms. You might try adding a Refresh() and >

Re: [Matplotlib-users] Anyone using TkAgg on OS X successfully

2007-05-07 Thread Russell E. Owen
In article <[EMAIL PROTECTED]>, "Samuel M. Smith" <[EMAIL PROTECTED]> wrote: > Anyone using TkAgg on OSX 10.4 with MPL 0.90.0 and Python 2.5 > successfully? Absolutely. I use the package at (which I also built). One quirk is that I use ActiveState Aqua Tcl/T

Re: [Matplotlib-users] (no subject)

2007-05-07 Thread Ken McIvor
On May 7, 2007, at 11:21 AM, Christopher Barker wrote: > Praveen Gopalakrishnan wrote: >> Hi, I'm a newbie trying to install matplotlib (0.87) on Linux >> (2.6.11,FC4). I have Python 2.4, wxPython 2.8.3 and all required >> libraries for matplotlib (freetype, libpng, zlib). I'm tring to use >> wxAgg

Re: [Matplotlib-users] (no subject)

2007-05-07 Thread Christopher Barker
Praveen Gopalakrishnan wrote: > Hi, I'm a newbie trying to install matplotlib (0.87) on Linux > (2.6.11,FC4). I have Python 2.4, wxPython 2.8.3 and all required > libraries for matplotlib (freetype, libpng, zlib). I'm tring to use > wxAgg as the backend, and there is a build error for matplotlib wh

Re: [Matplotlib-users] Animation with WX on OSX

2007-05-07 Thread Christopher Barker
Samuel M. Smith wrote: > Anyone able to "see" an animation using WXAgg 2.6 or otherwise on OS X > 10.4 python 2.5 mpl 0.90.0 Please post a as-small-as-you-can-make-it sample, and I'll give it test here. > I can save figures and make a movie but nothing shows in the figure > window until the an

[Matplotlib-users] (no subject)

2007-05-07 Thread Praveen Gopalakrishnan
Hi, I'm a newbie trying to install matplotlib (0.87) on Linux (2.6.11,FC4). I have Python 2.4, wxPython 2.8.3 and all required libraries for matplotlib (freetype, libpng, zlib). I'm tring to use wxAgg as the backend, and there is a build error for matplotlib when it tries to compile the wxagg fi

Re: [Matplotlib-users] grd file

2007-05-07 Thread Lionel Roubeyrie
Le Vendredi 20 Avril 2007 18:10, Jeff Whitaker a écrit : > Lionel Roubeyrie wrote: > > By grd file, I mean csv like file, with one line by value, like > > X1 Y1 Z1 > > X2 Y1 Z2 > > X3 Y1 Z3 > > ... > > X1 Y2 Zk > > X2 Y2 Zk+1 > > ... > > Xi Yj Zn > > this is in g

Re: [Matplotlib-users] Segmentation Fault TkAgg backend

2007-05-07 Thread Samuel M. Smith
I decided that the scipy superpack might be at fault so I installed numpy 1.02 from the macpython packages and then reinstalled MPL 0.90.0 from the macpython packages and now TkAgg works. Also scipy still seems to work. So apparently Fonnesbeck's build of scipy superpack has a problem with

Re: [Matplotlib-users] Reusing basemap instance

2007-05-07 Thread Jeff Whitaker
Jesper Larsen wrote: > On Monday 07 May 2007 16:02, Jesper Larsen wrote: > >> The deepcopy operation takes almost as much time as creating a new basemap >> instance. If the basemap instance was unchanged by my plotting I would of >> course be able to avoid doing this and simply use a basemap ins

Re: [Matplotlib-users] From list of objects to plotting

2007-05-07 Thread John Hunter
On 5/6/07, Jouni K. Seppänen <[EMAIL PROTECTED]> wrote: > Tommy Grav <[EMAIL PROTECTED]> writes: > > > I would now like to plot a vs e for all the obj objects in nlist. > > how do I do that? I tried > > > > plot(nlist[:].a,nlist[:].e,'ko') > > You have a list of objects that have attributes named a

Re: [Matplotlib-users] Reusing basemap instance

2007-05-07 Thread Jesper Larsen
On Monday 07 May 2007 16:02, Jesper Larsen wrote: > The deepcopy operation takes almost as much time as creating a new basemap > instance. If the basemap instance was unchanged by my plotting I would of > course be able to avoid doing this and simply use a basemap instance > without copying it. Am

[Matplotlib-users] Reusing basemap instance

2007-05-07 Thread Jesper Larsen
Hi matplotlib basemap users, I am doing a lot of plots of the same area but for different vertical levels, time steps and parameters. I am therefore trying to reuse my basemap instance (which in some cases is quite time consuming to setup). I am doing this by making a deepcopy of a basemap inst

[Matplotlib-users] activate/deactivate RectangleSelector

2007-05-07 Thread Matthias Michler
Hello list, refering to the thread 'activate/deactivate RectangleSelector' of the developer-mailing-list I thought a bit about the problem because I found it quite irritating that the RS couldn't be stopped during zooming. I attached a patch including Martin's example and my proposal to (de)act