Re: [Matplotlib-users] Quick question about annotate

2009-05-08 Thread Jae-Joon Lee
On Tue, May 5, 2009 at 5:20 PM, william ratcliff wrote: > Hi!  Quick question about pylab.annotate: > > Is it supposed to take keyword args such as fontsize? > Yes, it is. http://matplotlib.sourceforge.net/api/pyplot_api.html?highlight=fontsize#matplotlib.pyplot.annotate -JJ > Thanks, > Will

Re: [Matplotlib-users] Basemap - fillcontinents fills entire map region in some cases

2009-05-08 Thread jtamir
Thanks for the response. drawlsmask gets the job done. Jon -- View this message in context: http://www.nabble.com/Basemap---fillcontinents-fills-entire-map-region-in-some-cases-tp23451317p23454957.html Sent from the matplotlib - users mailing list archive at Nabble.com. --

Re: [Matplotlib-users] Basemap - fillcontinents fills entire map region in some cases

2009-05-08 Thread Jeff Whitaker
jtamir wrote: > I am creating projections centered around various locations: > > > m = Basemap(width=best_width, height=best_height, lon_0=centerLon > lat_0=centerLat, resolution='c',area_thresh=1.,projection='laea') > > For every location, i have the same code to fill the regions: > > m.fill

[Matplotlib-users] Basemap - fillcontinents fills entire map region in some cases

2009-05-08 Thread jtamir
I am creating projections centered around various locations: m = Basemap(width=best_width, height=best_height, lon_0=centerLon lat_0=centerLat, resolution='c',area_thresh=1.,projection='laea') For every location, i have the same code to fill the regions: m.fillcontinents(color='#997766',l

[Matplotlib-users] clabel and rotation

2009-05-08 Thread Evan Mason
Hi, would it be possible to add a keyword to clabel to optionally switch off the angle fix in contour.py lines 384+? # Fix angle so text is never upside-down if rotation > 90: rotation = rotation - 180.0 if rotation < -90: rotation = 180.0 + rotation Some

Re: [Matplotlib-users] svn revision number

2009-05-08 Thread Jouni K . Seppänen
Thomas Robitaille writes: > In [2]: matplotlib.__revision__ > Out[2]: '$Revision: 6887 $' > > but this isn't actually the current revision number, I have upgraded > to 7096 (I'm suspecting that 6887 is the revision number for 0.98.5.2) The way Subversion works, 6887 is simply the latest revisi

Re: [Matplotlib-users] copied text

2009-05-08 Thread Christopher Barker
Michael Droettboom wrote: > examples of embedding matplotlib inside of a wxPython GUI here: > > http://matplotlib.sourceforge.net/examples/user_interfaces/index.html I'd also check out wxMPL, it's a nice way to embedMPL in a GUI: http://agni.phys.iit.edu/~kmcivor/wxmpl/ -CHB -- Christoph

[Matplotlib-users] svn revision number

2009-05-08 Thread Thomas Robitaille
Hello, I was wondering whether there is an easy way to find out the svn revision number of matplotlib in python. I tried: In [2]: matplotlib.__revision__ Out[2]: '$Revision: 6887 $' but this isn't actually the current revision number, I have upgraded to 7096 (I'm suspecting that 6887 is the

Re: [Matplotlib-users] copied text

2009-05-08 Thread Michael Droettboom
There isn't a way to do this in matplotlib itself -- none of the text matplotlib draws is interactive and selectable etc. However, if you're embedded matplotlib in a wxPython GUI, you could stick a wxPython text widget underneath the plotting canvas and put whatever text you need there. The de

[Matplotlib-users] copied text

2009-05-08 Thread Stefanie Lück
Hello! I'm new to matplotlib and want to draw a line chart. Everythings works fine with the great matplotlib. Now my question: I would like to draw under the diagramm a text, which can be selected and copied. Is this possible? I guess the easiest way is to do it over a GUI (I'm using wxPython).