-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_rds_tmc_events.py
1404 lines (1404 loc) · 75.7 KB
/
_rds_tmc_events.py
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
RDS_TMC_EVENTS={
1:"traffic problem",
101:"stationary traffic",
102:"stationary traffic for 1 km",
103:"stationary traffic for 2 km",
129:"stationary traffic for 3 km",
104:"stationary traffic for 4 km",
105:"stationary traffic for 6 km",
106:"stationary traffic for 10 km",
130:"danger of stationary traffic",
108:"queuing traffic (with average speeds Q)::of up to S km/h",
109:"queuing traffic for 1 km (with average speeds Q)::of up to S km/h",
110:"queuing traffic for 2 km (with average speeds Q)::of up to S km/h",
131:"queuing traffic for 3 km (with average speeds Q)::of up to S km/h",
111:"queuing traffic for 4 km (with average speeds Q)::of up to S km/h",
112:"queuing traffic for 6 km (with average speeds Q)::of up to S km/h",
113:"queuing traffic for 10 km (with average speeds Q)::of up to S km/h",
132:"danger of queuing traffic (with average speeds Q)::of up to S km/h",
133:"long queues (with average speeds Q)::of up to S km/h",
115:"slow traffic (with average speeds Q)::of up to S km/h",
116:"slow traffic for 1 km (with average speeds Q)::of up to S km/h",
117:"slow traffic for 2 km (with average speeds Q)::of up to S km/h",
134:"slow traffic for 3 km (with average speeds Q)::of up to S km/h",
118:"slow traffic for 4 km (with average speeds Q)::of up to S km/h",
119:"slow traffic for 6 km (with average speeds Q)::of up to S km/h",
120:"slow traffic for 10 km (with average speeds Q)::of up to S km/h",
122:"heavy traffic (with average speeds Q)::of up to S km/h",
142:"traffic heavier than normal (with average speeds Q)::of up to S km/h",
143:"traffic very much heavier than normal (with average speeds Q)::of up to S km/h",
124:"traffic flowing freely (with average speeds Q)::of up to S km/h",
125:"traffic building up (with average speeds Q)::of up to S km/h",
135:"traffic easing::of up to S km/h",
136:"traffic congestion (with average speeds Q)::of up to S km/h",
70:"traffic congestion, average speed of 10 km/h",
71:"traffic congestion, average speed of 20 km/h",
72:"traffic congestion, average speed of 30 km/h",
73:"traffic congestion, average speed of 40 km/h",
74:"traffic congestion, average speed of 50 km/h",
75:"traffic congestion, average speed of 60 km/h",
76:"traffic congestion, average speed of 70 km/h",
137:"traffic lighter than normal (with average speeds Q)::of up to S km/h",
138:"queuing traffic (with average speeds Q). Approach with care::of up to S km/h",
139:"queuing traffic around a bend in the road",
140:"queuing traffic over the crest of a hill",
2:"queuing traffic (with average speeds Q). Danger of stationary traffic::of up to S km/h",
215:"(Q) accident(s). Stationary traffic::n (small number)",
216:"(Q) accident(s). Stationary traffic for 1 km::n (small number)",
217:"(Q) accident(s). Stationary traffic for 2 km::n (small number)",
348:"(Q) accident(s). Stationary traffic for 3 km::n (small number)",
218:"(Q) accident(s). Stationary traffic for 4 km::n (small number)",
219:"(Q) accident(s). Stationary traffic for 6 km::n (small number)",
220:"(Q) accident(s). Stationary traffic for 10 km::n (small number)",
221:"(Q) accident(s). Danger of stationary traffic::n (small number)",
222:"(Q) accident(s). Queuing traffic::n (small number)",
223:"(Q) accident(s). Queuing traffic for 1 km::n (small number)",
224:"(Q) accident(s). Queuing traffic for 2 km::n (small number)",
349:"(Q) accident(s). Queuing traffic for 3 km::n (small number)",
225:"(Q) accident(s). Queuing traffic for 4 km::n (small number)",
226:"(Q) accident(s). Queuing traffic for 6 km::n (small number)",
227:"(Q) accident(s). Queuing traffic for 10 km::n (small number)",
228:"(Q) accident(s). Danger of queuing traffic::n (small number)",
229:"(Q) accident(s). Slow traffic::n (small number)",
230:"(Q) accident(s). Slow traffic for 1 km::n (small number)",
231:"(Q) accident(s). Slow traffic for 2 km::n (small number)",
350:"(Q) accident(s). Slow traffic for 3 km::n (small number)",
232:"(Q) accident(s). Slow traffic for 4 km::n (small number)",
233:"(Q) accident(s). Slow traffic for 6 km::n (small number)",
234:"(Q) accident(s). Slow traffic for 10 km::n (small number)",
236:"(Q) accident(s). Heavy traffic::n (small number)",
238:"(Q) accident(s). Traffic flowing freely::n (small number)",
239:"(Q) accident(s). Traffic building up::n (small number)",
250:"vehicles slowing to look at (Q) accident(s). Stationary traffic::n (small number)",
251:"vehicles slowing to look at (Q) accident(s). Stationary traffic for 1 km::n (small number)",
252:"vehicles slowing to look at (Q) accident(s). Stationary traffic for 2 km::n (small number)",
352:"vehicles slowing to look at (Q) accident(s). Stationary traffic for 3 km::n (small number)",
253:"vehicles slowing to look at (Q) accident(s). Stationary traffic for 4 km::n (small number)",
254:"vehicles slowing to look at (Q) accident(s). Stationary traffic for 6 km::n (small number)",
255:"vehicles slowing to look at (Q) accident(s). Stationary traffic for 10 km::n (small number)",
256:"vehicles slowing to look at (Q) accident(s). Danger of stationary traffic::n (small number)",
257:"vehicles slowing to look at (Q) accident(s). Queuing traffic::n (small number)",
258:"vehicles slowing to look at (Q) accident(s). Queuing traffic for 1 km::n (small number)",
259:"vehicles slowing to look at (Q) accident(s). Queuing traffic for 2 km::n (small number)",
353:"vehicles slowing to look at (Q) accident(s). Queuing traffic for 3 km::n (small number)",
260:"vehicles slowing to look at (Q) accident(s). Queuing traffic for 4 km::n (small number)",
261:"vehicles slowing to look at (Q) accident(s). Queuing traffic for 6 km::n (small number)",
262:"vehicles slowing to look at (Q) accident(s). Queuing traffic for 10 km::n (small number)",
263:"vehicles slowing to look at (Q) accident(s). Danger of queuing traffic::n (small number)",
208:"vehicles slowing to look at (Q) accident(s)::n (small number)",
264:"vehicles slowing to look at (Q) accident(s). Slow traffic::n (small number)",
265:"vehicles slowing to look at (Q) accident(s). Slow traffic for 1 km::n (small number)",
266:"vehicles slowing to look at (Q) accident(s). Slow traffic for 2 km::n (small number)",
354:"vehicles slowing to look at (Q) accident(s). Slow traffic for 3 km::n (small number)",
267:"vehicles slowing to look at (Q) accident(s). Slow traffic for 4 km::n (small number)",
268:"vehicles slowing to look at (Q) accident(s). Slow traffic for 6 km::n (small number)",
269:"vehicles slowing to look at (Q) accident(s). Slow traffic for 10 km::n (small number)",
271:"vehicles slowing to look at (Q) accident(s). Heavy traffic::n (small number)",
274:"vehicles slowing to look at (Q) accident(s). Traffic building up::n (small number)",
355:"vehicles slowing to look at (Q) accident(s). Danger::n (small number)",
278:"(Q) shed load(s). Stationary traffic::n (small number)",
279:"(Q) shed load(s). Stationary traffic for 1 km::n (small number)",
280:"(Q) shed load(s). Stationary traffic for 2 km::n (small number)",
356:"(Q) shed load(s). Stationary traffic for 3 km::n (small number)",
281:"(Q) shed load(s). Stationary traffic for 4 km::n (small number)",
282:"(Q) shed load(s). Stationary traffic for 6 km::n (small number)",
283:"(Q) shed load(s). Stationary traffic for 10 km::n (small number)",
284:"(Q) shed load(s). Danger of stationary traffic::n (small number)",
285:"(Q) shed load(s). Queuing traffic::n (small number)",
286:"(Q) shed load(s). Queuing traffic for 1 km::n (small number)",
287:"(Q) shed load(s). Queuing traffic for 2 km::n (small number)",
357:"(Q) shed load(s). Queuing traffic for 3 km::n (small number)",
288:"(Q) shed load(s). Queuing traffic for 4 km::n (small number)",
289:"(Q) shed load(s). Queuing traffic for 6 km::n (small number)",
290:"(Q) shed load(s). Queuing traffic for 10 km::n (small number)",
291:"(Q) shed load(s). Danger of queuing traffic::n (small number)",
292:"(Q) shed load(s). Slow traffic::n (small number)",
293:"(Q) shed load(s). Slow traffic for 1 km::n (small number)",
294:"(Q) shed load(s). Slow traffic for 2 km::n (small number)",
358:"(Q) shed load(s). Slow traffic for 3 km::n (small number)",
295:"(Q) shed load(s). Slow traffic for 4 km::n (small number)",
296:"(Q) shed load(s). Slow traffic for 6 km::n (small number)",
297:"(Q) shed load(s). Slow traffic for 10 km::n (small number)",
299:"(Q) shed load(s). Heavy traffic::n (small number)",
301:"(Q) shed load(s). Traffic flowing freely::n (small number)",
302:"(Q) shed load(s). Traffic building up::n (small number)",
360:"(Q) overturned vehicle(s). Stationary traffic::n (small number)",
361:"(Q) overturned vehicle(s). Danger of stationary traffic::n (small number)",
362:"(Q) overturned vehicle(s). Queuing traffic::n (small number)",
363:"(Q) overturned vehicle(s). Danger of queuing traffic::n (small number)",
364:"(Q) overturned vehicle(s). Slow traffic::n (small number)",
366:"(Q) overturned vehicle(s). Heavy traffic::n (small number)",
368:"(Q) overturned vehicle(s). Traffic building up::n (small number)",
379:"Stationary traffic due to (Q) earlier accident(s)::n (small number)",
380:"Danger of stationary traffic due to (Q) earlier accident(s)::n (small number)",
381:"Queuing traffic due to (Q) earlier accident(s)::n (small number)",
382:"Danger of queuing traffic due to (Q) earlier accident(s)::n (small number)",
383:"Slow traffic due to (Q) earlier accident(s)::n (small number)",
385:"Heavy traffic due to (Q) earlier accident(s)::n (small number)",
387:"Traffic building up due to (Q) earlier accident(s)::n (small number)",
313:"(Q) broken down vehicle(s). Stationary traffic::n (small number)",
314:"(Q) broken down vehicle(s). Danger of stationary traffic::n (small number)",
315:"(Q) broken down vehicle(s). Queuing traffic::n (small number)",
316:"(Q) broken down vehicle(s). Danger of queuing traffic::n (small number)",
317:"(Q) broken down vehicle(s). Slow traffic::n (small number)",
319:"(Q) broken down vehicle(s). Heavy traffic::n (small number)",
321:"(Q) broken down vehicle(s). Traffic flowing freely::n (small number)",
322:"(Q) broken down vehicle(s). Traffic building up::n (small number)",
410:"closed ahead. Stationary traffic",
411:"closed ahead. Stationary traffic for 1 km",
412:"closed ahead. Stationary traffic for 2 km",
495:"closed ahead. Stationary traffic for 3 km",
413:"closed ahead. Stationary traffic for 4 km",
414:"closed ahead. Stationary traffic for 6 km",
415:"closed ahead. Stationary traffic for 10 km",
416:"closed ahead. Danger of stationary traffic",
417:"closed ahead. Queuing traffic",
418:"closed ahead. Queuing traffic for 1 km",
419:"closed ahead. Queuing traffic for 2 km",
496:"closed ahead. Queuing traffic for 3 km",
420:"closed ahead. Queuing traffic for 4 km",
421:"closed ahead. Queuing traffic for 6 km",
422:"closed ahead. Queuing traffic for 10 km",
423:"closed ahead. Danger of queuing traffic",
424:"closed ahead. Slow traffic",
425:"closed ahead. Slow traffic for 1 km",
426:"closed ahead. Slow traffic for 2 km",
497:"closed ahead. Slow traffic for 3 km",
427:"closed ahead. Slow traffic for 4 km",
428:"closed ahead. Slow traffic for 6 km",
429:"closed ahead. Slow traffic for 10 km",
431:"closed ahead. Heavy traffic",
433:"closed ahead. Traffic flowing freely",
434:"closed ahead. Traffic building up",
438:"blocked ahead. Stationary traffic",
439:"blocked ahead. Stationary traffic for 1 km",
440:"blocked ahead. Stationary traffic for 2 km",
498:"blocked ahead. Stationary traffic for 3 km",
441:"blocked ahead. Stationary traffic for 4 km",
442:"blocked ahead. Stationary traffic for 6 km",
443:"blocked ahead. Stationary traffic for 10 km",
444:"blocked ahead. Danger of stationary traffic",
445:"blocked ahead. Queuing traffic",
446:"blocked ahead. Queuing traffic for 1 km",
447:"blocked ahead. Queuing traffic for 2 km",
499:"blocked ahead. Queuing traffic for 3 km",
448:"blocked ahead. Queuing traffic for 4 km",
449:"blocked ahead. Queuing traffic for 6 km",
450:"blocked ahead. Queuing traffic for 10 km",
451:"blocked ahead. Danger of queuing traffic",
452:"blocked ahead. Slow traffic",
453:"blocked ahead. Slow traffic for 1 km",
454:"blocked ahead. Slow traffic for 2 km",
626:"blocked ahead. Slow traffic for 3 km",
455:"blocked ahead. Slow traffic for 4 km",
456:"blocked ahead. Slow traffic for 6 km",
457:"blocked ahead. Slow traffic for 10 km",
459:"blocked ahead. Heavy traffic",
461:"blocked ahead. Traffic flowing freely",
462:"blocked ahead. Traffic building up",
521:"(Q) lanes closed. Stationary traffic::n (small number)",
522:"(Q) lanes closed. Stationary traffic for 1 km::n (small number)",
523:"(Q) lanes closed. Stationary traffic for 2 km::n (small number)",
651:"(Q) lanes closed. Stationary traffic for 3 km::n (small number)",
524:"(Q) lanes closed. Stationary traffic for 4 km::n (small number)",
525:"(Q) lanes closed. Stationary traffic for 6 km::n (small number)",
526:"(Q) lanes closed. Stationary traffic for 10 km::n (small number)",
527:"(Q) lanes closed. Danger of stationary traffic::n (small number)",
528:"(Q) lanes closed. Queuing traffic::n (small number)",
529:"(Q) lanes closed. Queuing traffic for 1 km::n (small number)",
530:"(Q) lanes closed. Queuing traffic for 2 km::n (small number)",
652:"(Q) lanes closed. Queuing traffic for 3 km::n (small number)",
531:"(Q) lanes closed. Queuing traffic for 4 km::n (small number)",
532:"(Q) lanes closed. Queuing traffic for 6 km::n (small number)",
533:"(Q) lanes closed. Queuing traffic for 10 km::n (small number)",
534:"(Q) lanes closed. Danger of queuing traffic::n (small number)",
535:"(Q) lanes closed. Slow traffic::n (small number)",
536:"(Q) lanes closed. Slow traffic for 1 km::n (small number)",
537:"(Q) lanes closed. Slow traffic for 2 km::n (small number)",
653:"(Q) lanes closed. Slow traffic for 3 km::n (small number)",
538:"(Q) lanes closed. Slow traffic for 4 km::n (small number)",
539:"(Q) lanes closed. Slow traffic for 6 km::n (small number)",
540:"(Q) lanes closed. Slow traffic for 10 km::n (small number)",
542:"(Q) lanes closed. Heavy traffic::n (small number)",
544:"(Q)lanes closed. Traffic flowing freely::n (small number)",
545:"(Q)lanes closed. Traffic building up::n (small number)",
546:"carriageway reduced (from Q lanes) to one lane. Stationary traffic::n (small number)",
547:"carriageway reduced (from Q lanes) to one lane. Danger of stationary traffic::n (small number)",
548:"carriageway reduced (from Q lanes) to one lane. Queuing traffic::n (small number)",
549:"carriageway reduced (from Q lanes) to one lane. Danger of queuing traffic::n (small number)",
550:"carriageway reduced (from Q lanes) to one lane. Slow traffic::n (small number)",
552:"carriageway reduced (from Q lanes) to one lane. Heavy traffic::n (small number)",
554:"carriageway reduced (from Q lanes) to one lane. Traffic flowing freely::n (small number)",
555:"carriageway reduced (from Q lanes) to one lane. Traffic building up::n (small number)",
556:"carriageway reduced (from Q lanes) to two lanes. Stationary traffic::n (small number)",
557:"carriageway reduced (from Q lanes) to two lanes. Danger of stationary traffic::n (small number)",
558:"carriageway reduced (from Q lanes) to two lanes. Queuing traffic::n (small number)",
559:"carriageway reduced (from Q lanes) to two lanes. Danger of queuing traffic::n (small number)",
560:"carriageway reduced (from Q lanes) to two lanes. Slow traffic::n (small number)",
562:"carriageway reduced (from Q lanes) to two lanes. Heavy traffic::n (small number)",
564:"carriageway reduced (from Q lanes) to two lanes. Traffic flowing freely::n (small number)",
565:"carriageway reduced (from Q lanes) to two lanes. Traffic building up::n (small number)",
566:"carriageway reduced (from Q lanes) three lanes. Stationary traffic::n (small number)",
567:"carriageway reduced (from Q lanes) three lanes. Danger of stationary traffic::n (small number)",
568:"carriageway reduced (from Q lanes) three lanes. Queuing traffic::n (small number)",
569:"carriageway reduced (from Q lanes) three lanes. Danger of queuing traffic::n (small number)",
570:"carriageway reduced (from Q lanes) to three lanes. Slow traffic::n (small number)",
572:"carriageway reduced (from Q lanes) to three lanes. Heavy traffic::n (small number)",
574:"carriageway reduced (from Q lanes) to three lanes. Traffic flowing freely::n (small number)",
575:"carriageway reduced (from Q lanes) to three lanes. Traffic building up::n (small number)",
576:"contraflow. Stationary traffic",
577:"contraflow. Stationary traffic for 1 km",
578:"contraflow. Stationary traffic for 2 km",
654:"contraflow. Stationary traffic for 3 km",
579:"contraflow. Stationary traffic for 4 km",
580:"contraflow. Stationary traffic for 6 km",
581:"contraflow. Stationary traffic for 10 km",
582:"contraflow. Danger of stationary traffic",
583:"contraflow. Queuing traffic",
584:"contraflow. Queuing traffic for1km",
585:"contraflow. Queuing traffic for2km",
655:"contraflow. Queuing traffic for3km",
586:"contraflow. Queuing traffic for4km",
587:"contraflow. Queuing traffic for6km",
588:"contraflow. Queuing traffic for 10 km",
589:"contraflow. Danger of queuing traffic",
590:"contraflow. Slow traffic",
591:"contraflow. Slow traffic for 1 km",
592:"contraflow. Slow traffic for 2 km",
656:"contraflow. Slow traffic for 3 km",
593:"contraflow. Slow traffic for 4 km",
594:"contraflow. Slow traffic for 6 km",
595:"contraflow. Slow traffic for 10 km",
597:"contraflow. Heavy traffic",
599:"contraflow. Traffic flowing freely",
600:"contraflow. Traffic building up",
604:"narrow lanes. Stationary traffic",
605:"narrow lanes. Danger of stationary traffic",
606:"narrow lanes. Queuing traffic",
607:"narrow lanes. Danger of queuing traffic",
608:"narrow lanes. Slow traffic",
610:"narrow lanes. Heavy traffic",
612:"narrow lanes. Traffic flowing freely",
613:"narrow lanes. Traffic building up",
614:"contraflow with narrow lanes. Stationary traffic",
615:"contraflow with narrow lanes. Danger of stationary traffic",
616:"contraflow with narrow lanes. Queuing traffic",
617:"contraflow with narrow lanes. Danger of queuing traffic",
618:"contraflow with narrow lanes. Slow traffic",
620:"contraflow with narrow lanes. Heavy traffic",
622:"contraflow with narrow lanes. Traffic flowing freely",
623:"contraflow with narrow lanes. Traffic building up",
710:"(Q sets of) roadworks. Stationary traffic::n (small number)",
711:"(Q sets of) roadworks. Stationary traffic for 1 km::n (small number)",
712:"(Q sets of) roadworks. Stationary traffic for 2 km::n (small number)",
812:"(Q sets of) roadworks. Stationary traffic for 3 km::n (small number)",
713:"(Q sets of) roadworks. Stationary traffic for 4 km::n (small number)",
714:"(Q sets of) roadworks. Stationary traffic for 6 km::n (small number)",
715:"(Q sets of) roadworks. Stationary traffic for 10 km::n (small number)",
716:"(Q sets of) roadworks. Danger of stationary traffic::n (small number)",
717:"(Q sets of) roadworks. Queuing traffic::n (small number)",
718:"(Q sets of) roadworks. Queuing traffic for 1 km::n (small number)",
719:"(Q sets of) roadworks. Queuing traffic for 2 km::n (small number)",
813:"(Q sets of) roadworks. Queuing traffic for 3 km::n (small number)",
720:"(Q sets of) roadworks. Queuing traffic for 4 km::n (small number)",
721:"(Q sets of) roadworks. Queuing traffic for 6 km::n (small number)",
722:"(Q sets of) roadworks. Queuing traffic for 10 km::n (small number)",
723:"(Q sets of) roadworks. Danger of queuing traffic::n (small number)",
724:"(Q sets of) roadworks. Slow traffic::n (small number)",
725:"(Q sets of) roadworks. Slow traffic for 1 km::n (small number)",
726:"(Q sets of) roadworks. Slow traffic for 2 km::n (small number)",
814:"(Q sets of) roadworks. Slow traffic for 3 km::n (small number)",
727:"(Q sets of) roadworks. Slow traffic for 4 km::n (small number)",
728:"(Q sets of) roadworks. Slow traffic for 6 km::n (small number)",
729:"(Q sets of) roadworks. Slow traffic for 10 km::n (small number)",
731:"(Q sets of) roadworks. Heavy traffic::n (small number)",
733:"(Q sets of) roadworks. Traffic flowing freely::n (small number)",
734:"(Q sets of) roadworks. Traffic building up::n (small number)",
750:"(Q sections of) resurfacing work. Stationary traffic::n (small number)",
751:"(Q sections of) resurfacing work. Stationary traffic for 1 km::n (small number)",
752:"(Q sections of) resurfacing work. Stationary traffic for 2 km::n (small number)",
818:"(Q sections of) resurfacing work. Stationary traffic for 3 km::n (small number)",
753:"(Q sections of) resurfacing work. Stationary traffic for 4 km::n (small number)",
754:"(Q sections of) resurfacing work. Stationary traffic for 6 km::n (small number)",
755:"(Q sections of) resurfacing work. Stationary traffic for 10 km::n (small number)",
756:"(Q sections of) resurfacing work. Danger of stationary traffic::n (small number)",
757:"(Q sections of) resurfacing work. Queuing traffic::n (small number)",
758:"(Q sections of) resurfacing work. Queuing traffic for 1 km::n (small number)",
759:"(Q sections of) resurfacing work. Queuing traffic for 2 km::n (small number)",
819:"(Q sections of) resurfacing work. Queuing traffic for 3 km::n (small number)",
760:"(Q sections of) resurfacing work. Queuing traffic for 4 km::n (small number)",
761:"(Q sections of) resurfacing work. Queuing traffic for 6 km::n (small number)",
762:"(Q sections of) resurfacing work. Queuing traffic for 10 km::n (small number)",
763:"(Q sections of) resurfacing work. Danger of queuing traffic::n (small number)",
764:"(Q sections of) resurfacing work. traffic::n (small number)",
765:"(Q sections of) resurfacing work. traffic for 1 km::n (small number)",
766:"(Q sections of) resurfacing work. traffic for 2 km::n (small number)",
820:"(Q sections of) resurfacing work. traffic for 3 km::n (small number)",
767:"(Q sections of) resurfacing work. traffic for 4 km::n (small number)",
768:"(Q sections of) resurfacing work. traffic for 6 km::n (small number)",
769:"(Q sections of) resurfacing work. traffic for 10 km::n (small number)",
771:"(Q sections of) resurfacing work. Heavy traffic::n (small number)",
773:"(Q sections of) resurfacing work. Traffic flowing freely::n (small number)",
774:"(Q sections of) resurfacing work. Traffic building up::n (small number)",
783:"(Q sets of) road marking work. Stationary traffic::n (small number)",
784:"(Q sets of) road marking work. Danger of stationary traffic::n (small number)",
785:"(Q sets of) road marking work. Queuing traffic::n (small number)",
786:"(Q sets of) road marking work. Danger of queuing traffic::n (small number)",
787:"(Q sets of) road marking work. Slow traffic::n (small number)",
789:"(Q sets of) road marking work. Heavy traffic::n (small number)",
791:"(Q sets of) road marking work. Traffic flowing freely::n (small number)",
792:"(Q sets of) road marking work. Traffic building up::n (small number)",
825:"(Q sets of) slow moving maintenance vehicles. Stationary traffic::n (small number)",
826:"(Q sets of) slow moving maintenance vehicles. Danger of stationary traffic::n (small number)",
827:"(Q sets of) slow moving maintenance vehicles. Queuing traffic::n (small number)",
828:"(Q sets of) slow moving maintenance vehicles. Danger of queuing traffic::n (small number)",
829:"(Q sets of) slow moving maintenance vehicles. Slow traffic::n (small number)",
831:"(Q sets of) slow moving maintenance vehicles. Heavy traffic::n (small number)",
833:"(Q sets of) slow moving maintenance vehicles. Traffic flowing freely::n (small number)",
834:"(Q sets of) slow moving maintenance vehicles. Traffic building up::n (small number)",
928:"flooding. Stationary traffic",
929:"flooding. Danger of stationary traffic",
930:"flooding. Queuing traffic",
931:"flooding. Danger of queuing traffic",
932:"flooding. Slow traffic",
934:"flooding. Heavy traffic",
936:"flooding. Traffic flowing freely",
937:"flooding. Traffic building up",
1517:"major event. Stationary traffic",
1518:"major event. Danger of stationary traffic",
1519:"major event. Queuing traffic",
1520:"major event. Danger of queuing traffic",
1521:"major event. Slow traffic",
1523:"major event. Heavy traffic",
1525:"major event. Traffic flowing freely",
1526:"major event. Traffic building up",
1531:"sports meeting. Stationary traffic",
1532:"sports meeting. Danger of stationary traffic",
1533:"sports meeting. Queuing traffic",
1534:"sports meeting. Danger of queuing traffic",
1535:"sports meeting. Slow traffic",
1537:"sports meeting. Heavy traffic",
1539:"sports meeting. Traffic flowing freely",
1540:"sports meeting. Traffic building up",
1545:"fair. Stationary traffic",
1546:"fair. Danger of stationary traffic",
1547:"fair. Queuing traffic",
1548:"fair. Danger of queuing traffic",
1549:"fair. Slow traffic",
1551:"fair. Heavy traffic",
1553:"fair. Traffic flowing freely",
1554:"fair. Traffic building up",
1571:"security alert. Stationary traffic",
1572:"security alert. Danger of stationary traffic",
1573:"security alert. Queuing traffic",
1574:"security alert. Danger of queuing traffic",
1575:"security alert. Slow traffic",
1577:"security alert. Heavy traffic",
1495:"evacuation. Heavy traffic",
1586:"security alert. Traffic flowing freely",
1579:"security alert. Traffic building up",
1807:"(Q sets of) traffic lights not working. Stationary traffic::n (small number)",
1808:"(Q sets of) traffic lights not working. Danger of stationary traffic::n (small number)",
1809:"(Q sets of) traffic lights not working. Queuing traffic::n (small number)",
1810:"(Q sets of) traffic lights not working. Danger of queuing traffic::n (small number)",
1811:"(Q sets of) traffic lights not working. Slow traffic::n (small number)",
1813:"(Q sets of) traffic lights not working. Heavy traffic::n (small number)",
1815:"(Q sets of) traffic lights not working. Traffic flowing freely::n (small number)",
1816:"(Q sets of) traffic lights not working. Traffic building up::n (small number)",
1820:"level crossing failure. Stationary traffic",
1821:"level crossing failure. Danger of stationary traffic",
1822:"level crossing failure. Queuing traffic",
1823:"level crossing failure. Danger of queuing traffic",
1824:"level crossing failure. Slow traffic",
1826:"level crossing failure. Heavy traffic",
1828:"level crossing failure. Traffic flowing freely",
1829:"level crossing failure. Traffic building up",
126:"no problems to report",
127:"traffic congestion cleared",
1584:"traffic has returned to normal",
128:"message cancelled",
55:"traffic problem expected",
107:"stationary traffic expected",
114:"queuing traffic expected",
121:"slow traffic expected",
123:"heavy traffic expected",
56:"traffic congestion expected",
235:"(Q) accident(s). Slow traffic expected::n (small number)",
237:"(Q) accident(s). Heavy traffic expected::n (small number)",
270:"vehicles slowing to look at (Q) accident(s). Slow traffic expected::n (small number)",
272:"vehicles slowing to look at (Q) accident(s). Heavy traffic expected::n (small number)",
298:"(Q) shed load(s). Slow traffic expected::n (small number)",
300:"(Q) shed load(s). Heavy traffic expected::n (small number)",
365:"(Q) overturned vehicle(s). Slow traffic expected::n (small number)",
367:"(Q) overturned vehicle(s). Heavy traffic expected::n (small number)",
318:"(Q) broken down vehicle(s). Slow traffic expected::n (small number)",
320:"(Q) broken down vehicle(s). Heavy traffic expected::n (small number)",
430:"closed ahead. Slow traffic expected",
432:"closed ahead. Heavy traffic expected",
458:"blocked ahead. Slow traffic expected",
460:"blocked ahead. Heavy traffic expected",
541:"(Q) lanes closed. Slow traffic expected::n (small number)",
543:"(Q) lanes closed. Heavy traffic expected::n (small number)",
551:"carriageway reduced (from Q lanes) to one lane. Slow traffic expected::n (small number)",
553:"carriageway reduced (from Q lanes) to one lane. Heavy traffic expected::n (small number)",
561:"carriageway reduced (from Q lanes) to two lanes. Slow traffic expected::n (small number)",
563:"carriageway reduced (from Q lanes) to two lanes. Heavy traffic expected::n (small number)",
571:"carriageway reduced (from Q lanes) to three lanes. Slow traffic expected::n (small number)",
573:"carriageway reduced (from Q lanes) to three lanes. Heavy traffic expected::n (small number)",
596:"contraflow. Slow traffic expected",
598:"contraflow. Heavy traffic expected",
609:"narrow lanes. Slow traffic expected",
611:"narrow lanes. Heavy traffic expected",
619:"contraflow with narrow lanes. Slow traffic expected",
621:"contraflow with narrow lanes. Heavy traffic expected",
730:"(Q sets of) roadworks. Slow traffic expected::n (small number)",
732:"(Q sets of) roadworks. Heavy traffic expected::n (small number)",
770:"(Q sections of) resurfacing work. Slow traffic expected::n (small number)",
772:"(Q sections of) resurfacing work. Heavy traffic expected::n (small number)",
788:"(Q sets of) road marking work. Slow traffic expected::n (small number)",
790:"(Q sets of) road marking work. Heavy traffic expected::n (small number)",
830:"(Q sets of) slow moving maintenance vehicles. Slow traffic expected::n (small number)",
832:"(Q sets of) slow moving maintenance vehicles. Heavy traffic expected::n (small number)",
933:"flooding. Slow traffic expected",
935:"flooding. Heavy traffic expected",
1522:"major event. Slow traffic expected",
1524:"major event. Heavy traffic expected",
1536:"sports meeting. Slow traffic expected",
1538:"sports meeting. Heavy traffic expected",
1550:"fair. Slow traffic expected",
1552:"fair. Heavy traffic expected",
1576:"security alert. Slow traffic expected",
1578:"security alert. Heavy traffic expected",
1812:"(Q sets of) traffic lights not working. Slow traffic expected::n (small number)",
1814:"(Q sets of) traffic lights not working. Heavy traffic expected::n (small number)",
1825:"level crossing failure. Slow traffic expected",
1827:"level crossing failure. Heavy traffic expected",
57:"normal traffic expected",
1589:"message cancelled",
201:"(Q) accident(s)::n (small number)",
202:"(Q) serious accident(s)::n (small number)",
203:"multi-vehicle accident (involving Q vehicles)::n (small number)",
204:"accident involving (a/Q) heavy lorr(y/ies)::n (small number)",
335:"accident involving (a/Q) bus(es)::n (small number)",
205:"(Q) accident(s) involving hazardous materials::n (small number)",
206:"(Q) fuel spillage accident(s)::n (small number)",
207:"(Q) chemical spillage accident(s)::n (small number)",
336:"(Q) oil spillage accident(s)::n (small number)",
337:"(Q) overturned vehicle(s)::n (small number)",
338:"(Q) overturned heavy lorr(y/ies)::n (small number)",
339:"(Q) jack-knifed trailer(s)::n (small number)",
340:"(Q) jack-knifed caravan(s)::n (small number)",
341:"(Q) jack-knifed articulated lorr(y/ies)::n (small number)",
213:"(Q) vehicle fire(s)::n (small number)",
342:"(Q) vehicle(s) spun around::n (small number)",
378:"(Q) overturned vehicle(s). Danger::n (small number)",
343:"(Q) earlier accident(s)::n (small number)",
344:"accident investigation work",
391:"accident investigation work. Danger",
351:"(Q) accident(s) in roadworks area::n (small number)",
12:"(Q) accident(s), traffic being directed around accident area::n (small number)",
345:"(Q) secondary accident(s)::n (small number)",
392:"(Q) secondary accident(s). Danger::n (small number)",
209:"(Q) accident(s) in the opposing lanes::n (small number)",
141:"all accidents cleared, no problems to report",
333:"accident cleared",
334:"message cancelled",
214:"(Q) incident(s)::n (small number)",
211:"(Q) broken down vehicle(s)::n (small number)",
393:"(Q) broken down vehicle(s). Danger::n (small number)",
212:"(Q) broken down heavy lorr(y/ies)::n (small number)",
394:"(Q) broken down heavy lorr(y/ies). Danger::n (small number)",
346:"(Q) broken down bus(es)::n (small number)",
11:"over-height warning system triggered",
924:"clearance work",
1034:"clearance work. Danger",
397:"rescue and recovery work in progress",
1066:"rescue and recovery work in progress. Danger",
396:"incident cleared",
395:"road cleared",
2028:"message cancelled",
666:"intermittent short term closures",
401:"Closed",
240:"road closed due to (Q) accident(s)::n (small number)",
16:"closed, rescue and recovery work in progress",
500:"(Q) lane(s) closed::n (small number)",
501:"(Q) right lane(s) closed::n (small number)",
502:"(Q) centre lane(s) closed::n (small number)",
503:"(Q) left lane(s) closed::n (small number)",
504:"hard shoulder closed",
637:"emergency lane closed",
41:"(Q) overtaking lane(s) closed::n (small number)",
641:"one lane closed",
505:"two lanes closed",
506:"three lanes closed",
514:"carriageway reduced (from Q lanes) one lane::n (small number)",
515:"carriageway reduced (from Q lanes) two lanes::n (small number)",
516:"carriageway reduced (from Q lanes) three lanes::n (small number)",
601:"contraflow. Carriageway reduced (from Q lanes) to one lane::n (small number)",
602:"contraflow. Carriageway reduced (from Q lanes) to two lanes::n (small number)",
603:"contraflow. Carriageway reduced (from Q lanes) to three lanes::n (small number)",
735:"closed due to (Q sets of) roadworks::n (small number)",
736:"(Q sets of) roadworks. Right lane closed::n (small number)",
737:"(Q sets of) roadworks. Centre lane closed::n (small number)",
738:"(Q sets of) roadworks. Left lane closed::n (small number)",
739:"(Q sets of) roadworks. Hard shoulder closed::n (small number)",
740:"(Q sets of) roadworks. Two lanes closed::n (small number)",
741:"(Q sets of) roadworks. Three lanes closed::n (small number)",
51:"roadworks, (Q) overtaking lane(s) closed::n (small number)",
743:"roadworks. Carriageway reduced (from Q lanes) to one lane::n (small number)",
744:"roadworks. Carriageway reduced (from Q lanes) to two lanes::n (small number)",
745:"roadworks. Carriageway reduced (from Q lanes) to three lanes::n (small number)",
776:"resurfacing work. Carriageway reduced (from Q lanes) to one lane::n (small number)",
777:"resurfacing work. Carriageway reduced (from Q lanes) to two lanes::n (small number)",
778:"resurfacing work. Carriageway reduced (from Q lanes) to three lanes::n (small number)",
793:"(Q sets of) road marking work. Right lane closed::n (small number)",
794:"(Q sets of) road marking work. Centre lane closed::n (small number)",
795:"(Q sets of) road marking work. Left lane closed::n (small number)",
796:"(Q sets of) road marking work. Hard shoulder closed::n (small number)",
797:"(Q sets of) road marking work. Two lanes closed::n (small number)",
798:"(Q sets of) road marking work. Three lanes closed::n (small number)",
835:"(Q sets of) slow moving maintenance vehicles. Right lane closed::n (small number)",
836:"(Q sets of) slow moving maintenance vehicles. Centre lane closed::n (small number)",
837:"(Q sets of) slow moving maintenance vehicles. Left lane closed::n (small number)",
838:"(Q sets of) slow moving maintenance vehicles. Two lanes closed::n (small number)",
839:"(Q sets of) slow moving maintenance vehicles. Three lanes closed::n (small number)",
799:"closed for bridge demolition work (at Q bridges)::n (small number)",
947:"road closed due to landslips",
957:"road closed due to burst water main",
965:"closed due to serious fire",
951:"subsidence. Carriageway reduced (from Q lanes) to one lane::n (small number)",
952:"subsidence. Carriageway reduced (from Q lanes) to two lanes::n (small number)",
953:"subsidence. Carriageway reduced (from Q lanes) to three lanes::n (small number)",
956:"closed due to sewer collapse",
961:"closed due to gas leak",
969:"closed for clearance work",
1021:"snow on the road. Carriageway reduced (from Q lanes) to one lane::n (small number)",
1022:"snow on the road. Carriageway reduced (from Q lanes) to two lanes::n (small number)",
1023:"snow on the road. Carriageway reduced (from Q lanes) to three lanes::n (small number)",
241:"(Q) accident(s). Right lane blocked::n (small number)",
242:"(Q) accident(s). Centre lane blocked::n (small number)",
243:"(Q) accident(s). Left lane blocked::n (small number)",
244:"(Q) accident(s). Hard shoulder blocked::n (small number)",
245:"(Q) accident(s). Two lanes blocked::n (small number)",
246:"(Q) accident(s). Three lanes blocked::n (small number)",
303:"blocked by (Q) shed load(s)::n (small number)",
304:"(Q) shed load(s). Right lane blocked::n (small number)",
305:"(Q) shed load(s). Centre lane blocked::n (small number)",
306:"(Q) shed load(s). Left lane blocked::n (small number)",
307:"(Q) shed load(s). Hard shoulder blocked::n (small number)",
308:"(Q) shed load(s). Two lanes blocked::n (small number)",
309:"(Q) shed load(s). Three lanes blocked::n (small number)",
369:"blocked by (Q) overturned vehicle(s)::n (small number)",
370:"(Q) overturned vehicle(s). Right lane blocked::n (small number)",
371:"(Q) overturned vehicle(s). Centre lane blocked::n (small number)",
372:"(Q) overturned vehicle(s). Left lane blocked::n (small number)",
373:"(Q) overturned vehicle(s). Two lanes blocked::n (small number)",
374:"(Q) overturned vehicle(s). Three lanes blocked::n (small number)",
323:"blocked by (Q) broken down vehicle(s).::n (small number)",
324:"(Q) broken down vehicle(s). Right lane blocked::n (small number)",
325:"(Q) broken down lane vehicle(s). Centre lane blocked::n (small number)",
326:"(Q) broken down vehicle(s). Left lane blocked::n (small number)",
327:"(Q) broken down vehicle(s). Hard shoulder blocked::n (small number)",
328:"(Q) broken down vehicle(s). Two lanes blocked::n (small number)",
329:"(Q) broken down vehicle(s). Three lanes blocked::n (small number)",
402:"blocked",
520:"(Q) lane(s) blocked::n (small number)",
507:"(Q) right lane(s) blocked::n (small number)",
508:"(Q) centre lane(s) blocked::n (small number)",
509:"(Q) left lane(s) blocked::n (small number)",
510:"hard shoulder blocked",
642:"emergency lane blocked",
42:"(Q) overtaking lane(s) blocked::n (small number)",
646:"One lane blocked",
511:"Two lanes blocked",
512:"three lanes blocked",
980:"blocked by (Q) obstruction(s) on the road::n (small number)",
982:"blocked due to spillage on roadway",
925:"blocked by storm damage",
926:"blocked by (Q) fallen trees::n (small number)",
987:"blocked by fallen power cables",
517:"contraflow",
518:"narrow lanes",
519:"contraflow with narrow lanes",
513:"single alternate line traffic",
746:"(Q sets of) roadworks. Contraflow::n (small number)",
742:"(Q sets of) roadworks. Single alternate line traffic::n (small number)",
779:"(Q sections of) resurfacing work. Contraflow::n (small number)",
775:"(Q sections of) resurfacing work. Single alternate line traffic::n (small number)",
954:"subsidence. Contraflow in operation",
638:"turning lane closed",
643:"turning lane blocked",
639:"crawler lane closed",
640:"slow vehicle lane closed",
678:"heavy vehicle lane closed",
644:"crawler lane blocked",
645:"slow vehicle lane blocked",
679:"heavy vehicle lane blocked",
657:"lane blockages cleared",
631:"road cleared",
658:"contraflow removed",
467:"reopened",
630:"open",
624:"lane closures removed",
664:"carriageway closed",
665:"both directions closed",
625:"message cancelled",
479:"parallel carriageway closed",
480:"right-hand parallel carriageway closed",
481:"left-hand parallel carriageway closed",
482:"express lanes closed",
483:"through traffic lanes closed",
484:"local lanes closed",
486:"parallel carriageway blocked",
487:"right-hand parallel carriageway blocked",
488:"left-hand parallel carriageway blocked",
489:"express lanes blocked",
490:"through traffic lanes blocked",
491:"local lanes blocked",
1982:"bus lane closed",
676:"bus lane blocked",
26:"bridge blocked",
27:"tunnel blocked",
663:"all carriageways cleared",
634:"all carriageways reopened",
672:"message cancelled",
407:"(Q th) exit slip road closed::n (small number)",
474:"(Q) exit slip road(s) closed::n (small number)",
475:"(Q th) exit slip road blocked::n (small number)",
476:"exit blocked",
408:"slip roads closed",
477:"slip roads blocked",
409:"slip road restrictions",
478:"connecting carriageway closed",
485:"connecting carriageway blocked",
633:"exit reopened",
466:"slip roads reopened",
673:"message cancelled",
406:"(Q th) entry slip road closed::n (small number)",
471:"(Q) entry slip road(s) closed::n (small number)",
472:"(Q th) entry slip road blocked::n (small number)",
473:"entry blocked",
632:"entry reopened",
399:"message cancelled",
492:"no motor vehicles",
493:"restrictions",
627:"no motor vehicles without catalytic converters",
628:"no motor vehicles with even-numbered registration plates",
629:"no motor vehicles with odd-numbered registration plates",
405:"no through traffic",
404:"no through traffic for heavy lorries (over Q)::W tonnes",
1332:"smog alert",
1338:"no motor vehicles due to smog alert",
469:"closed ahead",
470:"blocked ahead",
2000:"closed due to smog alert (until Q)::H time",
1527:"closed due to major event",
1541:"closed due to sports meeting",
1555:"closed due to fair",
1559:"closed due to parade",
1563:"closed due to strike",
1567:"closed due to demonstration",
1580:"closed due to security alert",
1485:"closed due to security incident",
938:"closed due to flooding",
943:"closed due to avalanches",
993:"closed due to avalanche risk",
995:"closed due to ice build-up",
945:"closed due to rockfalls",
949:"closed due to subsidence",
2013:"service area busy",
20:"service area overcrowded, drive to another service area",
22:"service area, fuel station closed",
23:"service area, restaurant closed",
24:"bridge closed",
25:"tunnel closed",
403:"closed for heavy vehicles (over Q)::W tonnes",
494:"closed for heavy lorries (over Q)::W tonnes",
661:"use of hard shoulder allowed",
1854:"traffic regulations have been changed",
28:"road closed intermittently",
1971:"police directing traffic",
1972:"bus lane available for all vehicles",
1973:"police directing traffic via the bus-lane",
1978:"heavy vehicle lane available for all vehicles",
1979:"police directing traffic via the heavy vehicle lane",
662:"normal lane regulations restored",
1974:"allow emergency vehicles to pass",
1977:"allow emergency vehicles to pass in the heavy vehicle lane",
1961:"allow emergency vehicles to pass in the carpool lane",
1212:"closed for high-sided vehicles due to strong winds (Q)::of up to S km/h",
660:"lane restrictions lifted",
1215:"restrictions for high-sided vehicles lifted",
680:"reopened for through traffic",
36:"fuel station reopened",
37:"restaurant reopened",
635:"motor vehicle restrictions lifted",
40:"smog alert ended",
636:"traffic restrictions lifted {reopened for all traffic}",
468:"message cancelled",
647:"(Q person) carpool lane in operation::n (small number)",
648:"(Q person) carpool lane closed::n (small number)",
649:"(Q person) carpool lane blocked::n (small number)",
671:"bus lane available for carpools (with at least Q occupants)::n (small number)",
650:"carpool restrictions changed (to Q persons per vehicle)::n (small number)",
1962:"carpool lane available for all vehicles",
1963:"police directing traffic via the carpool lane",
2006:"closed for vehicles with less than three occupants {not valid for lorries}",
2007:"closed for vehicles with only one occupant {not valid for lorries}",
659:"(Q person) carpool restrictions lifted::n (small number)",
2029:"message cancelled",
701:"(Q sets of) roadworks::n (small number)",
702:"(Q sets of) major roadworks::n (small number)",
802:"(Q sets of) long-term roadworks::n (small number)",
803:"(Q sets of) construction work::n (small number)",
704:"(Q sections of) resurfacing work::n (small number)",
705:"(Q sets of) central reservation work::n (small number)",
703:"(Q sets of) maintenance work::n (small number)",
853:"roadwork clearance in progress",
707:"bridge maintenance work (at Q bridges)::n (small number)",
805:"bridge demolition work (at Q bridges)::n (small number)",
709:"(Q sections of) blasting work::n (small number)",
52:"(Q sets of) roadworks on the hard shoulder::n (small number)",
53:"(Q sets of) roadworks in the emergency lane::n (small number)",
815:"(Q sets of) roadworks during the day time::n (small number)",
816:"(Q sets of) roadworks during off-peak periods::n (small number)",
817:"(Q sets of) roadworks during the night::n (small number)",
821:"(Q sets of) resurfacing work during the day time::n (small number)",
822:"(Q sets of) resurfacing work during off- peak periods::n (small number)",
823:"(Q sets of) resurfacing work during the night::n (small number)",
708:"(Q sets of) temporary traffic lights::n (small number)",
806:"(Q sets of) water main work::n (small number)",
807:"(Q sets of) gas main work::n (small number)",
808:"(Q sets of) work on buried cables::n (small number)",
809:"(Q sets of) work on buried services::n (small number)",
810:"new roadworks layout",
855:"road layout unchanged",
811:"new road layout",
854:"maintenance work cleared",
800:"roadworks cleared",
801:"message cancelled",
901:"(Q) obstruction(s) on roadway {something that does block the road or part of it}::n (small number)",
902:"(Q) obstructions on the road. Danger::n (small number)",
981:"(Q) obstructions on the road. Passable with care::n (small number)",
61:"(Q) object(s) on roadway {something that does not necessarily block the road or part of it} ::n (small number)",
63:"(Q) object(s) on the road. Danger::n (small number)",
210:"(Q) shed load(s)::n (small number)",
359:"(Q) shed load(s). Danger::n (small number)",
903:"spillage on the road",
984:"spillage on the road. Danger",
904:"storm damage",
986:"storm damage. Danger",
972:"storm damage expected",
905:"(Q) fallen trees::n (small number)",
906:"(Q) fallen trees. Danger::n (small number)",
973:"fallen power cables",
989:"fallen power cables. Danger",
907:"flooding",
900:"flooding expected",
908:"flooding. Danger",
974:"sewer overflow",
990:"sewer overflow. Danger",
909:"flash floods",
910:"danger of flash floods",
991:"flash floods. Danger",
911:"avalanches",
992:"avalanches. Danger",
912:"avalanche risk",
994:"avalanche risk. Danger",
975:"ice build-up",
913:"rockfalls",
998:"rockfalls. Danger",
914:"landslips",
999:"landslips. Danger",
976:"mud slide",
915:"earthquake damage",
1000:"earthquake damage. Danger",
917:"subsidence",
1026:"subsidence. Danger",
918:"(Q) collapsed sewer(s)::n (small number)",
1030:"sewer collapse. Danger",
919:"burst water main",
1031:"burst water main. Danger",
62:"(Q) burst pipe(s)::n (small number)",
64:"burst pipe. Danger",
920:"gas leak",
1032:"gas leak. Danger",
977:"grass fire",
921:"serious fire",
1033:"serious fire. Danger",
978:"air crash",
979:"rail crash",
983:"spillage on the road. Passable with care",
985:"storm damage. Passable with care",
927:"(Q) fallen tree(s). Passable with care::n (small number)",
988:"fallen power cables. Passable with care",
942:"flooding. Passable with care",
944:"avalanches. Passable with care (above Q hundred metres)::n (small number)",
996:"ice build-up. Passable with care (above Q hundred metres)::n (small number)",
946:"rockfalls. Passable with care",
948:"landslips. Passable with care",
955:"subsidence. Passable with care",
950:"subsidence. Single alternate line traffic",
997:"ice build-up. Single alternate traffic",
1709:"spillage occurring from moving vehicle",
1700:"(Q) slow moving maintenance vehicle(s)::n (small number)",
898:"obstruction warning withdrawn",
899:"clearance work in progress, road free again",
970:"road free again",
1712:"road cleared",
1084:"house fire",
1086:"vehicle stuck under bridge",
971:"message cancelled",
922:"animals on roadway",
1471:"sightseers obstructing access",
1472:"people on roadway",
1473:"children on roadway",
1474:"cyclists on roadway",
923:"animals on the road. Danger",
1482:"people on roadway. Danger",
1483:"children on roadway. Danger",
1484:"cyclists on roadway. Danger",
1067:"large animals on roadway",
1068:"herds of animals on roadway",
852:"construction traffic merging",
856:"construction traffic merging. Danger",
706:"(Q sets of) road marking work::n (small number)",
824:"(Q sets of) road marking work. Danger::n (small number)",
1771:"warning cleared",
857:"(Q) unprotected accident area(s)::n (small number)",
858:"danger of (Q) unprotected accident area(s)::n (small number)",
859:"(Q) unlit vehicle(s) on the road::n (small number)",
860:"danger of (Q) unlit vehicle(s) on the road::n (small number)",
861:"snow and ice debris",
862:"danger of snow and ice debris",
2030:"message cancelled",
1035:"impassable (above Q hundred metres)::n (small number)",
1036:"almost impassable (above Q hundred metres)::n (small number)",
1037:"extremely hazardous driving conditions (above Q hundred metres)::n (small number)",
1073:"extremely hazardous driving conditions expected (above Q hundred meters)::n (small number)",
1001:"hazardous driving conditions (above Q hundred metres)::n (small number)",
1038:"difficult driving conditions (above Q hundred metres)::n (small number)",
1039:"passable with care (up to Q hundred metres)::n (small number)",
1040:"passable (up to Q hundred metres)::n (small number)",
1063:"impassable for heavy vehicles (over Q)::W tonnes",
1064:"impassable (above Q hundred metres) for vehicles with trailers::n (small number)",
1041:"surface water hazard",
1002:"danger of aquaplaning",
1003:"slippery road (above Q hundred metres)::n (small number)",
1004:"mud on road",
1055:"mud on road. Danger",
1005:"leaves on road",
1042:"loose sand on road",
1043:"loose chippings",
1056:"loose chippings. Danger",
1044:"oil on road",
1057:"oil on road. Danger",
1045:"petrol on road",
1058:"petrol on road. Danger",
916:"road surface in poor condition",
1059:"road surface in poor condition. Danger",
1006:"ice (above Q hundred metres)::n (small number)",
1007:"danger of ice (above Q hundred metres)::n (small number)",
1047:"icy patches (above Q hundred metres)::n (small number)",
1048:"danger of icy patches (above Q hundred metres)::n (small number)",
1008:"black ice (above Q hundred metres)::n (small number)",
1050:"danger of black ice (above Q hundred metres)::n (small number)",
1009:"freezing rain (above Q hundred metres)::n (small number)",
1074:"freezing rain expected (above Q hundred metres)::n (small number)",
1010:"wet and icy roads (above Q hundred metres)::n (small number)",
1011:"slush (above Q hundred metres)::n (small number)",
1012:"snow on the road (above Q hundred metres)::n (small number)",
1013:"packed snow (above Q hundred metres)::n (small number)",
1014:"fresh snow (above Q hundred metres)::n (small number)",
1015:"deep snow (above Q hundred metres)::n (small number)",
1016:"snow drifts (above Q hundred metres)::n (small number)",
1018:"slippery road (above Q hundred metres) due to snow::n (small number)",
1019:"slippery road (above Q hundred metres) due to frost::n (small number)",
1017:"slippery due to spillage on roadway",
1054:"slippery due to loose sand on roadway",
1060:"icy patches (above Q hundred metres) on bridges::n (small number)",
1061:"danger of icy patches (above Q hundred metres) on bridges::n (small number)",
1062:"icy patches (above Q hundred metres) on bridges, in shaded areas and on slip roads::n (small number)",
1020:"road blocked by snow (above Q hundred metres)::n (small number)",
1075:"danger of road being blocked by snow (above Q hundred metres)::n (small number)",
1024:"conditions of road surface improved",
1070:"snow cleared",
1065:"driving conditions improved",
1069:"skid hazard reduced",
1165:"rain changing to snow",
1166:"snow changing to rain",
1025:"message cancelled",
1083:"current temperature (Q)::T degrees Celsius",
1115:"heavy frost",
1116:"frost",
1079:"temperature falling rapidly (to Q)::T degrees Celsius",
1080:"extreme heat (up to Q)::T degrees Celsius",
1081:"extreme cold (of Q)::T degrees Celsius",
1082:"less extreme temperatures",
1127:"message cancelled",
1132:"damaging hail (visibility reduced to Q)::less than V metres",
1174:"damaging hail (with visibility reduced to Q) expected::less than V metres",
1106:"hail (visibility reduced to Q)::less than V metres",
1107:"sleet (visibility reduced to Q)::less than V metres",
1108:"thunderstorms (visibility reduced to Q)::less than V metres",
1128:"winter storm (visibility reduced to Q)::less than V metres",
1130:"blizzard (visibility reduced to Q)::less than V metres",
1173:"blizzard (with visibility reduced to Q) expected::less than V metres",
1101:"heavy snowfall (Q)::of up to D millimetres",
1170:"heavy snowfall (Q) expected::of up to D millimetres",
1134:"heavy snowfall. Visibility reduced (to Q)::less than V metres",
1102:"heavy snowfall (Q). Visibility reduced to <30 m::of up to D millimetres",
1103:"heavy snowfall (Q). Visibility reduced to <50 m::of up to D millimetres",
1104:"snowfall (Q)::of up to D millimetres",
1135:"snowfall. Visibility reduced (to Q)::less than V metres",
1105:"snowfall (Q). Visibility reduced to <100 m::of up to D millimetres",
1109:"heavy rain (Q)::of up to D millimetres",
1171:"heavy rain (Q) expected::of up to D millimetres",
1136:"heavy rain. Visibility reduced (to Q)::less than V metres",
1110:"heavy rain (Q). Visibility reduced to <30 m::of up to D millimetres",
1111:"heavy rain (Q). Visibility reduced to <50 m::of up to D millimetres",
1112:"rain (Q)::of up to D millimetres",
1137:"rain. Visibility reduced (to Q)::less than V metres",
1113:"rain (Q). Visibility reduced to <100 m::of up to D millimetres",
1114:"showers (visibility reduced to Q)::less than V metres",
1318:"visibility reduced (to Q)::less than V metres",
1319:"visibility reduced to <30 m",
1320:"visibility reduced to <50 m",
1321:"visibility reduced to <100 m",
1175:"reduced visibility (to Q) expected::less than V metres",
1322:"white out (visibility reduced to Q)::less than V metres",
1323:"blowing snow (visibility reduced to Q)::less than V metres",
1309:"smoke hazard (visibility reduced to Q)::less than V metres",
1324:"spray hazard (visibility reduced to Q)::less than V metres",
1325:"low sun glare",
1310:"blowing dust (visibility reduced to Q)::less than V metres",
1326:"sandstorms (visibility reduced to Q)::less than V metres",
1340:"swarms of insects (visibility reduced to Q)::less than V metres",
1301:"dense fog (visibility reduced to Q)::less than V metres",
1177:"dense fog (with visibility reduced to Q) expected::less than V metres",
1304:"fog (visibility reduced to Q)::less than V metres",
1307:"patchy fog (visibility reduced to Q)::less than V metres",
1178:"patchy fog (with visibility reduced to Q) expected::less than V metres",
1308:"freezing fog (visibility reduced to Q)::less than V metres",
1337:"freezing fog (visibility reduced to Q). Slippery roads::less than V metres",
1176:"freezing fog expected (with visibility reduced to Q). Danger of slippery roads::less than V metres",
1302:"dense fog. Visibility reduced to <30 m",
1303:"dense fog. Visibility reduced to <50 m",
1305:"fog. Visibility reduced to <100 m",
1312:"snowfall and fog (visibility reduced to Q)::less than V metres",
1346:"fog forecast withdrawn",
1345:"fog clearing",
1313:"visibility improved",
1179:"visibility expected to improve",
1172:"weather expected to improve",
1126:"weather situation improved",
1180:"adverse weather warning withdrawn",
1314:"message cancelled",
1201:"tornadoes",
1202:"hurricane force winds (Q)::of up to S km/h",
1203:"gales (Q)::of up to S km/h",
1204:"storm force winds (Q)::of up to S km/h",