[Matplotlib-users] basemap border coordintes

2010-08-22 Thread Janwillem
works for manually entered coordinates but now I would like to have a country border (see and land) as a polygon (low resolution). Is there a simple way to extract that from the basemap data? Tanks, Janwillem -- View this message in context: http://old.nabble.com/basemap-border-coordintes

Re: [Matplotlib-users] range for log scale

2009-09-21 Thread Janwillem
P.S. I noted that the new versions of OOcalc and Exel, 3.0 and 2007, now do allow log scales other than in decades. Janwillem wrote: > > Is it possible to have in Matplotlib.pyplot a log (base 10) scale that > does go from xmin to xmax where xmin and xmax are not powers of 10 (as &

[Matplotlib-users] range for log scale

2009-09-20 Thread Janwillem van Dijk
I hope so, Thanks, Janwillem -- Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications

Re: [Matplotlib-users] wxagg and cups printer

2009-08-04 Thread Janwillem
my system solved the problem. The same applies to PDF. If you install cupspdf the problem also appears and after renaming it to e.g. CUPS_PDF disappears. Cheers, Janwillem Janwillem wrote: > > Inspired by examples like > http://matplotlib.sourceforge.net/examples/user_interfaces/em

[Matplotlib-users] wxagg and cups printeer

2009-08-03 Thread Janwillem
Inspired by examples like http://matplotlib.sourceforge.net/examples/user_interfaces/embedding_in_wx2.html I added matplotlib.use('WXAgg') to my (wxPython) script in order to directly copy the matplotlib.backends.backend_wxagg.FigureCanvasWxAgg to a wx canvas. On my ubuntu 9.04 AMD64 PC it works f

Re: [Matplotlib-users] show figures in a loop

2009-08-02 Thread Janwillem
before making a bitmap. This because I assume that the draw() converts vector graphics to raster graphics. I am not sure all this is the cleverest way but, when called from a wx.EVT_SIZE event it resizes nicely be it somewhat slow. Janwillem wrote: > > I have an application where I would l

Re: [Matplotlib-users] show figures in a loop

2009-08-02 Thread Janwillem
the purpose of my question? Cheers,Janwillem Janwillem wrote: > > I have an application where I would like to use show in a loop but as > stated in 18.1 of the manual that does not work. > # WARNING : illustrating how NOT to use show > for i in range(10): > # make figure i

[Matplotlib-users] show figures in a loop

2009-08-02 Thread Janwillem
I have an application where I would like to use show in a loop but as stated in 18.1 of the manual that does not work. # WARNING : illustrating how NOT to use show for i in range(10): # make figure i show() So I made a workaround in a custom wxDialog with a wxStaticBitmap and a few buttons