Get Gps Position On A Precise Time Interval
I'm trying to get gps postion as precise as posible at different interval ranges, i have few external gps, 10hz, 5hz and 1hz LocationManager locationManager = (LocationManage
Solution 1:
Dont look at the (system) timestamp when you received the location, look at the timestamp of the location itself, if it is delivered by GPS it should be exactly 1000ms (1/hz).
Gps receivers never deliver odd milliseconds, they are exactly at millisecond 1000, when using 1hz. use location.getTime(), and see yourself.
Post a Comment for "Get Gps Position On A Precise Time Interval"