Re: [Matplotlib-users] Basemap to KML polygon

2008-07-23 Thread Lionel Roubeyrie
thanks for this link Scott, I went into the refernce API directly without looking at this tutorial. Effectively, it works :-) Scott Sinclair a écrit : Lionel Roubeyrie <[EMAIL PROTECTED]> 07/23/08 9:37 AM >>> > I want to "convert" a filled contours map generated with > Basemap

Re: [Matplotlib-users] Border appearance

2008-07-23 Thread "Jonathan Hayward http://JonathansCorner.com"
On Tue, Jul 22, 2008 at 4:57 PM, John Hunter <[EMAIL PROTECTED]> wrote: > On Tue, Jul 22, 2008 at 4:28 PM, Jonathan Hayward > http://JonathansCorner.com <[EMAIL PROTECTED]> wrote: > > On the two routines I'm modifying from examples, boundaries and borders > are > > generally a hefty black. > > > >

Re: [Matplotlib-users] Scaling--I couldn't find it, but should this be in FAQ list?

2008-07-23 Thread John Hunter
On Wed, Jul 23, 2008 at 9:06 AM, Jonathan Hayward http://JonathansCorner.com >> fig = figure((8,6), dpi=100) # 800x600 > > When I tried placing that line in a couple of places, I got an error: Sorry, my fault, you need the keyword argument figsize: In [1]: import matplotlib.pyplot as plt In [

Re: [Matplotlib-users] Scaling--I couldn't find it, but should this be in FAQ list?

2008-07-23 Thread "Jonathan Hayward http://JonathansCorner.com"
On Tue, Jul 22, 2008 at 4:54 PM, John Hunter <[EMAIL PROTECTED]> wrote: > On Tue, Jul 22, 2008 at 4:06 PM, Jonathan Hayward > http://JonathansCorner.com <[EMAIL PROTECTED]> wrote: > > Thank you; I've shrunk the graphic part. > > Please respond to the mailing list ("reply to all") > Oops; sorry.

Re: [Matplotlib-users] Basemap to KML polygon

2008-07-23 Thread Scott Sinclair
>>> Lionel Roubeyrie <[EMAIL PROTECTED]> 07/23/08 9:37 AM >>> I want to "convert" a filled contours map generated with Basemap (example here : http://imagebin.ca/view/3nYnN3.html) to a polygon shapefile (vector). After multiple tests, I can retrieve the polygons points coordinates via matplotli

Re: [Matplotlib-users] default mathtext font

2008-07-23 Thread Eli Brosh
Thanks, This unicode thing works like magic. The only thing I am still unable to do is to insert the symbol \epsilon (as distinct from \varepsilon). For some reason, the varepsilon ε is printed fine, but a blank square is printed instead of the lunate epsilon ϵ. That is u' ε ' works, while u' ϵ' d

Re: [Matplotlib-users] Basemap to KML polygon

2008-07-23 Thread Lionel Roubeyrie
Hi Tim, like I said, I want to "convert" a filled contours map generated with Basemap (example here : http://imagebin.ca/view/3nYnN3.html) to a polygon shapefile (vector). The filled contours are from a regular points grid which can already be saved into a point shapefile (via ogr python binding