I need to propagate a large number of orbits (get a satellite's position at a certain time) from TLEs (two-line element sets) using Kepler's laws. Ordinarily I'd use a real propagator like SGP4/SDP4, but these need to be computed extremely quickly and accuracy isn't particularly important.
From the TLE I can get a variety of properties, including eccentricity, inclination, apogee, and epoch.
The epoch is the sequential calendar date when the satellite crossed the equator in an ascending (northerly) direction subsequent to a series of observations that were made to calculate the elements. http://www.satobs.org/element.html
My general idea is to use the apogee, inclination, and eccentricity to define an ellipse around the earth; however, I'm not sure how to figure out where on that ellipse the satellite is at a given time. To summarize: using Kepler's Laws and a Two-Line Element Set, how do I figure out the position of a satellite at a given point in time?