Re: [Matplotlib-users] basemap and py2exe

2010-03-23 Thread Yagua Rovi
> > 2010/3/22 Friedrich Romstedt : >> I'm not shure whether the following suggestion solves your problem, >> but it would simplify your script anyway. >> >> import matplotlib >> ... >> setup(..., data_files = matplotlib.get_py2exe_datafiles()) >> >> And maybe don't forget to exclude 'libgdk_pixbuf-

Re: [Matplotlib-users] basemap and py2exe

2010-03-22 Thread Yagua Rovi
I identify the problem. There is no basemap data directory and the app search those datas in [MY_DIR]\dist\library.zip\mpl_toolkits\basemap\data But I don't know how to add it at the compilation 2010/3/22 Friedrich Romstedt : > I'm not shure whether the following suggestion solves your pro

[Matplotlib-users] basemap and py2exe

2010-03-22 Thread Yagua Rovi
Hello World, I'm using py2exe to create an executable on windows . There is a setup.py file that allows me to create this executable under eclipse. I have a problem with basemap. Probably, the app needs data basemap directory but I don't know where to put it. Thanks for your help. Yagua The conte

[Matplotlib-users] How to draw a rectangle using event handler ?

2010-02-12 Thread Yagua Rovi
Hello world! I am displaying on my screen a set of data corresponding to points defined by a longitude and latitude. The display is fine with the command imshow (mydata ,...) I would like now associate to the application a callback that draw a rectangle on two consecutive left mouse's button pres

Re: [Matplotlib-users] Ratio of a plot using matplotlib

2010-01-14 Thread Yagua Rovi
2010/1/14 Andrew Straw : > Yagua Rovi wrote: >> I use matplotlib since two days only. I have done some things pretty >> good but I am now in front of a problem an I didn't found a solution >> in the documentation. >> >> I would like to draw the surface defi

[Matplotlib-users] Ratio of a plot using matplotlib

2010-01-14 Thread Yagua Rovi
I use matplotlib since two days only. I have done some things pretty good but I am now in front of a problem an I didn't found a solution in the documentation. I would like to draw the surface defined by the lists X, Y and the matrix Z. I get to a nice graphical output with the following code. My