Re: [matplotlib-devel] "plot" plots too many markers when projection="hammer" is used.

2008-07-31 Thread Michael Droettboom
What's happening here is that the Hammer projection uses interpolation to make the lines follow the curve of the projection. Obviously with markers, we don't want that interpolation. The fix is to just use transform_points rather than transform_path with markers. This is now fixed in SVN r59

Re: [matplotlib-devel] "plot" plots too many markers when projection="hammer" is used.

2008-07-24 Thread Jae-Joon Lee
I forgot to attach the patch. -JJ On Fri, Jul 25, 2008 at 2:39 AM, Jae-Joon Lee <[EMAIL PROTECTED]> wrote: > Hi, > > While playing a little bit with "custom_projection_example.py", I > found that "plot" command with projection="hammer" plots too many > markers. > > For example, > >subplot(11

[matplotlib-devel] "plot" plots too many markers when projection="hammer" is used.

2008-07-24 Thread Jae-Joon Lee
Hi, While playing a little bit with "custom_projection_example.py", I found that "plot" command with projection="hammer" plots too many markers. For example, subplot(111, projection="hammer") grid(True) p = plot([-1, 1, 1], [-1, -1, 1], "o") show() plots more than 100 circles, i