You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using the Kalman Service to draw a route, in parallel, I'm also using the fucedlocation to draw another route. The purpose is to compare both paths and see which is more accurate.
For the last few hours, I've been getting weird random locations from the Kalman Service, which can be seen below.
Here is the implementation
internal class MadLocationManager(
private val context: Context
) : LocationServiceInterface {
private lateinit var geoHashRTFilter: GeohashRTFilter
init {
ServicesHelper.addLocationServiceInterface(this)
}
override fun locationChanged(location: Location?) {
location ?: return
Log.i(TAG, "locationChanged: $location")
RxBus.send(location)
}
}
edit:
The issue doesn't happen on default settings. But if I change onlyGpsSensor from true to false and set provider to Settings.LocationProvider.FUSED
Hello there.
Actually there is an error in java version now.
I recommend to try out version in lib_cpp branch (lib folder). But there is only C++ version of filter for now (with a quite simple API) .
Hi @Lezh1k. We are experiencing (maybe) a similar issue. Most of our users does not seems to have this error but on couple of Samsung devices we see wrong coordinates in the middle of nowhere (like in the middle of the ocean)
Do. you think that it is related to the bug mentioned in your comment? is there a new version with this bug fixed?
Hey,
I am using the Kalman Service to draw a route, in parallel, I'm also using the fucedlocation to draw another route. The purpose is to compare both paths and see which is more accurate.
For the last few hours, I've been getting weird random locations from the Kalman Service, which can be seen below.
Here is the implementation
edit:
The issue doesn't happen on default settings. But if I change
onlyGpsSensor
fromtrue
tofalse
and setprovider
toSettings.LocationProvider.FUSED
The text was updated successfully, but these errors were encountered: