villoren / KalmanLocationManager

Android LocationManager that delivers location predictions based on a Kalman filter.
Other
269 stars 68 forks source link

Why accuracy is taken only from mLatitudeTracker? #10

Open ArslanAnjum opened 6 years ago

ArslanAnjum commented 6 years ago

Following is line 324 from Looper thread

location.setAccuracy((float) (mLatitudeTracker.getAccuracy() * DEG_TO_METER));

My question is why you are taking into account the latitude accuracy? why not both lat and lng?