[Matplotlib-users] healpix and basemap

2008-02-12 Thread jlu
Has anyone had any luck plotting a Healpix (sky pixelization used in astronomy) map using matplotlib basemap... or any other python plotting package for that matter? Cheers, Jessica - This SF.net email is sponsored by: Mi

Re: [Matplotlib-users] plotting from xemacs always 1 step behind

2008-02-12 Thread Phil Austin
John Hunter wrote: > On Feb 12, 2008 12:17 PM, Neal Becker <[EMAIL PROTECTED]> wrote: > >> If invoked from M-x py-shell doesn't work. >> >> Now if I could just figure out where to modify the way py-shell invokes >> ipython to add the -pylab. Doc say C-u M-x py-shell would prompt for args,

Re: [Matplotlib-users] delete instance of axvspan

2008-02-12 Thread John Hunter
On Feb 12, 2008 12:23 PM, Pierre GM <[EMAIL PROTECTED]> wrote: > self.plot(current._dates-shift, current._series, lw=lw, ls=ls, c=c, > scalex=False, scaley=False) > self.highlightedline = len(self.lines)-1# > return self.highlightedline > > As you

Re: [Matplotlib-users] plotting from xemacs always 1 step behind

2008-02-12 Thread John Hunter
On Feb 12, 2008 12:17 PM, Neal Becker <[EMAIL PROTECTED]> wrote: > If invoked from M-x py-shell doesn't work. > > Now if I could just figure out where to modify the way py-shell invokes > ipython to add the -pylab. Doc say C-u M-x py-shell would prompt for args, > but the doc lies. You can proba

[Matplotlib-users] basemap and omerc

2008-02-12 Thread Evan Mason
Hi, I am having some problems using the oblique mercator projection in basemap. I want to define a rectangular orthogonal grid, rotated clockwise by about 13 degrees. I want to define grid cells of size, say, about 20x20 km. The script I have so far is below. The problem is that at some point (

Re: [Matplotlib-users] delete instance of axvspan

2008-02-12 Thread Pierre GM
On Tuesday 12 February 2008 12:07:21 Michael Frauens wrote: > I am using span selector to identify an area and then highlight in in > green. I want the user to be able to validate this (or not) and then > select another area (or not). However, when the user selects the alternate > area I want the

Re: [Matplotlib-users] plotting from xemacs always 1 step behind

2008-02-12 Thread Neal Becker
Phil Austin wrote: > John Hunter wrote: > > > > Well, the problem is that GTK, WX and Qt require threading support to > > use them properly interactively. ipython has special modes for these > > to run the GUI mainloop in the separate thread. tk is special in this > > regard, in that it run

Re: [Matplotlib-users] Basemap 0.9.9 ImportError

2008-02-12 Thread Jeff Whitaker
Ryan May wrote: >> Ryan: Nothing comes immediately to mind - unless something went wrong >> with your build.Could you rebuild basemap and send me the a log of >> the build off-list? >> >> > Attached. > > Ryan > > Ryan: Are you installing from source yourself, or building a patched

Re: [Matplotlib-users] plotting from xemacs always 1 step behind

2008-02-12 Thread Phil Austin
John Hunter wrote: > > Well, the problem is that GTK, WX and Qt require threading support to > use them properly interactively. ipython has special modes for these > to run the GUI mainloop in the separate thread. tk is special in this > regard, in that it runs from a standard python shell w

[Matplotlib-users] pyinstall and matplotlib

2008-02-12 Thread kc106_2005-matplotlib
Has anybody been able to create an exe of their python applications involving matplotlib using pyinstall (ver 1.3)? I am getting a: RuntimeError: Could not find the matplotlib data files when I attempt to run the exe created. In searching the web, it appears this is an issue when others tr

[Matplotlib-users] delete instance of axvspan

2008-02-12 Thread Michael Frauens
I am using span selector to identify an area and then highlight in in green. I want the user to be able to validate this (or not) and then select another area (or not). However, when the user selects the alternate area I want the previous instance of axvspan to be deleted/removed. How do I re

[Matplotlib-users] exceptions from easy_install matplotlib

2008-02-12 Thread Neal Becker
Should I be worried about these? Installed /usr/lib/python2.5/site-packages/matplotlib-0.91.2-py2.5-linux-x86_64.egg Processing dependencies for matplotlib Finished processing dependencies for matplotlib Exception exceptions.OSError: (2, 'No such file or directory', 'src/image.cpp') in > ignored

Re: [Matplotlib-users] plotting from xemacs always 1 step behind

2008-02-12 Thread John Hunter
On Feb 12, 2008 8:50 AM, Neal Becker <[EMAIL PROTECTED]> wrote: > I did set interactive. > > I was using QtAgg. > > I hate tk. [reposting in the correct thread] Well, the problem is that GTK, WX and Qt require threading support to use them properly interactively. ipython has special modes for t

Re: [Matplotlib-users] plotting from xemacs always 1 step behind

2008-02-12 Thread John Hunter
On Feb 12, 2008 6:49 AM, Neal Becker <[EMAIL PROTECTED]> wrote: > This is a bit wierd. > > If running from xemacs, it seems interactive plotting is always 1 step > behind. I assume you have set 'interactive : True' in your rc file? What backend are you using (you should be using tkagg from xemacs

[Matplotlib-users] plotting from xemacs always 1 step behind

2008-02-12 Thread Neal Becker
This is a bit wierd. If running from xemacs, it seems interactive plotting is always 1 step behind. For example, I do: M-x py-shell This brings up a *Python* buffer in Comint mode running Ipython. In [1]: from pylab import * In [2]: plot ([1,2,3]) Out[2]: [] In [3]: xlabel('time') Out[3]: I