Mateusz Jończyk
Mateusz Jończyk
Hello, In README.md there is: > Option to place boot loader on external media and to authenticate using the key media. Did the DiskCryptor installer prompt for external media while...
Please see https://diskcryptor.org/console/ and there: > Commands for operations with bootloader > [...] > -boot -setpar [partition root] | Installs bootloader on an external device. The command works with USB...
As I said: > It is safe to use much higher values of `coordinates.minErrorStatic` than values of `coordinates.minError`. Using `coordinates.minError` runs the risk of distorting device movements when the speed...
How it would work?
"If speed is less then x knots, replace coordinates with last known value." This works just as this pull request, except that x = 0.01 knots. The value of `coordinates.minErrorStatic`...
> Even more generic than speed threshold would be to use motion attribute. You mean a binary motion attribute: if it is running or not? Are there GPS units that...
OK, I have found `org/traccar/MotionHandler.java`. Have a nice day, I'll go sleeping now.
> Even more generic than speed threshold would be to use motion attribute. I have pushed some commits to the branch. Now I use boolean isInMotion = position.getBoolean(Position.KEY_MOTION); to check...
The value of `coordinates.minErrorStatic` is a safeguard, just like `filter.skipLimit`. It is to ensure that we don't filter out a position that has changed much. After all, the device may...
Because `coordinates.minError` is already used for filtering out events when the device is in motion. Setting high values of `coordinates.minError` risks movement distortion, but higher values of `coordinates.minErrorStatic` (e.g 500...