@@ -9571,12 +9571,35 @@ message TrafficSign
9571
9571
//
9572
9572
VARIABILITY_OTHER = 1 ;
9573
9573
9574
- // Fixed sign, i.e. always present.
9574
+ // Sign that can change neither semantically nor positionally, e.g. a
9575
+ // fixed, immutable, non-temporary traffic sign.
9575
9576
//
9576
9577
VARIABILITY_FIXED = 2 ;
9577
9578
9578
- // Temporary or variable sign, e.g. on a sign bridge.
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.
9579
9585
//
9580
9586
VARIABILITY_VARIABLE = 3 ;
9587
+
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.
9596
+ //
9597
+ VARIABILITY_MUTABLE = 5 ;
9598
+
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.
9602
+ //
9603
+ VARIABILITY_MOVABLE_AND_MUTABLE = 6 ;
9581
9604
}
9582
9605
}
0 commit comments