Skip to content

Commit 978687a

Browse files
committed
Commit CCB review results for doc migration
Signed-off-by: Pierre R. Mai <pmai@pmsf.de>
1 parent 41acf43 commit 978687a

File tree

6 files changed

+25
-12
lines changed

6 files changed

+25
-12
lines changed

doc/architecture/sensor_model.adoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
= Sensor model
22

33
Sensor models consume sensor-view messages and produce sensor-data messages.
4-
Those models can be based on physics or phenomenological.
54

65
Sensor-model output does not represent raw data but detected features or classified objects.

doc/architecture/sensor_view.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ Sensor-view messages are derived from ground-truth messages.
55
All information regarding the environment is given with respect to the virtual sensor coordinate system, with two exceptions:
66

77
* Physical technology-specific data, given with respect to the physical sensor coordinate system specified in the corresponding physical sensor’s mounting position.
8-
Example: https://opensimulationinterface.github.io/open-simulation-interface/structosi3_1_1CameraSensorView.html#ac58456a34babf78792ea2608eb963f36[`image_data` of `osi3::CameraSensorView`]
8+
Example of technology-specific data: https://opensimulationinterface.github.io/open-simulation-interface/structosi3_1_1CameraSensorView.html#ac58456a34babf78792ea2608eb963f36[`image_data` of `osi3::CameraSensorView`]
99
* Ground truth, given in the global coordinate system.

doc/architecture/sensor_view_configuration.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ Sensor-view-configuration data is not intended to provide parameters to a sensor
1212
Sensor-view-configuration data can also be provided by the sensor model to the environment simulation.
1313
In this case, the data describes the input configuration that is requested by the sensor model.
1414
In response, the environment simulation will configure the input and provide a new message which describes the actual configuration.
15-
The configuration requested by the sensor model may differ from the configuration provided by the simulation environment.
15+
The configuration requested by the sensor model may differ from the configuration provided by the environment simulation.
1616
This happens when the environment simulation does not support a requested configuration or when the requested configuration is ambiguous.
17-
The message describing the configuration requested by the sensor model differs from the message describing the configuration provided by the simulation environment.
17+
The message describing the configuration requested by the sensor model differs from the message describing the configuration provided by the environment simulation.

doc/architecture/trace_file_naming.adoc

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Names of OSI trace files should have the following format:
66

77
[source]
88
----
9-
<type>_<osi-version>_<protobuf-version>_<frame-number>_<custom-trace-name>.osi
9+
<timestamp>_<type>_<osi-version>_<protobuf-version>_<number-of-frames>_<custom-trace-name>.osi
1010
----
1111

1212
**Types**
@@ -20,12 +20,22 @@ Trace file contains sensor-view messages.
2020
`gt`::
2121
Trace file contains ground-truth messages.
2222

23+
`tu`::
24+
Trace file contains traffic-update messages.
25+
26+
`tc`::
27+
Trace file contains traffic-command messages.
28+
29+
2330
**Example**
2431

2532
Given an OSI trace file with the following information:
2633

2734
[cols="1,1"]
2835
|===
36+
|Timestamp (ISO 8601)
37+
|20210818T150542Z
38+
2939
|Type
3040
|SensorView
3141

@@ -38,13 +48,13 @@ Given an OSI trace file with the following information:
3848
|Number of frames
3949
|1523
4050

41-
|Scenario name
51+
|Custom Trace Name
4252
|highway
4353
|===
4454

45-
The recommend file name is:
55+
The recommended file name is:
4656

4757
[source]
4858
----
49-
sv_312_300_1523_highway.osi
59+
20210818T150542Z_sv_312_300_1523_highway.osi
5060
----

doc/releases/versioning.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
= Versioning
1+
= Versioning and Compatibility
22

33
The version number is defined in `InterfaceVersion::version_number` in `osi_version.proto` as the field’s default value.
44

doc/usecases/transforming_coordinate_systems.adoc

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
= Transforming coordinate systems
1+
= Coordinate Transformations
22

3-
Transforming coordinates for a specific vehicle or sensor is a common task when running simulations.
4-
OSI uses DIN ISO 8855:2013-11 for coordinate systems and transformations between coordinate systems.
3+
== Vehicle and Sensor Coordinate Systems
4+
5+
Transforming coordinates from the world coordinate system for a specific vehicle and its sensors is a common task when running simulations.
6+
7+
This section provides an overview of the involved messages, fields and their relationship for this task.
8+
It demonstrates how world coordinate system, vehicle coordinate system, and sensor coordinate system are related for a specific (ego-)vehicle.
59

610
//TODO: Should we add one or more sentences about the mathematical operations involved?
711

0 commit comments

Comments
 (0)