[matplotlib-devel] Patch for bug in lines.py

2006-11-13 Thread Ted Drain
@ """ if marker not in self._markers: -verbose.report_error('Unrecognized marker style %s, %s'%( marker, type(marker))) + verbose.report('Unrecognized marker style %s, %s&

[matplotlib-devel] Help adding -L dir to build step...

2007-03-19 Thread Ted Drain
build all the necessary components so my installation ends up not working. Does anyone know an easy way to add this link dir to the distutils build? Thanks, Ted Ted Drain Jet Propulsion Laboratory [EMAIL PROTECTED] ---

Re: [matplotlib-devel] units support in svn

2007-03-20 Thread Ted Drain
FYI The unit system John is working on will be a huge improvement for the way we use MPL. Our users do a ton of plotting that involves unitized numbers vs time. We have our own unit class and time class and right now users have to convert the unitized numbers into floats in the correct units

Re: [matplotlib-devel] numpification and imports

2007-07-13 Thread Ted Drain
press C - the FREE version of DB2 express and take >control of your XML. No limits. Just data. Click to get it now. >http://sourceforge.net/powerbar/db2/ >___ >Matplotlib-devel mailing list >Matplotlib-devel@lists.sourceforge.n

Re: [matplotlib-devel] numpification and imports

2007-07-13 Thread Ted Drain
k the basic idea is that if I want to use MPL, I should import it and go and I should not have to import a sub-module out of MPL as the main API. At 01:25 PM 7/13/2007, John Hunter wrote: >On 7/13/07, Ted Drain <[EMAIL PROTECTED]> wrote: > > I think he means that the matplotlib/__i

Re: [matplotlib-devel] organization of traited config system

2007-07-26 Thread Ted Drain
______ >Matplotlib-devel mailing list >Matplotlib-devel@lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/matplotlib-devel Ted Drain Jet Propulsion Laboratory [EMAIL PROTECTED] -

Re: [matplotlib-devel] patch: step function plotting

2007-08-14 Thread Ted Drain
Manuel, We do plots like this all the time. One thing we've found that's nice to have is a keyword that controls when the increase in y happens. We use a step style keyword that can be 'pre' (go up then right), 'post' (go right then up), and 'mid' (right 0.5, up, right 0.5). Regarding your

Re: [matplotlib-devel] patch: step function plotting

2007-08-14 Thread Ted Drain
At 10:36 AM 8/14/2007, Eric Firing wrote: Ted Drain wrote: Manuel, We do plots like this all the time. One thing we've found that's nice to have is a keyword that controls when the increase in y happens. We use a step style keyword that can be 'pre' (go up then righ

Re: [matplotlib-devel] API additions

2007-10-04 Thread Ted Drain
g through log files to find problems? Stop. >Now Search log events and configuration files using AJAX and a browser. >Download your FREE copy of Splunk now >> http://get.splunk.com/ >_______ >Matplotlib

Re: [matplotlib-devel] API additions

2007-10-04 Thread Ted Drain
John, I think keeping the existing API is probably a good idea. What about something like this: - Keep xlim and viewlim as they are. - Add xbound() (or maybe a better name) that returns (x1,x2) where x1 < x2. - Add set_xbound(x1,x2) that takes x1On 10/4/07, Ted Drain <[EMAIL PROTECTED]&

Re: [matplotlib-devel] API additions

2007-10-04 Thread Ted Drain
be handled by some extra comments in the existing code so that people who are looking for examples would get a reminder that this case has to be handled. Ted At 02:11 PM 10/4/2007, Eric Firing wrote: >Ted Drain wrote: > > John, > > I think keeping the existing API is probably a good i

Re: [matplotlib-devel] units

2007-11-05 Thread Ted Drain
John, Sorry about the late replay - I've been out sick. I don't mean to turn this around on you but it might be best if we could define what mathematical operations MPL requires from a type. Our types support all "reasonable" math ops. The examples of things that have caused problems in the

Re: [matplotlib-devel] Experimental overlapping-prevention on the transforms branch

2007-12-04 Thread Ted Drain
t.png') >savefig('simple_plot') show() >--------- >SF.Net email is sponsored by: The Future of Linux Business White Paper >from Novell. From the desktop to the data center, Linux is going >mainstream. Let it simpl

Re: [matplotlib-devel] Problem with Agg Ellipses

2007-12-10 Thread Ted Drain
nce Software Branch >Operations and Engineering Division >Space Telescope Science Institute >Operated by AURA for NASA > >- >SF.Net email is sponsored by: >Check out the new SourceForge.net Marketplac

Re: [matplotlib-devel] Problem with Agg Ellipses

2007-12-10 Thread Ted Drain
AM 12/10/2007, Michael Droettboom wrote: >John Hunter wrote: > > On Dec 10, 2007 10:25 AM, Ted Drain <[EMAIL PROTECTED]> wrote: > > > >> I don't know if the current MPL architecture can support this but it > >> would be nice if it worked that way. We hav

Re: [matplotlib-devel] Problem with Agg Ellipses

2007-12-11 Thread Ted Drain
alculated. 3. Proceeding counterclockwise starting in the positive x-direction, each of the visible arc-segments between the pairs of vertices are drawn using the bezier arc approximation technique implemented in Path.arc(). Cheers, Mike Ted Drain wrote: All of

Re: [matplotlib-devel] Problem with Agg Ellipses

2007-12-21 Thread Ted Drain
Everyone, I just wanted to say thanks for tackling this problem so quickly. It's great to see that problems can be worked out like this and we really appreciate it. Here is some background on what we're using this for: The current NASA mission to Mars (Phoenix) will be landing at the end of

Re: [matplotlib-devel] resurrecting namespace packages

2008-01-09 Thread Ted Drain
ace. >It's the best place to buy or sell services for >just about anything Open Source. >http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace >___ >Matplotlib-devel mailing list >Matplotlib-devel@lists.sourcefo

Re: [matplotlib-devel] resurrecting namespace packages

2008-01-10 Thread Ted Drain
Could someone point me at a discussion/article that explains the need for namespace packages? I'm sure there is some good reason for it but on the surface it seems very confusing. I've always thought that the purpose of the __init__ file is to define the public interface for a package. So wh

[matplotlib-devel] Using date axis messes up Line2D data?

2008-03-09 Thread Ted Drain
I've got an MPL widget embedded in a qt application. The user interacts w/ the GUI and causes data to be shown or hidden in the plot. Since the data can be very large (5-10 lines w/ 40,000 points in each), I've written code that reads the data and builds Line2D objects. Then I call axes.add_line

[matplotlib-devel] QtAgg backend drawing everything twice?

2008-03-13 Thread Ted Drain
I'm working on improving the plotting speed of one of our applications. As part of that, I was looking at how quickly the QtAgg backend is drawing. I added some print out's to the backend and noticed that it seems to be drawing everything twice. In the code: backend_qtagg.py: FigureCanvasQTAgg

[matplotlib-devel] Qt backends redrawing twice on zooming

2008-03-21 Thread Ted Drain
I've been investigating performance problems we've been having w/ the Qt backends. One problems is that zooming takes forever. I've put a lot of timing loops into the backends to see where things are happening and found a couple of interesting items. The first is that agg seems to get much slo

[matplotlib-devel] Problem in qtagg and qt4agg backends

2008-04-03 Thread Ted Drain
A few weeks ago I reported a double draw problem in the qt backends. They both have a draw() method that looked like this: def draw( self ): self.replot = True FigureCanvasAgg.draw(self) self.repaint( False ) It turned out that FCA::draw() and self.repaint() both did

Re: [matplotlib-devel] Unnecessary rerendering in wx/wxagg backends

2008-04-14 Thread Ted Drain
[matplotlib-devel] Unnecessary rerendering in wx/wxagg > backends > > Hi Christopher, > > thanks for your valueable feedback. I am proceeding slowly, but > steadily. > > > > > backend_qtagg.py seems to contain a proper (more or > >> less, see other postings

Re: [matplotlib-devel] future of mpl documentation

2008-05-22 Thread Ted Drain
Darren, I think this is a GREAT idea. I've been trying to free up some resources to work on a better MPL user's guide for our users this year. If I can swing it, perhaps we can help contribute some sections. Given that we use the units system extensively, we'd probably have some sections that ar

Re: [matplotlib-devel] date2num/num2date and ordinal date

2008-06-03 Thread Ted Drain
Just a note (that I realize will probably never get 'fixed'): It would be nice if MPL could support more arbitrary date ranges (such as negative numeric dates). This comes up more often than you might think. Try writing a GUI w/ an embedded date plot - you can't switch a plot to date format until

Re: [matplotlib-devel] date2num/num2date and ordinal date

2008-06-04 Thread Ted Drain
start thinking about possible solutions. Ted > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > John Hunter > Sent: Tuesday, June 03, 2008 1:51 PM > To: Ted Drain > Cc: Matplotlib > Subject: Re: [matplotlib-devel] date2num/nu

Re: [matplotlib-devel] units support

2008-07-21 Thread Ted Drain
John, It seems like a slightly different design and some refactoring of the code would help with this (of course that's WAY easier to say than it is to do). I'm thinking of something like this: Public API layer: Very thin (i.e. minimum amount of code). The goal of this layer might be to transform

[matplotlib-devel] Question about sphinx doc extensions

2008-09-10 Thread Ted Drain
We're in the process of converting our documentation from doxygen (parsing C++ and post processing w/ many huge regexp's to make it look like python) to using sphinx. I was curious about the equation formatting extension that you guys wrote and how it compares to the one (or is it two?) that co

Re: [matplotlib-devel] Question about sphinx doc extensions

2008-09-11 Thread Ted Drain
uld change that but it's just an artifact of something else it might be better to remove that dependency. Ted > -Original Message- > From: Michael Droettboom [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 11, 2008 5:50 AM > To: Ted Drain > Cc: matplotlib-devel@l

[matplotlib-devel] Can't find Sphinx docs from the MPL homepage?

2008-09-18 Thread Ted Drain
I can't seem to find a link to the new (and wonderful) sphinx docs from the MPL homepage. Are you deliberately waiting to make them "prime"? - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Buil