irie 0.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of irie might be problematic. Click here for more details.

Files changed (145) hide show
  1. irie/__main__.py +24 -0
  2. irie/apps/__init__.py +5 -0
  3. irie/apps/authentication/__init__.py +1 -0
  4. irie/apps/authentication/admin.py +1 -0
  5. irie/apps/authentication/config.py +6 -0
  6. irie/apps/authentication/forms.py +41 -0
  7. irie/apps/authentication/migrations/__init__.py +1 -0
  8. irie/apps/authentication/models.py +1 -0
  9. irie/apps/authentication/tests.py +1 -0
  10. irie/apps/authentication/urls.py +9 -0
  11. irie/apps/authentication/views.py +53 -0
  12. irie/apps/config.py +8 -0
  13. irie/apps/context_processors.py +5 -0
  14. irie/apps/documents/__init__.py +0 -0
  15. irie/apps/documents/apps.py +7 -0
  16. irie/apps/documents/documents.py +61 -0
  17. irie/apps/documents/migrations/__init__.py +0 -0
  18. irie/apps/documents/tests.py +3 -0
  19. irie/apps/documents/urls.py +12 -0
  20. irie/apps/documents/views.py +27 -0
  21. irie/apps/evaluation/__init__.py +0 -0
  22. irie/apps/evaluation/admin.py +43 -0
  23. irie/apps/evaluation/apps.py +18 -0
  24. irie/apps/evaluation/daemon.py +107 -0
  25. irie/apps/evaluation/identification.py +196 -0
  26. irie/apps/evaluation/migrations/0001_initial.py +25 -0
  27. irie/apps/evaluation/migrations/0002_remove_evaluation_cesmd.py +17 -0
  28. irie/apps/evaluation/migrations/0003_evaluation_asset.py +20 -0
  29. irie/apps/evaluation/migrations/__init__.py +0 -0
  30. irie/apps/evaluation/models.py +72 -0
  31. irie/apps/evaluation/urls.py +16 -0
  32. irie/apps/evaluation/views.py +68 -0
  33. irie/apps/events/__init__.py +0 -0
  34. irie/apps/events/admin.py +9 -0
  35. irie/apps/events/apps.py +12 -0
  36. irie/apps/events/migrations/0001_initial.py +27 -0
  37. irie/apps/events/migrations/0002_alter_event_id.py +18 -0
  38. irie/apps/events/migrations/0003_event_cesmd.py +19 -0
  39. irie/apps/events/migrations/0004_event_record_identifier.py +19 -0
  40. irie/apps/events/migrations/0005_event_asset.py +21 -0
  41. irie/apps/events/migrations/0006_alter_event_event_file.py +18 -0
  42. irie/apps/events/migrations/__init__.py +0 -0
  43. irie/apps/events/models.py +70 -0
  44. irie/apps/events/tests.py +1 -0
  45. irie/apps/events/tests_events.py +240 -0
  46. irie/apps/events/urls.py +29 -0
  47. irie/apps/events/views.py +55 -0
  48. irie/apps/events/views_events.py +215 -0
  49. irie/apps/inventory/CESMD.py +81 -0
  50. irie/apps/inventory/__init__.py +5 -0
  51. irie/apps/inventory/admin.py +10 -0
  52. irie/apps/inventory/apps.py +12 -0
  53. irie/apps/inventory/archive/arcGIS.py +1175 -0
  54. irie/apps/inventory/calid.py +65 -0
  55. irie/apps/inventory/fields.py +5 -0
  56. irie/apps/inventory/forms.py +12 -0
  57. irie/apps/inventory/migrations/0001_initial.py +31 -0
  58. irie/apps/inventory/migrations/0002_assetevaluationmodel_cesmd.py +19 -0
  59. irie/apps/inventory/migrations/0003_auto_20230520_2030.py +23 -0
  60. irie/apps/inventory/migrations/0004_asset.py +27 -0
  61. irie/apps/inventory/migrations/0005_auto_20230731_1802.py +23 -0
  62. irie/apps/inventory/migrations/0006_auto_20230731_1816.py +28 -0
  63. irie/apps/inventory/migrations/0007_auto_20230731_1827.py +24 -0
  64. irie/apps/inventory/migrations/0008_asset_is_complete.py +19 -0
  65. irie/apps/inventory/migrations/0009_auto_20230731_1842.py +29 -0
  66. irie/apps/inventory/migrations/0010_auto_20230801_0025.py +23 -0
  67. irie/apps/inventory/migrations/0011_alter_asset_cgs_data.py +18 -0
  68. irie/apps/inventory/migrations/0012_corridor.py +22 -0
  69. irie/apps/inventory/migrations/0013_alter_asset_cesmd.py +18 -0
  70. irie/apps/inventory/migrations/0014_alter_asset_cesmd.py +18 -0
  71. irie/apps/inventory/migrations/__init__.py +0 -0
  72. irie/apps/inventory/models.py +70 -0
  73. irie/apps/inventory/tables.py +584 -0
  74. irie/apps/inventory/traffic.py +175052 -0
  75. irie/apps/inventory/urls.py +25 -0
  76. irie/apps/inventory/views.py +515 -0
  77. irie/apps/management/__init__.py +0 -0
  78. irie/apps/management/commands/__init__.py +0 -0
  79. irie/apps/networks/__init__.py +0 -0
  80. irie/apps/networks/apps.py +5 -0
  81. irie/apps/networks/forms.py +64 -0
  82. irie/apps/networks/migrations/0001_initial.py +26 -0
  83. irie/apps/networks/migrations/__init__.py +0 -0
  84. irie/apps/networks/models.py +14 -0
  85. irie/apps/networks/networks.py +782 -0
  86. irie/apps/networks/tests.py +1 -0
  87. irie/apps/networks/urls.py +18 -0
  88. irie/apps/networks/views.py +89 -0
  89. irie/apps/prediction/__init__.py +0 -0
  90. irie/apps/prediction/admin.py +9 -0
  91. irie/apps/prediction/apps.py +12 -0
  92. irie/apps/prediction/forms.py +20 -0
  93. irie/apps/prediction/metrics.py +61 -0
  94. irie/apps/prediction/migrations/0001_initial.py +32 -0
  95. irie/apps/prediction/migrations/0002_auto_20230731_1801.py +27 -0
  96. irie/apps/prediction/migrations/0003_rename_assetevaluationmodel_evaluation.py +18 -0
  97. irie/apps/prediction/migrations/0004_delete_evaluation.py +16 -0
  98. irie/apps/prediction/migrations/0005_predictormodel_protocol.py +18 -0
  99. irie/apps/prediction/migrations/0006_alter_predictormodel_protocol.py +18 -0
  100. irie/apps/prediction/migrations/0007_predictormodel_active.py +19 -0
  101. irie/apps/prediction/migrations/0008_predictormodel_description.py +18 -0
  102. irie/apps/prediction/migrations/0009_predictormodel_entry_point.py +19 -0
  103. irie/apps/prediction/migrations/0010_alter_predictormodel_entry_point.py +18 -0
  104. irie/apps/prediction/migrations/0011_remove_predictormodel_entry_point.py +17 -0
  105. irie/apps/prediction/migrations/0012_predictormodel_entry_point.py +18 -0
  106. irie/apps/prediction/migrations/0013_predictormodel_metrics.py +18 -0
  107. irie/apps/prediction/migrations/0014_auto_20240930_0004.py +28 -0
  108. irie/apps/prediction/migrations/0015_alter_predictormodel_render_file.py +18 -0
  109. irie/apps/prediction/migrations/__init__.py +0 -0
  110. irie/apps/prediction/models.py +37 -0
  111. irie/apps/prediction/predictor.py +286 -0
  112. irie/apps/prediction/runners/__init__.py +450 -0
  113. irie/apps/prediction/runners/metrics.py +168 -0
  114. irie/apps/prediction/runners/opensees/__init__.py +0 -0
  115. irie/apps/prediction/runners/opensees/schemas/__init__.py +39 -0
  116. irie/apps/prediction/runners/utilities.py +277 -0
  117. irie/apps/prediction/runners/xmlutils.py +232 -0
  118. irie/apps/prediction/runners/zipped.py +27 -0
  119. irie/apps/prediction/templatetags/__init__.py +0 -0
  120. irie/apps/prediction/templatetags/predictor.py +20 -0
  121. irie/apps/prediction/urls.py +19 -0
  122. irie/apps/prediction/views.py +184 -0
  123. irie/apps/prediction/views_api.py +216 -0
  124. irie/apps/site/__init__.py +0 -0
  125. irie/apps/site/admin.py +1 -0
  126. irie/apps/site/config.py +6 -0
  127. irie/apps/site/migrations/__init__.py +1 -0
  128. irie/apps/site/models.py +2 -0
  129. irie/apps/site/templatetags/__init__.py +0 -0
  130. irie/apps/site/templatetags/indexing.py +7 -0
  131. irie/apps/site/tests.py +1 -0
  132. irie/apps/site/urls.py +8 -0
  133. irie/apps/site/view_sdof.py +40 -0
  134. irie/apps/site/view_utils.py +13 -0
  135. irie/apps/site/views.py +88 -0
  136. irie/core/__init__.py +5 -0
  137. irie/core/asgi.py +12 -0
  138. irie/core/settings.py +223 -0
  139. irie/core/urls.py +39 -0
  140. irie/core/wsgi.py +12 -0
  141. irie-0.0.0.dist-info/METADATA +48 -0
  142. irie-0.0.0.dist-info/RECORD +145 -0
  143. irie-0.0.0.dist-info/WHEEL +5 -0
  144. irie-0.0.0.dist-info/entry_points.txt +2 -0
  145. irie-0.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1175 @@
1
+ ARCGIS = {
2
+ "objectIdFieldName": "OBJECTID_1",
3
+ "globalIdFieldName": "",
4
+ "geometryType": "esriGeometryPoint",
5
+ "spatialReference": {
6
+ "wkid": 102100,
7
+ "latestWkid": 3857
8
+ },
9
+ "fields": [
10
+ {
11
+ "name": "OBJECTID_1",
12
+ "alias": "OBJECTID_1",
13
+ "type": "esriFieldTypeOID"
14
+ },
15
+ {
16
+ "name": "OBJECTID",
17
+ "alias": "OBJECTID",
18
+ "type": "esriFieldTypeInteger"
19
+ },
20
+ {
21
+ "name": "DIST",
22
+ "alias": "DIST",
23
+ "type": "esriFieldTypeInteger"
24
+ },
25
+ {
26
+ "name": "CO",
27
+ "alias": "CO",
28
+ "type": "esriFieldTypeString",
29
+ "length": 254
30
+ },
31
+ {
32
+ "name": "BRIDGE",
33
+ "alias": "BRIDGE",
34
+ "type": "esriFieldTypeString",
35
+ "length": 254
36
+ },
37
+ {
38
+ "name": "BRIDGE_X",
39
+ "alias": "BRIDGE_X",
40
+ "type": "esriFieldTypeDouble"
41
+ },
42
+ {
43
+ "name": "BRIDGE_Y",
44
+ "alias": "BRIDGE_Y",
45
+ "type": "esriFieldTypeDouble"
46
+ },
47
+ {
48
+ "name": "LAT",
49
+ "alias": "LAT",
50
+ "type": "esriFieldTypeDouble"
51
+ },
52
+ {
53
+ "name": "LON",
54
+ "alias": "LON",
55
+ "type": "esriFieldTypeDouble"
56
+ },
57
+ {
58
+ "name": "NAME",
59
+ "alias": "NAME",
60
+ "type": "esriFieldTypeString",
61
+ "length": 254
62
+ },
63
+ {
64
+ "name": "LOC",
65
+ "alias": "LOC",
66
+ "type": "esriFieldTypeString",
67
+ "length": 254
68
+ },
69
+ {
70
+ "name": "YRBLT",
71
+ "alias": "YRBLT",
72
+ "type": "esriFieldTypeInteger"
73
+ },
74
+ {
75
+ "name": "HST",
76
+ "alias": "HST",
77
+ "type": "esriFieldTypeInteger"
78
+ },
79
+ {
80
+ "name": "FAC",
81
+ "alias": "FAC",
82
+ "type": "esriFieldTypeString",
83
+ "length": 254
84
+ },
85
+ {
86
+ "name": "APWID",
87
+ "alias": "APWID",
88
+ "type": "esriFieldTypeDouble"
89
+ },
90
+ {
91
+ "name": "LENG",
92
+ "alias": "LENG",
93
+ "type": "esriFieldTypeDouble"
94
+ },
95
+ {
96
+ "name": "DK_AREA",
97
+ "alias": "DK_AREA",
98
+ "type": "esriFieldTypeInteger"
99
+ },
100
+ {
101
+ "name": "LSW",
102
+ "alias": "LSW",
103
+ "type": "esriFieldTypeInteger"
104
+ },
105
+ {
106
+ "name": "RSW",
107
+ "alias": "RSW",
108
+ "type": "esriFieldTypeInteger"
109
+ },
110
+ {
111
+ "name": "RDW",
112
+ "alias": "RDW",
113
+ "type": "esriFieldTypeDouble"
114
+ },
115
+ {
116
+ "name": "REFVCU",
117
+ "alias": "REFVCU",
118
+ "type": "esriFieldTypeString",
119
+ "length": 254
120
+ },
121
+ {
122
+ "name": "VCU",
123
+ "alias": "VCU",
124
+ "type": "esriFieldTypeInteger"
125
+ },
126
+ {
127
+ "name": "MAINSPANS",
128
+ "alias": "MAINSPANS",
129
+ "type": "esriFieldTypeInteger"
130
+ },
131
+ {
132
+ "name": "DIR",
133
+ "alias": "DIR",
134
+ "type": "esriFieldTypeInteger"
135
+ },
136
+ {
137
+ "name": "PRINC",
138
+ "alias": "PRINC",
139
+ "type": "esriFieldTypeInteger"
140
+ },
141
+ {
142
+ "name": "INTERSEC",
143
+ "alias": "INTERSEC",
144
+ "type": "esriFieldTypeString",
145
+ "length": 254
146
+ },
147
+ {
148
+ "name": "AADT",
149
+ "alias": "AADT",
150
+ "type": "esriFieldTypeInteger"
151
+ },
152
+ {
153
+ "name": "PCTTRK",
154
+ "alias": "PCTTRK",
155
+ "type": "esriFieldTypeInteger"
156
+ },
157
+ {
158
+ "name": "DEF",
159
+ "alias": "DEF",
160
+ "type": "esriFieldTypeInteger"
161
+ },
162
+ {
163
+ "name": "NHS",
164
+ "alias": "NHS",
165
+ "type": "esriFieldTypeInteger"
166
+ },
167
+ {
168
+ "name": "FUNCTIONAL",
169
+ "alias": "FUNCTIONAL",
170
+ "type": "esriFieldTypeInteger"
171
+ },
172
+ {
173
+ "name": "DATA_EXTRA",
174
+ "alias": "DATA_EXTRA",
175
+ "type": "esriFieldTypeString",
176
+ "length": 254
177
+ },
178
+ {
179
+ "name": "PM",
180
+ "alias": "PM",
181
+ "type": "esriFieldTypeString",
182
+ "length": 50
183
+ },
184
+ {
185
+ "name": "CITY",
186
+ "alias": "CITY",
187
+ "type": "esriFieldTypeString",
188
+ "length": 80
189
+ },
190
+ {
191
+ "name": "RTE",
192
+ "alias": "RTE",
193
+ "type": "esriFieldTypeString",
194
+ "length": 80
195
+ }
196
+ ],
197
+ "features": [
198
+ {
199
+ "attributes": {
200
+ "OBJECTID_1": 1,
201
+ "OBJECTID": 1,
202
+ "DIST": 1,
203
+ "CO": "DN",
204
+ "BRIDGE": "01 0002",
205
+ "BRIDGE_X": 0.03333333,
206
+ "BRIDGE_Y": 1.0,
207
+ "LAT": 41.55361944,
208
+ "LON": -124.0549028,
209
+ "NAME": "MINOT CREEK",
210
+ "LOC": "01-DN-101-8.14",
211
+ "YRBLT": 1957,
212
+ "HST": 5,
213
+ "FAC": "U.S. HIGHWAY 101",
214
+ "APWID": 12.8,
215
+ "LENG": 14.3,
216
+ "DK_AREA": 240,
217
+ "LSW": 0,
218
+ "RSW": 0,
219
+ "RDW": 15.9,
220
+ "REFVCU": "N",
221
+ "VCU": 0,
222
+ "MAINSPANS": 1,
223
+ "DIR": 2,
224
+ "PRINC": 1,
225
+ "INTERSEC": "MINOT CREEK",
226
+ "AADT": 4600,
227
+ "PCTTRK": 14,
228
+ "DEF": 1,
229
+ "NHS": 1,
230
+ "FUNCTIONAL": 2,
231
+ "DATA_EXTRA": "30-Jan-20",
232
+ "PM": "8.14",
233
+ "CITY": "0",
234
+ "RTE": "101"
235
+ }
236
+ },
237
+ {
238
+ "attributes": {
239
+ "OBJECTID_1": 2,
240
+ "OBJECTID": 2,
241
+ "DIST": 1,
242
+ "CO": "DN",
243
+ "BRIDGE": "01 0003",
244
+ "BRIDGE_X": 0.05,
245
+ "BRIDGE_Y": 1.0,
246
+ "LAT": 41.55808889,
247
+ "LON": -124.0589167,
248
+ "NAME": "HUNTER CREEK",
249
+ "LOC": "01-DN-101-8.51",
250
+ "YRBLT": 1951,
251
+ "HST": 5,
252
+ "FAC": "U.S. HIGHWAY 101",
253
+ "APWID": 8.5,
254
+ "LENG": 32.6,
255
+ "DK_AREA": 322,
256
+ "LSW": 0,
257
+ "RSW": 0,
258
+ "RDW": 8.5,
259
+ "REFVCU": "N",
260
+ "VCU": 0,
261
+ "MAINSPANS": 3,
262
+ "DIR": 2,
263
+ "PRINC": 1,
264
+ "INTERSEC": "HUNTER CREEK",
265
+ "AADT": 4600,
266
+ "PCTTRK": 14,
267
+ "DEF": 1,
268
+ "NHS": 1,
269
+ "FUNCTIONAL": 2,
270
+ "DATA_EXTRA": "30-Jan-20",
271
+ "PM": "8.51",
272
+ "CITY": "0",
273
+ "RTE": "101"
274
+ }
275
+ },
276
+ {
277
+ "attributes": {
278
+ "OBJECTID_1": 3,
279
+ "OBJECTID": 3,
280
+ "DIST": 1,
281
+ "CO": "DN",
282
+ "BRIDGE": "01 0004",
283
+ "BRIDGE_X": 0.06666667,
284
+ "BRIDGE_Y": 1.0,
285
+ "LAT": 41.56820278,
286
+ "LON": -124.068925,
287
+ "NAME": "HIGH PRAIRIE CREEK",
288
+ "LOC": "01-DN-101-9.39",
289
+ "YRBLT": 1957,
290
+ "HST": 5,
291
+ "FAC": "U.S. HIGHWAY 101",
292
+ "APWID": 12.2,
293
+ "LENG": 28.0,
294
+ "DK_AREA": 372,
295
+ "LSW": 0,
296
+ "RSW": 0,
297
+ "RDW": 12.2,
298
+ "REFVCU": "N",
299
+ "VCU": 0,
300
+ "MAINSPANS": 2,
301
+ "DIR": 2,
302
+ "PRINC": 1,
303
+ "INTERSEC": "HIGH PRAIRIE CREEK",
304
+ "AADT": 4600,
305
+ "PCTTRK": 14,
306
+ "DEF": 1,
307
+ "NHS": 1,
308
+ "FUNCTIONAL": 2,
309
+ "DATA_EXTRA": "30-Jan-20",
310
+ "PM": "9.39",
311
+ "CITY": "0",
312
+ "RTE": "101"
313
+ }
314
+ },
315
+ {
316
+ "attributes": {
317
+ "OBJECTID_1": 4,
318
+ "OBJECTID": 4,
319
+ "DIST": 1,
320
+ "CO": "DN",
321
+ "BRIDGE": "01 0005",
322
+ "BRIDGE_X": 0.08333333,
323
+ "BRIDGE_Y": 1.0,
324
+ "LAT": 41.60438611,
325
+ "LON": -124.1007444,
326
+ "NAME": "WILSON CREEK (LOUIS P DEMARTIN SR MEMORIAL BRIDGE)",
327
+ "LOC": "01-DN-101-12.64",
328
+ "YRBLT": 1957,
329
+ "HST": 5,
330
+ "FAC": "U.S. HIGHWAY 101",
331
+ "APWID": 18.3,
332
+ "LENG": 85.3,
333
+ "DK_AREA": 1646,
334
+ "LSW": 0,
335
+ "RSW": 0,
336
+ "RDW": 18.3,
337
+ "REFVCU": "N",
338
+ "VCU": 0,
339
+ "MAINSPANS": 3,
340
+ "DIR": 2,
341
+ "PRINC": 1,
342
+ "INTERSEC": "WILSON CREEK",
343
+ "AADT": 4700,
344
+ "PCTTRK": 15,
345
+ "DEF": 1,
346
+ "NHS": 1,
347
+ "FUNCTIONAL": 2,
348
+ "DATA_EXTRA": "30-Jan-20",
349
+ "PM": "12.64",
350
+ "CITY": "0",
351
+ "RTE": "101"
352
+ }
353
+ },
354
+ {
355
+ "attributes": {
356
+ "OBJECTID_1": 5,
357
+ "OBJECTID": 5,
358
+ "DIST": 1,
359
+ "CO": "DN",
360
+ "BRIDGE": "01 0006",
361
+ "BRIDGE_X": 0.1,
362
+ "BRIDGE_Y": 1.0,
363
+ "LAT": 41.80669167,
364
+ "LON": -124.0825389,
365
+ "NAME": "SMITH RIVER (HIOUCHI BRIDGE)",
366
+ "LOC": "01-DN-199-4.22",
367
+ "YRBLT": 1990,
368
+ "HST": 5,
369
+ "FAC": "U.S. HIGHWAY 199",
370
+ "APWID": 12.2,
371
+ "LENG": 208.5,
372
+ "DK_AREA": 2544,
373
+ "LSW": 0,
374
+ "RSW": 0,
375
+ "RDW": 11.0,
376
+ "REFVCU": "N",
377
+ "VCU": 0,
378
+ "MAINSPANS": 3,
379
+ "DIR": 2,
380
+ "PRINC": 1,
381
+ "INTERSEC": "SMITH RIVER",
382
+ "AADT": 4300,
383
+ "PCTTRK": 11,
384
+ "DEF": 0,
385
+ "NHS": 1,
386
+ "FUNCTIONAL": 2,
387
+ "DATA_EXTRA": "30-Jan-20",
388
+ "PM": "4.22",
389
+ "CITY": "0",
390
+ "RTE": "199"
391
+ }
392
+ },
393
+ {
394
+ "attributes": {
395
+ "OBJECTID_1": 6,
396
+ "OBJECTID": 6,
397
+ "DIST": 1,
398
+ "CO": "DN",
399
+ "BRIDGE": "01 0007",
400
+ "BRIDGE_X": 0.11666667,
401
+ "BRIDGE_Y": 1.0,
402
+ "LAT": 41.80132423,
403
+ "LON": -124.055744,
404
+ "NAME": "MYRTLE CREEK",
405
+ "LOC": "01-DN-199-7.09",
406
+ "YRBLT": 1984,
407
+ "HST": 5,
408
+ "FAC": "U.S. HIGHWAY 199",
409
+ "APWID": 9.8,
410
+ "LENG": 76.2,
411
+ "DK_AREA": 824,
412
+ "LSW": 0,
413
+ "RSW": 0,
414
+ "RDW": 9.8,
415
+ "REFVCU": "N",
416
+ "VCU": 0,
417
+ "MAINSPANS": 1,
418
+ "DIR": 2,
419
+ "PRINC": 1,
420
+ "INTERSEC": "MYRTLE CREEK",
421
+ "AADT": 4300,
422
+ "PCTTRK": 11,
423
+ "DEF": 0,
424
+ "NHS": 1,
425
+ "FUNCTIONAL": 2,
426
+ "DATA_EXTRA": "30-Jan-20",
427
+ "PM": "7.09",
428
+ "CITY": "0",
429
+ "RTE": "199"
430
+ }
431
+ },
432
+ {
433
+ "attributes": {
434
+ "OBJECTID_1": 7,
435
+ "OBJECTID": 7,
436
+ "DIST": 1,
437
+ "CO": "DN",
438
+ "BRIDGE": "01 0009",
439
+ "BRIDGE_X": 0.15,
440
+ "BRIDGE_Y": 1.0,
441
+ "LAT": 41.84243056,
442
+ "LON": -124.0119111,
443
+ "NAME": "SMITH RIVER (MARY ADAMS PEACOCK MEMORIAL BRIDGE)",
444
+ "LOC": "01-DN-199-R11.95",
445
+ "YRBLT": 1985,
446
+ "HST": 5,
447
+ "FAC": "U.S. HIGHWAY 199",
448
+ "APWID": 10.7,
449
+ "LENG": 113.1,
450
+ "DK_AREA": 1223,
451
+ "LSW": 0,
452
+ "RSW": 0,
453
+ "RDW": 9.8,
454
+ "REFVCU": "N",
455
+ "VCU": 0,
456
+ "MAINSPANS": 3,
457
+ "DIR": 2,
458
+ "PRINC": 1,
459
+ "INTERSEC": "SMITH RIVER",
460
+ "AADT": 3750,
461
+ "PCTTRK": 13,
462
+ "DEF": 0,
463
+ "NHS": 1,
464
+ "FUNCTIONAL": 2,
465
+ "DATA_EXTRA": "30-Jan-20",
466
+ "PM": "R11.95",
467
+ "CITY": "0",
468
+ "RTE": "199"
469
+ }
470
+ },
471
+ {
472
+ "attributes": {
473
+ "OBJECTID_1": 8,
474
+ "OBJECTID": 8,
475
+ "DIST": 1,
476
+ "CO": "DN",
477
+ "BRIDGE": "01 0012",
478
+ "BRIDGE_X": 0.2,
479
+ "BRIDGE_Y": 1.0,
480
+ "LAT": 41.85752607,
481
+ "LON": -123.8859912,
482
+ "NAME": "MIDDLE FORK SMITH RIVER",
483
+ "LOC": "01-DN-199-R19.22",
484
+ "YRBLT": 1965,
485
+ "HST": 5,
486
+ "FAC": "U.S. HIGHWAY 199",
487
+ "APWID": 18.3,
488
+ "LENG": 100.9,
489
+ "DK_AREA": 1839,
490
+ "LSW": 0,
491
+ "RSW": 0,
492
+ "RDW": 18.3,
493
+ "REFVCU": "N",
494
+ "VCU": 0,
495
+ "MAINSPANS": 3,
496
+ "DIR": 2,
497
+ "PRINC": 1,
498
+ "INTERSEC": "MIDDLE FORK SMITH RIVER",
499
+ "AADT": 3100,
500
+ "PCTTRK": 14,
501
+ "DEF": 0,
502
+ "NHS": 1,
503
+ "FUNCTIONAL": 2,
504
+ "DATA_EXTRA": "30-Jan-20",
505
+ "PM": "R19.22",
506
+ "CITY": "0",
507
+ "RTE": "199"
508
+ }
509
+ },
510
+ {
511
+ "attributes": {
512
+ "OBJECTID_1": 9,
513
+ "OBJECTID": 9,
514
+ "DIST": 1,
515
+ "CO": "DN",
516
+ "BRIDGE": "01 0014",
517
+ "BRIDGE_X": 0.23333333,
518
+ "BRIDGE_Y": 1.0,
519
+ "LAT": 41.87448619,
520
+ "LON": -123.8439226,
521
+ "NAME": "PATRICK CREEK",
522
+ "LOC": "01-DN-199-R22.07",
523
+ "YRBLT": 1965,
524
+ "HST": 5,
525
+ "FAC": "U.S. HIGHWAY 199",
526
+ "APWID": 9.8,
527
+ "LENG": 40.5,
528
+ "DK_AREA": 420,
529
+ "LSW": 0,
530
+ "RSW": 0,
531
+ "RDW": 9.8,
532
+ "REFVCU": "N",
533
+ "VCU": 0,
534
+ "MAINSPANS": 3,
535
+ "DIR": 2,
536
+ "PRINC": 1,
537
+ "INTERSEC": "PATRICK CREEK",
538
+ "AADT": 3750,
539
+ "PCTTRK": 14,
540
+ "DEF": 0,
541
+ "NHS": 1,
542
+ "FUNCTIONAL": 2,
543
+ "DATA_EXTRA": "30-Jan-20",
544
+ "PM": "R22.07",
545
+ "CITY": "0",
546
+ "RTE": "199"
547
+ }
548
+ },
549
+ {
550
+ "attributes": {
551
+ "OBJECTID_1": 10,
552
+ "OBJECTID": 10,
553
+ "DIST": 1,
554
+ "CO": "DN",
555
+ "BRIDGE": "01 0015",
556
+ "BRIDGE_X": 0.25,
557
+ "BRIDGE_Y": 1.0,
558
+ "LAT": 41.87983879,
559
+ "LON": -123.8271603,
560
+ "NAME": "MIDDLE FORK SMITH RIVER",
561
+ "LOC": "01-DN-199-24.08",
562
+ "YRBLT": 1925,
563
+ "HST": 5,
564
+ "FAC": "U.S. HIGHWAY 199",
565
+ "APWID": 7.3,
566
+ "LENG": 45.4,
567
+ "DK_AREA": 356,
568
+ "LSW": 0,
569
+ "RSW": 0,
570
+ "RDW": 7.5,
571
+ "REFVCU": "N",
572
+ "VCU": 0,
573
+ "MAINSPANS": 1,
574
+ "DIR": 2,
575
+ "PRINC": 1,
576
+ "INTERSEC": "MIDDLE FORK SMITH RIVER",
577
+ "AADT": 3750,
578
+ "PCTTRK": 14,
579
+ "DEF": 0,
580
+ "NHS": 1,
581
+ "FUNCTIONAL": 2,
582
+ "DATA_EXTRA": "30-Jan-20",
583
+ "PM": "24.08",
584
+ "CITY": "0",
585
+ "RTE": "199"
586
+ }
587
+ },
588
+ {
589
+ "attributes": {
590
+ "OBJECTID_1": 11,
591
+ "OBJECTID": 11,
592
+ "DIST": 1,
593
+ "CO": "DN",
594
+ "BRIDGE": "01 0016",
595
+ "BRIDGE_X": 0.26666667,
596
+ "BRIDGE_Y": 1.0,
597
+ "LAT": 41.88285768,
598
+ "LON": -123.8187774,
599
+ "NAME": "MIDDLE FORK SMITH RIV (ALLEN F LEHMAN MEMORIAL BR)",
600
+ "LOC": "01-DN-199-R24.88",
601
+ "YRBLT": 1985,
602
+ "HST": 5,
603
+ "FAC": "U.S. HIGHWAY 199",
604
+ "APWID": 10.7,
605
+ "LENG": 71.6,
606
+ "DK_AREA": 775,
607
+ "LSW": 0,
608
+ "RSW": 0,
609
+ "RDW": 9.8,
610
+ "REFVCU": "N",
611
+ "VCU": 0,
612
+ "MAINSPANS": 3,
613
+ "DIR": 2,
614
+ "PRINC": 1,
615
+ "INTERSEC": "MIDDLE FORK SMITH RIVER",
616
+ "AADT": 3750,
617
+ "PCTTRK": 14,
618
+ "DEF": 0,
619
+ "NHS": 1,
620
+ "FUNCTIONAL": 2,
621
+ "DATA_EXTRA": "30-Jan-20",
622
+ "PM": "R24.88",
623
+ "CITY": "0",
624
+ "RTE": "199"
625
+ }
626
+ },
627
+ {
628
+ "attributes": {
629
+ "OBJECTID_1": 12,
630
+ "OBJECTID": 12,
631
+ "DIST": 1,
632
+ "CO": "DN",
633
+ "BRIDGE": "01 0019",
634
+ "BRIDGE_X": 0.31666667,
635
+ "BRIDGE_Y": 1.0,
636
+ "LAT": 41.860775,
637
+ "LON": -123.872375,
638
+ "NAME": "MIDDLE FORK SMITH RIV (HOWARD GRIFFIN MEMORIAL BR)",
639
+ "LOC": "01-DN-199-19.99",
640
+ "YRBLT": 1962,
641
+ "HST": 5,
642
+ "FAC": "U.S. HIGHWAY 199",
643
+ "APWID": 9.8,
644
+ "LENG": 85.3,
645
+ "DK_AREA": 884,
646
+ "LSW": 1,
647
+ "RSW": 1,
648
+ "RDW": 8.5,
649
+ "REFVCU": "N",
650
+ "VCU": 0,
651
+ "MAINSPANS": 2,
652
+ "DIR": 2,
653
+ "PRINC": 1,
654
+ "INTERSEC": "MIDDLE FORK SMITH RIVER",
655
+ "AADT": 3100,
656
+ "PCTTRK": 14,
657
+ "DEF": 0,
658
+ "NHS": 1,
659
+ "FUNCTIONAL": 2,
660
+ "DATA_EXTRA": "30-Jan-20",
661
+ "PM": "19.99",
662
+ "CITY": "0",
663
+ "RTE": "199"
664
+ }
665
+ },
666
+ {
667
+ "attributes": {
668
+ "OBJECTID_1": 13,
669
+ "OBJECTID": 13,
670
+ "DIST": 1,
671
+ "CO": "DN",
672
+ "BRIDGE": "01 0020",
673
+ "BRIDGE_X": 0.33333333,
674
+ "BRIDGE_Y": 1.0,
675
+ "LAT": 41.87788056,
676
+ "LON": -124.1375,
677
+ "NAME": "SMITH RIVER (DR. ERNEST M FINE MEMORIAL BRIDGE)",
678
+ "LOC": "01-DN-101-36.06",
679
+ "YRBLT": 1940,
680
+ "HST": 5,
681
+ "FAC": "U.S. HIGHWAY 101",
682
+ "APWID": 10.1,
683
+ "LENG": 320.3,
684
+ "DK_AREA": 3095,
685
+ "LSW": 1,
686
+ "RSW": 1,
687
+ "RDW": 7.9,
688
+ "REFVCU": "H",
689
+ "VCU": 5,
690
+ "MAINSPANS": 6,
691
+ "DIR": 2,
692
+ "PRINC": 1,
693
+ "INTERSEC": "SMITH RIV, SOUTH BANK RD",
694
+ "AADT": 6500,
695
+ "PCTTRK": 13,
696
+ "DEF": 1,
697
+ "NHS": 1,
698
+ "FUNCTIONAL": 2,
699
+ "DATA_EXTRA": "30-Jan-20",
700
+ "PM": "36.06",
701
+ "CITY": "0",
702
+ "RTE": "101"
703
+ }
704
+ },
705
+ {
706
+ "attributes": {
707
+ "OBJECTID_1": 14,
708
+ "OBJECTID": 14,
709
+ "DIST": 1,
710
+ "CO": "DN",
711
+ "BRIDGE": "01 0021",
712
+ "BRIDGE_X": 0.35,
713
+ "BRIDGE_Y": 1.0,
714
+ "LAT": 41.75266944,
715
+ "LON": -124.1917083,
716
+ "NAME": "ELK CREEK",
717
+ "LOC": "01-DN-101-26.15-CRC",
718
+ "YRBLT": 1944,
719
+ "HST": 5,
720
+ "FAC": "U.S. HIGHWAY 101",
721
+ "APWID": 17.7,
722
+ "LENG": 27.4,
723
+ "DK_AREA": 1005,
724
+ "LSW": 2,
725
+ "RSW": 0,
726
+ "RDW": 39.3,
727
+ "REFVCU": "N",
728
+ "VCU": 0,
729
+ "MAINSPANS": 1,
730
+ "DIR": 2,
731
+ "PRINC": 1,
732
+ "INTERSEC": "ELK CREEK",
733
+ "AADT": 21500,
734
+ "PCTTRK": 0,
735
+ "DEF": 1,
736
+ "NHS": 1,
737
+ "FUNCTIONAL": 14,
738
+ "DATA_EXTRA": "30-Jan-20",
739
+ "PM": "26.15",
740
+ "CITY": "CRESCENT CITY",
741
+ "RTE": "101"
742
+ }
743
+ },
744
+ {
745
+ "attributes": {
746
+ "OBJECTID_1": 15,
747
+ "OBJECTID": 15,
748
+ "DIST": 1,
749
+ "CO": "DN",
750
+ "BRIDGE": "01 0023",
751
+ "BRIDGE_X": 0.38333333,
752
+ "BRIDGE_Y": 1.0,
753
+ "LAT": 41.92828889,
754
+ "LON": -124.1431528,
755
+ "NAME": "ROWDY CREEK",
756
+ "LOC": "01-DN-101-39.63",
757
+ "YRBLT": 1951,
758
+ "HST": 5,
759
+ "FAC": "U.S. HIGHWAY 101",
760
+ "APWID": 12.2,
761
+ "LENG": 63.4,
762
+ "DK_AREA": 841,
763
+ "LSW": 0,
764
+ "RSW": 0,
765
+ "RDW": 12.2,
766
+ "REFVCU": "N",
767
+ "VCU": 0,
768
+ "MAINSPANS": 2,
769
+ "DIR": 2,
770
+ "PRINC": 1,
771
+ "INTERSEC": "ROWDY CREEK",
772
+ "AADT": 6700,
773
+ "PCTTRK": 6,
774
+ "DEF": 1,
775
+ "NHS": 1,
776
+ "FUNCTIONAL": 2,
777
+ "DATA_EXTRA": "30-Jan-20",
778
+ "PM": "39.63",
779
+ "CITY": "0",
780
+ "RTE": "101"
781
+ }
782
+ },
783
+ {
784
+ "attributes": {
785
+ "OBJECTID_1": 16,
786
+ "OBJECTID": 16,
787
+ "DIST": 1,
788
+ "CO": "DN",
789
+ "BRIDGE": "01 0024",
790
+ "BRIDGE_X": 0.4,
791
+ "BRIDGE_Y": 1.0,
792
+ "LAT": 41.982,
793
+ "LON": -124.2032139,
794
+ "NAME": "GILBERT CREEK",
795
+ "LOC": "01-DN-101-45.30",
796
+ "YRBLT": 1953,
797
+ "HST": 5,
798
+ "FAC": "U.S. HIGHWAY 101",
799
+ "APWID": 8.5,
800
+ "LENG": 49.4,
801
+ "DK_AREA": 633,
802
+ "LSW": 0,
803
+ "RSW": 0,
804
+ "RDW": 12.0,
805
+ "REFVCU": "N",
806
+ "VCU": 0,
807
+ "MAINSPANS": 3,
808
+ "DIR": 2,
809
+ "PRINC": 1,
810
+ "INTERSEC": "GILBERT CREEK",
811
+ "AADT": 7300,
812
+ "PCTTRK": 10,
813
+ "DEF": 1,
814
+ "NHS": 1,
815
+ "FUNCTIONAL": 2,
816
+ "DATA_EXTRA": "30-Jan-20",
817
+ "PM": "45.3",
818
+ "CITY": "0",
819
+ "RTE": "101"
820
+ }
821
+ },
822
+ {
823
+ "attributes": {
824
+ "OBJECTID_1": 17,
825
+ "OBJECTID": 17,
826
+ "DIST": 1,
827
+ "CO": "DN",
828
+ "BRIDGE": "01 0025",
829
+ "BRIDGE_X": 0.41666667,
830
+ "BRIDGE_Y": 1.0,
831
+ "LAT": 41.55619722,
832
+ "LON": -124.0569028,
833
+ "NAME": "PANTHER CREEK",
834
+ "LOC": "01-DN-101-8.34",
835
+ "YRBLT": 1956,
836
+ "HST": 5,
837
+ "FAC": "U.S. HIGHWAY 101",
838
+ "APWID": 12.2,
839
+ "LENG": 41.8,
840
+ "DK_AREA": 415,
841
+ "LSW": 0,
842
+ "RSW": 0,
843
+ "RDW": 9.8,
844
+ "REFVCU": "N",
845
+ "VCU": 0,
846
+ "MAINSPANS": 3,
847
+ "DIR": 2,
848
+ "PRINC": 1,
849
+ "INTERSEC": "PANTHER CREEK",
850
+ "AADT": 4600,
851
+ "PCTTRK": 14,
852
+ "DEF": 1,
853
+ "NHS": 1,
854
+ "FUNCTIONAL": 2,
855
+ "DATA_EXTRA": "30-Jan-20",
856
+ "PM": "8.34",
857
+ "CITY": "0",
858
+ "RTE": "101"
859
+ }
860
+ },
861
+ {
862
+ "attributes": {
863
+ "OBJECTID_1": 18,
864
+ "OBJECTID": 18,
865
+ "DIST": 1,
866
+ "CO": "DN",
867
+ "BRIDGE": "01 0026",
868
+ "BRIDGE_X": 0.43333333,
869
+ "BRIDGE_Y": 1.0,
870
+ "LAT": 41.52303889,
871
+ "LON": -124.0340667,
872
+ "NAME": "ROUTE 101/169 SEPARATION",
873
+ "LOC": "01-DN-101-R4.64",
874
+ "YRBLT": 1965,
875
+ "HST": 5,
876
+ "FAC": "U.S. HIGHWAY 101",
877
+ "APWID": 12.2,
878
+ "LENG": 51.5,
879
+ "DK_AREA": 670,
880
+ "LSW": 0,
881
+ "RSW": 0,
882
+ "RDW": 12.4,
883
+ "REFVCU": "H",
884
+ "VCU": 5,
885
+ "MAINSPANS": 2,
886
+ "DIR": 2,
887
+ "PRINC": 1,
888
+ "INTERSEC": "SR 169 & HOPPOW CREEK",
889
+ "AADT": 3600,
890
+ "PCTTRK": 18,
891
+ "DEF": 1,
892
+ "NHS": 1,
893
+ "FUNCTIONAL": 2,
894
+ "DATA_EXTRA": "30-Jan-20",
895
+ "PM": "R4.64",
896
+ "CITY": "0",
897
+ "RTE": "101"
898
+ }
899
+ },
900
+ {
901
+ "attributes": {
902
+ "OBJECTID_1": 19,
903
+ "OBJECTID": 19,
904
+ "DIST": 1,
905
+ "CO": "DN",
906
+ "BRIDGE": "01 0026F",
907
+ "BRIDGE_X": 0.0,
908
+ "BRIDGE_Y": 0.0,
909
+ "LAT": 41.52341111,
910
+ "LON": -124.0338472,
911
+ "NAME": "HOPPOW CREEK (W169-N101)",
912
+ "LOC": "01-DN-169-R0.03",
913
+ "YRBLT": 1965,
914
+ "HST": 5,
915
+ "FAC": "W169-N101 CONNECTR",
916
+ "APWID": 7.6,
917
+ "LENG": 21.0,
918
+ "DK_AREA": 295,
919
+ "LSW": 1,
920
+ "RSW": 0,
921
+ "RDW": 7.6,
922
+ "REFVCU": "N",
923
+ "VCU": 0,
924
+ "MAINSPANS": 2,
925
+ "DIR": 1,
926
+ "PRINC": 1,
927
+ "INTERSEC": "HOPPOW CREEK",
928
+ "AADT": 430,
929
+ "PCTTRK": 10,
930
+ "DEF": 0,
931
+ "NHS": 0,
932
+ "FUNCTIONAL": 7,
933
+ "DATA_EXTRA": "30-Jan-20",
934
+ "PM": "R.03",
935
+ "CITY": "0",
936
+ "RTE": "169"
937
+ }
938
+ },
939
+ {
940
+ "attributes": {
941
+ "OBJECTID_1": 20,
942
+ "OBJECTID": 20,
943
+ "DIST": 1,
944
+ "CO": "DN",
945
+ "BRIDGE": "01 0026K",
946
+ "BRIDGE_X": 0.0,
947
+ "BRIDGE_Y": 0.0,
948
+ "LAT": 41.52329167,
949
+ "LON": -124.0348972,
950
+ "NAME": "HOPPOW CREEK (OFF-RAMP)",
951
+ "LOC": "01-DN-101-R4.76",
952
+ "YRBLT": 1965,
953
+ "HST": 5,
954
+ "FAC": "S101-CHAPMAN ST RP",
955
+ "APWID": 7.0,
956
+ "LENG": 27.7,
957
+ "DK_AREA": 222,
958
+ "LSW": 0,
959
+ "RSW": 1,
960
+ "RDW": 6.8,
961
+ "REFVCU": "N",
962
+ "VCU": 0,
963
+ "MAINSPANS": 3,
964
+ "DIR": 1,
965
+ "PRINC": 1,
966
+ "INTERSEC": "HOPPOW CREEK",
967
+ "AADT": 320,
968
+ "PCTTRK": 10,
969
+ "DEF": 1,
970
+ "NHS": 1,
971
+ "FUNCTIONAL": 2,
972
+ "DATA_EXTRA": "30-Jan-20",
973
+ "PM": "R4.76",
974
+ "CITY": "0",
975
+ "RTE": "101"
976
+ }
977
+ },
978
+ {
979
+ "attributes": {
980
+ "OBJECTID_1": 21,
981
+ "OBJECTID": 21,
982
+ "DIST": 1,
983
+ "CO": "DN",
984
+ "BRIDGE": "01 0028",
985
+ "BRIDGE_X": 0.46666667,
986
+ "BRIDGE_Y": 1.0,
987
+ "LAT": 41.51508056,
988
+ "LON": -124.0292889,
989
+ "NAME": "KLAMATH RIVER",
990
+ "LOC": "01-DN-101-R4.04",
991
+ "YRBLT": 1965,
992
+ "HST": 5,
993
+ "FAC": "U.S. HIGHWAY 101",
994
+ "APWID": 12.2,
995
+ "LENG": 621.2,
996
+ "DK_AREA": 6437,
997
+ "LSW": 1,
998
+ "RSW": 1,
999
+ "RDW": 8.5,
1000
+ "REFVCU": "N",
1001
+ "VCU": 0,
1002
+ "MAINSPANS": 12,
1003
+ "DIR": 2,
1004
+ "PRINC": 1,
1005
+ "INTERSEC": "KLAMATH RIVER",
1006
+ "AADT": 3600,
1007
+ "PCTTRK": 18,
1008
+ "DEF": 1,
1009
+ "NHS": 1,
1010
+ "FUNCTIONAL": 2,
1011
+ "DATA_EXTRA": "30-Jan-20",
1012
+ "PM": "R4.04",
1013
+ "CITY": "0",
1014
+ "RTE": "101"
1015
+ }
1016
+ },
1017
+ {
1018
+ "attributes": {
1019
+ "OBJECTID_1": 22,
1020
+ "OBJECTID": 22,
1021
+ "DIST": 1,
1022
+ "CO": "DN",
1023
+ "BRIDGE": "01 0032",
1024
+ "BRIDGE_X": 0.53333333,
1025
+ "BRIDGE_Y": 1.0,
1026
+ "LAT": 41.51128611,
1027
+ "LON": -124.0286444,
1028
+ "NAME": "KLAMATH RIVER OVERFLOW",
1029
+ "LOC": "01-DN-101-R3.77",
1030
+ "YRBLT": 1965,
1031
+ "HST": 5,
1032
+ "FAC": "U.S. HIGHWAY 101",
1033
+ "APWID": 12.2,
1034
+ "LENG": 153.9,
1035
+ "DK_AREA": 1595,
1036
+ "LSW": 1,
1037
+ "RSW": 1,
1038
+ "RDW": 8.5,
1039
+ "REFVCU": "H",
1040
+ "VCU": 5,
1041
+ "MAINSPANS": 5,
1042
+ "DIR": 2,
1043
+ "PRINC": 1,
1044
+ "INTERSEC": "KLAMATH BCH RD,WAUKELL C",
1045
+ "AADT": 3600,
1046
+ "PCTTRK": 18,
1047
+ "DEF": 1,
1048
+ "NHS": 1,
1049
+ "FUNCTIONAL": 2,
1050
+ "DATA_EXTRA": "30-Jan-20",
1051
+ "PM": "R3.77",
1052
+ "CITY": "0",
1053
+ "RTE": "101"
1054
+ }
1055
+ },
1056
+ {
1057
+ "attributes": {
1058
+ "OBJECTID_1": 23,
1059
+ "OBJECTID": 23,
1060
+ "DIST": 1,
1061
+ "CO": "DN",
1062
+ "BRIDGE": "01 0040",
1063
+ "BRIDGE_X": 0.66666667,
1064
+ "BRIDGE_Y": 1.0,
1065
+ "LAT": 41.83916944,
1066
+ "LON": -124.0260528,
1067
+ "NAME": "HARDSCRABBLE CRK (VIGGO \"VIC\" MEEDOM MEMORIAL BR)",
1068
+ "LOC": "01-DN-199-11.01",
1069
+ "YRBLT": 2008,
1070
+ "HST": 5,
1071
+ "FAC": "U.S. HIGHWAY 199",
1072
+ "APWID": 7.9,
1073
+ "LENG": 40.7,
1074
+ "DK_AREA": 531,
1075
+ "LSW": 0,
1076
+ "RSW": 0,
1077
+ "RDW": 11.9,
1078
+ "REFVCU": "N",
1079
+ "VCU": 0,
1080
+ "MAINSPANS": 1,
1081
+ "DIR": 2,
1082
+ "PRINC": 1,
1083
+ "INTERSEC": "HARDSCRABBLE CREEK",
1084
+ "AADT": 3750,
1085
+ "PCTTRK": 13,
1086
+ "DEF": 0,
1087
+ "NHS": 1,
1088
+ "FUNCTIONAL": 2,
1089
+ "DATA_EXTRA": "30-Jan-20",
1090
+ "PM": "11.01",
1091
+ "CITY": "0",
1092
+ "RTE": "199"
1093
+ }
1094
+ },
1095
+ {
1096
+ "attributes": {
1097
+ "OBJECTID_1": 24,
1098
+ "OBJECTID": 24,
1099
+ "DIST": 1,
1100
+ "CO": "DN",
1101
+ "BRIDGE": "01 0044",
1102
+ "BRIDGE_X": 0.73333333,
1103
+ "BRIDGE_Y": 1.0,
1104
+ "LAT": 41.84489312,
1105
+ "LON": -123.9221524,
1106
+ "NAME": "MIDDLE FORK SMITH RIVER",
1107
+ "LOC": "01-DN-199-R17.06",
1108
+ "YRBLT": 1965,
1109
+ "HST": 5,
1110
+ "FAC": "U.S. HIGHWAY 199",
1111
+ "APWID": 18.3,
1112
+ "LENG": 170.7,
1113
+ "DK_AREA": 3121,
1114
+ "LSW": 0,
1115
+ "RSW": 0,
1116
+ "RDW": 18.3,
1117
+ "REFVCU": "N",
1118
+ "VCU": 0,
1119
+ "MAINSPANS": 5,
1120
+ "DIR": 2,
1121
+ "PRINC": 1,
1122
+ "INTERSEC": "MIDDLE FORK SMITH RIVER",
1123
+ "AADT": 3100,
1124
+ "PCTTRK": 14,
1125
+ "DEF": 0,
1126
+ "NHS": 1,
1127
+ "FUNCTIONAL": 2,
1128
+ "DATA_EXTRA": "30-Jan-20",
1129
+ "PM": "R17.06",
1130
+ "CITY": "0",
1131
+ "RTE": "199"
1132
+ }
1133
+ },
1134
+ {
1135
+ "attributes": {
1136
+ "OBJECTID_1": 25,
1137
+ "OBJECTID": 25,
1138
+ "DIST": 1,
1139
+ "CO": "DN",
1140
+ "BRIDGE": "01 0046",
1141
+ "BRIDGE_X": 0.76666667,
1142
+ "BRIDGE_Y": 1.0,
1143
+ "LAT": 41.87381111,
1144
+ "LON": -124.1383861,
1145
+ "NAME": "SMITH RIVER OVERFLOW",
1146
+ "LOC": "01-DN-101-35.77",
1147
+ "YRBLT": 1955,
1148
+ "HST": 5,
1149
+ "FAC": "U.S. HIGHWAY 101",
1150
+ "APWID": 15.5,
1151
+ "LENG": 86.3,
1152
+ "DK_AREA": 1307,
1153
+ "LSW": 0,
1154
+ "RSW": 0,
1155
+ "RDW": 14.3,
1156
+ "REFVCU": "N",
1157
+ "VCU": 0,
1158
+ "MAINSPANS": 10,
1159
+ "DIR": 2,
1160
+ "PRINC": 1,
1161
+ "INTERSEC": "SMITH RIVER OVERFLOW",
1162
+ "AADT": 6700,
1163
+ "PCTTRK": 6,
1164
+ "DEF": 1,
1165
+ "NHS": 1,
1166
+ "FUNCTIONAL": 2,
1167
+ "DATA_EXTRA": "30-Jan-20",
1168
+ "PM": "35.77",
1169
+ "CITY": "0",
1170
+ "RTE": "101"
1171
+ }
1172
+ }
1173
+ ],
1174
+ "exceededTransferLimit": True
1175
+ }