-
Notifications
You must be signed in to change notification settings - Fork 0
/
osi_trafficsign.proto
9376 lines (8949 loc) · 299 KB
/
osi_trafficsign.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
syntax = "proto2";
option optimize_for = SPEED;
import "osi_common.proto";
package osi3;
//
// \brief Additional value associated with a traffic sign or road marking,
// its unit and its text. The interpretation of this text is left to a
// user-defined procedure
//
message TrafficSignValue
{
// Additional value associated with a traffic sign or road marking,
// e.g. value of a speed limit.
//
optional double value = 1;
// Unit for additional value.
//
optional Unit value_unit = 2;
// Unit for values on traffic sign.
//
enum Unit
{
// Unit of the sign's value is unknown (must not be used in ground
// truth).
//
UNIT_UNKNOWN = 0;
// Other (unspecified but known) unit of the sign's value.
//
UNIT_OTHER = 1;
// Value without unit.
//
// Unit: []
//
UNIT_NO_UNIT = 2;
// Velocity.
// Kilometers per hour.
//
// Unit: [km/h]
//
UNIT_KILOMETER_PER_HOUR = 3;
// Velocity.
// Miles per hour.
//
// Unit: [mph]
//
UNIT_MILE_PER_HOUR = 4;
// Length.
// Meter.
//
// Unit: [m]
//
UNIT_METER = 5;
// Length.
// Kilometer.
//
// Unit: [km]
//
UNIT_KILOMETER = 6;
// Length.
// Feet.
//
// Unit: [ft]
//
UNIT_FEET = 7;
// Length.
// Mile.
//
// Unit: [mile]
//
UNIT_MILE = 8;
// Weight.
// Ton.
//
// Unit: [t]
//
UNIT_METRIC_TON = 9;
// Weight.
// Long ton UK 1,016.047 [kg].
//
// Unit: [tn. l.]
//
UNIT_LONG_TON = 10;
// Weight.
// Short ton USA 907.1847 [kg].
//
// Unit: [tn. sh.]
//
UNIT_SHORT_TON = 11;
// Time of day.
// Hour since midnight.
//
// Unit: [min]
//
UNIT_MINUTES = 12;
// Day of the week.
// Days since Monday. Monday = 0; Tuesday = 1; ...
//
// Unit: []
//
UNIT_DAY = 13;
// Percentage.
// Value.
//
// Unit: [%]
//
UNIT_PERCENTAGE = 14;
}
// Text associated with a sign, e.g. the name of a location whose distance
// to the sign is indicated therein. The interpretation of this text is
// left to a user-defined procedure.
//
optional string text = 3;
}
//
// \brief A traffic sign.
//
// All coordinates and orientations are relative to the global ground truth
// coordinate system.
//
message TrafficSign
{
// The ID of the traffic sign.
//
optional Identifier id = 1;
// Main sign, e.g. speed limit 30 [km/h]
//
optional MainSign main_sign = 2;
// Additional supplementary signs, e.g. time limits, modifying the traffic
// sign.
//
// \note OSI uses singular instead of plural for repeated field names.
//
repeated SupplementarySign supplementary_sign = 3;
//
// \brief Main sign of the traffic sign.
//
// \image html OSI_MainSign.svg
//
message MainSign
{
// The base parameters of the traffic sign.
//
// The orientation of the bounding box \c #base
// ( \c BaseStationary::orientation ) is defined as follows:
// The z-axis of the given \c BaseStationary::orientation is the vector
// from the bottom to the top of the traffic sign's 2D image plate.
// (Normally it is equal to the ground truth z-axis.)
// The x-axis of the given \c BaseStationary::orientation is view
// normal of the traffic sign's image.
// This x-axis points from the traffic sign's image in the direction
// from where a 'viewer' could see the traffic sign image.
//
optional BaseStationary base = 1;
// The classification of the traffic sign.
//
optional Classification classification = 2;
//
// \brief \c Classification data for a traffic sign.
//
// \image html OSI_DirectionScope.svg
//
// When constructing a \c MainSign, consider the use of the following
// members:
// - In order to include numerical values indicated in the sign,
// use \c TrafficSignValue::value. Accompany this value with an
// indication of its unit of measure given by \c
// TrafficSignValue::value_unit.
// - In order to include strings of text indicated in the sign,
// use \c TrafficSignValue::text. The interpretation of this text is
// left to a user-defined procedure.
// - Some traffic signs exist in two variants that have a similar
// semantic meaning and the property that the one results from flipping
// the other one around the vertical axis. The optional member \c
// #vertically_mirrored has been provided to enable an explicit choice
// between both variants.
// - For signs in which an arrow symbol is included to constraint their
// scope, the \c #direction_scope member has been provided to indicate
// the direction of the arrow from the perspective of a viewer standing
// right in front of the sign and looking straight towards it.
//
// \note The definition of the sign types is thought to be independent
// of the country, even if the images used in this documentation are
// based on the German Road Traffic Regulations (StVO).
//
message Classification
{
// The traffic sign is not stationary, for example a temporary
// traffic sign in a street construction.
//
optional Variability variability = 1;
// The type of the traffic sign.
//
optional Type type = 2;
// Additional value associated with the traffic sign, e.g. value of
// the speed limit.
//
// \note Field need not be set if traffic sign type does not require
// it.
//
optional TrafficSignValue value = 3;
// Some traffic signs have an additional arrow symbol as an
// additional constraint for their scope (e.g. no parking to the
// right). The arrow direction is given relative to the sign's 2D
// image plane, i.e. as a viewer standing right in front of the sign
// and looking straight towards it would interpret the arrow.
//
// The definition for left and right is according to the following
// temporarily constructed right-handed local coordinate system:
// Set z-axis to match the z-axis of the ground truth coordinate
// system. Set x-axis to the view normal of the traffic sign's image
// (\c #base \c BaseStationary::orientation x-axis).
// Right: direction of the local coordinate system's positive
// y-axis. Left: opposite direction of the local coordinate system's
// y-axis i.e. negative y-axis',
//
// \note If a traffic sign image is on the ground (there is no
// definition for right or left). Normally, this is a road marking
// and not a traffic sign. Actual traffic signs lying on the ground
// might have been intentionally unmounted and, hence, not be in
// effect.
//
optional DirectionScope direction_scope = 4;
// The IDs of the lanes that the sign is assigned to.
// May be multiple if the sign is valid for multiple lanes.
//
// \note OSI uses singular instead of plural for repeated field
// names.
//
repeated Identifier assigned_lane_id = 5;
// Some traffic signs exist in two variants that have
// a similar semantic meaning but differ in that the symbol
// of the one corresponds to the specular reflection of the
// other with respect to the vertical axis.
// For some scenarios it might be relevant to choose the
// reflected version of a reference sign. This can be done
// by setting the \c #vertically_mirrored boolean to \c true.
// As for every boolean in the protocol buffers language, the
// default value of \c #vertically_mirrored is \c false.
//
optional bool vertically_mirrored = 6;
// Boolean flag to indicate that a traffic sign is taken out of service.
// This can be achieved by visibly crossing the sign or covering it completely.
//
optional bool is_out_of_service = 7;
// Definition of traffic sign types.
// Numbers are given according to German StVO.
//
// For an overview of the German StVO see:
// \arg
// https://www.bast.de/DE/Verkehrstechnik/Fachthemen/v1-verkehrszeichen/vz-download.html
// (Catalog of the Federal Road Research Institute - BASt)
// \arg
// https://www.dvr.de/publikationen/downloads/verkehrszeichen.html
// (Images) \arg
// https://www.gesetze-im-internet.de/stvo_2013/anlage_1.html
// (Allgemeine und Besondere Gefahrenzeichen) \arg
// https://www.gesetze-im-internet.de/stvo_2013/anlage_2.html
// (Vorschriftzeichen) \arg
// https://www.gesetze-im-internet.de/stvo_2013/anlage_3.html
// (Richtzeichen) \arg
// https://www.gesetze-im-internet.de/stvo_2013/anlage_4.html
// (Verkehrseinrichtungen) \arg https://traffic-rules.com/
//
enum Type
{
// Type of traffic sign is unknown (must not be used in ground
// truth).
//
TYPE_UNKNOWN = 0;
// Other (unspecified but known) type of traffic sign.
//
TYPE_OTHER = 1;
// Warning: Danger sign.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 101.png
// </td>
// <td>
// StVO 101
// </td>
// </table>
//
TYPE_DANGER_SPOT = 2;
// Warning: Zebra crossing.
// <table border="0">
// <tr>
// <td>
// \image html 101-11.png
// </td>
// <td>
// StVO 101-11
// </td>
// <td>
// Set \c #vertically_mirrored to \c false.
// </td>
// </tr>
// <tr>
// <td style="transform:scaleX(-1)">
// \image html 101-11.png
// </td>
// <td>
// StVO 101-21
// </td>
// <td>
// Set \c #vertically_mirrored to \c true.
// </td>
// </tr>
// <tr>
// <td>
// \image html 350-10.png
// </td>
// <td>
// StVO 350-10
// </td>
// <td>
// Set \c #vertically_mirrored to \c false.
// </td>
// </tr>
// <tr>
// <td>
// \image html 350-20.png
// </td>
// <td>
// StVO 350-20
// </td>
// <td>
// Set \c #vertically_mirrored to \c true.
// </td>
// </tr>
// </table>
//
// As symbolic road marking \c
// RoadMarking::Classification::TYPE_SYMBOLIC_TRAFFIC_SIGN.
//
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 293.png
// </td>
// <td>
// StVO 293
// </td>
// </table>
//
TYPE_ZEBRA_CROSSING = 87;
// Warning: Low-flying aircraft or sudden aircraft noise.
// <table border="0">
// <tr>
// <td>
// \image html 101-10.png
// </td>
// <td>
// StVO 101-10
// </td>
// <td>
// Set \c #vertically_mirrored to \c false.
// </td>
// </tr>
// <tr>
// <td style="transform:scaleX(-1)">
// \image html 101-10.png
// </td>
// <td>
// StVO 101-20
// </td>
// <td>
// Set \c #vertically_mirrored to \c true.
// </td>
// </tr>
// </table>
//
TYPE_FLIGHT = 110;
// Warning: Cattles crossing.
// <table border="0">
// <tr>
// <td>
// \image html 101-12.png
// </td>
// </td>
// <td>
// StVO 101-12
// </td>
// <td>
// Set \c #vertically_mirrored to \c false.
// </td>
// </tr>
// <tr>
// <td style="transform:scaleX(-1)">
// \image html 101-12.png
// </td>
// <td>
// StVO 101-22
// </td>
// <td>
// Set \c #vertically_mirrored to \c true.
// </td>
// </tr>
// </table>
//
TYPE_CATTLE = 200;
// Warning: Horse riders.
// <table border="0">
// <tr>
// <td>
// \image html 101-13.png
// </td>
// <td>
// StVO 101-13
// </td>
// <td>
// Set \c #vertically_mirrored to \c false.
// </td>
// </tr>
// <tr>
// <td style="transform:scaleX(-1)">
// \image html 101-13.png
// </td>
// <td>
// StVO 101-23
// </td>
// <td>
// Set \c #vertically_mirrored to \c true.
// </td>
// </tr>
// </table>
//
TYPE_HORSE_RIDERS = 197;
// Warning: Amphibian migration.
// <table border="0">
// <tr>
// <td>
// \image html 101-14.png
// </td>
// <td>
// StVO 101-14
// </td>
// <td>
// Set \c #vertically_mirrored to \c false.
// </td>
// </tr>
// <tr>
// <td style="transform:scaleX(-1)">
// \image html 101-14.png
// </td>
// <td>
// StVO 101-24
// </td>
// <td>
// Set \c #vertically_mirrored to \c true.
// </td>
// </tr>
// </table>
//
TYPE_AMPHIBIANS = 188;
// Warning: Falling rocks.
// <table border="0">
// <tr>
// <td>
// \image html 101-15.png
// </td>
// <td>
// StVO 101-15
// </td>
// <td>
// Set \c #vertically_mirrored to \c false.
// </td>
// </tr>
// <tr>
// <td style="transform:scaleX(-1)">
// \image html 101-15.png
// </td>
// <td>
// StVO 101-25
// </td>
// <td>
// Set \c #vertically_mirrored to \c true.
// </td>
// </tr>
// </table>
//
TYPE_FALLING_ROCKS = 96;
// Warning: Risk of snow or ice.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 101-51.png
// </td>
// <td>
// StVO 101-51
// </td>
// </tr>
// </table>
//
TYPE_SNOW_OR_ICE = 94;
// Warning: Crushed stones.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 101-52.png
// </td>
// <td>
// StVO 101-52
// </td>
// </tr>
// </table>
//
TYPE_LOOSE_GRAVEL = 97;
// Warning: Waterside.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 101-53.png
// </td>
// <td>
// StVO 101-53
// </td>
// </tr>
// </table>
//
TYPE_WATERSIDE = 102;
// Warning: Not enough clearance.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 101-54.png
// </td>
// <td>
// StVO 101-54
// </td>
// </tr>
// </table>
//
TYPE_CLEARANCE = 210;
// Warning: Movable bridge.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 101-55.png
// </td>
// <td>
// StVO 101-55
// </td>
// </tr>
// </table>
//
TYPE_MOVABLE_BRIDGE = 101;
// Warning: "Right before left" rule at the next intersection.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 102.png
// </td>
// <td>
// StVO 102
// </td>
// </tr>
// </table>
//
TYPE_RIGHT_BEFORE_LEFT_NEXT_INTERSECTION = 3;
// Warning: Sign for a left turn.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 103-10.png
// </td>
// <td>
// StVO 103-10
// </td>
// </tr>
// </table>
//
// Right: \c #TYPE_TURN_RIGHT
//
TYPE_TURN_LEFT = 4;
// Warning: Sign for a right turn.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 103-20.png
// </td>
// <td>
// StVO 103-20
// </td>
// </tr>
// </table>
//
// Left: \c #TYPE_TURN_LEFT
//
TYPE_TURN_RIGHT = 5;
// Warning: Sign for a double turn (first left turn).
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 105-10.png
// </td>
// <td>
// StVO 105-10
// </td>
// </tr>
// </table>
//
// Right: \c #TYPE_DOUBLE_TURN_RIGHT
//
TYPE_DOUBLE_TURN_LEFT = 6;
// Warning: Sign for a double turn (first right turn).
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 105-20.png
// </td>
// <td>
// StVO 105-20
// </td>
// </tr>
// </table>
//
// Left: \c #TYPE_DOUBLE_TURN_LEFT
//
TYPE_DOUBLE_TURN_RIGHT = 7;
// Warning: Steep hill downwards.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 108-4.png
// </td>
// <td>
// StVO 108
// </td>
// <td>
// Use \c TrafficSignValue::value and \c
// TrafficSignValue::value_unit to indicate slope.
// </td>
// </tr>
// </table>
//
TYPE_HILL_DOWNWARDS = 8;
// Warning: Steep hill upwards.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 110-4.png
// </td>
// <td>
// StVO 110
// </td>
// <td>
// Use \c TrafficSignValue::value and \c
// TrafficSignValue::value_unit to indicate slope
// </td>
// </tr>
// </table>
//
TYPE_HILL_UPWARDS = 9;
// Warning: Uneven road.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 112.png
// </td>
// <td>
// StVO 112
// </td>
// </tr>
// </table>
//
TYPE_UNEVEN_ROAD = 93;
// Warning: Road slippery when wet or dirty.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 114.png
// </td>
// <td>
// StVO 114
// </td>
// </tr>
// </table>
//
TYPE_ROAD_SLIPPERY_WET_OR_DIRTY = 95;
// Warning: Side winds.
// <table border="0">
// <tr>
// <td>
// \image html 117-10.png
// </td>
// <td>
// StVO 117-10
// </td>
// <td>
// Set \c #vertically_mirrored to \c false.
// </td>
// </tr>
// <tr>
// <td style="transform:scaleX(-1)">
// \image html 117-10.png
// </td>
// <td>
// StVO 117-20
// </td>
// <td>
// Set \c #vertically_mirrored to \c true.
// </td>
// </tr>
// </table>
//
TYPE_SIDE_WINDS = 98;
// Warning: Road narrowing.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 120.png
// </td>
// <td>
// StVO 120
// </td>
// </tr>
// </table>
//
TYPE_ROAD_NARROWING = 10;
// Warning: Road narrowing on the right.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 121-10.png
// </td>
// <td>
// StVO 121-10
// </td>
// </tr>
// </table>
//
TYPE_ROAD_NARROWING_RIGHT = 12;
// Warning: Road narrowing on the left.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 121-20.png
// </td>
// <td>
// StVO 121-20
// </td>
// </tr>
// </table>
//
TYPE_ROAD_NARROWING_LEFT = 11;
// Warning: Road works sign.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 123.png
// </td>
// <td>
// StVO 123
// </td>
// </tr>
// </table>
//
TYPE_ROAD_WORKS = 13;
// Warning: Traffic queues likely.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 124.png
// </td>
// <td>
// StVO 124
// </td>
// </tr>
// </table>
//
TYPE_TRAFFIC_QUEUES = 100;
// Warning: Two-way-traffic (after one-way lane).
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 125.png
// </td>
// <td>
// StVO 125
// </td>
// </tr>
// </table>
//
TYPE_TWO_WAY_TRAFFIC = 14;
// Warning: Traffic light ahead sign.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 131.png
// </td>
// <td>
// StVO 131
// </td>
// </tr>
// </table>
//
TYPE_ATTENTION_TRAFFIC_LIGHT = 15;
// Warning: Pedestrians.
// <table border="0">
// <tr>
// <td>
// \image html 133-10.png
// </td>
// <td>
// StVO 133-10
// </td>
// <td>
// Set \c #vertically_mirrored to \c false.
// </td>
// </tr>
// <tr>
// <td style="transform:scaleX(-1)">
// \image html 133-10.png
// </td>
// <td>
// StVO 133-20
// </td>
// <td>
// Set \c #vertically_mirrored to \c true.
// </td>
// </tr>
// </table>
//
TYPE_PEDESTRIANS = 103;
// Warning: Children crossing.
// <table border="0">
// <tr>
// <td>
// \image html 136-10.png
// </td>
// <td>
// StVO 136-10
// </td>
// <td>
// Set \c #vertically_mirrored to \c false.
// </td>
// </tr>
// <tr>
// <td style="transform:scaleX(-1)">
// \image html 136-10.png
// </td>
// <td>
// StVO 136-20
// </td>
// <td>
// Set \c #vertically_mirrored to \c true.
// </td>
// </tr>
// </table>
//
TYPE_CHILDREN_CROSSING = 106;
// Warning: Pedal cycle route crossing or joining road sign.
// <table border="0">
// <tr>
// <td>
// \image html 138-10.png
// </td>
// <td>
// StVO 138-10
// </td>
// <td>
// Set \c #vertically_mirrored to \c false.
// </td>
// </tr>
// <tr>
// <td style="transform:scaleX(-1)">
// \image html 138-10.png
// </td>
// <td>
// StVO 138-20
// </td>
// <td>
// Set \c #vertically_mirrored to \c true.
// </td>
// </tr>
// </table>
//
TYPE_CYCLE_ROUTE = 107;
// Warning: Deer crossing.
// <table border="0">
// <tr>
// <td>
// \image html 142-10.png
// </td>
// <td>
// StVO 142-10
// </td>
// <td>
// Set \c #vertically_mirrored to \c false.
// </td>
// </tr>
// <tr>
// <td style="transform:scaleX(-1)">
// \image html 142-10.png
// </td>
// <td>
// StVO 142-20
// </td>
// <td>
// Set \c #vertically_mirrored to \c true.
// </td>
// </tr>
// </table>
//
TYPE_DEER_CROSSING = 109;
// Warning: Level crossing without barrier or gate.
// <table cellspacing="0" cellpadding="0">
// <tr>
// <td>
// \image html 151.png
// </td>
// <td>
// StVO 151
// </td>
// </tr>
// </table>
//
TYPE_UNGATED_LEVEL_CROSSING = 144;
// Level crossing marker.
// (StVO 156 - Countdown marker indicating that level crossing
// are 2 main signs \c #TYPE_UNGATED_LEVEL_CROSSING and \c
// #TYPE_LEVEL_CROSSING_MARKER.)
// <table border="0">
// <tr>
// <td style="transform:scaleX(-1)">
// \image html 157-20.png
// </td>
// <td style="transform:scaleX(-1)">
// \image html 159-20.png