Workaround for DanaR truncation

This commit is contained in:
AdrianLxM 2017-05-16 16:29:30 +02:00
parent 572e726678
commit 3869b143c4

View file

@ -531,7 +531,9 @@ public class ExecutionService extends Service {
private double[] buildDanaRProfileRecord(NSProfile nsProfile) {
double[] record = new double[24];
for (Integer hour = 0; hour < 24; hour++) {
double value = nsProfile.getBasal(hour * 60 * 60);
//Some values get truncated to the next lower one.
// -> round them to two decimals and make sure we are a small delta larger (that will get truncated)
double value = Math.round(100d * nsProfile.getBasal(hour * 60 * 60))/100d + 0.00001;
if (Config.logDanaMessageDetail)
log.debug("NS basal value for " + hour + ":00 is " + value);
record[hour] = value;