-
Notifications
You must be signed in to change notification settings - Fork 3
/
min_cams2.json
4372 lines (4371 loc) · 151 KB
/
min_cams2.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
[{
"lattitude": 47.52678337,
"longitude": -122.3927558,
"id": "CMR-0112",
"description": "Fauntleroy Way SW & SW Cloverdale St",
"url": "http://seattle.gov/trafficcams/images/Fauntleroy_SW_Cloverdale_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.56110647,
"longitude": -122.3867781,
"id": "CMR-0038",
"description": "42nd Ave SW & SW Alaska St",
"url": "http://seattle.gov/trafficcams/images/42_SW_Alaska_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0093",
"description": "California Ave SW & SW Alaska St",
"url": "http://seattle.gov/trafficcams/images/California_SW_Alaska_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.57562625,
"longitude": -122.3867606,
"id": "CMR-0252",
"description": "California Ave SW & SW Hanford St",
"url": "http://seattle.gov/trafficcams/images/California_SW_Hanford_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.58119534,
"longitude": -122.3865458,
"id": "CMR-0250",
"description": "41st Ave SW & SW Admiral Way",
"url": "http://seattle.gov/trafficcams/images/41_SW_Admiral_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0251",
"description": "California Ave SW & SW Admiral Way",
"url": "http://seattle.gov/trafficcams/images/California_SW_Admiral_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.56112507,
"longitude": -122.3814815,
"id": "CMR-0113",
"description": "Fauntleroy Way SW & SW Alaska St",
"url": "http://seattle.gov/trafficcams/images/Fauntleroy_SW_Alaska_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.69060911,
"longitude": -122.3768061,
"id": "CMR-0008",
"description": "15th Ave NW & NW 85th St",
"url": "http://seattle.gov/trafficcams/images/15_NW_85_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.67635736,
"longitude": -122.3767588,
"id": "CMR-0007",
"description": "15th Ave NW & NW 65th St NS",
"url": "http://seattle.gov/trafficcams/images/15_NW_65_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0006",
"description": "15th Ave NW & NW 65th St EW",
"url": "http://seattle.gov/trafficcams/images/15_NW_65_EW.jpg",
"type": "sdot"
}, {
"lattitude": 47.64858621,
"longitude": -122.3763781,
"id": "CMR-0012",
"description": "15th Ave W & W Dravus St",
"url": "http://seattle.gov/trafficcams/images/15_W_Dravus_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.65388754,
"longitude": -122.3762566,
"id": "CMR-0013",
"description": "15th Ave W & W Emerson St",
"url": "http://seattle.gov/trafficcams/images/15_W_Emerson_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.66851433,
"longitude": -122.3762147,
"id": "CMR-0010",
"description": "15th Ave NW & NW Market St EW",
"url": "http://seattle.gov/trafficcams/images/15_NW_Market_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0011",
"description": "15th Ave NW & NW Market St NS",
"url": "http://seattle.gov/trafficcams/images/15_NW_Market_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.5651238,
"longitude": -122.3761854,
"id": "CMR-0032",
"description": "35th Ave SW @ Fauntleroy Way SW",
"url": "http://seattle.gov/trafficcams/images/35_SW_Fauntleroy_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.63766086,
"longitude": -122.3761428,
"id": "CMR-0292",
"description": "15th Ave W & W Armory Way",
"url": "http://seattle.gov/trafficcams/images/15_W_Armory_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.66365074,
"longitude": -122.3753012,
"id": "CMR-0009",
"description": "15th Ave NW & NW Leary Way",
"url": "http://seattle.gov/trafficcams/images/15_NW_Leary_EW.jpg",
"type": "sdot"
}, {
"lattitude": 47.57009895,
"longitude": -122.3729989,
"id": "CMR-0144",
"description": "W Seattle Bridge near SW Charlestown St",
"url": "http://seattle.gov/trafficcams/images/WSea_FwyPullOut_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0230",
"description": "Harbor Ave SW & S Spokane St",
"url": "http://seattle.gov/trafficcams/images/Harbor_SW_Spokane_EW.jpg",
"type": "sdot"
}, {
"lattitude": 47.62658452,
"longitude": -122.368357,
"id": "CMR-0108",
"description": "Elliott Ave W & W Mercer Pl",
"url": "http://seattle.gov/trafficcams/images/Elliott_W_Mercer_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.65894425,
"longitude": -122.3647161,
"id": "CMR-2023",
"description": "Leary Way NW & NW 43rd St",
"url": "http://seattle.gov/trafficcams/images/Leary_NW_43_EW.jpg",
"type": "sdot"
}, {
"lattitude": 47.62066371,
"longitude": -122.3609284,
"id": "CMR-0135",
"description": "Queen Anne Ave N & Mercer St",
"url": "http://seattle.gov/trafficcams/images/QAnne_N_Mercer_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0145",
"description": "Western Ave & Elliott St",
"url": "http://seattle.gov/trafficcams/images/Western_Elliott_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.57195535,
"longitude": -122.3600483,
"id": "CMR-0094",
"description": "Chelan Ave SW & W Marginal Way",
"url": "http://seattle.gov/trafficcams/images/Chelan_SW_WMarg_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0143",
"description": "W Seattle Bridge @ Delridge Way Exit",
"url": "http://seattle.gov/trafficcams/images/WSB_Delridge_EW.jpg",
"type": "sdot"
}, {
"lattitude": 47.62545416,
"longitude": -122.3567027,
"id": "CMR-0234",
"description": "Queen Anne Ave N & Roy St",
"url": "http://seattle.gov/trafficcams/images/QAnne_N_Roy_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.72323367,
"longitude": -122.3555467,
"id": "CMR-0246",
"description": "Greenwood Ave N & N 125th St",
"url": "http://seattle.gov/trafficcams/images/Greenwood_N_125_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0247",
"description": "Greenwood Ave N & N 130th St",
"url": "http://seattle.gov/trafficcams/images/Greenwood_N_130_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.71415878,
"longitude": -122.3555159,
"id": "CMR-0245",
"description": "Greenwood Ave N & N 117th St",
"url": "http://seattle.gov/trafficcams/images/Greenwood_N_117_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.61860207,
"longitude": -122.3554531,
"id": "CMR-0106",
"description": "Elliott Ave & Broad St",
"url": "http://seattle.gov/trafficcams/images/Elliott_Broad_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0017",
"description": "1st Ave & Denny Way",
"url": "http://seattle.gov/trafficcams/images/1_N_Denny_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0182",
"description": "Western Ave & Broad St",
"url": "http://seattle.gov/trafficcams/images/Western_Broad_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0171",
"description": "1st Ave & Broad St",
"url": "http://seattle.gov/trafficcams/images/1_Broad_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.70508354,
"longitude": -122.3554527,
"id": "CMR-0206",
"description": "Greenwood Ave N & N 105th St",
"url": "http://seattle.gov/trafficcams/images/Greenwood_N_105_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.65148486,
"longitude": -122.3513564,
"id": "CMR-0109",
"description": "Evanston Ave N & N 36th St",
"url": "http://seattle.gov/trafficcams/images/Evanston_N_36_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0114",
"description": "Fremont Ave N & N 36th St",
"url": "http://seattle.gov/trafficcams/images/Fremont_N_36_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-2024",
"description": "Fremont Ave N & N 34th St",
"url": "http://seattle.gov/trafficcams/images/Fremont_N_34_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.61281375,
"longitude": -122.351186,
"id": "CMR-0186",
"description": "Western Ave & Wall St",
"url": "http://seattle.gov/trafficcams/images/Western_Wall_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0169",
"description": "3rd Ave & Wall St",
"url": "http://seattle.gov/trafficcams/images/3_Wall_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0167",
"description": "1st Ave & Wall St EW",
"url": "http://seattle.gov/trafficcams/images/1_Wall_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0185",
"description": "2nd Ave & Battery St",
"url": "http://seattle.gov/trafficcams/images/2_Battery_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0168",
"description": "1st Ave & Wall St NS",
"url": "http://seattle.gov/trafficcams/images/1_Wall_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0261",
"description": "Alaskan Way & Wall St",
"url": "http://seattle.gov/trafficcams/images/Alaskan_Wall_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.64608321,
"longitude": -122.3497214,
"id": "CMR-0041",
"description": "4th Ave N & Dexter Ave N",
"url": "http://seattle.gov/trafficcams/images/Westlake_N_Dexter_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.5716136,
"longitude": -122.3491024,
"id": "CMR-0142",
"description": "W Seattle Bridge Mid-Span",
"url": "http://seattle.gov/trafficcams/images/WSB_Midspan_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0001",
"description": "11th Ave SW & SW Spokane St",
"url": "http://seattle.gov/trafficcams/images/11_SW_Spokane_EW.jpg",
"type": "sdot"
}, {
"lattitude": 47.61857627,
"longitude": -122.3489252,
"id": "CMR-0047",
"description": "5th Ave & Battery St East Side",
"url": "http://seattle.gov/trafficcams/images/5_Battery_East.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0048",
"description": "5th Ave & Battery St West Side",
"url": "http://seattle.gov/trafficcams/images/5_Battery_West.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0051",
"description": "5th Ave N & Broad St",
"url": "http://seattle.gov/trafficcams/images/5_Broad_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0040",
"description": "4th Ave & Battery St",
"url": "http://seattle.gov/trafficcams/images/4_Battery_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0096",
"description": "4th Ave N & Denny Way",
"url": "http://seattle.gov/trafficcams/images/4_Denny_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0056",
"description": "6th Ave & Wall St",
"url": "http://seattle.gov/trafficcams/images/6_Wall_EW.jpg",
"type": "sdot"
}, {
"lattitude": 47.62456148,
"longitude": -122.347571,
"id": "CMR-0162",
"description": "5th Ave & Mercer St EW",
"url": "http://seattle.gov/trafficcams/images/5_Mercer_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0163",
"description": "5th Ave N & Mercer St NS",
"url": "http://seattle.gov/trafficcams/images/5_Mercer_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0235",
"description": "6th Ave N & SR 99",
"url": "http://seattle.gov/trafficcams/images/6_N_SR99_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0081",
"description": "Aurora Ave N & Ward St",
"url": "http://seattle.gov/trafficcams/images/Aurora_N_Ward_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0236",
"description": "Aurora Ave N & Harrison St",
"url": "http://seattle.gov/trafficcams/images/Aurora_N_Harrison_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0220",
"description": "Taylor Ave & Mercer St",
"url": "http://seattle.gov/trafficcams/images/Taylor_N_Mercer_EW.jpg",
"type": "sdot"
}, {
"lattitude": 47.66214544,
"longitude": -122.3471494,
"id": "CMR-0077",
"description": "Aurora Ave N & N 46th St",
"url": "http://seattle.gov/trafficcams/images/Aurora_N_46_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.72321542,
"longitude": -122.3467974,
"id": "CMR-0074",
"description": "Aurora Ave N & N 130th St NS",
"url": "http://seattle.gov/trafficcams/images/Aurora_N_130_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0073",
"description": "Aurora Ave N & N 130th St EW",
"url": "http://seattle.gov/trafficcams/images/Aurora_N_130_EW.jpg",
"type": "sdot"
}, {
"lattitude": 47.69056829,
"longitude": -122.346387,
"id": "CMR-0080",
"description": "Aurora Ave N & N 90th St",
"url": "http://seattle.gov/trafficcams/images/Aurora_N_90_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0079",
"description": "Aurora Ave N & N 87th St NS",
"url": "http://seattle.gov/trafficcams/images/Aurora_N_87_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0078",
"description": "Aurora Ave N & N 85th St EW",
"url": "http://seattle.gov/trafficcams/images/Aurora_N_85_EW.jpg",
"type": "sdot"
}, {
"lattitude": 47.73349769,
"longitude": -122.34509,
"id": "CMR-0076",
"description": "Aurora Ave N & N 145th St NS",
"url": "http://seattle.gov/trafficcams/images/Aurora_N_145_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0075",
"description": "Aurora Ave N & N 145th St EW",
"url": "http://seattle.gov/trafficcams/images/Aurora_N_145_EW.jpg",
"type": "sdot"
}, {
"lattitude": 47.71477675,
"longitude": -122.3448525,
"id": "CMR-0072",
"description": "Aurora Ave N & N 117th Pl",
"url": "http://seattle.gov/trafficcams/images/Aurora_N_117_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.70505121,
"longitude": -122.3446941,
"id": "CMR-0070",
"description": "Aurora Ave N & N 103rd St",
"url": "http://seattle.gov/trafficcams/images/Aurora_N_103_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0071",
"description": "Aurora Ave N & N 105th St EW",
"url": "http://seattle.gov/trafficcams/images/Aurora_N_105_EW.jpg",
"type": "sdot"
}, {
"lattitude": 47.68277237,
"longitude": -122.3444844,
"id": "CMR-0082",
"description": "Aurora Ave N & N Winona St",
"url": "http://seattle.gov/trafficcams/images/Aurora_N_Winona_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.61327122,
"longitude": -122.3443534,
"id": "CMR-0174",
"description": "4th Ave & Virginia St",
"url": "http://seattle.gov/trafficcams/images/4_Virginia_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0170",
"description": "6th Ave & Lenora St",
"url": "http://seattle.gov/trafficcams/images/6_Lenora_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0016",
"description": "1st Ave & Stewart St",
"url": "http://seattle.gov/trafficcams/images/1_Stewart_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0030",
"description": "2nd Ave & Stewart St",
"url": "http://seattle.gov/trafficcams/images/2_Stewart_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0034",
"description": "3rd Ave & Stewart st",
"url": "http://seattle.gov/trafficcams/images/3_Stewart_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0264",
"description": "2nd Ave & Blanchard St",
"url": "http://seattle.gov/trafficcams/images/2_Blanchard_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.63575345,
"longitude": -122.3434826,
"id": "CMR-0068",
"description": "Aurora Ave N & Howe St",
"url": "http://seattle.gov/trafficcams/images/Aurora_N_Howe_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.61855017,
"longitude": -122.3424019,
"id": "CMR-0173",
"description": "7th Ave & Virginia St",
"url": "http://seattle.gov/trafficcams/images/7_Virginia_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0098",
"description": "Dexter Ave & Denny Way",
"url": "http://seattle.gov/trafficcams/images/Dexter_Denny_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0266",
"description": "9th Ave N & Thomas St",
"url": "http://seattle.gov/trafficcams/images/9_N_Thomas_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0184",
"description": "Westlake Ave & Denny Way NS",
"url": "http://seattle.gov/trafficcams/images/Westlake_Denny_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0267",
"description": "Westlake Ave & Denny Way EW",
"url": "http://seattle.gov/trafficcams/images/Westlake_Denny_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0260",
"description": "Westlake Ave N & Harrison St",
"url": "http://seattle.gov/trafficcams/images/Westlake_N_Harrison_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.62454973,
"longitude": -122.3423496,
"id": "CMR-0154",
"description": "9th Ave N & Mercer St",
"url": "http://seattle.gov/trafficcams/images/9_N_Mercer_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0146",
"description": "Westlake Ave & Valley St",
"url": "http://seattle.gov/trafficcams/images/Westlake_Broad_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0203",
"description": "9th Ave N & Roy St",
"url": "http://seattle.gov/trafficcams/images/9_Broad_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0211",
"description": "Dexter Ave N & Mercer St",
"url": "http://seattle.gov/trafficcams/images/Dexter_N_Mercer_EW.jpg",
"type": "sdot"
}, {
"lattitude": 47.60804248,
"longitude": -122.341879,
"id": "CMR-0176",
"description": "5th Ave & Pine St EW",
"url": "http://seattle.gov/trafficcams/images/5_Pine_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0039",
"description": "4th Ave & Olive St",
"url": "http://seattle.gov/trafficcams/images/4_Olive_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0179",
"description": "Western Ave & Spring St",
"url": "http://seattle.gov/trafficcams/images/Western_Spring_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0217",
"description": "1st Ave & Seneca St",
"url": "http://seattle.gov/trafficcams/images/1_Seneca_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0178",
"description": "1st Ave & Union St",
"url": "http://seattle.gov/trafficcams/images/1_Union_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0069",
"description": "2nd Ave & University St",
"url": "http://seattle.gov/trafficcams/images/2_University_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0164",
"description": "Alaskan Way & Pike St",
"url": "http://seattle.gov/trafficcams/images/Alaskan_Pike_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0257",
"description": "4th Ave & Pine St",
"url": "http://seattle.gov/trafficcams/images/4_Pine_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0165",
"description": "Alaskan Way & University St",
"url": "http://seattle.gov/trafficcams/images/Alaskan_University_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0153",
"description": "Alaskan Way & Madison St",
"url": "http://seattle.gov/trafficcams/images/Alaskan_Madison_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.66503445,
"longitude": -122.3402075,
"id": "CMR-0115",
"description": "Greenlake Way N & N 50th St",
"url": "http://seattle.gov/trafficcams/images/Greenlake_N_50_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.57557977,
"longitude": -122.3399904,
"id": "CMR-0066",
"description": "SR-99 @ S Lander St",
"url": "http://seattle.gov/trafficcams/images/SR99_Lander_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0100",
"description": "E Marginal Way S & S Hanford St",
"url": "http://seattle.gov/trafficcams/images/EMarg_S_Hanford_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0233",
"description": "E Marginal Way S & S Spokane St",
"url": "http://seattle.gov/trafficcams/images/EMarg_S_Spokane_EW.jpg",
"type": "sdot"
}, {
"lattitude": 47.5644998,
"longitude": -122.3394392,
"id": "CMR-0102",
"description": "E Marginal Way S & S Idaho St",
"url": "http://seattle.gov/trafficcams/images/EMarg_S_Idaho_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.55741253,
"longitude": -122.3391105,
"id": "CMR-0101",
"description": "E Marginal Way S @ Hudson St",
"url": "http://seattle.gov/trafficcams/images/EMarg_S_Hudson_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0243",
"description": "1st Ave S & S Hudson St",
"url": "http://seattle.gov/trafficcams/images/1_S_Hudson_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.70509508,
"longitude": -122.3386479,
"id": "CMR-0228",
"description": "N 105th St & N Northgate Way",
"url": "http://seattle.gov/trafficcams/images/Northgate_N_105_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0229",
"description": "Meridian Ave N & N Northgate Way",
"url": "http://seattle.gov/trafficcams/images/Meridian_N_Northgate_EW.jpg",
"type": "sdot"
}, {
"lattitude": 47.60306058,
"longitude": -122.3377875,
"id": "CMR-0189",
"description": "1st Ave S & Jackson St",
"url": "http://seattle.gov/trafficcams/images/1_S_Jackson_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0191",
"description": "3rd Ave & Seneca St",
"url": "http://seattle.gov/trafficcams/images/3_Seneca_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0218",
"description": "2nd Ave & Marion St",
"url": "http://seattle.gov/trafficcams/images/2_Marion_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0256",
"description": "1st Ave & Madison St",
"url": "http://seattle.gov/trafficcams/images/1_Madison_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0065",
"description": "Alaskan Way & Yesler Way",
"url": "http://seattle.gov/trafficcams/images/Alaskan_Yesler_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0204",
"description": "Alaskan Way & Marion St",
"url": "http://seattle.gov/trafficcams/images/Alaskan_Marion_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0180",
"description": "4th Ave & Madison St",
"url": "http://seattle.gov/trafficcams/images/4_Madison_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0033",
"description": "3rd Ave & Columbia St",
"url": "http://seattle.gov/trafficcams/images/3_Columbia_EW.jpg",
"type": "sdot"
}, {
"lattitude": 47.59031921,
"longitude": -122.3374172,
"id": "CMR-0021",
"description": "1st Ave S & S Holgate St",
"url": "http://seattle.gov/trafficcams/images/1_S_Holgate_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0022",
"description": "1st Ave S & S Royal Brougham Way",
"url": "http://seattle.gov/trafficcams/images/1_S_RoyalB_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0157",
"description": "SR-99 & S Atlantic St",
"url": "http://seattle.gov/trafficcams/images/SR99_Atlantic_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0020",
"description": "1st Ave S & S Atlantic St",
"url": "http://seattle.gov/trafficcams/images/1_S_Atlantic_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0158",
"description": "Alaskan Way S & S Atlantic St",
"url": "http://seattle.gov/trafficcams/images/EMarg_S_Atlantic_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0293",
"description": "Colorado Ave S & S Royal Brougham Way",
"url": "http://seattle.gov/trafficcams/images/Colorado_S_RoyalB_S_Portal.jpg",
"type": "sdot"
}, {
"lattitude": 47.61266535,
"longitude": -122.3373936,
"id": "CMR-0058",
"description": "7th Ave & Pike St",
"url": "http://seattle.gov/trafficcams/images/7_Pike_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0223",
"description": "5th Ave & Pine St NS",
"url": "http://seattle.gov/trafficcams/images/5_Pine_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0055",
"description": "6th Ave & Pine St",
"url": "http://seattle.gov/trafficcams/images/6_Pine_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0046",
"description": "5th Ave & Westlake Ave",
"url": "http://seattle.gov/trafficcams/images/5_Westlake_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0255",
"description": "5th Ave & Union St",
"url": "http://seattle.gov/trafficcams/images/5_Union_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0175",
"description": "9th Ave & Stewart St",
"url": "http://seattle.gov/trafficcams/images/9_Stewart_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0059",
"description": "8th Ave & Howell St",
"url": "http://seattle.gov/trafficcams/images/8_Howell_EW.jpg",
"type": "sdot"
}, {
"lattitude": 47.62468513,
"longitude": -122.3371304,
"id": "CMR-0111",
"description": "Fairview Ave N @ Valley St",
"url": "http://seattle.gov/trafficcams/images/Fairview_Valley_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0110",
"description": "Fairview Ave N & N Mercer St",
"url": "http://seattle.gov/trafficcams/images/Fairview_Mercer_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0259",
"description": "Fairview Ave N & Republican St",
"url": "http://seattle.gov/trafficcams/images/Fairview_N_Republican_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0202",
"description": "Terry Ave N & Mercer St",
"url": "http://seattle.gov/trafficcams/images/Terry_N_Mercer_EW.jpg",
"type": "sdot"
}, {
"lattitude": 47.60776318,
"longitude": -122.3359758,
"id": "CMR-0155",
"description": "4th Ave & Cherry St EW",
"url": "http://seattle.gov/trafficcams/images/4_Cherry_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0194",
"description": "5th Ave & Marion St",
"url": "http://seattle.gov/trafficcams/images/5_Marion_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0188",
"description": "6th Ave & Seneca St",
"url": "http://seattle.gov/trafficcams/images/6_Seneca_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0050",
"description": "5th Ave & Madison St NS",
"url": "http://seattle.gov/trafficcams/images/5_Madison_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0035",
"description": "3rd Ave & University St",
"url": "http://seattle.gov/trafficcams/images/3_University_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0181",
"description": "5th Ave & Madison St EW",
"url": "http://seattle.gov/trafficcams/images/5_Madison_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0291",
"description": "5th Ave & Spring St",
"url": "http://seattle.gov/trafficcams/images/5_Spring_EW.jpg",
"type": "sdot"
}, {
"lattitude": 47.59647943,
"longitude": -122.3355351,
"id": "CMR-0294",
"description": "Alaskan Way S & S Dearborn St",
"url": "http://seattle.gov/trafficcams/images/Alaskan_S_Dearborn_NS.jpg",
"type": "sdot"
}, {
"lattitude": 47.57157382,
"longitude": -122.3341947,
"id": "CMR-0231",
"description": "1st Ave S & S Spokane St NS",
"url": "http://seattle.gov/trafficcams/images/1_S_Spokane_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0232",
"description": "4th Ave S & S Spokane St NS",
"url": "http://seattle.gov/trafficcams/images/4_S_Spokane_NS.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0159",
"description": "1st Ave S & Spokane Viaduct",
"url": "http://seattle.gov/trafficcams/images/1_S_Spokane_EW.jpg",
"type": "sdot"
}, {
"lattitude": null,
"longitude": null,
"id": "CMR-0160",
"description": "4th Ave S & Spokane Viaduct",
"url": "http://seattle.gov/trafficcams/images/4_S_Spokane_EW.jpg",