-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathlegal_default_speeds.json
10324 lines (10324 loc) · 256 KB
/
legal_default_speeds.json
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
{
"meta": {
"license": "Creative Commons Attribution-ShareAlike 2.0 license",
"licenseUrl": "https://wiki.openstreetmap.org/wiki/Wiki_content_license",
"revisionId": "2607051",
"source": "https://wiki.openstreetmap.org/wiki/Default_speed_limits",
"timestamp": "2023-10-21T00:42:00"
},
"roadTypesByName": {
"Alabama: rural highway": {
"filter": "{rural} and ref~\"(US|AL|I).*\"",
"fuzzyFilter": "{rural} and highway~trunk|trunk_link|primary|primary_link",
"relationFilter": "type=route and route=road and network~\"US:(AL|US)(:.*)?\""
},
"Alabama: rural highway with 2 or more lanes in each direction": {
"filter": "{Alabama: rural highway} and {road with 2 or more lanes in each direction}"
},
"Albania: Rrug\u00eb interurbane kryesore": {
"filter": "{rural} and {dual carriageway} and lanes>=2"
},
"Alberta: Provincial highway": {
"filter": "ref"
},
"Alberta: Urban provincial highway": {
"filter": "{urban} and ref"
},
"Alberta: Urban road": {
"filter": "{urban} and !ref"
},
"Andorra: Carretera general": {
"filter": "ref~CG.*",
"fuzzyFilter": "highway=primary"
},
"Andorra: Carretera secund\u00e0ria": {
"filter": "ref~CS.*",
"fuzzyFilter": "highway=secondary"
},
"Argentina: Avenida": {
"filter": "{urban} and highway~trunk|trunk_link|primary|primary_link|secondary|secondary_link"
},
"Argentina: Calle": {
"filter": "{urban} and highway~tertiary|tertiary_link|unclassified|residential|living_street|pedestrian|service|track"
},
"Argentina: Semiautopista": {
"filter": "highway~trunk|trunk_link and {motorroad}"
},
"Benin: Route nationale": {
"filter": "ref~\"RN(IE)?.*\"",
"relationFilter": "type=route and route=road and name~\"RN(IE)?.*\""
},
"Brasil: Via arterial": {
"fuzzyFilter": "{urban} and highway~primary|primary_link and {has shoulder}"
},
"Brasil: Via coletora": {
"fuzzyFilter": "{urban} and highway~secondary|secondary_link|tertiary|tertiary_link"
},
"Brasil: Via de tr\u00e2nsito r\u00e1pido": {
"fuzzyFilter": "{urban} and (highway~primary|primary_link and {has shoulder} or highway~trunk|motorway)"
},
"Brasil: Via local": {
"fuzzyFilter": "{urban} and highway~service|residential|unclassified"
},
"California: alley": {
"filter": "highway=service and (!width or width<=7.6)"
},
"Colorado: freeway or expressway with 2 or more lanes in each direction": {
"filter": "({motorway} or {expressway}) and {road with 2 or more lanes in each direction}"
},
"Croatia:brza cesta": {
"filter": "highway~trunk|trunk_link and ref~B.*"
},
"District of Columbia: alley": {
"filter": "highway=service and (!width or width<9.144)"
},
"Ecuador: Via perimetral": {
"fuzzyFilter": "{urban} and highway~trunk|trunk_link and ref~E.*"
},
"Egypt: \"\u0627\u0644\u0637\u0631\u0642 \u0627\u0644\u0633\u0631\u064a\u0639\u0629 \u0623\u0648 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0627\u0644\u062a\u0649 \u062a\u0631\u0628\u0637 \u0627\u0644\u0645\u062d\u0627\u0641\u0638\u0627\u062a \u060c \u0648\u0627\u0644\u062a\u0649 \u062a\u062a\u0628\u0639 \u0627\u0644\u0645\u062d\u0644\u064a\u0627\u062a \u0623\u0648 \u0627\u0644\u0647\u064a\u0626\u0629 \u0627\u0644\u0639\u0627\u0645\u0629 \u0644\u0644\u0637\u0631\u0642 \u0648\u0627\u0644\u0643\u0628\u0627\u0631\u0649\"": {
"fuzzyFilter": "{rural} and highway~primary|primary_link|secondary|secondary_link"
},
"Egypt: \"\u0627\u0644\u0637\u0631\u0642 \u0627\u0644\u0635\u062d\u0631\u0627\u0648\u064a\u0629\"": {
"fuzzyFilter": "{rural} and highway~trunk|trunk_link|motorway|motorway_link"
},
"Flanders:Jaagpad": {
"filter": "designation=towpath"
},
"Guatemala: Arteria principal": {
"filter": "{urban} and ((!{oneway} and lanes>=3 and width>=10.5) or ({oneway} and lanes>=2 and width>=7))",
"fuzzyFilter": "{urban} and highway~primary|primary_link"
},
"Guatemala: Arteria secundaria": {
"filter": "{urban} and ((!{oneway} and lanes>=3 and width>=9) or ({oneway} and lanes>=2 and width>=6))",
"fuzzyFilter": "{urban} and highway~secondary|secondary_link"
},
"Guatemala: Camino": {
"filter": "{unpaved road}"
},
"Guatemala: Carretera principal": {
"filter": "{rural} and lanes>=2 and width>=7 and {has shoulder}",
"fuzzyFilter": "highway~primary|primary_link"
},
"Guatemala: Carretera secundaria": {
"filter": "{rural} and lanes>=2 and width>=5.5",
"fuzzyFilter": "highway~secondary|secondary_link|tertiary|tertiary_link|unclassified"
},
"Guatemala: V\u00eda local": {
"filter": "{urban} and width>=5",
"fuzzyFilter": "{urban} and highway~tertiary|tertiary_link|unclassified"
},
"Guatemala: V\u00eda residencial": {
"filter": "{urban} and width>=3 and width<5.5",
"fuzzyFilter": "{urban} and highway~service|residential"
},
"Guatemala: V\u00eda r\u00e1pida": {
"filter": "{rural} and {has shoulder} and (({oneway} and lanes>=2 and width>=7) or (!{oneway} and lanes>=4 and width>=14))",
"fuzzyFilter": "highway~trunk|trunk_link"
},
"Guatemala: V\u00eda r\u00e1pida urbana": {
"filter": "{urban} and {has shoulder} and (({oneway} and lanes>=2 and width>=7) or (!{oneway} and lanes>=4 and width>=14))",
"fuzzyFilter": "{urban} and highway~trunk|trunk_link"
},
"Guyana: Timehri Field / Linden Highway": {
"fuzzyFilter": "{rural} and highway~primary|primary_link"
},
"Idaho: State highway": {
"filter": "ref~\"(ID|SH|US).*\"",
"relationFilter": "type=route and route=road and network~\"US:(ID|US)(:.*)?\""
},
"Iowa: suburban district": {
"filter": "{urban} and !{school zone} and !{residential district} and !{business district}"
},
"Ireland: National road": {
"filter": "ref~N.* or (highway~trunk|trunk_link|primary|primary_link and (!ref or ref~N.*))"
},
"Italy: Autostrada": {
"filter": "{motorway}"
},
"Italy: Strada extraurbana local": {
"filter": "{rural}"
},
"Italy: Strada extraurbana principale": {
"filter": "{rural} and highway~trunk|trunk_link and {dual carriageway} and lanes>=2 and {has shoulder}"
},
"Italy: Strada extraurbana secondaria": {
"filter": "{rural} and {single carriageway} and lanes>=2"
},
"Kansas: state highway": {
"filter": "ref~\"(KS|US).*\"",
"relationFilter": "type=route and route=road and network~\"US:(KS|US)(:.*)?\""
},
"Malawi: rural highway": {
"filter": "{rural} and surface~asphalt|concrete and width>5.5"
},
"Mauritius: A road": {
"filter": "ref~A.*",
"fuzzyFilter": "highway~primary|primary_link"
},
"Mauritius: B road": {
"filter": "ref~B.*",
"fuzzyFilter": "highway~secondary|secondary_link"
},
"Mauritius: C road": {
"filter": "ref~C.*",
"fuzzyFilter": "highway~tertiary|tertiary_link"
},
"Mauritius: M road": {
"filter": "ref~M.*"
},
"Nebraska: State expressway or super-two highway": {
"filter": "{expressway} and {Nebraska: State highway}"
},
"Nebraska: State highway": {
"filter": "ref~\"(NE|US).*\"",
"relationFilter": "type=route and route=road and network=US:NE"
},
"Newfoundland and Labrador: Trans-Canada highway": {
"filter": "ref=1"
},
"Nicaragua: Carretera": {
"fuzzyFilter": "{rural} and (name~Carretera.* or highway~trunk|trunk_link|primary|primary_link|secondary|secondary_link|tertiary|tertiary_link)"
},
"Niger: autoroute": {
"filter": "highway~motorway|motorway_link"
},
"Niger: national road": {
"filter": "ref~N.*"
},
"Ohio: Urban state route": {
"filter": "ref~SR.* and {urban}",
"relationFilter": "type=route and route=road and network=US:OH"
},
"Palestine: \u0634\u0627\u0631\u0639\u0645\u062e\u062a\u0644": {
"fuzzyFilter": "{urban} and (highway~living_street|service|pedestrian or highway=residential and {has no sidewalk})"
},
"Panama: Avenida": {
"fuzzyFilter": "{urban} and highway~tertiary|tertiary_link|secondary|secondary_link|primary|primary_link|trunk|trunk_link and (!lanes or ((!{oneway} and lanes<4) or ({oneway} and lanes<2)))"
},
"Panama: Avenida de dos carriles": {
"fuzzyFilter": "{urban} and highway~tertiary|tertiary_link|secondary|secondary_link|primary|primary_link|trunk|trunk_link and ((!{oneway} and lanes=4) or ({oneway} and lanes=2))"
},
"Panama: Carretera multicarril en zona urbana": {
"fuzzyFilter": "{urban} and highway~tertiary|tertiary_link|secondary|secondary_link|primary|primary_link|trunk|trunk_link and ((!{oneway} and lanes>4) or ({oneway} and lanes>2))"
},
"Per\u00fa: Avenida": {
"filter": "name~Avenida.*"
},
"Per\u00fa: Carretera": {
"filter": "ref~PE.*",
"relationFilter": "type=route and route=road and ref~PE.*"
},
"Per\u00fa: V\u00eda Expresa": {
"filter": "name~\"V\u00eda Expresa.*\""
},
"Philippines: Barangay road": {
"filter": "designation=barangay_road or designation=barangay",
"fuzzyFilter": "{rural} and highway~unclassified|track"
},
"Philippines: National primary road": {
"filter": "designation=national_primary_road or ref~[0-9][0-9]?"
},
"Philippines: National secondary road": {
"filter": "designation=national_secondary_road or ref~[0-9][0-9][0-9]"
},
"Philippines: National tertiary road": {
"filter": "designation=national_tertiary_road"
},
"Philippines: Provincial road": {
"filter": "designation=provincial_road"
},
"Philippines: Through street": {
"filter": "{urban} and (ref or designation~provincial_road|national_tertiary_road|national_secondary_road|national_primary_road)"
},
"Quebec: Autoroute": {
"filter": "(ref >= 1 and ref <= 99) or (ref >= 400 and ref <= 999)"
},
"Romania: drumurile expres sau pe cele na\u021bionale europene": {
"filter": "ref~DN.*",
"relationFilter": "type=route and route=road and network=RO:DN"
},
"Senegal: National road": {
"filter": "ref~N.*"
},
"Singapore: silver zone": {
"filter": "hazard=elderly or silver_zone=yes or hazard=silver_zone"
},
"Spain: Traves\u00eda": {
"fuzzyFilter": "{urban} and ref"
},
"Tennessee: Rural state road with 2 or more lanes in each direction": {
"filter": "{Tennessee: State route} and {rural} and {road with 2 or more lanes in each direction}"
},
"Tennessee: State route": {
"filter": "ref~\"(TN|SR|US).*\"",
"relationFilter": "type=route and route=road and network~\"US:(TN|US)(:.*)?\""
},
"Thailand: motorway that is not a \u0e17\u0e4d\u0e32\u0e07\u0e1e\u0e34\u0e40\u0e28\u0e29": {
"filter": "{motorway} and ref"
},
"Thailand: \u0e17\u0e4d\u0e32\u0e07\u0e02\u0e19\u0e4d\u0e32\u0e19": {
"filter": "{frontage road}"
},
"Thailand: \u0e17\u0e4d\u0e32\u0e07\u0e1e\u0e34\u0e40\u0e28\u0e29 not on bridge or in tunnel": {
"filter": "{motorway} and !ref and (!bridge or bridge=no) and (!tunnel or tunnel=no)"
},
"Thailand: \u0e17\u0e4d\u0e32\u0e07\u0e1e\u0e34\u0e40\u0e28\u0e29 on bridge or in tunnel": {
"filter": "{motorway} and !ref and ((bridge and bridge!=no) or (tunnel and tunnel!=no))"
},
"US interstate highway": {
"filter": "ref~I.* and {motorway}",
"relationFilter": "type=route and route=road and network=US:I"
},
"US interstate highway with 2 or more lanes in each direction": {
"filter": "{US interstate highway} and ((lanes>=2 and {oneway}) or (lanes>=4 and !{oneway}))"
},
"United Kingdom: restricted road": {
"filter": "lit=yes or maxspeed:type=GB:nsl_restricted",
"fuzzyFilter": "{urban} and (!lit or lit!=no) and !maxspeed:type"
},
"Virginia: Rustic road": {
"filter": "ref~R.*"
},
"Virginia: State primary highway": {
"filter": "ref~\"(US|VA).*\"",
"relationFilter": "type=route and route=road and network~\"US:(VA|US)(:.*)?\""
},
"Washington: State highway": {
"filter": "ref~\"(US|WA).*\"",
"relationFilter": "type=route and route=road and network~\"US:(WA|US)(:.*)?\""
},
"Wisconsin: Rustic road": {
"filter": "ref~R.*"
},
"Wyoming: State highway": {
"filter": "ref~WYO?.*",
"relationFilter": "type=route and route=road and network~\"US:(WY|US)(:.*)?\""
},
"alley": {
"filter": "highway=service and service=alley"
},
"business district": {
"filter": "abutters~retail|commercial"
},
"cycle street": {
"filter": "bicycle_road=yes or cyclestreet=yes"
},
"dual carriageway": {
"filter": "dual_carriageway=yes or maxspeed:type~\".*nsl_dual\"",
"fuzzyFilter": "oneway~yes|-1 and junction!~roundabout|circular and dual_carriageway!=no"
},
"dual carriageway in residential district": {
"filter": "{dual carriageway} and {residential district}"
},
"dual carriageway with 2 or more lanes in each direction": {
"filter": "{dual carriageway} and lanes>=2"
},
"expressway": {
"filter": "expressway=yes"
},
"frontage road": {
"filter": "frontage_road=yes or side_road=yes"
},
"has no sidewalk": {
"filter": "sidewalk~no|none or sidewalk:both~no|none or (sidewalk:left~no|none and sidewalk:right~no|none)"
},
"has shoulder": {
"filter": "shoulder~yes|both|left|right or shoulder:left=yes or shoulder:right=yes or shoulder:both=yes"
},
"has sidewalk": {
"filter": "sidewalk~yes|both|left|right|separate or sidewalk:left~yes|separate or sidewalk:right~yes|separate or sidewalk:both~yes|separate"
},
"lettered road with 2 lanes": {
"filter": "ref~[A-Z] and lanes=2"
},
"living street": {
"filter": "highway=living_street or living_street=yes"
},
"motorroad": {
"filter": "motorroad=yes"
},
"motorroad with 2 lanes in each direction": {
"filter": "{motorroad} and {road with 2 or more lanes in each direction}"
},
"motorroad with dual carriageway": {
"filter": "{motorroad} and {dual carriageway}"
},
"motorroad with single carriageway": {
"filter": "{motorroad} and {single carriageway}"
},
"motorway": {
"filter": "highway~motorway|motorway_link"
},
"motorway with 2 lanes in each direction": {
"filter": "{motorway} and {road with 2 or more lanes in each direction}"
},
"numbered road": {
"filter": "ref",
"relationFilter": "type=route and route=road and ref"
},
"oneway": {
"filter": "oneway~yes|-1 or junction~roundabout|circular"
},
"parking lot": {
"filter": "highway=service and service=parking_aisle"
},
"pedestrian zone": {
"filter": "highway=pedestrian"
},
"playground zone": {
"filter": "hazard=children or playground_zone=yes or hazard=playground_zone or restriction=playground_zone or maxspeed:variable=playground_zone"
},
"residential district": {
"filter": "abutters=residential",
"fuzzyFilter": "highway~living_street|residential"
},
"road with 1 lane in each direction": {
"filter": "!lanes or ((!{oneway} and lanes=2) or ({oneway} and lanes=1))"
},
"road with 2 lanes in each direction": {
"filter": "((!{oneway} and lanes=4) or ({oneway} and lanes=2))"
},
"road with 2 or more lanes in each direction": {
"filter": "((!{oneway} and lanes>=4) or ({oneway} and lanes>=2))"
},
"road with 3 lanes in each direction": {
"filter": "((!{oneway} and lanes=6) or ({oneway} and lanes=3))"
},
"road with 4 or more lanes in each direction": {
"filter": "((!{oneway} and lanes>=8) or ({oneway} and lanes>=4))"
},
"road with asphalt or concrete surface": {
"filter": "surface~asphalt|concrete or (!surface and tracktype=grade1)"
},
"road without asphalt or concrete surface": {
"filter": "(surface and surface!~asphalt|concrete) or (!surface and tracktype and tracktype!=grade1)"
},
"roundabout": {
"filter": "junction=roundabout"
},
"rural": {
"filter": "source:maxspeed~\".*(rural|motorway|motorroad)\" or maxspeed:type~\".*(rural|motorway|motorroad|nsl_single|nsl_dual)\" or zone:maxspeed~\".*(rural|motorway|motorroad)\" or zone:traffic~\".*(rural|motorway|motorroad)\" or maxspeed~\".*(rural|motorway|motorroad)\" or HFCS~.*Rural.* or rural=yes",
"fuzzyFilter": "lit=no or {has no sidewalk}"
},
"rural US interstate highway": {
"filter": "{rural} and {US interstate highway}"
},
"rural business district": {
"filter": "{rural} and {business district}"
},
"rural dual carriageway": {
"filter": "{rural} and {dual carriageway}"
},
"rural dual carriageway with 2 or more lanes in each direction": {
"filter": "{rural} and {dual carriageway with 2 or more lanes in each direction}"
},
"rural expressway": {
"filter": "{rural} and {expressway}"
},
"rural motorroad": {
"filter": "{rural} and {motorroad}"
},
"rural motorroad with single carriageway": {
"filter": "{rural} and {motorroad} and {single carriageway}"
},
"rural motorway": {
"filter": "{rural} and {motorway}"
},
"rural numbered road": {
"filter": "{rural} and {numbered road}"
},
"rural one-way road with 1 lane": {
"filter": "{rural} and {oneway} and lanes=1"
},
"rural playground zone": {
"filter": "{rural} and {playground zone}"
},
"rural residential district": {
"filter": "{rural} and {residential district}"
},
"rural road with 1 lane in each direction": {
"filter": "{rural} and {road with 1 lane in each direction}"
},
"rural road with 2 lanes in each direction": {
"filter": "{rural} and {road with 2 lanes in each direction}"
},
"rural road with 2 or more lanes in each direction": {
"filter": "{rural} and {road with 2 or more lanes in each direction}"
},
"rural road with 3 lanes in each direction": {
"filter": "{rural} and {road with 3 lanes in each direction}"
},
"rural road with 4 or more lanes in each direction": {
"filter": "{rural} and {road with 4 or more lanes in each direction}"
},
"rural road with asphalt or concrete surface": {
"filter": "{rural} and {road with asphalt or concrete surface}"
},
"rural road without asphalt or concrete surface": {
"filter": "{rural} and {road without asphalt or concrete surface}"
},
"rural school zone": {
"filter": "{rural} and {school zone}"
},
"rural single carriageway": {
"filter": "{rural} and {single carriageway}"
},
"rural single carriageway with 2 or more lanes in each direction": {
"filter": "{rural} and {single carriageway} and lanes>=4"
},
"rural unpaved road": {
"filter": "{rural} and {unpaved road}"
},
"school zone": {
"filter": "school_zone=yes or hazard=school_zone or restriction=school_zone or maxspeed:variable=school_zone"
},
"service road": {
"filter": "highway=service"
},
"single carriageway": {
"filter": "dual_carriageway=no or maxspeed:type~\".*nsl_single\"",
"fuzzyFilter": "oneway!~yes|-1 or junction~roundabout|circular or dual_carriageway=no"
},
"single carriageway in residential district": {
"filter": "{single carriageway} and {residential district}"
},
"trunk": {
"filter": "highway~trunk|trunk_link"
},
"unpaved road": {
"filter": "surface~unpaved|ground|gravel|dirt|grass|compacted|sand|fine_gravel|earth|pebblestone|mud|clay|soil|rock or (!surface and tracktype and tracktype!=grade1)"
},
"urban": {
"filter": "source:maxspeed~.*urban or maxspeed:type~.*urban or zone:maxspeed~.*urban or zone:traffic~.*urban or maxspeed~.*urban or HFCS~.*Urban.* or rural=no",
"fuzzyFilter": "highway~living_street|residential or lit=yes or {has sidewalk}"
},
"urban US interstate highway": {
"filter": "{urban} and {US interstate highway}"
},
"urban and without centerline": {
"filter": "{urban} and {without centerline}"
},
"urban business district": {
"filter": "{urban} and {business district}"
},
"urban dual carriageway": {
"filter": "{urban} and {dual carriageway}"
},
"urban dual carriageway with 2 or more lanes in each direction": {
"filter": "{urban} and {dual carriageway with 2 or more lanes in each direction}"
},
"urban expressway": {
"filter": "{urban} and {expressway}"
},
"urban motorroad": {
"filter": "{urban} and {motorroad}"
},
"urban motorway": {
"filter": "{urban} and {motorway}"
},
"urban motorway with paved shoulders": {
"filter": "{urban} and {motorway} and {has shoulder}"
},
"urban one-way road with 1 lane": {
"filter": "{urban} and {oneway} and lanes<2"
},
"urban playground zone": {
"filter": "{urban} and {playground zone}"
},
"urban residential district": {
"filter": "{urban} and {residential district}"
},
"urban road which is not numbered": {
"filter": "{urban} and !{numbered road}"
},
"urban road with 2 lanes in each direction": {
"filter": "{urban} and {road with 2 lanes in each direction}"
},
"urban road with 2 or more lanes in each direction": {
"filter": "{urban} and {road with 2 or more lanes in each direction}"
},
"urban road with 3 lanes in each direction": {
"filter": "{urban} and {road with 3 lanes in each direction}"
},
"urban road with 4 or more lanes in each direction": {
"filter": "{urban} and {road with 4 or more lanes in each direction}"
},
"urban road without sidewalk": {
"filter": "{urban} and {has no sidewalk}"
},
"urban school zone": {
"filter": "{urban} and {school zone}"
},
"urban single carriageway": {
"filter": "{urban} and {single carriageway}"
},
"urban unpaved road": {
"filter": "{urban} and {unpaved road}"
},
"without centerline": {
"filter": "lanes<2 or lane_markings=no"
}
},
"speedLimitsByCountryCode": {
"AD": [
{
"name": "living street",
"tags": {
"maxspeed": "20"
}
},
{
"name": "urban",
"tags": {
"maxspeed": "50"
}
},
{
"tags": {
"maxspeed": "60"
}
},
{
"name": "Andorra: Carretera secund\u00e0ria",
"tags": {
"maxspeed": "60"
}
},
{
"name": "Andorra: Carretera general",
"tags": {
"maxspeed": "90"
}
},
{
"name": "motorroad",
"tags": {
"maxspeed": "120"
}
},
{
"name": "motorway",
"tags": {
"maxspeed": "120"
}
}
],
"AE": [
{
"name": "service road",
"tags": {
"maxspeed": "25"
}
},
{
"name": "urban single carriageway",
"tags": {
"maxspeed": "40"
}
},
{
"name": "urban dual carriageway",
"tags": {
"maxspeed": "60",
"maxspeed:bus": "80",
"maxspeed:hgv": "80",
"maxspeed:school_bus": "80"
}
},
{
"tags": {
"maxspeed": "100",
"maxspeed:bus": "80",
"maxspeed:hgv": "80",
"maxspeed:school_bus": "80"
}
},
{
"name": "rural",
"tags": {
"maxspeed": "100",
"maxspeed:bus": "80",
"maxspeed:hgv": "80",
"maxspeed:school_bus": "80"
}
},
{
"name": "motorway",
"tags": {
"maxspeed": "120",
"maxspeed:bus": "80",
"maxspeed:hgv": "80",
"maxspeed:school_bus": "80",
"minspeed": "60"
}
}
],
"AF": [
{
"tags": {
"maxspeed": "90"
}
}
],
"AG": [
{
"name": "urban",
"tags": {
"maxspeed": "20 mph",
"maxspeed:bus": "15 mph",
"maxspeed:goods": "15 mph"
}
},
{
"tags": {
"maxspeed": "40 mph",
"maxspeed:bus": "25 mph",
"maxspeed:goods": "25 mph"
}
},
{
"name": "rural",
"tags": {
"maxspeed": "40 mph",
"maxspeed:bus": "25 mph",
"maxspeed:goods": "25 mph"
}
}
],
"AL": [
{
"name": "urban",
"tags": {
"maxspeed": "40",
"maxspeed:bus:conditional": "35 @ (weightrating>8)",
"maxspeed:hazmat": "30",
"maxspeed:hgv:conditional": "35 @ (trailer); 35 @ (articulated)"
}
},
{
"tags": {
"maxspeed": "80",
"maxspeed:bus:conditional": "70 @ (weightrating>8)",
"maxspeed:hazmat": "50",
"maxspeed:hgv": "70",
"maxspeed:hgv:conditional": "70 @ (trailer); 70 @ (articulated); 60 @ (weightrating>12)",
"maxspeed:truck_bus:conditional": "70 @ (weightrating>5)"
}
},
{
"name": "rural",
"tags": {
"maxspeed": "80",
"maxspeed:bus:conditional": "70 @ (weightrating>8)",
"maxspeed:hazmat": "50",
"maxspeed:hgv": "70",
"maxspeed:hgv:conditional": "70 @ (trailer); 70 @ (articulated); 60 @ (weightrating>12)",
"maxspeed:truck_bus:conditional": "70 @ (weightrating>5)"
}
},
{
"name": "Albania: Rrug\u00eb interurbane kryesore",
"tags": {
"maxspeed": "90",
"maxspeed:bus:conditional": "70 @ (weightrating>8)",
"maxspeed:hazmat": "50",
"maxspeed:hgv": "70",
"maxspeed:hgv:conditional": "70 @ (trailer); 70 @ (articulated); 60 @ (weightrating>12)",
"maxspeed:truck_bus:conditional": "70 @ (weightrating>5)"
}
},
{
"name": "motorway",
"tags": {
"maxspeed": "110",
"maxspeed:bus:conditional": "90 @ (weightrating>8)",
"maxspeed:hazmat": "50",
"maxspeed:hgv": "90",
"maxspeed:hgv:conditional": "80 @ (trailer); 80 @ (articulated); 80 @ (weightrating>12)",
"maxspeed:truck_bus:conditional": "80 @ (weightrating>5)"
}
}
],
"AM": [
{
"name": "living street",
"tags": {
"maxspeed": "20"
}
},
{
"name": "urban",
"tags": {
"maxspeed": "60",
"maxspeed:bus": "70",
"maxspeed:coach": "90",
"maxspeed:conditional": "70 @ (trailer)",
"maxspeed:hgv": "70",
"maxspeed:minibus": "90",
"maxspeed:motorcycle": "90",
"maxspeed:school_bus": "60"
}
},
{
"tags": {
"maxspeed": "90",
"maxspeed:bus": "70",
"maxspeed:coach": "90",
"maxspeed:conditional": "70 @ (trailer)",
"maxspeed:hgv": "70",
"maxspeed:minibus": "90",
"maxspeed:motorcycle": "90",
"maxspeed:school_bus": "60"
}
},
{
"name": "rural",
"tags": {
"maxspeed": "90",
"maxspeed:bus": "70",
"maxspeed:coach": "90",
"maxspeed:conditional": "70 @ (trailer)",
"maxspeed:hgv": "70",
"maxspeed:minibus": "90",
"maxspeed:motorcycle": "90",
"maxspeed:school_bus": "60"
}
},
{
"name": "motorway",
"tags": {
"maxspeed": "110",
"maxspeed:bus": "90",
"maxspeed:coach": "90",
"maxspeed:conditional": "90 @ (trailer)",
"maxspeed:hgv": "90",
"maxspeed:minibus": "90",
"maxspeed:motorcycle": "90",
"maxspeed:school_bus": "60"
}
}
],
"AO": [
{
"name": "urban",
"tags": {
"maxspeed": "60",
"maxspeed:bus": "50",
"maxspeed:bus:conditional": "40 @ (trailer)",
"maxspeed:conditional": "50 @ (trailer)",
"maxspeed:goods": "60",
"maxspeed:goods:conditional": "50 @ (trailer)",
"maxspeed:hgv": "50",
"maxspeed:hgv:conditional": "50 @ (articulated); 40 @ (trailer)",
"maxspeed:motorcycle": "60",
"maxspeed:motorcycle:conditional": "50 @ (trailer)",
"maxspeed:tricycle": "50"
}
},
{
"tags": {
"maxspeed": "90",
"maxspeed:bus": "80",
"maxspeed:bus:conditional": "70 @ (trailer)",
"maxspeed:conditional": "70 @ (trailer)",
"maxspeed:goods": "80",
"maxspeed:goods:conditional": "70 @ (trailer)",
"maxspeed:hgv": "80",
"maxspeed:hgv:conditional": "80 @ (articulated); 70 @ (trailer)",
"maxspeed:motorcycle": "90",
"maxspeed:motorcycle:conditional": "70 @ (trailer)",
"maxspeed:tricycle": "70"
}
},
{
"name": "rural",
"tags": {
"maxspeed": "90",
"maxspeed:bus": "80",
"maxspeed:bus:conditional": "70 @ (trailer)",
"maxspeed:conditional": "70 @ (trailer)",
"maxspeed:goods": "80",
"maxspeed:goods:conditional": "70 @ (trailer)",
"maxspeed:hgv": "80",
"maxspeed:hgv:conditional": "80 @ (articulated); 70 @ (trailer)",
"maxspeed:motorcycle": "90",
"maxspeed:motorcycle:conditional": "70 @ (trailer)",
"maxspeed:tricycle": "70"
}
},
{
"name": "motorroad",
"tags": {
"maxspeed": "100",
"maxspeed:bus": "90",
"maxspeed:bus:conditional": "80 @ (trailer)",
"maxspeed:conditional": "80 @ (trailer)",
"maxspeed:goods": "90",
"maxspeed:goods:conditional": "80 @ (trailer)",
"maxspeed:hgv": "80",
"maxspeed:hgv:conditional": "70 @ (articulated); 70 @ (trailer)",
"maxspeed:motorcycle": "100",
"maxspeed:motorcycle:conditional": "80 @ (trailer)",
"maxspeed:tricycle": "80"
}
},
{
"name": "motorway",
"tags": {
"maxspeed": "120",
"maxspeed:bus": "100",
"maxspeed:bus:conditional": "90 @ (trailer)",
"maxspeed:conditional": "100 @ (trailer)",
"maxspeed:goods": "110",
"maxspeed:goods:conditional": "90 @ (trailer)",
"maxspeed:hgv": "90",
"maxspeed:hgv:conditional": "90 @ (articulated); 80 @ (trailer)",
"maxspeed:motorcycle": "120",
"maxspeed:motorcycle:conditional": "100 @ (trailer)",
"maxspeed:tricycle": "100",
"minspeed": "40"
}
}
],
"AR": [
{
"name": "school zone",
"tags": {
"maxspeed": "20"
}
},
{
"name": "Argentina: Calle",
"tags": {
"maxspeed": "40"
}
},
{
"name": "Argentina: Avenida",
"tags": {
"maxspeed": "60"
}
},
{
"tags": {
"maxspeed": "110",
"maxspeed:bus": "90",
"maxspeed:conditional": "80 @ (caravan)",
"maxspeed:goods": "110",
"maxspeed:hazmat": "80",
"maxspeed:hgv": "80",
"maxspeed:motorcycle": "110",
"maxspeed:motorhome": "90"
}
},
{
"name": "rural",
"tags": {
"maxspeed": "110",
"maxspeed:bus": "90",
"maxspeed:conditional": "80 @ (caravan)",
"maxspeed:goods": "110",
"maxspeed:hazmat": "80",
"maxspeed:hgv": "80",
"maxspeed:motorcycle": "110",
"maxspeed:motorhome": "90"
}
},
{
"name": "Argentina: Semiautopista",
"tags": {
"maxspeed": "120",
"maxspeed:bus": "90",
"maxspeed:conditional": "80 @ (caravan)",
"maxspeed:goods": "110",
"maxspeed:hazmat": "80",
"maxspeed:hgv": "80",
"maxspeed:motorcycle": "120",
"maxspeed:motorhome": "90",
"minspeed": "40"
}
},
{
"name": "motorway",
"tags": {
"maxspeed": "130",
"maxspeed:bus": "100",
"maxspeed:conditional": "80 @ (caravan)",
"maxspeed:goods": "110",
"maxspeed:hazmat": "80",
"maxspeed:hgv": "80",
"maxspeed:motorcycle": "130",
"maxspeed:motorhome": "100",
"minspeed": "65"
}
}
],
"AS": [
{
"name": "urban",
"tags": {
"maxspeed": "15 mph"
}
},
{
"tags": {
"maxspeed": "25 mph"
}
},
{
"name": "rural",
"tags": {
"maxspeed": "25 mph"
}
}
],
"AT": [
{
"name": "pedestrian zone",
"tags": {
"maxspeed": "walk"
}
},
{
"name": "living street",
"tags": {
"maxspeed": "walk"
}
},
{
"name": "cycle street",
"tags": {
"maxspeed": "30"
}
},
{
"name": "urban",
"tags": {
"maxspeed": "50",
"maxspeed:bus": "80",
"maxspeed:bus:conditional": "70 @ (articulated)",
"maxspeed:conditional": "80 @ (trailer); 70 @ (weightrating>3.5)",