Re: [matplotlib-devel] Bug rasterized image in pcolor and pcolormesh
> But the displacement issue you see (although think it has been fixed > in the svn) needs to be fixed. Hi, I just tried out the svn version, and the displacement issue is indeed fixed in svn. There is one more question: If I use pcolor with rasterized, filesize is 165 kb, if I use pcolormesh it is 864 kb. What is the difference between pcolor and pcolormesh? Greetings, Markus -- ___ Matplotlib-devel mailing list Matplotlib-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
Re: [matplotlib-devel] Bug rasterized image in pcolor and pcolormesh
By the way, in the current svn version, there is a small white distance between the image and the axis frame on the right hand and lower side, if I output to svg. Greetings, Markus -- ___ Matplotlib-devel mailing list Matplotlib-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
Re: [matplotlib-devel] Bug rasterized image in pcolor and pcolormesh
Markus, That is good to know that it has been fixed. As for the difference in pcolor and pcolormesh, I think it has to do with the fact that pcolormesh is composed of many lines while pcolor is composed of many polygons. It is probably more efficient to rasterize polygons than lines. Ben Root On Mon, May 31, 2010 at 4:45 AM, Markus Haider wrote: > > But the displacement issue you see (although think it has been fixed > > in the svn) needs to be fixed. > > Hi, > > I just tried out the svn version, and the displacement issue is indeed > fixed in svn. There is one more question: If I use pcolor with > rasterized, filesize is 165 kb, if I use pcolormesh it is 864 kb. What > is the difference between pcolor and pcolormesh? > > Greetings, > Markus > > > > -- > > ___ > Matplotlib-devel mailing list > Matplotlib-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > -- ___ Matplotlib-devel mailing list Matplotlib-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
[matplotlib-devel] Matplotlib and setuptools
Hello, I have developed a package that uses matplotlib. To simplify installation and distribution I have used the setup tools package. This is an excerpt from my setup.py: install_requires = ['biopython>=1.51', 'scipy>=0.7', 'numpy>=1.3.0', 'matplotlib>=0.99.0'] However it fails on matplolib with the following reason: Searching for matplotlib==0.99.0 Reading http://pypi.python.org/simple/matplotlib/ Reading http://matplotlib.sourceforge.net Reading http://sourceforge.net/project/showfiles.php?group_id=80706 Reading http://sourceforge.net/project/showfiles.php?group_id=80706&package_id=82474 Reading https://sourceforge.net/project/showfiles.php?group_id=80706&package_id=278194 Reading https://sourceforge.net/project/showfiles.php?group_id=80706&package_id=82474 Reading https://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-0.99.1/ No local packages or download links found for matplotlib==0.99.0 error: Could not find suitable distribution for Requirement.parse('matplotlib==0.99.0') I have also tried 0.99.1 but it also fails. Does anyone have any ideas? Regards Mitchell Stanton-Cook -- ___ Matplotlib-devel mailing list Matplotlib-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-devel