knowing
a decimal latitude, decimal longitude, speed (km/h), heading
how to find the next position of a car after 60 seconds?
is there any algorithm to do that?
knowing a decimal latitude , decimal longitude , speed (km/h) , heading how to
Share
This might help:
Then, calculate x and y components of speed using heading as angle (trigonometry):
Next, see how to map lat/long into some form of x/y coordinates, add speed_x and speed_y, and convert to lat/long again.
This last one is a tricky one, look here: http://www.movable-type.co.uk/scripts/latlong.html
In fact, you’ll find everything within that article!