mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
location service: reduce default thresholds
Current values (1000m, 10 min) may be too long to choose an accurate fix while automatically applying gpsfixes to dives. They are fine if we are diving from a static position, but will give wrong positions e.g. while drift diving. Reducing the default values to shorter 100m, 5min won't hurt most dives from shore or static boats, but will make other diving styles get more accurate gpsfixes. signed-off-by: Salvador Cuñat <salvador.cunat@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
2182167b53
commit
1c2127d232
1 changed files with 2 additions and 2 deletions
|
@ -90,8 +90,8 @@ struct preferences default_prefs = {
|
|||
},
|
||||
.planner_deco_mode = BUEHLMANN,
|
||||
.vpmb_conservatism = 3,
|
||||
.distance_threshold = 1000,
|
||||
.time_threshold = 600,
|
||||
.distance_threshold = 100,
|
||||
.time_threshold = 300,
|
||||
#if defined(SUBSURFACE_MOBILE)
|
||||
.cloud_timeout = 10,
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue