Skip to content

Commit df9caec

Browse files
thomassedlmayerpmai
authored andcommitted
Add new traffic sign variability types
- Clarify definition of old types to differentiate from new types - Add new types VARIABLE_MOVABLE and VARIABLE_MUTABLE Signed-off-by: Thomas Sedlmayer <tsedlmayer@pmsfit.de>
1 parent 015db38 commit df9caec

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

osi_trafficsign.proto

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9571,12 +9571,23 @@ message TrafficSign
95719571
//
95729572
VARIABILITY_OTHER = 1;
95739573

9574-
// Fixed sign, i.e. always present.
9574+
// Sign that can change neither semantically nor positionally, e.g.
9575+
// fixed immutable traffic sign.
95759576
//
95769577
VARIABILITY_FIXED = 2;
95779578

9578-
// Temporary or variable sign, e.g. on a sign bridge.
9579+
// Sign that can change semantically and positionally.
95799580
//
95809581
VARIABILITY_VARIABLE = 3;
9582+
9583+
// Sign that can change positionally but not semantically, e.g.
9584+
// temporary immutable traffic sign at construction site.
9585+
//
9586+
VARIABILITY_VARIABLE_MOVABLE = 4;
9587+
9588+
// Sign that can change semantically but not positionally, e.g. digital
9589+
// traffic sign on traffic sign gantry or analog prism signs.
9590+
//
9591+
VARIABILITY_VARIABLE_MUTABLE = 5;
95819592
}
95829593
}

0 commit comments

Comments
 (0)