try 0.1 m min displacement after breaks for now
This commit is contained in:
parent
cd9779d2c6
commit
258384bea8
1 changed files with 1 additions and 1 deletions
|
@ -431,7 +431,7 @@ public class GPXUtilities {
|
|||
totalDistanceMoving0 += calculations[0];
|
||||
}
|
||||
|
||||
if ((speed > 0) && (calculations[0] > 0.5 / 1000f * (point.time - prev.time)) && point.time != 0 && prev.time != 0) {
|
||||
if ((speed > 0) && (calculations[0] > 0.1 / 1000f * (point.time - prev.time)) && point.time != 0 && prev.time != 0) {
|
||||
timeMoving = timeMoving + (point.time - prev.time);
|
||||
totalDistanceMoving += calculations[0];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue