[Matplotlib-users] basemap 0.99.4 on vista no go 0xC0000005: Access Violation?

2009-08-16 Thread marc desmarais
I can run a demo basemap on my Vista PC using version 0.99.3 for py2.5.  I upgraded to 0.99.4 because the great circle function would crash.  But now nothing works. I brought it in to Microsoft C++ debugger: unhandled exception in python.exe: 0xC005: Access Violation Marc Desmarais Long

[Matplotlib-users] import pylab changes locale settings

2009-08-16 Thread Sebastian
Hi all, When I import pylab the locale settings are changed (I'm using matplotlib 0.99.0): In [1]: import locale In [2]: print locale.localeconv() {'mon_decimal_point': '', 'int_frac_digits': 127, 'p_sep_by_space': 127, 'frac_digits': 127, 'thousands_sep': '', 'n_sign_posn': 127,

[Matplotlib-users] examples for 0.99

2009-08-16 Thread Werner F. Bruhin
I am just starting to test 0.99 (having remained on 0.90.1 for some time now). I can't find the examples - can anyone point out were they are. Used the following to install: matplotlib-0.99.0.win32-py2.5-setup.exe Werner

[Matplotlib-users] wx and matplotlib

2009-08-16 Thread Werner F. Bruhin
I am trying to put together a wxPython frame using py.aui to show multiple matplotlib.figures/canvas. Would like that each figure takes x percentage of available screen estate. I.e. would like e.g. to have 2 rows with 3 columns of figures/statistics, i.e. 6 graphics. If the total screen

Re: [Matplotlib-users] import pylab changes locale settings

2009-08-16 Thread Ryan May
On Sun, Aug 16, 2009 at 8:02 AM, Sebastian basti...@gmail.com wrote: Hi all, When I import pylab the locale settings are changed (I'm using matplotlib 0.99.0): In [1]: import locale In [2]: print locale.localeconv() {'mon_decimal_point': '', 'int_frac_digits': 127, 'p_sep_by_space': 127,

Re: [Matplotlib-users] basemap 0.99.4 on vista no go 0xC0000005: Access Violation?

2009-08-16 Thread Christoph Gohlke
Hi Marc, I can not reproduce this crash on my Vista development computer or on a fresh installation of Windows XP, Python 2.5.4, Numpy 1.3, matplotlib 0.99, basemap 0.99.4 in a VM. All examples work (some depend on PIL). Can you run these commands without crash? python -c import _geoslib

Re: [Matplotlib-users] wx and matplotlib

2009-08-16 Thread Christopher Barker
Werner F. Bruhin wrote: I am trying to put together a wxPython frame using py.aui to show multiple matplotlib.figures/canvas. I'd recommend you take a look at wxMPL -- it's a nice way to embed MPL in wx. Would like that each figure takes x percentage of available screen estate. I.e.