You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's weird that the printing the object with the scan data, prints the log with all the data:
scan_data = context_loader.get_result(location=ResultEnum.SCAN_DATA)
print(scan_data)
Same goes with track data.
Also, track data seems to include all the time dumps, not just the track ones.
The text was updated successfully, but these errors were encountered:
When we run print(data) or print(scan_data) the output is always the same. This is because at the moment both share the same print() function. We could implement print to reflect the selection of data. Until now I always used data.timestamps to check the timestamp selection.
It's weird that the printing the object with the scan data, prints the log with all the data:
scan_data = context_loader.get_result(location=ResultEnum.SCAN_DATA)
print(scan_data)
Same goes with track data.
Also, track data seems to include all the time dumps, not just the track ones.
The text was updated successfully, but these errors were encountered: