I need to calculate new geo location from known current latitude, longitude, offset in meters, and heading. I found this answer Calculating new longtitude, latitude from old + n meters, it's works, but does not take into account the direction(heading). Please give some tip/advise!
Asked
Active
Viewed 227 times
0
-
I would recommend you to use ready packages for those calculations, like `geopy` in python. – Binyamin Even Mar 20 '17 at 13:13
-
Split your vector into a north-south and an east-west component (sin and cos of the bearing), then use the question you linked to. – m69's been on strike for years Mar 20 '17 at 20:02