File format
Used to store raw numerical sensor data in high or low sampling frequency.
File format
In csv format, separated by ,
, no white space. The file may be gzipped.
Column name
HEADER_TIME_STAMP
is required to be the first column.Other column names are in UPPERCASE style, separated by
_
, allowed characters: alphabets and digits.Although column name is completely customized, it is recommended to use style
[MEASUREMENT]_IN_[UNIT]
, whereMEASUREMENT
is the name of measurement, andUNIT
is the unit of measurement, which is optional.If containing multiple participants, the second column should be
PARTICIPANT_ID
.
Examples
For inertial sensors, column names could be X_IN_G
, Y_IN_G
, Z_IN_G
, where IN_XXX
is used to specify the unit of the measurement, but it is optional.
For heart rate monitor, column names could be HR_IN_BPM
.
For GPS monitor, column names could be LATITUDE_IN_DEGREE
or LONGITUIDE_IN_RADIUS
.
See a complete list of recommended column names for different data types.
HEADER_TIME_STAMP
format
HEADER_TIME_STAMP
formatIn local time zone, meaning the time zone where data was collected. Time zone can be identified through filename convention.
YYYY-MM-DD HH:mm:ss.SSS
Data format
Only numerical values are allowed.
To control file size, it is recommended to not use higher float value precision than necessary.
No white space.
If value is not available, use
""
empty string instead.
Last updated