I have a situation where I would like to estimate where a bus should be between two given points - the origin and the final destination.
The only data I have available is the time that this bus is due at each stop between the origin and the destination.
So using the due time for each stop, I can obviously calculate how many seconds away it is from the given stop.
At this point, I have the map just plotting the bus at each stop once it gets there - so effectively just a list of buses that are at each stop.
What I am wanting to do is get an estimated location of the bus based on the number of seconds away so that I can make it look like these buses are actually moving along the route.
Is there any way to do this sort of thing?