Skip to content

Commit 4e66c0e

Browse files
thomassedlmayerpmai
authored andcommitted
Add new variability type and update comments
Signed-off-by: Thomas Sedlmayer <tsedlmayer@pmsfit.de>
1 parent df9caec commit 4e66c0e

File tree

1 file changed

+21
-9
lines changed

1 file changed

+21
-9
lines changed

osi_trafficsign.proto

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

9574-
// Sign that can change neither semantically nor positionally, e.g.
9575-
// fixed immutable traffic sign.
9574+
// Sign that can change neither semantically nor positionally, e.g. a
9575+
// fixed, immutable, non-temporary traffic sign.
95769576
//
95779577
VARIABILITY_FIXED = 2;
95789578

9579-
// Sign that can change semantically and positionally.
9579+
// Sign that can change semantically and/or positionally, i.e. it is
9580+
// left unspecified in which way the sign may change.
9581+
//
9582+
// \note This value represents a legacy definition. If possible, please
9583+
// use the more specific values below to indicate the exact nature of
9584+
// variability.
95809585
//
95819586
VARIABILITY_VARIABLE = 3;
95829587

9583-
// Sign that can change positionally but not semantically, e.g.
9584-
// temporary immutable traffic sign at construction site.
9588+
// Sign that can change positionally but not semantically, e.g. a
9589+
// temporary, immutable traffic sign at construction site.
9590+
//
9591+
VARIABILITY_MOVABLE = 4;
9592+
9593+
// Sign that can change semantically but not positionally, e.g. a
9594+
// digital traffic sign on traffic sign gantry, or an analog prism
9595+
// sign.
95859596
//
9586-
VARIABILITY_VARIABLE_MOVABLE = 4;
9597+
VARIABILITY_MUTABLE = 5;
95879598

9588-
// Sign that can change semantically but not positionally, e.g. digital
9589-
// traffic sign on traffic sign gantry or analog prism signs.
9599+
// Sign that can change both semantically and positionally, e.g. a
9600+
// temporary, digital traffic sign at a construction site, or a digital
9601+
// traffic sign attached to a road works vehicle.
95909602
//
9591-
VARIABILITY_VARIABLE_MUTABLE = 5;
9603+
VARIABILITY_MOVABLE_AND_MUTABLE = 6;
95929604
}
95939605
}

0 commit comments

Comments
 (0)