This repository has been archived by the owner on Mar 20, 2023. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Big improvement in kcal accuracy (Fix 0 kcal)...
This will improve accuracy significantly, I'll put some examples: Lets say kcal per min are 4 and time is 89s 4 * (90 / 60) = 4 kcal (4 * 90) / 60 = 6 kcal In big trains without much intervals that will be insignificant, but if we are talking about 12x90s intervals the difference is of 24 (72 - 48), which is a 50%! And if we increase interval's time, that percentage will be even higher But it's even worse if we are talking about <60s intervals, because there kcal will be always 0: 4 * (59 / 60) = 0 kcal (4 * 59) / 60 = 4 kcal I just did a train and I exported to tcx and uploaded to strava, and there were just 7 kcal in ~15 mins, after looking the tcx, I found what I expected: just one of the intervals was >60s, and that one had 7 kcal, and all of the others had 0 kcal Signed-off-by: Miguel <[email protected]>
- Loading branch information