CSV decoder

The CSV decoder stores the decoded output as CSV files.

The CSV output format has wide tool support but is generally inefficient (slow and big).


Output

The CSV output data-schema always include an epoch-timestamp column named t. The remaining column names are constructed from the database used for decoding, as in the example below:

t,Speed,SpeedAccuracy,SpeedValid
1650636883.519250,0.010000,2.006000,1.000000
1650636884.090300,0.010000,2.152000,1.000000
1650636885.041350,0.010000,2.290000,1.000000
1650636886.090500,0.010000,2.419000,1.000000

Note

Output values are always formatted as decimal numbers with 6 decimal places.

If specific values exceed the MIN/MAX as defined in the database, they are included in the output as NaN, as in the example below:

t,Speed,SpeedAccuracy,SpeedValid
1650636883.519250,0.010000,NaN,1.000000
1650636884.090300,0.010000,NaN,1.000000
1650636885.041350,0.010000,NaN,1.000000
1650636886.090500,0.010000,NaN,1.000000

Warning

Output rows are skipped if all values are NaN.


Changelog

2.4.0

  • First release


Download

Windows AMD64 / x86-64 (64-bit)

  • 2.4.0.zip (MD5: 1242c81f69a4a21596fbc553ba8e9968)

Linux AMD64 / x86-64 (64-bit)

Linux ARM64 (64-bit)