Skip to content

Commit

Permalink
Reading values from .ch files v179 use yOffset
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-belellou committed Nov 18, 2024
1 parent 8ac6d12 commit c7b9db5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ protected void parseData(RandomAccessFile input) throws IOException {
input.seek(DATA_START);

for (int i = 0; i < numberOfPoints; i++) {
values.add(unitConverter.convert(readLittleEndianDouble(input) * yScaling));
values.add(unitConverter.convert(readLittleEndianDouble(input) * yScaling + yOffset));
}
}
}

0 comments on commit c7b9db5

Please sign in to comment.