Closed markwaterbury closed 2 months ago
https://github.com/danielhrisca/asammdf/blob/c9d0e449000ed70f2ea1dd47df7c80f3e74471c5/src/asammdf/blocks/v4_blocks.py#L4061
When displaying the metadata() for a channel conversion block, rounding may cause no value to be displayed. If the conversion type is linear, for instance, the a factor can often be a small number like 1e-12, but when rounded, will just show 0.0.
a
1e-12
0.0
thanks, please check the development branch code
Excellent, that fixes it. Thanks!
https://github.com/danielhrisca/asammdf/blob/c9d0e449000ed70f2ea1dd47df7c80f3e74471c5/src/asammdf/blocks/v4_blocks.py#L4061
When displaying the metadata() for a channel conversion block, rounding may cause no value to be displayed. If the conversion type is linear, for instance, the
a
factor can often be a small number like1e-12
, but when rounded, will just show0.0
.