XsensDot2Mtw4OpenSense icon indicating copy to clipboard operation
XsensDot2Mtw4OpenSense copied to clipboard

Convert Xsens Dot data to OpenSense readable format

Results 2 XsensDot2Mtw4OpenSense issues
Sort by recently updated
recently updated
newest added

The default collection frequency of the script after conversion is 100, which affects the collection frequency of STO files. If you need to change 100 HZ in the following statement...

def transformed_Xsens_dot_data_RealTime(filename): regex = r"(.*)_.*_(.*_).*.csv" mysearch = re.search(regex,filename) IMU_ID = mysearch.group(1) prefix_IMU = mysearch.group(2) new_filename = "XSDot" + "_" + prefix_IMU + IMU_ID + ".txt" path_new_filename = os.path.join(path_new_file, new_filename) #Read...