I have the data of two GPS positions (lat / lon) that include a timestamp in seconds.
Now I need to calculate all points between those two on a straight line one for each second.
Example: start is lat/lon at time 5, end is lat/lon at time 8.
Needed: lat/lon at time 6 and 7.
The number of missing points between start and end is unknown (may be just one, four or even a hundred).
I do have a function to calculate the distance between start & end and I do have a function to calculate the center of the two.
But how can I get multiple points?