Skip to content

Commit 3818113

Browse files
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 3578540 commit 3818113

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
@@ -9570,12 +9570,23 @@ message TrafficSign
95709570
//
95719571
VARIABILITY_OTHER = 1;
95729572

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

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

0 commit comments

Comments
 (0)