forked from TravelMapping/HighwayData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdates.csv
We can't make this file beautiful and searchable because it's too large.
9387 lines (9386 loc) · 942 KB
/
updates.csv
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
date;region;route;root;description
2024-07-05;Albania;A1;alb.a001;Route extended at south end from Thumanë to SH2 west of Kamëz
2024-07-05;Albania;SH1 (Shkodër);alb.sh001;Route truncated at south end from Tirana to Fushë Milot
2024-07-05;Albania;SH1 (Tirana);alb.sh001tir;New Route (remainder after interruption south of Thumanë due to the extension of A1)
2024-07-05;Albania;SH8;alb.sh008;Route relocated through Tunelit të Llogarasë from Dukat i Ri to north of Palasë
2023-09-19;Albania;A1 (Klos);alb.a001;Route extended at south end from SH30 at Rreshen to southern junction with SH1, and at north end from SH5 to Kosovo border
2023-09-19;Albania;A1 (Thumanë);alb.a001;Route merged with main segment
2023-09-19;Albania;A3;alb.a003;Route truncated at north end from SH56 to SH3 at Lundër
2023-09-19;Albania;Unaza Lindore, Tiranë;alb.unalin;Route added
2023-09-19;Albania;Unaza e Madhe, Tiranë;alb.unamad;Route added (consisting of truncated parts of A3 and SH56)
2023-09-19;Albania;SH5;alb.sh005;Route truncated at east end from Kosovo border to A1
2023-09-19;Albania;SH6;alb.sh006;Route truncated at west end from SH1 to A1
2023-09-19;Albania;SH8;alb.sh008;Route truncated at north end from SH73/94 to SH4 at Levan, and route clarified in Vlore
2023-09-19;Albania;SH56;alb.sh056;Route truncated at east end from SH1 to Unaza e Madhe
2022-01-05;Albania;E762;alb.e762;Route removed from SH1 and relocated onto Shkoder West Bypass between the SH1 north of Shkoder and the SH1 south of Shkoder
2020-04-20;Albania;A2;alb.a002;Route extended at north end from SH4 and SH8 at Levan to SH4 at Mbrostar
2020-04-20;Albania;A3;alb.a003;Route extended at south end from SH3 at Berzhite to SH3 at Bradashesh
2020-04-20;Albania;A3 (Elbasan);alb.a003;Route deleted (made part of main route)
2020-04-20;Albania;E852;alb.e852;Route removed from SH3 and relocated onto A3 between A3/SH3 junction at Berzhite and former A3/SH3 junction at Mushqeta
2019-02-11;Albania;E762;alb.e762;New Route
2019-02-11;Albania;E851;alb.e851;New Route
2019-02-11;Albania;E852;alb.e852;New Route
2018-11-21;Albania;A3 (Tirane);alb.a003;Route extended at north end from Rruga Kristo Luarasi to SH56, and at south end from SH3 at Lunder to SH3 at Berzhite
2018-11-21;Albania;A3 (Dobresh);alb.a003;Route merged into main route
2018-05-15;Albania;SH93;alb.sh093;New Route
2016-03-12;Albania;A1 (Thumanë);alb.a001thu;New Route
2016-03-12;Albania;A3;;Route Deleted
2016-03-12;Albania;A3 (Dobresh);alb.a003dob;New Route
2016-03-12;Albania;A3 (Elbasan);alb.a003elb;New Route
2016-03-12;Albania;A3 (Tirane);alb.a003;New Route
2015-07-17;Albania;A3;alb.a003;New route
2021-06-09;Andorra;CG1A;and.cg001a;Route added
2021-06-09;Andorra;CG3;and.cg003;Route truncated at south end from CG2 to CG3A and extended at south end from CG3A to CG1/2
2021-06-09;Andorra;CG3A;and.cg003a;Route reentered
2021-06-09;Andorra;Tunel d'Envarlira;and.cg002a;Route renamed CG2a
2021-01-14;(Australia) Australia Capital Territory;A23;ausact.a023;Route extended at south end from northern junction with State Circle to NSW border
2023-11-28;(Australia) New South Wales;M4;ausnsw.m004;Route extended at east end from M8 to A4
2023-11-28;(Australia) New South Wales;M8;ausnsw.m008;Route extended at north end from M4 to A40
2023-11-28;(Australia) New South Wales;A4;ausnsw.a004;Route truncated at west end from M4 at Haberfield to M4 at Rozelle Interchange
2023-11-28;(Australia) New South Wales;A44;ausnsw.a044;Route extended at east end from M4 at Haberfield to M4 at Rozelle Interchange
2023-08-17;(Australia) New South Wales;M11;ausnsw.m011;Route added
2023-08-17;(Australia) New South Wales;(North Connex);ausnsw.m011;Route deleted (renamed M11)
2023-04-17;(Australia) New South Wales;M1 (Wollongong);ausnsw.m001wol;Route extended at south end from Princes Highway at Dapto to Weir Street
2023-04-17;(Australia) New South Wales;A1;ausnsw.a001she;Route truncated at north end from A48 to Weir Street
2023-01-20;(Australia) New South Wales;M4;ausnsw.m004;Route extended at east end from A4 at Five Dock / Paramatta Road junction to M8
2023-01-20;(Australia) New South Wales;M8;ausnsw.m008;Route extended at north end from Euston Road to M4
2023-01-20;(Australia) New South Wales;A4;ausnsw.a004;Route truncated at west end from former western junction with M4 (at Strathfield) to M4 at Haberfield
2023-01-20;(Australia) New South Wales;A44;ausnsw.a044;Route extended at east end from M4 at Strathfield to M4 at Haberfield
2020-09-23;(Australia) New South Wales;M1 (Ballina);ausnsw.m001bal;Route extended at south end from B60 to Trustmans Hill Road
2020-09-23;(Australia) New South Wales;M1 (Grafton);ausnsw.m001gra;Route extended at north end from Oval Link Road to Iluka Road
2020-07-05;(Australia) New South Wales;M8;ausnsw.m008;Route added
2020-05-26;(Australia) New South Wales;M1 (Grafton);ausnsw.m001gra;Route added
2023-04-17;(Australia) Victoria;N1 Alternative (Melbourne);ausvic.n001altmel;Route added
2023-04-17;(Australia) Victoria;A60;;Route deleted (now N1Alt, MR60 and C101)
2021-11-20;(Australia) Victoria;M11;ausvic.m011;Route extended at north end from exit 6 (for MR40) to MR87
2021-10-14;(Australia) Victoria;M420 (Koo Wee Rup);ausvic.m420;Route truncated at north end from M1 to A21 at Fisheries Road (former bit now Hallam section and A21)
2021-10-14;(Australia) Victoria;M420 (Hallam);ausvic.m420hal;Route added
2021-10-14;(Australia) Victoria;N1 Alternative (Melbourne);ausvic.a060;Route removed (now part of A60)
2021-10-14;(Australia) Victoria;A16;ausvic.a016;Route added (formerly MR6)
2021-10-14;(Australia) Victoria;A17;ausvic.a017;Route added (formerly part of C101)
2021-10-14;(Australia) Victoria;A21;ausvic.a021;Route added (formerly part of M420)
2021-10-14;(Australia) Victoria;A50;ausvic.a050;Route added (formerly MR3)
2021-10-14;(Australia) Victoria;A51;ausvic.a051;Route added (formerly parts of C727 and MR27)
2021-10-14;(Australia) Victoria;A60;ausvic.a060;Route added (formerly N1Alt, MR60, and part of C101)
2021-10-14;(Australia) Victoria;A77;ausvic.a077;Route added (formerly MR77 and part of MR40)
2021-10-14;(Australia) Victoria;A81;ausvic.a081;Route added
2021-10-14;(Australia) Victoria;A91;ausvic.a091;Route added
2021-10-14;(Australia) Victoria;A93;ausvic.a093;Route added
2021-10-14;(Australia) Victoria;A95;ausvic.a095;Route added (formerly C702)
2021-10-14;(Australia) Victoria;A96;ausvic.a096;Route added (formerly C109)
2020-12-01;(Australia) South Australia;M2 (Southern Expressway, Adelaide);aussa.m002noa;Route extended at north end from A13_N to A2
2020-03-09;(Australia) South Australia;M2 (Northern Expressway, Adelaide);aussa.m002;Route extended at south end from A1 to Hindmarsh Avenue
2020-03-09;(Australia) South Australia;M2 (North-South Motorway, Adelaide);aussa.m002;Route merged into main route
2023-07-10;(Australia) Western Australia;WA2;auswa.wa002;Route extended at north end from Hester Avenue to Romeo Road
2024-05-16;Austria;B14 (Klosterneuburger Straße (Rannersdorf));aut.b014ran;New Route
2024-04-26;Austria;B40 (Mistelbacher Straße (Mistelbach));aut.b040mis;New Route
2024-03-25;Austria;S7;aut.s007;New Route
2024-03-25;Austria;E66;aut.e66;Route relocated from B65/B319 through Fürstenfeld and onto A2/S7 from A2's exit 138 to north of Dobersdorf
2024-02-15;Austria;L501-4 (Duttendorf);aut.l05014dut;New Route
2024-02-15;Austria;L501-4 (Wanghausen);aut.l05014wan;New Route
2024-02-13;Austria;B141 (Danner);aut.b141dan;New Route
2023-12-25;Austria;L543-4;aut.l05434;Route truncated at west end from B154 to Seeache (L217-5 now)
2023-11-06;Austria;B57;aut.b057;Route relocated at interchange with future S7 west of Eltendorf between east of Königsdorf and B65
2023-04-22;Austria;B163 Wagrainer Straße Abzweigung Flachau;;Route deleted
2023-04-23;Austria;B186;aut.b186;Route truncated at south end from the Italian border to L15 (the remainder is a private toll road)
2023-04-23;Austria;B197;aut.b197;Route truncated at west end from S16 to Vorarlberg/Tyrol border (L197 now)
2023-04-23;Austria;L197;aut.l197;New Route (former B197)
2023-04-23;Austria;B198;aut.b198;Route truncated at west end from L197 to Vorarlberg/Tyrol border (L198 now)
2023-04-23;Austria;L198;aut.l198;New Route (former B198)
2023-04-23;Austria;B232 (Leopoldau);aut.b232;New Route
2023-04-23;Austria;B232 (Donaufeld);aut.b232don;New Route
2023-04-22;Austria;B168a;aut.b168a;New Route
2023-04-22;Austria;L550-4;aut.l5504;Route relocated from Linzer Straße and Hauptstraße, and onto Pyhrnstraße in Windischgarsten from Hauptstraße/Pyhrnstraße junction to B138
2023-04-18;Austria;B73;aut.b082;Route truncated at north end from Bahnhofstraße (B94) to S37 in Sankt Veit an der Glan
2023-04-17;Austria;B73;aut.b073;Route truncated at north end from Liebenauer Tangente to B67a in Graz
2023-04-16;Austria;B21a;aut.b021a;Route truncated at east end from B17 to Zellergasse in Felixdorf
2023-04-16;Austria;B40;aut.b040;Route extended at east end from B49 to Am Damm in Dürnkrut
2023-04-16;Austria;B43;aut.b043;Route relocated at west end from through Wegraim ob der Traisen and onto bypass
2023-04-16;Austria;B45;aut.b045;Route relocated from through Laa an der Thaya and onto southern bypass from L3076 to Simon-Scheiner-Straße
2023-04-16;Austria;B50;aut.b050;Route extended at north end from A6 exit Kittsee to Berg (former B50a)
2023-04-16;Austria;B50a;aut.b050a;Route truncated at south end from A6 exit Kittsee to Berg (B50 now)
2023-04-16;Austria;B60;aut.b060;Route truncated at south end from B17 to B21b in Wiener Neustadt
2023-04-16;Austria;B65c;aut.b065c;New Route
2023-04-16;Austria;B67;aut.b067;Route relocated from through Feldkirchen, Lebern, Abtissendorf and Wagnitz, and onto western bypass from Triester Straße north of Feldkirchen to L312 north of Kalsdorf
2023-04-16;Austria;B68;aut.b068;Route truncated at east end from B66 to B68a (B68a now)
2023-04-16;Austria;B68a;aut.b068a;Route extended at east end from B68 to B66 (former B68)
2023-04-16;Austria;B164;aut.b164;Route relocated from Leogangerstraße and Stadtplatz, and onto Zeller Bundesstraße and Bahnhofstraße in Saalfelden am Steinernen Meer
2023-04-16;Austria;B214a;aut.b214a;New Route
2023-04-14;Austria;B11b;aut.b011b;New Route
2023-04-14;Austria;B14;aut.b014;Route relocated from Zinnergasse (B14b now) and Alberner Hafenzufahrtsstraße, and onto Margetinstraße, Jedletzstraße (former B228) and 11. Haidequerstraße in Vienna-Simmering
2023-04-14;Austria;B14a;aut.b014a;Route extended at east end from A22 to Donauturmstraße
2023-04-14;Austria;B14b;aut.b014b;Route extended at west end from Alberner Hafenzufahrtsstraße to Artillerieplatz (former B14)
2023-04-14;Austria;B228;aut.b228;Route truncated at east end from Zinnergasse to 11. Haidequerstraße (B14 now), and reextended to A4 exit 4
2023-04-13;Austria;B2;aut.b002;Route relocated from B34 concurrency and onto partial B4 concurrency southeast of Horn
2023-04-13;Austria;B2AST;aut.b002;Route deleted, main route now
2023-04-13;Austria;B6;aut.b006;Route truncated at south end from B3 in Korneuburg to S1 north of Korneuburg
2023-04-13;Austria;B25a;;Route deleted
2023-04-13;Austria;B38;aut.b038;Route truncated at east end from B34 to B2 (B38a now)
2023-04-13;Austria;B38a;aut.b038a;New Route (former B38)
2022-08-24;Austria;B147;aut.b147;Route relocated from through Munderfing and onto new bypass
2022-08-24;Austria;B123;aut.b123;Route relocated from through Pyburg and Windpassing and onto new bypass
2022-08-24;Austria;B123a;aut.b123a;Route extended at north end from Mauthausnerstraße (former B123) to junction with new B123 north of Pyburg
2022-08-24;Austria;B38a;;Route deleted
2022-05-29;Austria;B64;aut.b064;Route relocated in Weiz from Gleisdorfer Straße and Birkfelder Straße and onto new bypass (tunnel route) from B72 to Birkfelder Straße
2021-09-29;Austria;B61;aut.b061;Route truncated at south end the Hungarian border to B55
2021-06-16;Austria;B61A;aut.b061a;Route extended at south end from B61 to the Hungarian border
2021-06-16;Austria;B25;;New Route
2021-06-16;Austria;B25;aut.b025;Route relocated from through Wieselburg (B25a now) and onto new bypass from north of Holzing to south of Mühling
2020-12-17;Austria;S3;aut.s003;Route extended at north end from north of Hollabrunn to Guntersdorf (B30)
2020-12-17;Austria;E59;aut.e59;Route relocated onto new S3 from north of Hollabrunn to Guntersdorf (B30)
2020-12-17;Austria;B30;aut.b030;Route relocated from through Guntersdorf and onto northern bypass
2020-11-11;Austria;S36 (Murtal Schnellstraße St. Georgen ob Judenburg);aut.s036sgj;Route extended at west end from west of St. Georgen (exit 48a) to north of Schleifling
2019-09-08;Austria;A5 (Drasenhofen);aut.a005dra;New Route
2019-09-08;Austria;E461;aut.e461;Route relocated from through Drasenhofen and onto new A5 bypass
2019-06-24;Austria;B303;aut.b303;Route truncated at south end from Hollabrunn-South (exit 20) to Hollabrunn-North (B40), now S3
2019-06-24;Austria;S3;aut.s003;Route extended at north end from Hollabrunn-South (exit 20) to Hollabrunn-North (B40), former B303
2018-11-10;Austria;B177;aut.b177;Route relocated from through Scharnitz and onto bypass
2018-11-10;Austria;E533;aut.e533;Route relocated from through Scharnitz and onto B177 bypass
2017-12-16;Austria;A5;aut.a005;Route extended at north end from exit 23 to exit 47
2017-12-16;Austria;E461;aut.e461;Route relocated from B7 and onto A5 from A5 exit 23 to exit 47
2017-10-08;Austria;B38;aut.b038;Removed from route through Zwettl and relocated to Zwettl bypass between L8229 and L8245
2017-10-08;Austria;B38;aut.b038;Removed from route through Freistadt-West (now B38a) and relocated to Freistadt-West bypass
2017-10-08;Austria;B38a;aut.b038a;New route
2017-07-26;Austria;A2 (Klagenfurt);aut.a002kla;Truncated at east end from B91 to B70c, segment is dedicated B70c now
2015-12-23;Austria;E55;aut.e55;Removed from B310 and relocated onto S10 between S10/B310 junction and B125
2015-12-21;Austria;S10;aut.s010;Route extended at south end from B310 south of Friestadt to the A7
2015-12-21;Austria;S10 (Neumarkt);;Route deleted (merged into main route)
2015-12-21;Austria;S10 (Unterwogern);;Route deleted (merged into main route)
2015-12-02;Austria;S36 (Sankt Georgen ob Judenburg);aut.s036sgj;New Route
2015-09-16;Austria;A12 (Landecker Tunnel);aut.a012lan;New Route
2015-09-16;Austria;A13 (Innsbruck);aut.a013inn;New Route
2015-09-16;Austria;A14 (Bregenz);aut.a014bre;New Route
2015-09-16;Austria;A23 (Inzersdorf);aut.a023inz;New Route
2015-09-16;Austria;E533;aut.e533;Route truncated at south end from eastern A12/A13 junction to exit 77 of the A12
2015-09-16;Austria;E533;aut.e533;Route extended at south end from exit 77 of the A12 to the A13
2015-09-16;Austria;E652;aut.e652;Route extended at north end from northern junction with B91 to A2
2015-09-16;Austria;S10 (Freistadt);aut.s010;New Route
2015-09-16;Austria;S10 (Neumarkt);aut.s010neu;New Route
2015-09-16;Austria;S10 (Unterwogern);aut.s010unt;New Route
2015-09-16;Austria;S35;aut.s035;Route extended at north end from exit 0 to B116
2017-09-05;Azerbaijan;M3;aze.m003;Route removed from Baki-Iran yolu and relocated onto Alat-Astara Avtomobil, between Sarcuvar and Sapnakaran
2017-09-05;Azerbaijan;E119;aze.e119;Route removed from Baki-Iran yolu and relocated onto Alat-Astara Avtomobil, between Sarcuvar and Sapnakaran
2017-09-05;Azerbaijan;AH8;aze.ah008;Route removed from Baki-Iran yolu and relocated onto Alat-Astara Avtomobil, between Sarcuvar and Sapnakaran
2020-06-03;Barbados;ABC Highway;brb.abchwy;Route added
2020-06-03;Barbados;Tom Adams Highway;brb.abchwy;Route merged into ABC Highway
2020-06-03;Barbados;Errol Barrow Highway;brb.abchwy;Route merged into ABC Highway
2020-06-03;Barbados;Gordon Cummins Highway;brb.abchwy;Route merged into ABC Highway
2016-12-30;Belarus;M14;blr.m014;Route extended at south end from M6 to M1
2016-12-30;Belarus;MKAD2;blr.mkad2;Route extended at south end from M6 to M1
2016-05-01;Belarus;Minsk - Kobrin Aŭtamabіĺnaja;blr.minkobaut;New Route
2016-05-01;Belarus;Minsk - Orsha Aŭtamabіĺnaja;blr.minorsaut;New Route
2016-05-01;Belarus;Mіnskaja Kaĺcavaja Aŭtamabіĺnaja Daroha;blr.mkad;New Route
2016-05-01;Belarus;Mіnskaja Kaĺcavaja Aŭtamabіĺnaja Daroha 2;blr.mkad2;New Route
2024-02-12;Belgium;N912a;bel.n912a;New Route
2024-02-12;Belgium;N912b;bel.n912b;New Route
2024-02-12;Belgium;N917;bel.n947a;Route renamed to N947a
2024-02-12;Belgium;N931 (Profondeville);bel.n931pro;Route extended at east end from N947 to west of Mont
2024-02-12;Belgium;N947a;bel.n947c;Route renamed to N947c
2024-02-11;Belgium;N859;bel.n859;Route extended at east end from N859a to Battle of the Bulge Monument
2024-02-11;Belgium;N859a;bel.n859a;New Route
2024-02-11;Belgium;N859b;bel.n859b;New Route
2024-02-11;Belgium;N861;bel.n861;Route truncated at north end from Thibessart to the Mellier/Rulles boundary
2024-02-11;Belgium;N863;bel.n863;New Route
2024-02-11;Belgium;N878a;bel.n878a;New Route
2024-02-11;Belgium;N879;bel.n879;Route extended at north end from N897 to the station
2024-02-11;Belgium;N883;bel.n883;Route extended at north end from roundabout north of Messancy to Differt
2024-02-11;Belgium;N883a;bel.n883a;New Route
2024-02-11;Belgium;N883b;bel.n883b;New Route
2024-02-11;Belgium;N883c;bel.n883c;New Route
2024-02-11;Belgium;N897a;bel.n897a;New Route
2024-01-30;Belgium;N779;bel.n779;Route extended at north end from N76 to Koerweg
2024-01-30;Belgium;N832;bel.n832;New Route
2024-01-30;Belgium;N839 (Izel);;Route deleted
2024-01-30;Belgium;N871a;bel.n871a;New Route
2024-01-28;Belgium;N607a;bel.n607a;New Route
2024-01-28;Belgium;N610b;bel.n610b;New Route
2024-01-28;Belgium;N617d;bel.n617d;New Route
2024-01-28;Belgium;N630;bel.n630;New Route
2024-01-28;Belgium;N630a;bel.n630a;Route extended from N630 to Rue des Coqs
2024-01-28;Belgium;N630c;bel.n630c;New Route
2024-01-28;Belgium;N633a;bel.n633a;New Route
2024-01-28;Belgium;N633b;bel.n633b;New Route
2024-01-28;Belgium;N640b;bel.n640b;New Route
2024-01-28;Belgium;N643b;bel.n643b;New Route
2024-01-28;Belgium;N646a;bel.n646a;New Route
2024-01-28;Belgium;N655;bel.n655;New Route
2024-01-28;Belgium;N656;;Route deleted
2024-01-28;Belgium;N661;;Route deleted
2024-01-28;Belgium;N667;bel.n667;Route extended from N671 to N671c
2024-01-28;Belgium;N671a;bel.n671a;New Route
2024-01-28;Belgium;N671c;bel.n671c;New Route
2024-01-28;Belgium;N671e;bel.n671e;New Route
2024-01-28;Belgium;N671g;bel.n671g;New Route
2024-01-28;Belgium;N671i;bel.n671i;New Route
2024-01-28;Belgium;N675;bel.n675;Route relocated from Rodt bypass (N675c now) and through Rodt
2024-01-28;Belgium;N675c;bel.n675c;New Route
2024-01-28;Belgium;N712;bel.n712;Route extended at east end from Sleutelstraat in Lommel to Achel
2024-01-28;Belgium;N712 (Pelt);bel.n712;Route merged into main route
2024-01-28;Belgium;N716;bel.n716;Route extended at north end from N716a to N2d
2024-01-28;Belgium;N717c;;Route deleted
2024-01-28;Belgium;N723a;;Route deleted
2024-01-28;Belgium;N730;bel.n730;Route relocated from concurrency with N75 and N77, and onto direct route between As and Wiemesmeer
2024-01-28;Belgium;N732;bel.n732;New Route
2024-01-28;Belgium;N744;bel.n744;Route extended at south end from N75 to N730 (former N730)
2024-01-28;Belgium;N746;bel.n746;Route extended at north end from N71 to the Dutch border
2024-01-28;Belgium;N746 (Lommel);bel.n746;Route merged into main route
2024-01-28;Belgium;N754;bel.n754;Route extended at north end from N716a to N2d
2024-01-28;Belgium;N756;bel.n756;New Route
2024-01-28;Belgium;N764;bel.n764;New Route
2024-01-28;Belgium;N767;bel.n767;New Route
2024-01-28;Belgium;N824;bel.n824;New Route
2024-01-28;Belgium;N845;bel.n845;Route extended at east end from Rue du Sauport to N85 (former N853)
2024-01-28;Belgium;N853;bel.n853;Route truncated at east end from N85 to N884, and reextended onto Rue de Blézy to N845
2024-01-28;Belgium;N860a;bel.n860a;New Route
2024-01-28;Belgium;N947b;bel.n947b;New Route
2024-01-27;Belgium;N20a;bel.n020a;New Route
2024-01-27;Belgium;N30;bel.n030;Route extended at north end from N90 to N607/N617
2024-01-27;Belgium;N407;bel.n407;Route extended at north end from N47 to Kapellestraat
2024-01-27;Belgium;N473;bel.n473;New Route
2024-01-27;Belgium;N473a;bel.n473a;New Route
2024-01-27;Belgium;N501;bel.n501;Route truncated from N502 to N500
2024-01-27;Belgium;N504;bel.n504;Route extended at north end from A16 to Tournai boundary
2024-01-27;Belgium;N516a;;Route deleted
2024-01-27;Belgium;N518;bel.n518;Route extended at east end from Avenue Wolfgang Amadeus Mozart to Boulevard Industriel
2024-01-27;Belgium;N518 (Mouscron-East);bel.n518;Route merged into main route
2024-01-27;Belgium;N548;bel.n548;Route extended at south end from Quévy to N6
2024-01-27;Belgium;N552 (Strépy-Bracquegnies);bel.n552str;New Route
2024-01-27;Belgium;N568a;bel.n568a;Route extended at east end from R3 to N586
2024-01-27;Belgium;N569a;bel.n569a;New Route
2024-01-27;Belgium;N578;bel.n578;New Route
2024-01-27;Belgium;N580a;bel.n580a;New Route
2024-01-27;Belgium;N606;bel.n606;Route relocated from Route de Hautregard and Route de Fraineux, and onto Rue Jehoster between N697 and Route de Fraineux
2024-01-27;Belgium;N610;bel.n610;Route removed from Pont des Vennes at south end (N30 now)
2024-01-27;Belgium;N615;bel.n615;Route extended at south end from N637a to Rue Jules Masy
2024-01-27;Belgium;N616;bel.n616;New Route
2024-01-27;Belgium;N617;bel.n617;Route truncated at east end from N3 to N671b
2024-01-27;Belgium;N617b;bel.n617b;New Route
2024-01-27;Belgium;N617e;bel.n617e;New Route
2024-01-27;Belgium;N617g;bel.n617g;New Route
2024-01-27;Belgium;N627d;bel.n627d;New Route
2024-01-27;Belgium;N633;bel.n633;Route extended from N90 to N617
2024-01-27;Belgium;N637;bel.n637;Route truncated at west end from N64 to N615 (N637a now)
2024-01-27;Belgium;N637a;bel.n637a;Route extended at west end from N615 to N64 (former N637)
2024-01-27;Belgium;N671b;bel.n671b;New Route
2024-01-27;Belgium;N682;bel.n682;New Route
2024-01-27;Belgium;N685;bel.n685;New Route
2024-01-27;Belgium;N831;bel.n831;Route truncated at north end from N66 to N623 (N623 now)
2024-01-26;Belgium;N382a;bel.n382a;New Route
2024-01-26;Belgium;N402;bel.n402;New Route
2024-01-26;Belgium;N404;bel.n404;New Route
2024-01-26;Belgium;N436;bel.n436;Route extended at west end from N458 to N456
2024-01-26;Belgium;N437;bel.n437;Route relocated at north end from through Hansbeke and onto eastern bypass
2024-01-26;Belgium;N450;bel.n450;Route extended at north end from A11 to R2
2024-01-26;Belgium;N453;bel.n453;Route extended at east end from N60 to Mathijs Casteleinstraat
2024-01-26;Belgium;N458;bel.n458;Route extended at north end from N436 to Haven at the Dutch border
2024-01-26;Belgium;N459;bel.n459;Route extended at south end from N60 to Kortrijkstraat
2024-01-26;Belgium;N462;bel.n462;Route truncated at south end from Nederbrakel to Michelbeke (N402 or N462b now)
2024-01-26;Belgium;N462b;bel.n462b;New Route
2024-01-25;Belgium;N342;bel.n342;New Route
2024-01-25;Belgium;N345;bel.n345;Route truncated at north end from N313 to N332
2024-01-25;Belgium;N348;bel.n348;Route extended at west end from Pathoekeweg to Blankenbergse Steenweg
2024-01-25;Belgium;N369a;bel.n369a;New Route
2024-01-25;Belgium;N370d;bel.n370d;New Route
2024-01-25;Belgium;N378;bel.n378;New Route
2024-01-25;Belgium;N384a;bel.n384a;New Route
2024-01-22;Belgium;N311;bel.n311;Route extended at south end from N515 to the French border
2024-01-22;Belgium;N317;bel.n317;Route extended at west end from Zeelan to N34
2024-01-22;Belgium;N323b;bel.n323b;Route extended at west end from N323 to Ziekenhuisweg
2024-01-22;Belgium;N334;bel.n334;New Route
2024-01-22;Belgium;N335;bel.n335;New Route
2024-01-22;Belgium;N339;bel.n339;Route extended at south end from N351 to Dirk Martensstraat
2024-01-16;Belgium;N226;bel.n226;Route truncated at east end from N228 to Jan-Baptist De Keyzerstraat
2024-01-16;Belgium;N227;bel.n227;Route truncated at north end from R12 to N1
2024-01-16;Belgium;N235;bel.n235;New Route
2024-01-16;Belgium;N243;bel.n243;Route truncated at west end from N239 to N4
2024-01-16;Belgium;N246;bel.n246;Route extended at east end from Avenue Reine Astrid to N5
2024-01-16;Belgium;N252;bel.n252;Route extended at west end from A7 to Rue de la Ferme Smette
2024-01-16;Belgium;N257;bel.n257;Route extended at east end from N4 to Chaussée d'Ottenbourg
2024-01-14;Belgium;N101;bel.n101;Route extended at north end from A12 to N101d
2024-01-14;Belgium;N101;bel.n101;Route truncated at south end from N180 to Scheldelaan/Kastelweg junction, and reextended onto Kastelweg, Oosterweelsteenweg, Siberiastraat and Staatsbrugweg to N180
2024-01-14;Belgium;N101d;bel.n101d;New Route
2024-01-14;Belgium;N106a;bel.n106a;New Route
2024-01-14;Belgium;N139a;bel.n139a;New Route
2024-01-14;Belgium;N149;bel.n149;New Route
2024-01-14;Belgium;N156;bel.n156;Route extended at west end from N19 to N152
2024-01-14;Belgium;N159;bel.n159;New Route
2024-01-14;Belgium;N183 (Puurs);bel.n183puu;New Route
2024-01-14;Belgium;N183 (Willebroek);bel.n183;New Route
2024-01-14;Belgium;N211;bel.n211;Route extended at east end from N21 to Vliegveld
2024-01-14;Belgium;N259;bel.n259;New Route
2024-01-13;Belgium;A604;bel.a604;Route extended at south end from exit to N90
2024-01-13;Belgium;R80;bel.r080;New Route
2024-01-13;Belgium;N80a;bel.n080a;New Route
2024-01-13;Belgium;N82 (Arlon);bel.n082;Route truncated at west end from N87/N88 to R80
2024-01-13;Belgium;N82 (Virton);bel.n082vir;New Route (splitt off from main route)
2024-01-13;Belgium;N90a;bel.n090a;Route truncated at west end from N90 to N683a
2024-01-13;Belgium;N90d;bel.n090d;New Route
2024-01-13;Belgium;N90g;bel.n090g;New Route
2024-01-13;Belgium;N90z;bel.a604;Route deleted (A604 now)
2024-01-13;Belgium;N95b;bel.n095b;New Route
2024-01-13;Belgium;N95d;bel.n095d;Route extended at east end from N95 to N911
2024-01-13;Belgium;N572a;bel.n587;Route deleted (merged into N587)
2024-01-13;Belgium;N587;bel.n587;Route extended at west end from N29 to N90
2024-01-13;Belgium;N615 (Seraing);;Route deleted
2024-01-13;Belgium;N683a;bel.n683a;Route truncated at south end from N683 to N90a (N90d now)
2024-01-13;Belgium;N867;bel.n867;New Route
2024-01-13;Belgium;N875 (Saint-Mard);bel.n875;Route truncated at north end from N87 to R80
2024-01-13;Belgium;N875 (Robelmont);bel.n875rob;New Route (splitt off from main route)
2024-01-13;Belgium;N912;bel.n912;Route truncated at west end from Rue de la Croix to N568
2024-01-13;Belgium;N942;bel.n942;Route relocated from Chaussée de Namur and Route des Six Frères, and onto Rue de la Poste in Leuze
2024-01-12;Belgium;N73 (Tessenderlo);bel.n073tes;Route extended at east end from N724 to Ham/Beringen boundary
2024-01-12;Belgium;N74 (Pelt);bel.n074;Route truncated at south end from R70 in Hasselt to N715 south of Hechtel
2024-01-12;Belgium;N74 (Zonhoven);bel.n074zon;New Route (split off from main route
2024-01-12;Belgium;N75a;;Route deleted
2024-01-12;Belgium;N76a;;Route deleted
2024-01-12;Belgium;N76d (Diepenbeek-South);bel.n076d;Route truncated at north end from N76 to N2
2024-01-12;Belgium;N76d (Diepenbeek-North);bel.n076ddin;New Route (split off from main route
2024-01-12;Belgium;N77;bel.n077;Route truncated at west end from Berglaan in Genk to N750
2024-01-12;Belgium;N78a;bel.n078a;New Route
2024-01-12;Belgium;N420;bel.n420;New Route
2024-01-12;Belgium;N715;bel.n715;Route extende at south end from Hechtel to Zonhoven (former N74 and N715b)
2024-01-12;Belgium;N715b;bel.n715;Route merged into main route
2024-01-11;Belgium;N60c;bel.n060c;New Route
2024-01-11;Belgium;N60e;bel.n060e;Route truncated at north end from N60 to Rue Ponchau (N60f now)
2024-01-11;Belgium;N60f;bel.n060f;New Route (former N60e)
2024-01-11;Belgium;N63;bel.n063;Route extended at north end from N617 to Rue Ernest Solvay
2024-01-11;Belgium;N63e;bel.n063e;New Route
2024-01-11;Belgium;N68a;bel.n068a;New Route
2024-01-11;Belgium;N611;bel.n611;New Route (former N676)
2024-01-11;Belgium;N657;bel.n657;Route truncated at east end from N61 to R61
2024-01-11;Belgium;N672;bel.n672;Route truncated at west end from N61 to R61
2024-01-11;Belgium;N676;bel.n676;Route truncated at south end from N626 to Friedensstraße (N611 now), and reextended to N62
2024-01-09;Belgium;N39;bel.n039;Route relocated in Veurne from Peter Benoitlaan, Lindendreef and Karel Coggelaan, and onto Duinkerkestraat, Zuidstraat, Grote Markt and Ooststraat
2024-01-09;Belgium;N40a;;Route deleted
2024-01-09;Belgium;N43 (Deinze);bel.n043;Routing extended at east end from N60/N414 to Koningin Mathildeplein in Gent
2024-01-09;Belgium;N43 (Gent);bel.n043gen;New Route
2024-01-09;Belgium;N50 (Mons);bel.n050mon;Route extended at east end from R50 to N556
2024-01-09;Belgium;N53;bel.n053;Routing clarified through Beaumont
2024-01-09;Belgium;N53c;bel.n053c;New Route
2024-01-09;Belgium;N56b;bel.n056b;New Route
2024-01-09;Belgium;N56c;bel.n056c;New Route
2024-01-09;Belgium;N544;bel.n544;Route truncated at north end from N6 to Cuesmes, and reextended to dead end south of the railway
2024-01-09;Belgium;N556;bel.n556;New Route
2024-01-09;Belgium;N556f;bel.n556f;New Route
2024-01-08;Belgium;N27a;bel.n027a;New Route
2024-01-08;Belgium;N32a;bel.n032a;New Route
2024-01-08;Belgium;N32d;bel.n032d;New Route
2024-01-08;Belgium;N33;bel.n033;Route extended at north end from R31 to N34
2024-01-08;Belgium;N34b;bel.n034b;New Route
2024-01-08;Belgium;N35;bel.n035;Route extened at east end from N50 to N60
2024-01-08;Belgium;N35 (Deinze);bel.n035;Merged into main route
2024-01-08;Belgium;N35c;bel.n035c;Route truncated at east end from N37 to N35
2024-01-08;Belgium;N36a;bel.n036a;Route extended at east end from N32 to N32a
2024-01-08;Belgium;N36b;bel.n036b;New Route
2024-01-08;Belgium;N36c;bel.n036c;New Route
2024-01-08;Belgium;N36f;bel.n036f;New Route
2024-01-08;Belgium;N48 (Tournai);bel.n048;Route truncated at east end from N60b to Engelsenlaan (N48c now), and reextended onto Engelsenlaan to N60b
2024-01-08;Belgium;N48c;bel.n048c;New Route
2024-01-08;Belgium;N318;bel.n318;Route extended at east end from R31 to N34
2024-01-08;Belgium;N357;bel.n357;Route extended at west end from N37 to N32a
2024-01-08;Belgium;N359;bel.n359;New Route
2024-01-08;Belgium;N374;bel.n374;Route extended at north end from N376 to N49
2024-01-08;Belgium;N376a;bel.n376a;New Route
2024-01-08;Belgium;N586 (Fleurus);bel.n586fle;Route extended at east end from N567 to N29
2024-01-08;Belgium;N601;bel.n030a;Route renamed to N30a
2024-01-08;Belgium;N633;bel.n633;Route extended at north end from A602 to N90
2024-01-07;Belgium;N1d;bel.n001d;New Route
2024-01-07;Belgium;N2 (Bilzen);bel.n002bil;Route truncated at west end from R70 to R71
2024-01-07;Belgium;N3e (Sint-Truiden-West);bel.n003e;Route truncated at east end from N3 east of Sint-Truiden to Stapelstraat
2024-01-07;Belgium;N3e (Sint-Truiden-East);bel.n003este;New Route (former part of main route)
2024-01-07;Belgium;N4b;bel.n004b;New Route
2024-01-07;Belgium;N4d;bel.n004d;New Route
2024-01-07;Belgium;N5 (Waterloo);bel.n005wat;Route relocated from Frasnes-lez-Gosselies bypass (N5j now), and through Frasnes-lez-Gosselies
2024-01-07;Belgium;N5 (Couvin);bel.n005g;Route renamed to N5g
2024-01-07;Belgium;N5g (Genappe);;Route deleted
2024-01-07;Belgium;N5i;bel.n005i;New Route
2024-01-07;Belgium;N5j;bel.n005j;New Route (former N5)
2024-01-07;Belgium;N8e;bel.n008e;New Route
2024-01-07;Belgium;N8h;bel.n008h;New Route
2024-01-07;Belgium;N8j;bel.n008j;New Route
2024-01-07;Belgium;N9d;bel.n009d;New Route
2024-01-07;Belgium;N9d;bel.n009f;New Route
2024-01-07;Belgium;N9k;bel.n009k;New Route
2024-01-07;Belgium;N10;bel.n010;Route extended at east end from R26 to Leuvenstraat
2024-01-07;Belgium;N16;bel.n016;Route truncated at west end from R42 to Grote Markt in Sint-Niklaas
2024-01-07;Belgium;N16c;bel.n016c;New Route
2024-01-07;Belgium;N19e;bel.n019e;New Route
2024-01-07;Belgium;N20;bel.n020;Route truncated at south end from N3 to A3
2024-01-07;Belgium;N21;bel.n021;Route relocated from Koningsstraat and onto Haachtse-Steemweg between Kruidtuinstraat and Koninginneplein
2024-01-07;Belgium;N21;bel.n021;Route extended at east end from N229 to Hogeweg
2024-01-07;Belgium;N60 (Leuze-en-Hainaut);bel.n060leu;Route relocated from eastern bypass (N60d now) and through Leuze-en-Hainaut
2024-01-07;Belgium;N60d;bel.n060d;New Route (former N60)
2024-01-07;Belgium;N64;bel.n064;Route extended at north end from R27 to N214
2024-01-07;Belgium;N79;bel.n079;Route truncated at west end from Naamsevest to N80
2024-01-07;Belgium;N126;bel.n126;Route extended at north end from N142 to N19
2024-01-07;Belgium;N214;bel.n214;New Route
2024-01-07;Belgium;N224;bel.n224;New Route
2024-01-07;Belgium;N231;bel.n231;New Route
2024-01-07;Belgium;N277;bel.n277;Route extended at south end from Koninginneplein to Haachtse-Steenweg (former N21)
2024-01-07;Belgium;N285a;bel.n285a;New Route
2024-01-07;Belgium;N410a;bel.n410a;New Route
2024-01-07;Belgium;N516;bel.n516;New Route
2024-01-07;Belgium;N525;bel.n525;Route truncated at north end from N7 to N56
2024-01-07;Belgium;N526;bel.n526;Route extended at north end from N60d to N7
2024-01-07;Belgium;N540;;Route deleted
2024-01-07;Belgium;N586;bel.n586;Route extended at south end from N582 to Rue du Cerisier
2024-01-07;Belgium;N716;bel.n716;Route truncated at south end from N3e to Gorsemweg
2024-01-07;Belgium;N722a;;Route deleted
2024-01-07;Belgium;N730;bel.n730;Route relocated iin Bilzen from Nieuwstraat and through Belisiatunnel, Eikenlaan, Stationlaan and Hospitaalstraat between Pasweg and N2
2024-01-06;Belgium;N575;bel.n575;Route extended at west end from R9 to N588
2024-01-05;Belgium;B201;bel.b201;New Route
2024-01-05;Belgium;B202;bel.b202;New Route
2024-01-05;Belgium;B601;bel.b601;New Route
2024-01-05;Belgium;R36y;bel.r036y;New Route
2024-01-05;Belgium;N90 (Binche);bel.n090bin;Route extended at east end R9 to N588a
2024-01-05;Belgium;N282;bel.n282;Route extended at east end from Vlezenbeek to N6 in Veeweyde
2024-01-05;Belgium;N588;bel.n588;New Route
2024-01-05;Belgium;N588a;bel.n588a;New Route
2023-12-26;Belgium;A26;bel.a026;Route truncated at north end from exit 38 to exit 39
2023-12-26;Belgium;A602;bel.a602;Route extended at south end from exit 38 to exit 39
2023-12-26;Belgium;R22;bel.r022;Route relocated onto outer carriageways between R0's exit 3 and exit 4
2023-12-26;Belgium;R72;bel.r072;Route truncated from a full ring to partial ring from Jaminéstraat to Wijkstraat only
2023-12-26;Belgium;N9b;bel.n009b;New Route
2023-12-26;Belgium;N9c;bel.n009c;New Route
2023-12-26;Belgium;N9h;bel.n009h;New Route
2023-12-26;Belgium;N106;bel.n106;Route truncated at west end from R11 to Kleine Doornstraat in Wilrijk
2023-12-26;Belgium;N552;bel.n552;Route extended at east end from R5a to N538
2022-07-24;Belgium;N753;bel.n753;Route extended at east end from N730 to N758
2022-07-17;Belgium;N949;bel.n949;Route relocated from through Leignon (Bayaux) and onto western bypass
2022-07-04;Belgium;B101;bel.b101;New Route
2022-07-04;Belgium;N1 (Vilvoorde);bel.n001vil;Route truncated at north end from R12 to new B101
2022-07-04;Belgium;N1a;;Route deleted
2022-07-04;Belgium;N1b;;Route deleted
2022-07-04;Belgium;N15;bel.n015;Route truncated at west end from R12 to new B101 (B101 now)
2022-07-04;Belgium;N109;bel.n109;Route truncated at south end from N1 to new B101 (B101 now)
2022-06-21;Belgium;N29 (Beringen);bel.n029ber;Route relocated from old bridge to new bridge between N717 and N72 in Beringen
2022-06-21;Belgium;N878b;bel.n878b;New Route
2022-06-21;Belgium;N878;bel.n878;Route relocated from through Courtil (N878b now) and onto bypass from west to east of Courtil
2020-03-22;Belgium;R61;bel.r061;New Route
2020-01-03;Belgium;R18;bel.r018;New Route
2019-09-08;Belgium;E420;bel.e420;Route relocated from old alignment to new construction between Rue de la Platinerie south of Couvin and the French border
2019-07-20;Belgium;N260 (Baarle-Hertog);bel.n260baa;New Route
2019-07-20;Belgium;N260 (Baarle-Hertog-East);bel.n260bae;New Route
2019-07-20;Belgium;N260 (Baarle-Hertog-North);bel.n260ban;Route removed from through Baarle-Hartog and onto bypass
2019-07-20;Belgium;N260 (Baarle-Hertog-South);bel.n260bas;Route removed from through Baarle-Hartog and onto bypass
2019-07-20;Belgium;N260 (Baarle-Hertog);;Route deleted
2019-03-03;Belgium;A604;bel.a604;Route extended at north end from E42/A15 to N630a
2018-10-12;Belgium;A11 (Antwerpen);bel.a011;Route extended at west end from N448 west of Zelzate to Brugge (fromer N49)
2018-10-12;Belgium;A11 (Westkapelle);bel.a011;Merged into main route
2018-06-30;Belgium;A8;bel.a008;Route extended at east end from exit 22 to R0
2017-10-29;Belgium;E420;bel.e420;Route relocated from through Couvin and onto N5 bypass
2017-09-01;Belgium;A11 (Westkapelle);;New route
2017-03-05;Belgium;E44;bel.e44;New route
2017-02-06;Belgium;R55;bel.r055;New route
2017-01-22;Belgium;A11;bel.a011;Route extended at west end from exit 14 to N49
2017-01-22;Belgium;A17;bel.a017;Route extended at north end from A10 to N31
2016-01-12;Belgium;A112;bel.a112;Route extended at north end from E34/R1 to N113/R10
2016-01-12;Belgium;A13;bel.a013;Route extended at west end from exit 17 to R10
2016-01-12;Belgium;E420;bel.e420;Route reentered between exit 27 of the N54 and the N576
2016-01-12;Belgium;E420 (Charleroi);bel.e420bel;New Route
2016-01-12;Belgium;Péripherique du Charleroi;bel.percha;New Route
2016-01-12;Belgium;Ring Antwerpen Oost;bel.ringante;New Route
2016-01-12;Belgium;Ring Antwerpen West;bel.ringantw;New Route
2016-01-12;Belgium;Ring Bruxelles / Ring Brussels;bel.ringbru;New Route
2016-01-12;Belgium;Ring Charleroi;bel.ringcha;New Route
2016-01-12;Belgium;Ring Gent Oost;bel.ringgento;New Route
2016-01-12;Belgium;Ring Kortrijk;bel.ringkor;New Route
2016-01-12;Belgium;Ring Mons Est;bel.ringmonse;New Route
2016-01-12;Belgium;Ring Mons Ouest;bel.ringmonso;New Route
2015-07-24;Belgium;A601;;Route deleted
2024-09-05;Bosnia and Herzegovina;A1 (Bubale);bih.a001bub;Route extended at north end from exit 32 (previously labeled as exit 31) to exit 30
2023-02-17;Bosnia and Herzegovina;M4.2;bih.m0042;Route removed from R400a and relocated onto Ulica Ibrahima Mrzljaka between R400a and Croatian border
2023-02-17;Bosnia and Herzegovina;M4.3;bih.m0043;Route added
2022-09-26;Bosnia and Herzegovina;A1;bih.a001;Route extended at south end from exit 22 to M17 at Bradina
2022-09-26;Bosnia and Herzegovina;E73;bih.e73;Route removed from M17 and relocated onto A1 between A1 exit 22 and A1/M17 junction at Bradina
2022-09-05;Bosnia and Herzegovina;A1 (Rudanka);bih.a001rud;Route added
2022-09-05;Bosnia and Herzegovina;Autoput Banja Luka - Doboj;bih.autbldob;Route extended at east end from exit 5 to exit 6
2022-09-05;Bosnia and Herzegovina;E73;bih.e73;Route removed from M17 and relocated onto Autoput Banja Luka - Doboj and A1 between M17 junctions north and south of Rudanka
2021-12-13;Bosnia and Herzegovina;M17.1;bih.m0171;Route added
2021-12-13;Bosnia and Herzegovina;M17.6;bih.m0176;Route added
2021-09-30;Bosnia and Herzegovina;A1 (Odzak);bih.a001odz;Route extended at north end from exit 1 to Croatian border
2021-09-30;Bosnia and Herzogovina;E73;bih.e73;Route truncated at north end from Croatian border (at Samac) to M14.1/M17 junction (formally 'M14.1_W') and reextended at north end from M14.1/M17 junction to Croatian border (at Svilaj)
2020-12-02;Bosnia and Herzegovina;A1 (Visoko);bih.a001;Route extended at north end from exit 13 to exit 12
2020-05-20;Bosnia and Herzegovina;Autoput Gradiška - Banja Luka;bih.autgrabl;Route truncated at south end from M4 to exit 5
2020-05-20;Bosnia and Herzegovina;M4.2;bih.m0042;Route removed from Ulica Ibrahama Mrzljaka and relocated onto Velika Kladusa between western junction with R401 and Croatian border
2020-05-20;Bosnia and Herzegovina;M5;bih.m005;Route removed from Obala Kulina Bana, Zmaja od Bosne and Bulevar Mese Selimovica, and relocated onto Put Mladih Muslimana, Safeta Hadzica and X Transverzala between E771_W and Bulevar Mese Selimovica
2020-05-20;Bosnia and Herzegovina;M14.2 (Odzak);bih.m0142odz;Route added
2020-05-20;Bosnia and Herzegovina;M14.2 (Orasje);bih.m0142ora;Route added
2020-05-20;Bosnia and Herzegovina;M18;bih.m018;Route removed from M5 and E771 and relocated onto M17 between M5/M17 and E771_E
2020-05-18;Bosnia and Herzegovina;M16.5;bih.m0165;Route added
2016-10-02;Bosnia and Herzegovina;Autoput Banja Luka - Doboj;bih.autbldob;Route extended at west end from R474 to exit 0 at the E661
2018-10-02;Bosnia and Herzegovina;Autoput Banja Luka - Doboj (Banja Luka);bih.autbldob;Route merged into main route
2017-12-11;Bosnia and Herzegovina;A1 (Odzak);bih.a001odz;New Route
2017-12-11;Bosnia and Herzegovina;Gradski Autoput Sarajevo;bih.graautsar;Route extended at east end from M113 to R901
2017-10-04;Bosnia and Herzegovina;Autoput Banja Luka - Doboj (Banja Luka);bih.autbldobban;New Route
2016-09-11;Bosnia and Herzegovina;Autoput Banja Luka - Doboj (Doboj);bih.autbldob;New Route
2016-09-08;Bosnia and Herzegovina;Gradski Autoput Sarajevo;bih.graautsar;New Route
2015-07-22;Bosnia and Herzegovina;A1;bih.a001;Route extended at north end from M5/M17 to exit 13
2015-07-22;Bosnia and Herzegovina;A1;bih.a001;Route extended at south end from M18 to M17
2015-07-22;Bosnia and Herzegovina;A1 (Bubale);bih.a001bub;Route extended at north end from R423 to R425a
2015-07-22;Bosnia and Herzegovina;E661;bih.e661;Removed from M16 and relocated onto M14.1 and motorway route between the junction with the M16 and exit 4
2015-07-22;Bosnia and Herzegovina;E661;bih.e661;Route extended at south end from M17 to A1
2015-07-22;Bosnia and Herzegovina;E73;bih.e73;Removed from M17 and relocated onto A1 between Zenicke Brigade and the junction with the M5 and M17
2015-07-22;Bosnia and Herzegovina;E73;bih.e73;Removed from M5 and relocated onto A1 between M18 and the southern junction between the A1 and M17
2015-07-22;Bosnia and Herzegovina;E772;bih.e772;Route extended at north end from junction of M17 and M18 to A1
2018-10-13;Brunei;AH150 (Bandar Seri Begawan);brn.ah150;New Route
2018-10-13;Brunei;AH150 (Bangar);brn.ah150ban;New Route
2024-02-20;Bulgaria;A3 'Struma' (Pernik);bgr.a003;Route extended at south end from I1 south of Blagoevgrad to I1 at Zheleznitsa
2024-02-20;Bulgaria;E79;bgr.e79;Route removed from I1 and relocated onto A3 between Blagoevgrad South and Zheleznitsa
2023-09-25;Bulgaria;A6 'Europa' (Slivnitsa);bgr.a006;Route truncated from Serbian border to junction with I8
2023-09-25;Bulgaria;I8 (Dragoman);bgr.i008dra;Route added
2023-06-14;Bulgaria;A4 'Maritsa';bgr.a004;Route extended at east end from former junction with the I8 east of Kapitan Andrevo to the Turkish border
2023-06-14;Bulgaria;A6 'Europa' (Sofia);bgr.a006sof;Route extended at west end from II18 to Vasil Levski
2023-04-14;Bulgaria;A6 'Europa' (Slivnitsa);bgr.a006;Route extended from former junction with I8 to Serbian border
2023-04-14;Bulgaria;E79;bgr.e79;Route removed from road through Skravena and relocated onto expressway between 'Skr' and 'Nov'
2023-04-14;Bulgaria;I1 (Montana);bgr.i001;Route removed from road through Skravena and relocated onto expressway between 'Skr' and 'Nov'
2023-04-14;Bulgaria;I8 (Dragoman);bgr.a006;Route deleted (now A6)
2022-10-21;Bulgaria;A2 'Hemus' (Varna);bgr.a002var;Route extended at west end from I2 at Belokopitovo to III5102
2022-10-21;Bulgaria;E772;bgr.e772;Route removed from I4 and relocated onto A2 and III5102 between I4/III5102 junction and I4 junction
2020-11-11;Bulgaria;A6 'Europa' (Slivnitsa);bgr.a006;Route added
2020-11-11;Bulgaria;I8 (Slivnitsa);;Route deleted (split into two new I8 sections and new A6)
2020-11-11;Bulgaria;I8 (Boschurischte);bgr.i008bos;Route added
2020-11-11;Bulgaria;I8 (Dragoman);bgr.i008dra;Route added
2020-07-09;Bulgaria;I9;bgr.i009;Route removed from Aheloy and Pomorie town centres and relocated onto bypasses between Ulica Tsar Simeon and junction west of Pomorie
2020-07-09;Bulgaria;E87;bgr.e87;Route removed from Aheloy and Pomorie town centres and relocated onto bypasses between Ulica Tsar Simeon and junction west of Pomorie
2019-10-12;Bulgaria;A2 'Hemus' (Botevgrad);bgr.a002;Route extended at east end from I3_E to I4
2019-10-12;Bulgaria;A3 'Struma' (Pernik);bgr.a003;Route extended at north end from I6 to II18
2019-10-12;Bulgaria;A6 'Lyulin';bgr.a003;Route deleted (absorbed into A3)
2019-10-12;Bulgaria;A6 'Europa';bgr.a006sst;New Route
2019-10-12;Bulgaria;Severnata Skorostna Tangenta;bgr.a006sst;Route renamed A6
2019-10-12;Bulgaria;E772;bgr.e772;Route removed from I4 and relocated onto A2 between I3 and I4/A2
2019-06-03;Bulgaria;A3;bgr.a003;Route extended at south end from III106 to the I1 south of Blagoevgrad
2019-06-03;Bulgaria;E79;bgr.e79;Route removed from III106 and I1 and relocated onto A3 between III106 and I1_BlaS
2018-12-17;Bulgaria;A3 (Kulata);bgr.a003kul;Route extended at north end from the I1 at Damyanitsa to the I1 at Kresna
2018-12-17;Bulgaria;E79;bgr.e79;Route removed from I1 and relocated onto A3 between Damyanitsa and Kresna
2017-03-05;Bulgaria;E675;;Route deleted
2016-11-09;Bulgaria;E79;bgr.e79;Removed from II/18 and relocated onto SST between II18_E and II18_N
2016-11-09;Bulgaria;E80;bgr.e80;Removed from II/18 and relocated onto SST between II18_N and A2
2016-05-01;Bulgaria;Severnata Skorostna Tangenta;bgr.sst;New Route
2015-12-30;Bulgaria;E79;bgr.e79;Removed from route through Montana and relocated to Montana bypass between Dolna Verenitsa and 'ToN81'
2015-12-30;Bulgaria;E79;bgr.e79;Removed from Ulista Ilinden and Bulevarde 2-ri Yuni and relocated to Vrasta bypass between 'UliIli' and 'Bul2riYuni'
2015-10-29;Bulgaria;A4;bgr.a004;Route extended at west end from N5 to A1
2015-10-29;Bulgaria;E80;bgr.e80;Route removed from N66, N807, N8 and N5 and relocated onto A4 between now closed N66 junction and the N5 junction on the A4
2015-10-26;Bulgaria;A3 (Pernik);bgr.a003;Route extended at south end from the N1 at Dupnitsa-sever to the N106
2015-10-26;Bulgaria;E79;bgr.e79;Route removed from N1 and relocated onto A3 between the junction with the N1 at Dupnitsa-sever and the A3/N1 junction at Kocherinovo
2015-08-21;Bulgaria;A2 (Varna);bgr.a002var;Route extended at west end from former junction with N7 to junction of N2 and N4
2015-08-21;Bulgaria;A3 (Kulata);bgr.a003kul;Route extended at north end from junction with N198 to N108
2015-08-21;Bulgaria;A3 (Kulata);bgr.a003kul;Route extended at south end from junction for Kulata to the Greek border
2015-08-21;Bulgaria;E70;bgr.e70;Route removed from N2 and N7 and relocated onto A2 between western A2/N2 junction (also N4) and former A2/N7 junction
2015-07-22;Bulgaria;A3;;Route renumbered A4
2015-07-22;Bulgaria;A3 (Kulata);bgr.a003kul;New route
2015-07-22;Bulgaria;A4;bgr.a004;New route (formerly A3)
2015-07-22;Bulgaria;A4;bgr.a004;Route extended at west end from N76 to N5
2015-07-22;Bulgaria;E80;bgr.e80;Removed from N8 and relocated onto A4 between the former junction between the A3 and N8 east of Generalovo (labeled *N8_GenE) and the junction between the A4 and N8 next to the Turkish border
2015-07-22;Bulgaria;E80;bgr.e80;Removed from N8 and N76 and relocated onto N5 and A4 between the junction between the N5 and N8 and the junction between the A4 and N76
2015-07-22;Bulgaria;E85;bgr.e85;Removed from N5 and N8 and relocated onto A4 between the junction between the A4 and N5 and the junction between the A4 and N76
2024-10-16;(Canada) Alberta;AB 56;ab.ab056;North end extended from AB 13 to AB 26.
2024-10-16;(Canada) Alberta;AB 834;ab.ab834;South end truncated from AB 13/56 to AB 26.
2024-07-12;(Canada) Alberta;AB 48;ab.ab048;Route added.
2024-06-29;(Canada) Alberta;Glenmore Trail;ab.gletrl;Route added.
2024-01-01;(Canada) Alberta;AB 201 (Southwest Calgary);ab.ab201;Merged into main AB 201 route.
2024-01-01;(Canada) Alberta;AB 201;ab.ab201;Segment between exits 26 & 32 added, forming a complete beltway.
2024-01-01;(Canada) Alberta;AB 8;ab.ab008;East end truncated from exit 26 to exit 28 of AB 201.
2021-10-13;(Canada) Alberta;AB 201;ab.ab201;Extended counterclockwise from exit 36 to 32.
2023-01-18;(Canada) Alberta;AB 1A (Cochrane);ab.ab001acoc;East end removed from Banff Trail and relocated onto Crowchild Trail between Banff Trail and AB 1.
2023-01-18;(Canada) Alberta;AB 8;ab.ab008;East end truncated from Sarcee Trail to AB 201.
2022-02-12;(Canada) Alberta;AB 14;ab.ab014;Curve straightened between waypoints *OldAB14_W and *OldAB14_E. Relocated southward.
2021-10-03;(Canada) Alberta;AB 201 (South Calgary);ab.ab201swc;Route deleted. Merged into Southwest Calgary segment.
2021-10-03;(Canada) Alberta;AB 201 (Southwest Calgary);ab.ab201swc;Extended counterclockwise along Tsuut'ina Trail from Exit 13 to Exit 9, thence along the former South Calgary segment to AB 2.
2020-10-02;(Canada) Alberta;AB 63;ab.ab063;Extended northward from a point labeled *OldEnd at 57.261608°, -111.627790° to the end of pavement at 57.396732°, -111.626939°.
2020-10-02;(Canada) Alberta;AB 201 (Woodbine);ab.ab201swc;Route deleted. Merged into new Southwest Calgary segment.
2020-10-02;(Canada) Alberta;AB 201 (Signal Hill);ab.ab201swc;Route deleted. Merged into new Southwest Calgary segment.
2020-10-02;(Canada) Alberta;AB 201 (Southwest Calgary);ab.ab201swc;New route consisting of the former Woodbine segment, newly opened Tsuut'ina Trail from exits 17-22, and the former Signal Hill segment.
2020-09-25;(Canada) Alberta;AB 28;ab.ab028;Removed from demolished roadway and relocated onto a southeastern curve-straightened alignment between points labeled *OldAB28_A and *OldAB28_B. Removed from demolished roadway and relocated onto a northwestern curve-straightened alignment between points labeled *OldAB28_C and *OldAB28_D.
2020-09-25;(Canada) Alberta;AB 38;ab.ab038;West end removed from a demolished direct northwestward connection from a point labeled *OldAB38 to the demolished former curve of AB 28, and extended approx. 1.1 km westward to intersect AB 28 at a straightaway.
2020-09-24;(Canada) Alberta;AB 43;ab.ab043;Removed from 100 Ave, 108 St, 116 Ave and 100 St and relocated onto a northwestern 4-lane divided bypass of Grande Prairie.
2020-09-24;(Canada) Alberta;AB 43X;ab.ab043x;Deleted. Now part of relocated AB 43.
2020-09-24;(Canada) Alberta;AB 201 ((South) Calgary);ab.ab201sca;Extended westward from Exit 5 to Exit 9.
2020-09-24;(Canada) Alberta;AB 201 (Woodbine);ab.ab201woo;Route added
2020-09-24;(Canada) Alberta;AB 201 (Signal Hill);ab.ab201sig;Route added
2015-08-22;(Canada) Alberta;AB 58;ab.ab058;Removed from 98 Avenue and relocated onto AB35 and a northeastern bypass, between western & eastern closed intersections with 98 Avenue.
2022-10-24;(Canada) British Columbia;BC 7B;bc.bc007b;West end of route relocated, from ramps connecting Mary Hill Bypass to TCH/BC 1, to United Boulevard between Mary Hill Bypass and Mariner Way north of BC 7.
2015-08-13;(Canada) British Columbia;TCH 1 Business (Chase BC);bc.tchbuscha;New route
2024-10-08;(Canada) Manitoba;MB 200;mb.mb200;North of point *OldMB200_N, Removed from Saint Mary's Road and relocated eastward to intersect MB 100 at a grade-separated intersection.
2024-10-08;(Canada) Manitoba;Rte 52;mb.rt052;south of Redview Drive, Removed from Saint Mary's Road and relocated eastward to intersect MB 100 at a grade-separated intersection.
2018-03-28;(Canada) Manitoba;MB 17;mb.mb017;North end extended from 150 N to MB 224
2023-09-18;(Canada) New Brunswick;NB 555;nb.nb555;Extended westward approx 4.4 km from NB 540 to a dead-end.
2022-02-12;(Canada) New Brunswick;NB 105 (Jemseg);nb.nb105jen;Truncated from the closed Jemseg River Bridge approach to NB 695.
2022-02-12;(Canada) New Brunswick;NB 105 (Fredericton);nb.nb105;South end truncated from the closed Jemseg River Bridge approach to NB 2.
2021-06-17;(Canada) New Brunswick;NB 101;nb.nb101;Extended at south end from Eagle Rock Road to NB 7.
2021-06-17;(Canada) New Brunswick;NB 177;nb.nb177;North end removed from Eagle Rock Road between the NB 7 Exit 71 connector and NB 7 Exit 63, and relocated onto the connector to NB 7 Exit 71.
2021-02-09;(Canada) New Brunswick;NB 176;nb.nb176;From a point labeled *OldNB176, south end removed from a northerly road to the old Black's Harbour Ferry Terminal and relocated southwestward toward the new Black's Harbour Ferry Terminal.
2019-09-28;(Canada) New Brunswick;NB 745;nb.nb745;North end removed from Loon Bay Road westward to Loon Bay, and relocated northwestward from the Lily Bay Road intersection to Scotts Brook Provincial Park.
2019-07-30;(Canada) New Brunswick;NB 774;nb.nb774;North end truncated by 2.0 km, to Head Harbour Wharf Rd.
2018-04-04;(Canada) New Brunswick;NB 11;nb.nb011;South end removed from a demolished four-lane divided highway and NB 132 between a point south of Exit 2 (labelled *OldNB11) and Exit 31 of NB 15, and relocated onto a four-lane divided bypass connecting to NB 15 at a high-speed directional interchange about 1 km west of existing Exit 31.
2018-04-04;(Canada) New Brunswick;NB 132;nb.nb132;Extended at north end from NB 15 to Main St.
2017-09-24;(Canada) New Brunswick;NB 134;nb.nb134;Removed from Subway Street and Water Street, and relocated onto Roseberry Street and Andrew Street between Subway Street and Water Street in Campbellton
2017-08-23;(Canada) New Brunswick;NB 105 (Jemseg);nb.nb105jem;Route added, split from NB 105 (Fredericton).
2017-08-23;(Canada) New Brunswick;NB 105 (Fredericton);nb.nb105;Truncated from the former south end at NB 10 to the new south end at the barricaded northern approach to the Jemseg River Bridge. Southern segment of this route added as NB 105 (Jemseg).
2017-08-15;(Canada) New Brunswick;NB 565;nb.nb565;Route added
2017-07-22;(Canada) New Brunswick;NB 122;nb.nb122;Waypoint "NB630" moved from McAdam St to Maple St
2017-07-22;(Canada) New Brunswick;NB 630;nb.nb630;North end removed from McAdam St between Maple St and NB 122, and relocated onto Maple St between McAdam St and NB 122
2017-02-05;(Canada) New Brunswick;NB 11;nb.nb011;Removed from Rue du Portage and NB 145 and relocated onto the southern Caraquet bypass between Rue du Portage and NB 145/325
2017-02-05;(Canada) New Brunswick;NB 145;nb.nb145;West end extended from Rue du Portage to NB 11/325
2016-11-17;(Canada) New Brunswick;NB 17;nb.nb017;Relocated onto a new, flattened, straightened alignment directly connecting waypoints *OldNB17_A, *OldNB17_B & *OldNB17_C, from a closed two-lane roadway north of the new alignment between *OldNB17_A & *OldNB17_B and south of the new alignment between *OldNB17_B & *OldNB17_2C
2015-08-19;(Canada) New Brunswick;NB 107;nb.nb107;Extended eastward from NB 148 to NB 8. Moved waypoint NB8 from NB 148 to the Marysville Bypass.
2015-08-19;(Canada) New Brunswick;NB 148;nb.nb148;Added route
2015-08-19;(Canada) New Brunswick;NB 628;nb.nb628;Removed from Penniac Bridge and River Road between Canada Street and Penniac Road, and relocated onto Penniac Road between River Road and NB 8.
2015-08-19;(Canada) New Brunswick;NB 8;nb.nb008;Removed from Bridge Street, Canada Street and NB 148, and relocated onto a controlled access bypass to the east of Marysville, Nashwaak, Durham Bridge and Taymouth, between Bridge Street and NB 148.
2015-08-19;(Canada) New Brunswick;NB 935;nb.nb935;Removed from a closed roadway through the Shorebird Reserve along Shepody Bay and relocated onto a bypass about 1/4 km inland, between waypoints OldNB935_W and OldNB935_E.
2015-08-18;(Canada) New Brunswick;NB 2;nb.nb002;Moved from Madawaska Ave. to new freeway between QC/NB border and exit 1
2015-08-18;(Canada) New Brunswick;TCH (Main);nb.tchmai;Moved from Madawaska Ave. to new freeway between QC/NB border and exit 1
2021-12-03;(Canada) Northwest Territories;NT 9;nt.nt009;New route
2017-12-08;(Canada) Northwest Territories;NT 10;nt.nt010;New route
2017-12-08;(Canada) Northwest Territories;NT 1;nt.nt001;West end truncated from Wrigley village centre, to Tulita winter road entrance southeast of Wrigley
2023-07-12;(Canada) Nova Scotia;NS 4 (New Glasgow);ns.ns004ngl;Removed from "Old Highway 4" between Rossfield Rd and Barneys River Rd, relocated northwestward onto a NS104 (exit 29) connector to point *OldNS104_Bar, extended eastward over the former NS 104 alignment to point *OldNS104_Mar, northeastward via a direct transition into the former NS 4 (Antigonish) route at point *OldNS4, then eastward over the former Antigonish route to NS 316.
2023-07-12;(Canada) Nova Scotia;NS 4 (Antigonish);ns.ns004ngl;Route deleted, and merged into NS 4 (New Glasgow) east of point *OldNS4. Segment between *OldNS4 and Strathglass Rd demolished.
2023-07-12;(Canada) Nova Scotia;NS 104;ns.ns104;Removed from NS 4 (New Glasgow) and demolished roadway, and relocated southward onto a 4-lane divided highway between Exit 29 and a point labeled *OldNS104_Gle.
2023-07-12;(Canada) Nova Scotia;TCH (Main);ns.tchmai;Removed from NS 4 (New Glasgow) and demolished roadway, and relocated southward onto a 4-lane divided highway between NS 104 Exit 29 and a point labeled *OldNS104_Gle.
2022-02-07;(Canada) Nova Scotia;NS 236;ns.ns236;Glen Brook bridge relocated southward between waypoints *OldNS236_W and *OldNS236_E.
2019-09-22;(Canada) Nova Scotia;NS 101;ns.ns101;Removed from NS 1 and relocated onto a northwestern controlled access bypass of Marshalltown between Exit 26 and Middle Cross Road.
2019-09-22;(Canada) Nova Scotia;NS 1 (Smiths Cove);ns.ns001smi;Extended west from NS 101 Exit 25 to NS 101 at the west end of the Marshalltown bypass.
2019-09-02;(Canada) Nova Scotia;NS 4 (Antigonish);ns.ns004ant;Removed from James Street, NS 245, NS 337, Saint Andrews Street and South River Road, and relocated onto the pre-2012 alignment of NS 104, directly from James Street to South River Road. East end truncated from NS104 Exit 35 to NS 316.
2019-09-02;(Canada) Nova Scotia;NS 7;ns.ns007;East end truncated from James Street to NS 4.
2019-09-02;(Canada) Nova Scotia;NS 245;ns.ns245;Extended eastward from NS 227 to NS 4.
2019-09-02;(Canada) Nova Scotia;NS 337;ns.ns337;Extended southward from Saint Andrews Street to NS 245.
2016-11-19;(Canada) Nova Scotia;NS 103;ns.ns103;Removed from closed two-lane highway and the surface road through Port Mouton village (now partially NS3), and relocated onto the northwestern Port Mouton bypass between closed intersections labeled *OldNS103_Sum & *OldNS103_PMo
2016-11-19;(Canada) Nova Scotia;NS 104;ns.ns104;Removed from a closed temporary connector and NS 4, and relocated onto a parallel four-lane divided highway between closed intersections labeled *OldNS104_Ant & *OldNS104_LSR
2016-11-19;(Canada) Nova Scotia;NS 3 (Liverpool);ns.ns003liv;West end removed from a closed roadway between a point labeled *OldNS3 and the closed former alignment of NS 103, and relocated onto the surface road through Port Mouton village and a new access road to NS 103 Exit 21
2016-11-19;(Canada) Nova Scotia;NS 4 (Antigonish);ns.ns004ant;Extended east from the eastern intersection with University Boulevard to Exit 35 of NS 104
2016-11-19;(Canada) Nova Scotia;TCH (Main);ns.tchmai;Removed from a closed temporary connector and NS 4, and relocated onto a parallel four-lane divided highway between closed intersections labeled *OldNS104_Ant & *OldNS104_LSR
2016-02-27;(Canada) Nova Scotia;NS 255;ns.ns255;Removed from a closed roadway and demolished bridge, and relocated onto a new parallel roadway and bridge to the east between points labeled *OldNS255_N and *OldNS255_S
2016-01-02;(Canada) Nova Scotia;NS 103;ns.ns103;Removed from partially-closed local roads through Port Joli and East Port L'Hebert, and relocated onto a limited-access bypass to the north, between closed intersections labeled *OldNS103_PJo and *OldNS103_EPL
2024-10-18;(Canada) Ontario;TCH (Northern Ontario);on.tchnor;Rerouted onto a brand new 2-lane bypass for ON 11 to the north of MacLeon that opened in early 2024, between the points of *OldON11_MacW & *OldON11_MacE.
2024-10-18;(Canada) Ontario;ON 11;on.on011;Rerouted onto a brand new 2-lane bypass to the north of MacLeon that opened in early 2024, between the points of *OldON11_MacW & *OldON11_MacE.
2024-10-18;(Canada) Ontario;ON 15;on.on015;Extended at southern end from an interchange with ON 401, south 0.37 km to the pavement change where new END/BEGIN shileds have been installed, and RR 15 takes over.
2024-09-22;(Canada) Ontario;ON 6;on.on006;Extended at southern end from a closed intersection with Saint Patrick Street, south 0.25 km to the intersection of Main Street/Walker Street, based on signage.
2024-01-19;(Canada) Ontario;Dougall Parkway;on.doupkwy;Added route.
2024-01-19;(Canada) Ontario;Highway 2A;on.hwy2a;Added route.
2024-01-19;(Canada) Ontario;Nikola Tesla Boulevard;on.niktesblvd;Added route.
2023-02-08;(Canada) Ontario;Don Valley Parkway;on.donvalpkwy;Moved from Ontario Provincial Freeways to Canada Select Named Freeways
2023-02-08;(Canada) Ontario;Gardiner Expressway;on.garexpy;Moved from Ontario Provincial Freeways to Canada Select Named Freeways
2022-10-09;(Canada) Ontario;ON 11;on.on011;Rerouted onto a brand new alignment to the west of Nipigon, between the points of RedRockRd7 and *OldON17_NipN, which happened in 2018. The old highway is now just local access between those two points.
2022-10-09;(Canada) Ontario;ON 17;on.on017;Rerouted onto a brand new alignment to the west of Nipigon, between the points of RedRockRd7 and *OldON17_NipN, which happened in 2018. The old highway is now just local access between those two points.
2022-10-09;(Canada) Ontario;TCH (Lake Superior);on.tchlak;Rerouted onto a brand new alignment to the west of Nipigon, between the points of RedRockRd7 and *OldON17_NipN, which happened in 2018. The old highway is now just local access between those two points.
2022-04-11;(Canada) Ontario;Gardiner Expressway;on.ongar;Route truncated on eastern end from Lake Shore Blvd to the ramps to the Don Valley Parkway (exit 157), as it's been demolished to help make way for a future realignment of the Gardiner Expressway.
2022-01-01;(Canada) Ontario;ON 69;on.on069;Rerouted onto a new freeway alignment in Bigwood/French River area, between the points of *OldON69_Gru & *OldON69_NoeS that opened mid 2021. The old highway became just local access between those two points.
2022-01-01;(Canada) Ontario;TCH (Georgian Bay);on.tchgeo;Rerouted onto a new ON 69 freeway alignment in Bigwood/French River area, between the points of *OldON69_Gru & *OldON69_NoeS that opened mid 2021. The old highway became just local access between those two points.
2021-09-20;(Canada) Ontario;ON 427;on.on427;Extended at northern end from Exit 21 (Highway 7) to the newly opened Major Mackenzie Drive interchange.
2021-04-04;(Canada) Ontario;ON 17;on.on017;Rerouted onto a brand new alignment to the west of Ignace which bypassed a big curve and straighend the highway between the points of *OldON17_IgnW (km 259) & *OldON17_IgnE (km 262). This reroute happend sometime after October 2018.
2021-04-04;(Canada) Ontario;TCH (Lake Superior);on.tchlak;Rerouted onto a brand new alignment to the west of Ignace which bypassed a big curve and straighend the highway between the points of *OldON17_IgnW (km 259) & *OldON17_IgnE (km 262). This reroute happend sometime after October 2018.
2021-03-30;(Canada) Ontario;ON 72;on.on072;Route truncated on northern end from downtown Sioux Lookout to the Ed Ariano Bypass (1stAve). Then rerouted along the Ed Ariano Bypass to a new northern end at the intersection of SH 516 & SH 642 (SH516/642). Reroute happend sometime between 2012 and 2018.
2021-02-21;(Canada) Ontario;ON 2;on.on002;Extended at western end from the interchange with 1000 Islands Parkway to the Gananoque city boundary line (KingSt).
2021-02-21;(Canada) Ontario;ON 7;on.on007;Route truncated on the western end from Main Street Markham (former ON 48) to Ressor Road on the edge of York Region.
2021-02-21;(Canada) Ontario;ON 7B (Lindsay);;Route deleted.
2021-02-21;(Canada) Ontario;ON 11B (Cobalt);on.on011bcob;Truncated from the northern end 0.5km north of the Colemand Twp/Temiskaming Shores boundary line south 0.5km to the Colemand Twp/Temiskaming Shores boundary line.
2021-02-21;(Canada) Ontario;ON 17;on.on017;Route truncated on the eastern end from ON 417 exit 187 to about 4.7km west of exit 187 where the 2-lane highway transforms into the 4-lane ON 417 which abosorbed this segment of ON 17.
2021-02-21;(Canada) Ontario;ON 69;on.on069;Rerouted onto a new freeway alignment (some small parts upon original 2-lane alignment) between the *OldON69_NoeS & *OldON69_NoeN points in the French River area that was completed in parts between 2015 and 2016.
2021-02-21;(Canada) Ontario;ON 402;on.on402;Route truncated on the western end from the mid-point of Blue Water Bridge to Exit 1 (Front Street).
2021-02-21;(Canada) Ontario;ON 409;on.on409;Route truncated on the western end from Airport Road to ON 427.
2021-02-21;(Canada) Ontario;ON 417;on.on417;Route extended on western end from Exit 187 to the west about 4.7km to the end of the 4-lane highway where it transforms into 2-lane ON 17.
2021-02-21;(Canada) Ontario;TCH (Georgian Bay);on.tchgeo;Rerouted onto a new freeway alignment (some small parts upon original 2-lane alignment) between the *OldON69_NoeS & *OldON69_NoeN points in the French River area that was completed in parts between 2015 and 2016.
2021-01-30;(Canada) Ontario;ON 66;on.on066;Truncated from the former western end at Asbestos Mine Road/Secondary Highway 566 back to the east at the eastern edge of Montreal River bridge and Secondary Highway 566.
2021-01-30;(Canada) Ontario;ON 66;on.on066;Route removed from Government Road in Virginiatown, and rerouted onto a brand new bypass to the north of Virginiatown, between the points of GovRd & *OldON66.
2021-01-30;(Canada) Ontario;TCH (Kirkland Lake);on.tchkir;Route removed from Government Road in Virginiatown, and rerouted onto a brand new bypass to the north of Virginiatown, between the points of GovRd & *OldON66.
2020-05-16;(Canada) Ontario;ON 67;on.on067;Extended at northern end from the Iroquois Falls city boundery, to the intersection of Main Street/De Troyes Avenue (DeTroAve) in town.
2020-02-29;(Canada) Ontario;ON 4;on.on004;Extended at southern end from intersection with Sunningdale Road (SunRd_E) to the south along Sunningdale Road & Wonderland Road to ON 401 and absorbing the 'St. Thomas' segment down to end at ON 3.
2020-02-29;(Canada) Ontario;ON 4 (St. Thomas);on.on004;Merged into ON 4.
2019-12-15;(Canada) Ontario;ON 407;on.on407;Extended at eastern end from Exit 135 (ON 418) to the new interchange with ON 35/ON 115.
2019-12-15;(Canada) Ontario;ON 418;on.on418;Extended at southern end from Exit 8 (Taunton Road) to the south to a new interchange with ON 401.
2018-01-07;(Canada) Ontario;ON 407;on.on407;Extended at eastern end from Exit 127 (Harmony Road) to the new interchange with ON 418.
2018-01-07;(Canada) Ontario;ON 418;on.on418;Added Route
2017-06-11;(Canada) Ontario;ON 427;on.on427;Truncated at the southern end at Coules Court to the interchange just to the north at Evans Avenue.
2017-06-05;(Canada) Ontario;ON 417;on.on417;Extended westward from Exit 184 to Exit 187.
2017-06-05;(Canada) Ontario;ON 17;on.on017;Truncated from the former eastern end at ON 417 Exit 184 in Arnpior to the new ON 417 Exit 187. Section is now only ON 417.
2016-12-27;(Canada) Ontario;ON 8;on.on008;Extended at southern end from the interchange with RR 8 (King Street) to ON 401 along the Freeport Diversion
2016-06-24;(Canada) Ontario;ON 407;on.on407;Extended at eastern end from Exit 105 (Brock Road, former ON 7 intersection) to Exit 127 (Harmony Road)
2016-06-24;(Canada) Ontario;ON 412;on.on412;Added Route
2016-06-24;(Canada) Ontario;ON 7;on.on007;Removed from a now closed alignment just to the east of Brougham, and moved onto a new alignment to the north between the intersections of Mowbray Street (formerly Brock Road) and the old alignment of ON 7 (*OldON7)
2015-11-29;(Canada) Ontario;ON 401;on.on401;Extended westward from the former ending interchange with ON 3 (Exit 5) along a newly built freeway to an interchange with Ojibway Parkway (Exit 1)
2015-10-30;(Canada) Ontario;ON3 (Windsor);on.on003win;Route truncated between the old western end at the intersection Riverside Drive/Huron Church Road to the Ambassador Bridge
2015-10-30;(Canada) Ontario;ON3 (Windsor);on.on003win;Removed from a now demolished alignment and relocated to the immediate south in Windsor between the intersections with Outer Drive & Howard Avenue
2015-10-30;(Canada) Ontario;ON401;on.on401;Extended westward from the former ending interchange with ON 3 (Exit 10A) along a newly built freeway to an interchange with ON 3 (Exit 5)
2015-08-21;(Canada) Ontario;ON 28;on.on028;Removed from Peterborough Road 29 just NorthEast of Lakefield, ON, and relocated onto a brand new alignment SouthEast of Peterborough Road 29 between the closed intersection of *OldON28 and the intersection of Peterborough Road 6/Peterborough Road 29 (RR6/29).
2015-08-21;(Canada) Ontario;ON 404;on.on404;Extended northward from the interchange with Green Lane (Exit 53) to Woodbine Avenue (Exit 65).
2021-08-18;(Canada) Prince Edward Island;TCH;pe.tchpei;Removed from Millie Gamble Rd and two sections of demolished 2-lane road between points labeled *OldPE1_A and *OldPE1_B. Removed from demolished 2-lane road and relocated onto a wider radius curve to the northeast between points labeled *OldPE1_C and *OldPE1_D.
2021-08-18;(Canada) Prince Edward Island;PE 1;pe.pe001;Removed from Millie Gamble Rd and two sections of demolished 2-lane road between points labeled *OldPE1_A and *OldPE1_B. Removed from demolished 2-lane road and relocated onto a wider radius curve to the northeast between points labeled *OldPE1_C and *OldPE1_D.
2021-08-18;(Canada) Prince Edward Island;PE 10;pe.pe010;Extended eastward from the demolished old alignment of PE 1 to PE 1.
2021-08-18;(Canada) Prince Edward Island;PE 26;pe.pe026;West end removed from Stratford Rd between Georgetown Rd and PE 1 and relocated onto Georgetown Rd between Stratford Rd and PE 1. East end removed from a demolished beeline connection from a point labeled *OldPE26 to PE 1 and relocated onto a doglegged southern route to a right-angle connection with PE 1.
2021-08-18;(Canada) Prince Edward Island;PE 232;pe.pe232;Removed from a demolished segment of 2-lane road, Tryon Mill Rd and another segment of demolished 2-lane road between a point labeled *OldPE232 and a point on the demolished alignment of PE 1 west of Millie Gamble Rd and Tryon Mill Rd, and relocated onto a straightened alignment southwesterly from *OldPE232 to PE 1.
2021-08-18;(Canada) Prince Edward Island;PE 272;pe.pe272;West end removed from a demolished beeline connection from a point labeled *OldPE272 to PE 1 and relocated onto a doglegged northern route to a right-angle connection with PE 1.
2019-10-03;(Canada) Prince Edward Island;PE 1;pe.pe001;Removed from PE 27 and relocated onto a northwestern super-2 bypass of Cornwall between PE27's endpoints.
2019-10-03;(Canada) Prince Edward Island;TCH;pe.tchpei;Removed from PE 27 and relocated onto a northwestern super-2 bypass of Cornwall between PE27's endpoints.
2019-10-03;(Canada) Prince Edward Island;PE 27;pe.pe027;Route added.
2015-09-03;(Canada) Prince Edward Island;PE 116;pe.pe116;Extended East from PE 1 to PE 246
2015-09-03;(Canada) Prince Edward Island;PE 121;pe.pe121;Route added
2015-09-03;(Canada) Prince Edward Island;PE 125;pe.pe125;Extended East 0.15 mi. from PE 2 to end of pavement
2015-09-03;(Canada) Prince Edward Island;PE 146;pe.pe146;Extended West from PE 148 to PE 14
2015-09-03;(Canada) Prince Edward Island;PE 156;pe.pe156;Extended North from Back Settlement Road to PE14
2015-09-03;(Canada) Prince Edward Island;PE 162;pe.pe162;Truncated east end approx. 0.6 mi. from the Gulf of Saint Lawrence to PE 12
2015-09-03;(Canada) Prince Edward Island;PE 168;pe.pe168;Truncated north end from 46.732224°, -64.015950° to an unnamed road junction at 46.713234°, -64.033191°
2015-09-03;(Canada) Prince Edward Island;PE 183;pe.pe183;Route added
2015-09-03;(Canada) Prince Edward Island;PE 212;pe.pe212;Extended South approx. 1 mi. from PE 1 to change in pavement/centerline striping
2015-09-03;(Canada) Prince Edward Island;PE 236;pe.pe236;Extended South from Royalty Road to Brighton Road
2015-09-03;(Canada) Prince Edward Island;PE 241;pe.pe241;Extended West from New London Road to PE 224
2015-09-03;(Canada) Prince Edward Island;PE 343;pe.pe343;Extended North from PE 3 to PE 342
2015-09-03;(Canada) Prince Edward Island;PE 344;pe.pe344;Extended South from Portage Road to PE 311
2024-08-07;(Canada) Quebec;QC 339;qc.qc339;East end in L'Assomption relocated from closed Rang de L'Achigan segment to part of Boul. Hector-Papin north of QC 344
2024-08-07;(Canada) Quebec;QC 344;qc.qc344;In L'Assumption, waypoint QC 339 (not in use) relocated from closed intersection with Rang de L'Achigan, west to intersection with Boul. Hector-Papin
2024-07-15;(Canada) Quebec;TCH (Main);qc.tchmai;In St-Honore-de-Temiscuota, route relocated from Route Gerard-Roy north to new freeway segment (extended by 2.9 mi.), between *RteGerRoy_C and *RteGerRoy_D
2024-07-15;(Canada) Quebec;QC 185;qc.qc185;In St-Honore-de-Temiscuota, route relocated from Route Gerard-Roy north to new freeway segment (extended by 2.9 mi.), between *RteGerRoy_C and *RteGerRoy_D
2024-07-14;(Canada) Quebec;QC 389;qc.qc389;Route relocated in Baie-Comeau, south of RteTQLab_S, from Route Trans-Quebec-Labrador west to new QC 389 alignment
2024-07-14;(Canada) Quebec;QC 138 (Baie-Comeau);qc.qc138;Waypoint QC 389 relocated in Baie-Comeau from old south end of Route Trans-Quebec-Labrador (relabeled RteTQLab), west to new QC 389 south end
2022-12-08;(Canada) Quebec;QC 185;qc.qc185;In St-Honore-de-Temiscuota, route relocated from Route Gerard-Roy north to new freeway segment (extended by 1.3 mi), between *RteGerRoy_A and *RteGerRoy_B
2022-12-08;(Canada) Quebec;TCH (Main);qc.tchmai;In St-Honore-de-Temiscuota, route relocated from Route Gerard-Roy north to new freeway segment (extended by 1.3 mi.), between *RteGerRoy_A and *RteGerRoy_B
2021-12-23;(Canada) Quebec;QC 185;qc.qc185;In St-Honore-de-Temiscuota, route relocated from Route Gerard-Roy north to new freeway segment
2021-12-23;(Canada) Quebec;TCH (Main);qc.tchmai;In St-Honore-de-Temiscuota, route relocated from Route Gerard-Roy north to new freeway segment
2021-12-23;(Canada) Quebec;QC 291;qc.qc291;South end in St-Honore-de-Temiscuota relabeled to RteGerRoy (former QC 185), and new QC185 waypoint added at new QC 185 interchange
2021-07-15;(Canada) Quebec;A-720;;Route deleted, replaced with new Montreal segment of QC 136
2021-07-15;(Canada) Quebec;QC 136 (Montreal);qc.qc136mon;New route, replacing decommissioned A-720
2021-07-15;(Canada) Quebec;A-85;qc.a085;Route extended southeast about 11 km to new junction with QC 185 in Saint-Antonin
2021-07-15;(Canada) Quebec;QC 185;qc.qc185;North end of route truncated, to new intersection with extended A-85
2021-07-15;(Canada) Quebec;TCH (Main);qc.tchmai;Route relocated in Saint-Antonin from Route des Roches (former part of QC 185) to new A-85 extension, between closed *3Rang intersection and RteRoc_N
2020-12-17;(Canada) Quebec;A-410;qc.a410;Extended northeast from exit 13 to QC 108 east of Lennoxville
2020-11-21;(Canada) Quebec;QC 172;qc.qc172;West end in Alma relabeled from QC169 to AvPontNord, and new QC169 waypoint added at Alma eastern bypass
2020-04-29;(Canada) Quebec;A-440 ((East) Quebec);qc.a440equ;Extended west from exit 21 to intersection with Cote de la Potasse
2019-09-09;(Canada) Quebec;TCH (Kirkland Lake);qc.tchkir;Relocated in Rouyn-Noranda, from Rue Gamble and parts of Boul. Rideau and Av. Lariviere, north to part of QC 101 and new roadway, between waypoints BoulRid_E and AvLar_W
2019-08-18;(Canada) Quebec;A-30 (Becancour);qc.a030bec;East end truncated from Riviere Gentilly to Boul. Alphonse-Deshaies
2019-08-01;(Canada) Quebec;A-10;qc.a010;West end truncated from A-720 to exit 1 (Rue Wellington)
2019-08-01;(Canada) Quebec;A-740;qc.a740;South end truncated from QC 175 to Boul. Hochelaga
2019-08-01;(Canada) Quebec;A-955;qc.a955;South end truncated from Rue Principale to QC 122
2019-08-01;(Canada) Quebec;A-973;qc.a973;South end truncated from Rue Dorchester to Rue de la Croix-Rouge
2019-07-21;(Canada) Quebec;A-19;qc.a019;South end truncated from A-40 to Boul. Henri-Bourassa
2017-10-30;(Canada) Quebec;A-25;qc.a025;North end extended from sortie (exit) 46 to northern QC 125/QC 158 junction
2017-07-31;(Canada) Quebec;A-70;qc.a070;East end extended from closed intersection *ToQC170, to QC 170 east of Ch. de la Grande-Anse
2016-09-30;(Canada) Quebec;A-73;qc.a073;Route extended south from exit 61 near Beauceville, to QC 204 in St-Georges, absorbing former A-73 (St-Georges) segment
2016-09-30;(Canada) Quebec;A-73 (St-Georges);;Route deleted (folded into rest of A-73)
2015-11-12;(Canada) Quebec;A-20;qc.a020;Route extended east to new exit 543 (Route Drapeau) in Notre-Dame-des-Neiges
2015-11-11;(Canada) Quebec;A-73 (St-Georges);qc.a073stg;Extended north about 5 km to Notre-Dame-des-Pins
2015-10-30;(Canada) Quebec;A-410;qc.a410;Extended route east, to QC 108/143 (exit 13)
2015-08-18;(Canada) Quebec;A-35;qc.a035;Extended route south to St-Sebastien, with old waypoint 1 moved to new exit 38
2015-08-18;(Canada) Quebec;A-410;qc.a410;Extended route east to rue Belvidere (exit 10)
2015-08-18;(Canada) Quebec;A-5;qc.a005;Extended north to Wakefield, absorbing former A-5 (Wakefield)
2015-08-18;(Canada) Quebec;A-5 (Wakefield);;Route deleted, folded into rest of A-5
2015-08-18;(Canada) Quebec;A-73 (St-Georges);qc.a073stg;Route added
2015-08-18;(Canada) Quebec;A-85 (Notre-Dame-du-Lac);qc.a085not;Route added
2015-08-18;(Canada) Quebec;TCH (Main);qc.tchmai;East end moved to new A-85 freeway, from Ch. du Golf (OldQC185_D - exit 40), Ch. du Lac (OldQC185_C - *OldQC185_A), and Av. de la Madawaska (exit 14 - QC/NB border)
2019-11-03;(Canada) Saskatchewan;TCH (Main);sk.tchmai;In Regina, moved from Ring Rd., SK 6, and Victoria Ave. to new Regina Bypass, between exits 258 and 242
2019-11-03;(Canada) Saskatchewan;SK 1;sk.sk001;In Regina, moved from Ring Rd., SK 6, and Victoria Ave. to new Regina Bypass, between exits 258 and 242
2019-11-03;(Canada) Saskatchewan;SK 11;sk.sk011;Moved from SK 6 and new SK 11A on east side of Regina to new Regina Bypass, south of exit 19
2019-11-03;(Canada) Saskatchewan;SK 11A;sk.sk011a;New route, including former part of SK 11
2019-11-03;(Canada) Saskatchewan;SK 11 (Regina Bypass);;Route deleted (merged imto main SK 11 route)
2019-10-11;(Canada) Saskatchewan;SK7;sk.sk007;Relocated in Vanscoy (SW of Saskatoon) to new northern bypass, between OldSK7_W and OldSK7_E
2018-01-24;(Canada) Saskatchewan;TCH (Yellowhead);sk.tchyel;Moved from Old Highway 16 in Clavet (SE of Saskatoon) north to new highway opened in late 2016, between Forreiter Rd. (Range Road 3040) and Lehr Rd.
2018-10-26;(China) Heilongjiang;AH6;chnhl.ah006;New Route
2018-10-26;(China) Heilongjiang;AH31;chnhl.ah031;New Route
2018-10-26;(China) Heilongjiang;AH33;chnhl.ah033;New Route
2022-12-13;(China) Hong Kong;Rt6;hkg.rt006;Route added
2019-01-24;(China) Hong Kong;Rt4;hkg.rt004;Route removed from Victoria Park Road, Gloucester Road, Harcourt Road and Connaught Road Central and relocated onto Central-Wan Chai Bypass Tunnel between exits 6A and 8 (formerly 12C)
2018-10-26;(China) Jilin;AH31;chnjl.ah031;New Route
2018-10-26;(China) Jilin;AH32;chnjl.ah032;New Route
2018-10-26;(China) Liaoning;AH1;chnln.ah001;New Route
2018-10-26;(China) Liaoning;AH31;chnln.ah031;New Route
2018-10-26;(China) Liaoning;AH35 (Chaoyang);chnln.ah035;New Route
2018-10-26;(China) Liaoning;AH35 (Jianpingzhen);chnln.ah035jia;New Route
2018-10-26;(China) Nei Mongol;AH1;chnnm.ah003;New Route
2018-10-26;(China) Nei Mongol;AH6;chnnm.ah006;New Route
2018-10-26;(China) Nei Mongol;AH32;chnnm.ah032;New Route
2018-10-26;(China) Nei Mongol;AH35 (Linxi);chnnm.ah035;New Route
2018-10-26;(China) Nei Mongol;AH35 (Sijiazi);chnnm.ah035sij;New Route
2022-01-23;(China) Xianjiang;AH9;chnxj.ah009;Route added
2024-09-03;Croatia;D318;hrv.d318;New Route
2024-05-28;Croatia;D553;hrv.d553;New Route
2024-05-28;Croatia;D403;;Route deleted
2024-05-28;Croatia;D680;hrv.d403;Route renamed to D403
2024-04-08;Croatia;D1;hrv.d001;Routing relocated from through Turanj and Jelaši, and onto new bypass from Mostanje (PriVelHoj_S) to north of Cerovac (CerVuk_W)
2024-04-08;Croatia;D6;hrv.d006;Routing relocated from through Turanj and Jelaši, and onto new bypass from Mostanje (PriVelHoj_S) to north of Cerovac (CerVuk_W)
2024-02-24;Croatia;D403;hrv.d403;Routing clarified just north of D8
2024-02-24;Croatia;D680;hrv.d680;New Route
2023-12-25;Croatia;D8;hrv.d008;Route truncated at south end from the BIH border to Duboka (D236 now), and reextended onto Pelješac bridge (former D674) to MNE border
2023-12-25;Croatia;D8 (Dubrovnik);hrv.d008;Route deleted (merged into main route or D237 now)
2023-12-25;Croatia;D236;hrv.d236;New Route (former D8)
2023-12-25;Croatia;D237;hrv.d237;New Route (former D8)
2023-12-25;Croatia;D674;hrv.d008;Route deleted (D8 now)
2023-04-20;Croatia;D674;hrv.d008;Route extended at east end from D416 to D8 (Ston bypass)
2023-02-23;Croatia;D110;hrv.d110;Route relocated at east end from old to new ferry terminal in Tkon
2023-02-23;Croatia;D112;hrv.d112;Route relocated from through Grohote and onto northern bypass
2023-02-23;Croatia;D114;hrv.d114;Route truncated at est end from the town center to L67236 in Milna
2023-02-23;Croatia;D116;hrv.d116;Route extended at west end from from Domovinskog rata to Ulica Vlade Stošića in Hvar
2023-02-21;Croatia;D114;hrv.d114;Route relocated from through Ložišća and onto bypass from west of Ložišća to Z6188
2023-02-20;Croatia;D422;hrv.d422;Route extended at east end from the airport to Z6040
2023-02-19;Croatia;D218;hrv.d218;Route truncated at south end from D1 (Bruvno) to Donji Lapac, and reextened to D1 (Bjelopolje)
2023-02-18;Croatia;D34;hrv.d034;Route relocated from through Petrijevci and onto bypass
2023-02-16;Croatia;D517;hrv.d517;Route extended at south end from Belišće (D34) to Koška (D2)
2023-02-15;Croatia;D232;hrv.d232;Route truncated at west end from west of Galdovo (D36) to Topolovac and reextended to Novo Selo Palanječko (D36)
2023-02-12;Croatia;D36;hrv.d036;Route extended at east end from A3 to Popovača
2023-02-12;Croatia;D43;hrv.d043;Route extended at west end from A3 exit 12 (Ivanić-Grad) to A3 exit 11 (Dugo Selo)
2023-02-09;Croatia;D24;hrv.d024;Route truncated at west end from D14 to D29 (Z2264 and Z2198 now)
2023-02-05;Croatia;D3;hrv.d003;Route removed from A4 and relocated onto parallel road from exit 1 to exit 2
2023-02-05;Croatia;D78;hrv.d078;New Route
2023-02-05;Croatia;D99;hrv.d099;New Route
2023-02-05;Croatia;D100;hrv.d100;Route extended at south end from D130 to Veli Lošinj
2023-02-05;Croatia;D102;hrv.d102;Route truncated at south end from Baška harbor to Jurandvor
2023-02-05;Croatia;D125;hrv.d125;New Route
2023-02-05;Croatia;D126;hrv.d126;Route truncated at west end from Trogir to south of new Hrvatskih branitelja bridge, and reextended onto the bridge and beyond to D8
2023-02-05;Croatia;D129;hrv.d129;New Route
2023-02-05;Croatia;D130;hrv.d130;New Route
2023-02-05;Croatia;D131;hrv.d131;New Route
2023-02-05;Croatia;D225;hrv.d225;Route relocated from through Zaprešić and onto new southern bypass between Ulica kardinala Alojzija Stepinca and Obrubići
2023-02-05;Croatia;D233 (Prišlin);hrv.d233pri;New Route
2023-02-05;Croatia;D233 (Hum na Sutli);hrv.d233;New Route
2023-02-05;Croatia;D304;;Route deleted
2023-02-05;Croatia;D315;;Route deleted
2023-02-05;Croatia;D317;hrv.d317;New Route
2023-02-05;Croatia;D426;hrv.d426;New Route
2023-02-05;Croatia;D427;;Route deleted
2023-02-05;Croatia;D430;hrv.d430;New Route
2023-02-05;Croatia;D432;hrv.d432;New Route
2023-02-05;Croatia;D434;hrv.d434;New Route
2023-02-05;Croatia;D545;hrv.d545;New Route
2023-02-05;Croatia;D546;hrv.d546;New Route
2023-02-05;Croatia;D547;hrv.d547;New Route
2023-02-05;Croatia;D548;hrv.d548;New Route
2023-02-05;Croatia;D549;hrv.d549;New Route
2022-12-02;Croatia;A5;hrv.a005;Route extended at north end from exit 3 (Osijek) to exit 2 (Beli Manastir)
2022-12-02;Croatia;E73;hrv.e73;Route relocated from D2 and D7 through Osijek and onto new motorway A5 from exit 3 to exit 2 and onto D517 northern bypass of Belie Manastir
2022-10-15;Croatia;D517;hrv.d517;Route relocated at east end from through Beli Manastir and onto new northern bypass from west of Beli Manastir to D7
2022-07-27;Croatia;D674;hrv.d008;New Route
2021-10-01;Croatia;A5;hrv.a005;Route extended at south end from exit 7 to BIH border
2021-10-01;Croatia;E73;hrv.e73;Route truncated at south end from BIH border (at Samac) to A3/A5 interchange, and reextended to BIH border (on A5 at Svilaj)
2020-10-24;Croatia;A1;hrv.a001;Route truncated at south end from transition to A10 to exit 31, Ploče interchange (A10 now) and reextened to Karamatići toll station (former D425)
2020-10-24;Croatia;A1;hrv.a010;Route extended at west end from transition to A1 to Ploče interchange (former A1)
2020-10-24;Croatia;D425;hrv.d425;Route truncated at north end from A1/A10 interchange Ploče to Karamatići toll station (A1 now)
2019-10-27;Croatia;D1;hrv.d001;Route relocated from through the villages east of A2 and onto new bypass west of A2 from Sveti Križ Začretje (Z2159) to Zabok (Z2264)
2019-10-27;Croatia;D14;hrv.d014;Route extended at east end from exit Bedekovčina (Z2198) to exit Zlatar Bistrica (D29)
2019-10-27;Croatia;D24;hrv.d024;Route truncated at west end from D1 to D14 exit Bedekovčina
2019-10-17;Croatia;D2;hrv.d002;Route relocated from through Virovitica and onto western and southern (urban) bypass from D5 (North) to Ulica Stjepana Radica/Vinkovacka junction
2019-04-17;Croatia;D75;hrv.d075;Route relocated between Umag town and Umag A9 exit, old route is Z5214 now, new route is former Z5003
2019-04-17;Croatia;D235;hrv.d235;New Route
2019-04-17;Croatia;D403;hrv.d403;New Route
2019-04-17;Croatia;D403;hrv.d413;Route relocated from through Ploče and onto southern bypass to D425
2019-04-17;Croatia;D403;hrv.d425;Route extended at south end from D8 to D413
2019-04-16;Croatia;D12;hrv.d012;New Route
2019-04-16;Croatia;D56;hrv.d056;Route extended at west end from D33 to D424
2019-04-16;Croatia;D502;hrv.d502;Route truncated at west end from D424 to D56 (D56 now)
2019-04-16;Croatia;D537;hrv.d537;Route extended at north end from Z4223 to D46
2019-04-16;Croatia;D539;hrv.d539;New Route
2019-04-16;Croatia;D540;hrv.d540;New Route
2019-04-16;Croatia;D541;hrv.d541;New Route
2019-04-16;Croatia;D543;hrv.d543;New Route
2019-04-16;Croatia;D544;hrv.d544;New Route
2017-12-20;Croatia;D538;hrv.d538;Route extended at north end from Z4005 to D5 Virovitica bypass
2015-07-28;Croatia;A11;hrv.a011;Route extended at north end from exit 4 to exit 1
2015-07-28;Croatia;A11;hrv.a011;Route extended at south end from exit 5 to exit 6
2015-07-28;Croatia;A2;hrv.a002;Route extended at north end from exit 1 to Slovenian border
2015-07-28;Croatia;A5;hrv.a005;Route extended at south end from exit 6 to exit 7
2015-07-28;Croatia;A7;hrv.a007;Route extended at south end from exit 12 to D8
2024-08-09;Cyprus;A22;cyp.a022;Route added
2022-09-05;Cyprus;A1;cyp.a001;Route extended at north end from E116 to B18 and at south end from exit 28a to E147/E604
2022-09-05;Cyprus;A2;cyp.a002;Route extended at south end from A3 to B2
2022-09-05;Cyprus;A9;cyp.a009;Route extended at north end from exit 92 to B18
2022-09-05;Cyprus;B1;cyp.b001;Route truncated at north end from B18 to A1 exit 2
2022-09-05;Cyprus;B2;cyp.b002;Route truncated at north end from B1 to F201 and extended at north end from F201 to B1 (at a different location)
2022-09-05;Cyprus;B4;cyp.b004;Route extended at south end from F405 to E336
2022-09-05;Cyprus;B6;cyp.b006;Route truncated at east end from B1 to E147 and extended at east end from E147 to E114
2022-09-05;Cyprus;B8;cyp.b008;Route truncated at south end from B1 to E147
2022-09-05;Cyprus;B9;cyp.b009;Route truncated at east end from B18 to E903
2022-09-05;Cyprus;B10 (Paliometocho);cyp.b010;Route truncated at east end from UN Buffer Zone to Nicosia Airport and at west end from B9 to A9
2022-09-05;Cyprus;B10 (Lefkosa);cyp.b010lef;Route added (formerly B18)
2022-09-05;Cyprus;B13;cyp.b013;Route extended at east end from E1701 to UN Buffer Zone
2022-09-05;Cyprus;B16;cyp.b016;Route truncated at west end from B17 to E130 and at east end from UN Buffer Zone to E1701
2022-09-05;Cyprus;B17;cyp.b017;Route truncated at north end from 'Sat' to B18 and at south end from UN Buffer Zone to E115
2022-09-05;Cyprus;B18;cyp.b018;Route reentered (old route now B10 (Lefkosa))
2022-09-05;Cyprus;B19;cyp.b019;Route added
2022-09-05;Cyprus;B22;cyp.b022;Route extended at east end from B1 to E119 and at west end from A9 to U280
2022-09-05;Cyprus;D20 (Hamitkoy);cyp.d020ham;Route extended at west end from 3Cad to D25 and at east end from LF01 to LF05
2022-09-05;Cyprus;D30;cyp.d30;Route extended at west end from to the UN Buffer Zone
2022-09-05;Cyprus;D30 (Gemikonagi);cyp.d30;Route merged into main route
2022-09-05;Cyprus;D65;cyp.d65;Route added
2015-07-17;Cyprus;A9;cyp.a009;Route extended at west end from F919 to B9
2024-10-09;Czechia;I42 (Rokytova);cze.i042;New route
2024-10-09;Czechia;II347 (Brno);cze.ii641;Segment south of I42 renamed to II641, segment between I42 and Bílovice nad Svitavou renamed to II383, segment north of Bílovice nad Svitavou downgraded
2024-10-09;Czechia;II383;cze.ii641;Segment south of I42 renamed to II641, segment between I42 and Bílovice nad Svitavou renamed to II383, segment north of Bílovice nad Svitavou downgraded
2024-10-09;Czechia;II641;cze.ii641;New route (former II347)
2024-10-09;Czechia;D4 (Dobříš);cze.d004;Route extended at south end from exit 45 to exit 54 (former I4)
2024-10-09;Czechia;I4 (Milín);cze.i004mil;Route truncated at north end from exit 45 to exit 54 (D4 now)
2024-10-09;Czechia;II604 (Milín);cze.ii604mil;New Route (Note: This is not the old I4 but just a parallel road)
2024-09-09;Czechia;E67;cze.e67;Route relocated from through Jaroměř and onto D11 and I33 between D11's exit 108 to II307
2024-09-09;Czechia;I33;cze.i033;Route truncated at west end from D11's exit 108 to II307 (through Jaroměř), and reextended to D11's exit 113 (Jaroměř northern bypass)
2024-09-09;Czechia;I37 (Trutnov);cze.i037tru;Route truncated at south end from old I33 in Jaroměř to new I33 Jaroměř northern bypass
2024-09-03;Czechia;I27 (Klatovy);cze.i027kla;New Route
2024-08-27;Czechia;D6 (Kladno);cze.d006;Route extended at west end from Krušovice to Nesuchyně
2024-08-27;Czechia;E48;cze.e48;Route relocated from through Krupá and onto new bypass between Krušovice and Nesuchyně
2024-08-27;Czechia;I6 (Nové Strašecí);cze.i006;Route truncated at east end from Krušovice to Nesuchyně (II606 now)
2024-08-27;Czechia;II606 (Stochov);cze.ii606;Route extended at west end from Krušovice to Nesuchyně (former I6)
2024-08-27;Czechia;II322 (Dašice);cze.ii322das;Route relocated from through Dašice and onto bypass between II340 and III32254
2024-07-17;Czechia;II156 (Main);cze.ii156;Route relocated from through Žár and onto new bypass
2024-02-11;Czechia;I11;cze.i011;Route relocated from through Bludov (II368 now) and onto new bypass between Chromeč and Postřelmov, and further onto concurrency with I44
2024-02-11;Czechia;II368;cze.ii368;Route extended from Rovensko to Šumperk
2023-12-25;Czechia;I12;cze.i012;Route truncated at west end from D0 to Praha city boundary
2023-12-25;Czechia;II606 (Hostivice);cze.ii606hos;Route truncated at east end from Karlovarská to Praha city boundary
2023-12-24;Czechia;II603 (Kamenice);cze.ii603kam;Route extended at north end from Vestecká spojka to Praha city boundary
2023-12-24;Czechia;II605 (Beroun);cze.ii605;Route clarified in the center of Rokycany (via Třebízského and Soukenická)
2023-12-24;Czechia;II605B;cze.ii605b;New Route
2023-12-24;Czechia;II608 (Kralupy nad Vltavou);cze.ii608;Route extended at south end from Zdiby to Praha city boundary
2023-12-24;Czechia;II610 (Benátky nad Jizerou);cze.ii610;Route truncated at west end from Vinoř to Praha city boundary
2023-12-22;Czechia;I50 (Holubice);cze.i050hol;New Route
2023-12-22;Czechia;II425 (Hustopeče);cze.ii425hus;New Route
2023-12-22;Czechia;II465;cze.ii465;Route extended at east end from I11 exit Krásné Pole to junction with II469 in Poruba
2023-12-21;Czechia;D48 (Bělotín);cze.d048bel;Route extended at east end from exit 3 to exit 8
2023-12-21;Czechia;I44;cze.i044;Route relocated from through Bludov and onto new bypass from north of Postřelmov to west of Šumperk
2023-12-21;Czechia;II371;cze.ii371;Route relocated at south end from Okružní III and onto Křivánkova in Jevíčko between II36612 and II372
2023-12-21;Czechia;II374;cze.ii374;Route relocated from through Rájec and onto western bypass between roundabout north of Rájec and II377
2023-12-21;Czechia;II385;cze.ii385;Route relocated from through Čebín and onto southern bypass from east of Čebín to III38526
2023-12-20;Czechia;II331;cze.ii331;Route relocated from through Stará Boleslav and onto northern bypass between Mělnická south of Borek and D10
2023-12-19;Czechia;I43;cze.i043;Route relocated from through Lačnov, Svitavy and Lány, and onto eastern bypass from I35 at Opatovec to III36625 at Hradec nad Svitavou
2023-12-19;Czechia;E461;cze.e461;Route relocated from through Lačnov, Svitavy and Lány, and onto eastern bypass from I35 at Opatovec to III36625 at Hradec nad Svitavou
2023-12-19;Czechia;II366;cze.ii366;Route relocated from through Lány and onto eastern bypass from Brněnská in Svitavy to III36625 at Hradec nad Svitavou
2023-12-18;Czechia;II303;cze.ii303;Route extended at north end from Janovičky to the Polish border
2023-12-18;Czechia;II321;cze.ii321;Route relocated in Solnice from southern bypass and onto Domašínská between III32118 and I14
2023-12-18;Czechia;II322 (Kolín);cze.ii322;Route relocated from through Kojice and onto northern bypass from north of Kojice to east of Kojice
2023-12-17;Czechia;D7 (Louny);cze.d007lou;Route extended at east end from exit 45 to east of Panenský Týnec
2023-12-17;Czechia;D7 (Panenský Týnec);cze.d007lou;Route merged into Louny section
2023-12-17;Czechia;I7 (Postoloprty);cze.i007pos;Route truncated at east end from temporary end of D7 west of Toužetín to temporary end of D7 east of Březno (D7 or II607 now)
2023-12-17;Czechia;II607 (Toužetín);cze.ii607tou;Route extended at west end from temporary end of D7 west of Toužetín to D7's exit 45 (former I7)
2023-12-17;Czechia;II230;cze.ii230;Route relocated from Stodská, and onto Plzeňská and new alignment south-east of Stříbro
2023-12-17;Czechia;II267;cze.ii267;Route truncated at norht end from the German border to II266 in Lobendava
2023-12-17;Czechia;II272;cze.ii272;Route relocated from through Starý Vestec and onto western bypass north of II611
2023-12-17;Czechia;II286;cze.ii286;Route relocated from Jičínská and Revoluční through Jičín, and onto eastern bypass from north of Valdice
2023-12-16;Czechia;I38 (Main);cze.i038;Route relocated from through Havlíčkův Brod, and onto eastern bypass between Pražská and Jihlavská
2023-12-16;Czechia;II150 (Přerov);cze.ii150;Route relocated from Blahoslavova, Vápenice and Svatoplukova (II150a now), and onto Palackého, Wolkerova and Újezd in Prostějov
2023-12-16;Czechia;II150a;cze.ii150a;New Route
2023-12-16;Czechia;II181;cze.ii181;Route truncated at west end from Svatava to II210
2023-12-16;Czechia;II195;cze.ii195;Route relocated from through Poběžovice and onto eastern bypass between Mariánská and Slovanská
2023-12-16;Czechia;II196;cze.ii196;Route truncated at west end from Slovanská to Nádražní in Poběžovice (II195 now)
2023-12-16;Czechia;II199;cze.ii199;Route relocated from through Svobodka and Světce (III19920 now), and onto route via Halže between III19920 and II198
2023-12-16;Czechia;II367;cze.ii367;Route truncated at west end from Blahoslavova to Újezd in Prostějov (II150 now)
2023-12-13;Czechia;II135;cze.ii135;Route relocated from Tyršova (now III13527) in Soběslav and onto bypass betwen III13527 and D3
2023-12-13;Czechia;II138;cze.ii138;Route extended at north end from II121 to Hrad Zvíkov parking
2023-12-13;Czechia;II144;cze.ii144;Route relocated from through Vlachovo Březí and onto eastern bypass between Pražská and Husova
2023-12-11;Czechia;II128;cze.ii128;Route relocated from through Lukavec and onto eastern bypass
2023-12-10;Czechia;II101;cze.ii101;Route relocated from through Jesenice and onto southern bypass between Zbraslavská and Říčanská
2023-12-10;Czechia;II101;cze.ii101;Route relocated from through Zápy and onto western bypass between south of D10 interchange and south of Zápy
2023-12-10;Czechia;II106;cze.ii106;Route extended at east end from I3 to II112 in Benešov
2023-12-10;Czechia;II109;cze.ii109;Route truncated at west end from I3 to II603
2023-12-10;Czechia;II245;cze.ii245;Route relocated in Český Brod from Žitomířská and onto Komenského and Žižkova between Komenského and Suvorovova
2023-12-10;Czechia;II333;cze.ii333;Route truncated at north end from II611 to II324
2023-12-09;Czechia;I11;cze.i011;Route truncated at west end from I32 east of Poděbrady to II611 west of Plotiště nad Labem (II611 now), and reextended to D11's exit 95
2023-12-09;Czechia;I33;cze.i033;Route truncated at west end from I11/I35 west of Plotiště nad Labem to south of Jaroměř (II611 now), and reextended to D11's exit 108
2023-12-09;Czechia;I36;cze.i036;Route truncated at west end from II611 iin Nové Město nad Cidlinou to I37 in Pardubice (II211 now)
2023-12-09;Czechia;I56 (Dolní Benešov);cze.i056dol;New Route (mostly former I56 but extended to II470 in Ostrava)
2023-12-09;Czechia;I56 (Ostrava);cze.i056;Route truncated at north end from I46 in Opava to D1 in Ostrava
2023-12-09;Czechia;I67;cze.i067;Route relocated from through Karviná and onto bypass between I59 and tř. 17. listopadu
2023-12-09;Czechia;II211;cze.ii211;New Route (former I36)
2023-12-09;Czechia;II464;cze.ii464;Route relocated from (now) III4809 and onto alignment via I56 concurrency between Sedlnice and Skotnice
2023-12-09;Czechia;II471;cze.ii471;Route extended at north end from I67 to the Polish border
2023-12-09;Czechia;II475;cze.ii475;Route extended at east end from I67 to the Polish border
2023-12-09;Czechia;II611;cze.ii611;Route extended at east end from I32 east of Poděbrady to I37 north of Jaroměř
2023-12-09;Czechia;E65;cze.e67;Route relocated from I11 and I33, and onto D11 from exit 90 to 108
2023-12-08;Czechia;I41;cze.i041;Route relocated at north end from Plotní, and onto Dornych between I42 and Za Mostem
2023-12-08;Czechia;I47 (Hranice na Moravě);cze.i047;Route truncated at east end from I57 east of Fulnek to II441 south of Odry (II647 now)
2023-12-08;Czechia;I47 (Hulín);cze.i047hul;New Route (former II432 and II435)
2023-12-08;Czechia;I49;cze.i049;Route relocated from through Lhotsko and onto bypass from west of Lhotsko to north of Lhotsko
2023-12-08;Czechia;I57;cze.i057;Route relocated from through Krnov and onto bypass betweeen Albrechtická and Opavská
2023-12-08;Czechia;II432 (Hulín);cze.ii432hul;New Route
2023-12-08;Czechia;II432 (Kyjoy);cze.ii432;Route truncated at north end from II438 in Holešov to II367 in Kroměříž (partially I47 and II367 now)
2023-12-08;Czechia;II435 (Kroměříž);cze.ii435kro;Route truncated at south end from III4327 east of Kroměříž to transition from I47 north of Kroměříž
2023-12-08;Czechia;II642;cze.ii642;New Route
2023-12-08;Czechia;II647;cze.ii647;Route extended at west end from I57 east of Fulnek to II441 south of Odry (former I47)
2023-12-07;Czechia;I36;cze.i036;Route relocated onto new alignment between D35 and I35 west of Holice
2023-12-07;Czechia;II379;cze.ii379;Route truncated at west end from II602 to Rasovna north of Velká Bíteš, and reextended to I37
2023-12-07;Czechia;II613;cze.ii613;Route relocated in Ústí nad Labem from direct ramp north of Most Dr. E. Beneše, and onto Předmostí and concurrency with I30
2023-12-06;Czechia;II230;cze.ii230;Route relocated from Chotěnov-Skláře, and onto I21 and Mariánské Lázně bypass from II2114 in Chodová Planá to II2114 south of Mariánské Lázně
2023-12-03;Czechia;I14 (Liberec);cze.i014lib;Route extended at east end from Lučanská to Československé armády in Lukášov
2023-12-03;Czechia;I15;cze.i015;Route relocated from through Kravaře and onto bypass from II263 to Sezímky
2023-12-03;Czechia;I19;cze.i019;Route relocated from through Rouštany and onto bypass from west of Rouštany to III03422
2023-12-03;Czechia;I34;cze.i034;Route relocated from through Rouštany and onto bypass from west of Rouštany to east of Rouštany
2023-12-03;Czechia;I62;cze.i062;Route relocated in Děčín from Ústecká, and onto Práce between Ústecká-Práce junction and III25852
2023-12-03;Czechia;E442;cze.e442;Route relocated in Děčín from Ústecká, and onto Práce between Ústecká-Práce junction and III25852
2023-12-03;Czechia;II175;cze.ii175;Route truncated at north end from I19 to II175a (II175a now), and reextended to I19