Skip to content

Commit 700133d

Browse files
authored
Merge pull request #644 from OpenSimulationInterface/maint/release-prep
Maint/release prep
2 parents f836f2a + ddf0946 commit 700133d

File tree

3 files changed

+21
-20
lines changed

3 files changed

+21
-20
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ The Open Simulation Interface <sup>[[1]](https://www.hot.ei.tum.de/forschung/aut
77

88
As the complexity of automated driving functions rapidly increases, the requirements for test and development methods are growing. Testing in virtual environments offers the advantage of completely controlled and reproducible environment conditions.
99

10-
For more information on OSI see the [official documentation](https://opensimulationinterface.github.io/osi-documentation/) or the [official reference documentation](https://opensimulationinterface.github.io/open-simulation-interface/) for defined protobuf messages.
10+
For more information on OSI see the [official documentation](https://opensimulationinterface.github.io/osi-documentation/) or the [official reference documentation](https://opensimulationinterface.github.io/open-simulation-interface/) for defined protobuf messages.
1111

12-
[1] Hanke, T., Hirsenkorn, N., van-Driesten, C., Garcia-Ramos, P., Schiementz, M., Schneider, S. & Biebl, E. (2017, February 03). *A generic interface for the environment perception of automated driving functions in virtual scenarios.* Retrieved January 25, 2020, from https://www.hot.ei.tum.de/forschung/automotive-veroeffentlichungen/
12+
[1] Hanke, T., Hirsenkorn, N., van-Driesten, C., Garcia-Ramos, P., Schiementz, M., Schneider, S. & Biebl, E. (2017, February 03). *A generic interface for the environment perception of automated driving functions in virtual scenarios.* Retrieved January 25, 2020, from https://www.hot.ei.tum.de/forschung/automotive-veroeffentlichungen/
1313

1414
## Usage
1515
##### Example of generating OSI messages in `Python`
@@ -30,7 +30,7 @@ def main():
3030

3131
sv_ground_truth = sensorview.global_ground_truth
3232
sv_ground_truth.version.version_major = 3
33-
sv_ground_truth.version.version_minor = 4
33+
sv_ground_truth.version.version_minor = 5
3434
sv_ground_truth.version.version_patch = 0
3535

3636
sv_ground_truth.timestamp.seconds = 0
@@ -39,7 +39,7 @@ def main():
3939
moving_object = sv_ground_truth.moving_object.add()
4040
moving_object.id.value = 42
4141

42-
# Generate 1000 OSI messages for a duration of 10 seconds
42+
# Generate 1000 OSI messages for a duration of 10 seconds
4343
for i in range(1000):
4444

4545
# Increment the time

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
VERSION_MAJOR = 3
2-
VERSION_MINOR = 4
2+
VERSION_MINOR = 5
33
VERSION_PATCH = 0

setup.py

+16-15
Original file line numberDiff line numberDiff line change
@@ -45,34 +45,35 @@ def find_protoc():
4545
return protoc
4646

4747
osi_files = (
48-
'osi_version.proto',
4948
'osi_common.proto',
5049
'osi_datarecording.proto',
51-
'osi_detectedtrafficsign.proto',
52-
'osi_detectedtrafficlight.proto',
53-
'osi_detectedroadmarking.proto',
50+
'osi_detectedlane.proto',
5451
'osi_detectedobject.proto',
5552
'osi_detectedoccupant.proto',
56-
'osi_detectedlane.proto',
53+
'osi_detectedroadmarking.proto',
54+
'osi_detectedtrafficlight.proto',
55+
'osi_detectedtrafficsign.proto',
5756
'osi_environment.proto',
57+
'osi_featuredata.proto',
5858
'osi_groundtruth.proto',
5959
'osi_hostvehicledata.proto',
60-
'osi_trafficsign.proto',
61-
'osi_trafficlight.proto',
62-
'osi_trafficupdate.proto',
63-
'osi_trafficcommand.proto',
64-
'osi_roadmarking.proto',
65-
'osi_featuredata.proto',
60+
'osi_lane.proto',
6661
'osi_logicaldetectiondata.proto',
62+
'osi_logicallane.proto',
6763
'osi_object.proto',
6864
'osi_occupant.proto',
69-
'osi_lane.proto',
70-
'osi_logicallane.proto',
7165
'osi_referenceline.proto',
66+
'osi_roadmarking.proto',
7267
'osi_sensordata.proto',
73-
'osi_sensorviewconfiguration.proto',
7468
'osi_sensorspecific.proto',
75-
'osi_sensorview.proto')
69+
'osi_sensorview.proto',
70+
'osi_sensorviewconfiguration.proto',
71+
'osi_trafficcommand.proto',
72+
'osi_trafficcommandupdate.proto',
73+
'osi_trafficlight.proto',
74+
'osi_trafficsign.proto',
75+
'osi_trafficupdate.proto',
76+
'osi_version.proto')
7677

7778
""" Generate Protobuf Messages """
7879

0 commit comments

Comments
 (0)