Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add system time to sensor data #789

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions osi_sensordata.proto
Original file line number Diff line number Diff line change
Expand Up @@ -336,4 +336,15 @@ message SensorData
// Virtual detection area of the sensor
//
optional VirtualDetectionArea virtual_detection_area = 28;

// The system time of the modeled source of the sensor data, given
// in UTC (Unix Epoch timestamp).
//
// The system time can be used to transmit the internal time of the
// simulated component that supplies the sensor data, which might
// not coincide with the simulation time as transmitted in the
// timestamp field. Example use cases include recorded data traces
// or the simulation of time synchronization mechanisms and errors.
//
optional Timestamp system_time = 29;
}