irie 0.0.42__py3-none-any.whl → 0.0.43__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.
- irie/apps/inventory/archive/CESMD.py +0 -0
- irie/apps/inventory/models.py +27 -0
- irie/apps/inventory/services/render.py +0 -0
- irie/apps/inventory/urls.py +3 -0
- irie/apps/inventory/views.py +57 -0
- irie/apps/prediction/forms.py +2 -1
- irie/apps/prediction/models.py +24 -0
- irie/apps/prediction/urls.py +5 -3
- irie/apps/prediction/views.py +101 -8
- irie/apps/static/assets/css/brace.css +0 -32
- irie/apps/static/assets/css/brace.css.map +1 -1
- irie/apps/static/assets/css/brace.min.css +1 -1
- irie/apps/templates/inventory/asset-on-map.html +457 -0
- irie/apps/templates/inventory/asset-profile.html +1 -2
- irie/apps/templates/inventory/map-inventory.html +136 -0
- irie/apps/templates/inventory/map-inventory2.html +143 -0
- irie/apps/templates/inventory/map-single-asset.html +0 -0
- irie/apps/templates/inventory/map-single-asset2.html +618 -0
- irie/apps/templates/inventory/map-terrain.html +214 -0
- irie/apps/templates/inventory/sensor-upload.html +1 -0
- irie/apps/templates/inventory/three-maps.html +229 -0
- irie/apps/templates/layouts/base.html +1 -0
- irie/apps/templates/prediction/predictor-upload.html +68 -22
- irie/apps/templates/site/index.html +36 -27
- irie/apps/templates/site/page-400-sidebar.html +31 -0
- irie/apps/templates/site/page-400.html +29 -0
- irie/apps/templates/site/page-404-sidebar.html +1 -1
- irie/apps/templates/site/page-404.html +1 -1
- irie/fhwa/__init__.py +132 -0
- irie/fhwa/__main__.py +79 -0
- irie/fhwa/fields/nbi001.py +61 -0
- irie/fhwa/fields/nbi001b.py +1 -0
- irie/fhwa/fields/nbi002.py +0 -0
- irie/fhwa/fields.py +32 -0
- irie/init/__main__.py +0 -4
- irie/init/calid.py +86 -3
- irie/init/getNBIData.py +1 -1
- irie/init/management/commands/init_assets.py +11 -11
- irie/init/management/commands/init_predictors.py +1 -1
- irie/init/management/commands/make_asset.py +0 -0
- {irie-0.0.42.dist-info → irie-0.0.43.dist-info}/METADATA +1 -1
- {irie-0.0.42.dist-info → irie-0.0.43.dist-info}/RECORD +46 -31
- {irie-0.0.42.dist-info → irie-0.0.43.dist-info}/WHEEL +1 -1
- irie/apps/inventory/CESMD.py +0 -81
- irie/apps/inventory/archive/arcGIS.py +0 -1175
- irie/apps/inventory/traffic.py +0 -175052
- /irie/apps/inventory/{calid.py → archive/calid.py} +0 -0
- {irie-0.0.42.dist-info → irie-0.0.43.dist-info}/entry_points.txt +0 -0
- {irie-0.0.42.dist-info → irie-0.0.43.dist-info}/top_level.txt +0 -0
irie/init/calid.py
CHANGED
|
@@ -21,16 +21,16 @@ CESMD = {
|
|
|
21
21
|
"53-2795F": ("CE24694", "07-LA-5-24.5" , "Sylmar - I5/14 Interchange Bridge"),
|
|
22
22
|
"55-0225": ("CE13795", "07-ORA-5-6.62" , "Capistrano Beach - I5/Via Calif. Bridge"),
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
# "58-0215": ("CE01336", None, "El Centro - Hwy8/Meloland Overpass [Abandoned]"),
|
|
25
25
|
"47-0048": ("CE54730", None, "Lake Crowley - Hwy 395 Bridge"),
|
|
26
26
|
"04-0228": ("CE89686", None, "Eureka - Samoa Channel Bridge"),
|
|
27
27
|
"04-0236": ("CE89324", None, "Rio Dell - Hwy 101/Painter St. Overpass"),
|
|
28
28
|
"54-0823G": ("CE23631", None, "San Bernardino - I10/215 Interchange Br"),
|
|
29
29
|
"33-0214L": ("CE58658", None, "Hayward - Hwy 580/238 Interchange Bridge"),
|
|
30
|
-
}
|
|
30
|
+
# }
|
|
31
31
|
|
|
32
32
|
# TODO: Need to get NBI/CGS Data for these
|
|
33
|
-
{
|
|
33
|
+
# {
|
|
34
34
|
#-------------------------------------
|
|
35
35
|
|
|
36
36
|
"34-0006": ("CE58600", None, "Oakland - SF Bay Bridge/East: SAS"),
|
|
@@ -116,3 +116,86 @@ CESMD = {
|
|
|
116
116
|
"""
|
|
117
117
|
|
|
118
118
|
CALID = {v[0]: k for k, v in CESMD.items()}
|
|
119
|
+
|
|
120
|
+
CESMD_LONG_LAT = {
|
|
121
|
+
'89973': [40.5093, -124.1196],
|
|
122
|
+
'89324': [40.5031, -124.1009],
|
|
123
|
+
'89686': [40.8216, -124.1697],
|
|
124
|
+
'89736': [40.809, -124.1547],
|
|
125
|
+
'89735': [40.8136, -124.1594],
|
|
126
|
+
'47315': [36.8619, -121.5796],
|
|
127
|
+
'23631': [34.065, -117.2962],
|
|
128
|
+
'58700': [37.8198, -122.4788],
|
|
129
|
+
'25749': [34.4497, -119.735],
|
|
130
|
+
'14406': [33.7494, -118.2715],
|
|
131
|
+
'58632': [37.7982, -122.3774],
|
|
132
|
+
'58657': [37.8286, -122.2666],
|
|
133
|
+
'24775': [34.8663, -118.8836],
|
|
134
|
+
'58601': [37.8198, -122.3429],
|
|
135
|
+
'24706': [34.5463, -118.1301],
|
|
136
|
+
'33742': [35.6696, -117.8187],
|
|
137
|
+
'24704': [34.0368, -118.3762],
|
|
138
|
+
'24689': [34.1486, -118.1561],
|
|
139
|
+
'54730': [37.5733, -118.739],
|
|
140
|
+
'13705': [33.882, -117.5497],
|
|
141
|
+
'13795': [33.4659, -117.6674],
|
|
142
|
+
'68065': [38.1205, -122.2801],
|
|
143
|
+
'57595': [37.4639, -121.9302],
|
|
144
|
+
'68185': [38.061, -122.2265],
|
|
145
|
+
'68717': [38.3484, -122.713],
|
|
146
|
+
'58754': [37.3574, -122.397],
|
|
147
|
+
'58658': [37.6907, -122.0993],
|
|
148
|
+
'76741': [39.368, -120.1151],
|
|
149
|
+
'89708': [40.9563, -124.1161],
|
|
150
|
+
'24714': [34.2878, -118.4084],
|
|
151
|
+
'79421': [39.9213, -123.7634],
|
|
152
|
+
'68778': [38.1157, -122.5054],
|
|
153
|
+
'58602': [37.8126, -122.3627],
|
|
154
|
+
'68184': [38.061, -122.2252],
|
|
155
|
+
'12666': [33.9153, -116.6085],
|
|
156
|
+
'68682': [38.0414, -122.1238],
|
|
157
|
+
'12649': [33.9332, -116.9907],
|
|
158
|
+
'67771': [38.0278, -121.7514],
|
|
159
|
+
'57748': [37.4176, -121.9738],
|
|
160
|
+
'58600': [37.8152, -122.3589],
|
|
161
|
+
'69760': [38.955, -123.1051],
|
|
162
|
+
'47707': [36.9067, -121.7818],
|
|
163
|
+
'03679': [32.6891, -117.1538],
|
|
164
|
+
'24738': [34.2878, -118.865],
|
|
165
|
+
'36668': [35.7331, -120.2901],
|
|
166
|
+
'37728': [35.5955, -121.1256],
|
|
167
|
+
'03731': [32.838, -117.234],
|
|
168
|
+
'99190': [41.8797, -124.1373],
|
|
169
|
+
'25324': [34.2428, -119.1905],
|
|
170
|
+
'58258': [37.9344, -122.4346],
|
|
171
|
+
'79757': [39.8485, -123.7019],
|
|
172
|
+
'68322': [38.0441, -122.1229],
|
|
173
|
+
'58596': [37.505, -122.12],
|
|
174
|
+
'24694': [34.3349, -118.5084],
|
|
175
|
+
'79683': [39.2157, -123.7678],
|
|
176
|
+
'24670': [34.0314, -118.4354],
|
|
177
|
+
'69671': [38.4347, -123.1017],
|
|
178
|
+
'79761': [39.8471, -123.6967],
|
|
179
|
+
'58656': [37.7837, -122.1769],
|
|
180
|
+
'67972': [38.5728, -121.587],
|
|
181
|
+
'99710': [41.5174, -124.0307],
|
|
182
|
+
'23650': [34.2251, -117.4096],
|
|
183
|
+
'58677': [37.5836, -122.2515],
|
|
184
|
+
'25758': [34.9331, -119.5941],
|
|
185
|
+
'79296': [39.4274, -123.8068],
|
|
186
|
+
'58536': [37.6746, -122.3895],
|
|
187
|
+
'58501': [37.6708, -122.0885],
|
|
188
|
+
'58414': [37.584, -122.509],
|
|
189
|
+
'01571': [37.34105, -121.8514],
|
|
190
|
+
'05235': [33.96843, -117.44815],
|
|
191
|
+
'25725': [34.2622, -119.231],
|
|
192
|
+
'58799': [37.6083, -122.1842],
|
|
193
|
+
'47646': [36.2391, -121.7747],
|
|
194
|
+
'88638': [40.881, -122.3809],
|
|
195
|
+
'22503': [34.2419, -116.9775],
|
|
196
|
+
'88194': [40.7597, -122.3188],
|
|
197
|
+
'26917': [34.5215, -120.3369],
|
|
198
|
+
'34715': [35.0387, -118.1696],
|
|
199
|
+
'14690': [33.7865, -118.0939],
|
|
200
|
+
'58678': [37.5048, -122.3346]
|
|
201
|
+
}
|
irie/init/getNBIData.py
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
"""
|
|
2
|
-
python manage.py shell < scripts/make_assets.py
|
|
3
|
-
"""
|
|
4
1
|
import irie
|
|
5
2
|
import lzma
|
|
6
3
|
import tarfile
|
|
@@ -47,6 +44,13 @@ SKIP_DESIGN = {
|
|
|
47
44
|
|
|
48
45
|
#-----------------------------------
|
|
49
46
|
|
|
47
|
+
def nbi_reshape(raw):
|
|
48
|
+
data = defaultdict(dict)
|
|
49
|
+
for row in raw["Results"]["NBIData"]["NBIDataList"]:
|
|
50
|
+
data[row["TABLE_NAME"]][row["EXPANDED_FIELD_ALIAS"]] = row["FIELD_VALUE"]
|
|
51
|
+
|
|
52
|
+
return dict(data)
|
|
53
|
+
|
|
50
54
|
|
|
51
55
|
def load_assets(NBI_DATA):
|
|
52
56
|
|
|
@@ -57,16 +61,12 @@ def load_assets(NBI_DATA):
|
|
|
57
61
|
return {}
|
|
58
62
|
|
|
59
63
|
def get_nbi(calid, missing_ok=False):
|
|
60
|
-
data = defaultdict(dict)
|
|
61
64
|
|
|
62
65
|
if missing_ok and calid not in NBI_DATA:
|
|
63
66
|
return None
|
|
64
67
|
|
|
65
|
-
blocks = NBI_DATA[calid]
|
|
66
|
-
|
|
67
|
-
data[row["TABLE_NAME"]][row["EXPANDED_FIELD_ALIAS"]] = row["FIELD_VALUE"]
|
|
68
|
-
|
|
69
|
-
return dict(data)
|
|
68
|
+
blocks = NBI_DATA[calid][-1]
|
|
69
|
+
return nbi_reshape(blocks)
|
|
70
70
|
|
|
71
71
|
|
|
72
72
|
def get_route(bridge):
|
|
@@ -101,10 +101,10 @@ def load_assets(NBI_DATA):
|
|
|
101
101
|
for calid in CESMD: #BRIDGES.values():
|
|
102
102
|
# if "calid" not in bridge:
|
|
103
103
|
try:
|
|
104
|
-
calid = Asset.objects.get(calid=calid).calid
|
|
104
|
+
calid = Asset.objects.get(calid=calid).calid
|
|
105
105
|
except:
|
|
106
106
|
continue
|
|
107
|
-
|
|
107
|
+
|
|
108
108
|
calid = calid.split(" ")[0].replace("-", " ")
|
|
109
109
|
nbi = get_nbi(calid, missing_ok=True)
|
|
110
110
|
if nbi is not None:
|
|
File without changes
|
|
@@ -55,21 +55,19 @@ irie/apps/events/migrations/0001_initial.py,sha256=sSCS0Kbyb73m_x3kw5Q4tRrTJcCqh
|
|
|
55
55
|
irie/apps/events/migrations/0002_rename_event_eventrecord.py,sha256=TNRUB9-EZmdURlkyAtz7KBdtuoSXwbwCQDRP4CKmdBw,431
|
|
56
56
|
irie/apps/events/migrations/0003_hazardevent.py,sha256=TEaMSJz16BpDXeMXo4jwD6LAL88MvNT_uuOOmvLu1hA,608
|
|
57
57
|
irie/apps/events/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
|
-
irie/apps/inventory/CESMD.py,sha256=cLtuBhSK14M1VwirCs-oeSOoB4CFFYcTnh38egQqPYg,2549
|
|
59
58
|
irie/apps/inventory/__init__.py,sha256=wkkNngGxgYcCM745-rlvP6ynrI0b0QN3aWmLWDsR8zU,230
|
|
60
59
|
irie/apps/inventory/admin.py,sha256=e_W8ls_ARLLf8rn3oJd-YkPdTGMIrcN-mRrxk2BcY3c,472
|
|
61
60
|
irie/apps/inventory/apps.py,sha256=bZ6qYIwPMG4_4IeLfg9N4WuZAEgEVj84oOswV-7_MAI,424
|
|
62
|
-
irie/apps/inventory/calid.py,sha256=3L8MbPIGOE3kzDnqeyY055pRBiF2O2l0cmpuDbTsdTg,3014
|
|
63
61
|
irie/apps/inventory/fields.py,sha256=J3nTImPsuCeiOWBizSL4tnuKs36sPfXALNTKEZY-wVg,79
|
|
64
62
|
irie/apps/inventory/filters.py,sha256=_UtDkZzHg_efZhfGRRCpbHq4jX5cNQh4e-3o3BrYchY,2191
|
|
65
63
|
irie/apps/inventory/forms.py,sha256=y8tcIGInXDg7KCf1OWd1jtc4umJsm8rf8-4O8nDhNd4,1244
|
|
66
|
-
irie/apps/inventory/models.py,sha256=
|
|
64
|
+
irie/apps/inventory/models.py,sha256=ie7XhFDujpoyIinmX-YfScVx28SkkRhFadU0iNLC9HI,6073
|
|
67
65
|
irie/apps/inventory/sitemaps.py,sha256=Nha1MTsIH_ad7JyoxwonPytp7MNuEhDNszkEUOmlN0o,826
|
|
68
66
|
irie/apps/inventory/tables.py,sha256=vZdPOcbN1ibuWXqLwbBUoQw9iavwa1GJ5fd83k8bu7Y,27874
|
|
69
|
-
irie/apps/inventory/
|
|
70
|
-
irie/apps/inventory/
|
|
71
|
-
irie/apps/inventory/
|
|
72
|
-
irie/apps/inventory/archive/
|
|
67
|
+
irie/apps/inventory/urls.py,sha256=UVuuSyV5VTnCr_9I2umJL3828mJ_ZTa2PMGeFncSMLQ,1579
|
|
68
|
+
irie/apps/inventory/views.py,sha256=tx2hXbIBDjuLYsndpJMTwZKCX0iF_3wwO60kiV8aAHE,21236
|
|
69
|
+
irie/apps/inventory/archive/CESMD.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
70
|
+
irie/apps/inventory/archive/calid.py,sha256=3L8MbPIGOE3kzDnqeyY055pRBiF2O2l0cmpuDbTsdTg,3014
|
|
73
71
|
irie/apps/inventory/migrations/0001_initial.py,sha256=PwTHv4Q3gqWFha--8Zp9kUOh-cYalB14jXj7RVJUVnw,1786
|
|
74
72
|
irie/apps/inventory/migrations/0002_alter_asset_bridge_sensors_and_more.py,sha256=rPzWHkjg-ZCorVA_gv6MVb5F6LTLHcwlPwhBR1PxVr0,842
|
|
75
73
|
irie/apps/inventory/migrations/0003_asset_notes.py,sha256=N3p8PdRlwlED7z5gPAVVcDVsAjSLx-e0D4bx5eEwGlQ,436
|
|
@@ -79,6 +77,7 @@ irie/apps/inventory/migrations/0006_datum_asset_datum_locate_x_datum_locate_y_an
|
|
|
79
77
|
irie/apps/inventory/migrations/0007_sensor_name.py,sha256=b98wYN1XApHniMkTvrgvTjtxiSlzt966QMMftMzpNZA,474
|
|
80
78
|
irie/apps/inventory/migrations/0008_alter_sensor_dx_alter_sensor_dy_alter_sensor_dz_and_more.py,sha256=y99Ro9cTl9UphgVeILO7YIEVQ1wi0k2RhXqYnBg_ZzY,1255
|
|
81
79
|
irie/apps/inventory/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
|
+
irie/apps/inventory/services/render.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
82
81
|
irie/apps/inventory/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
82
|
irie/apps/inventory/templatetags/get.py,sha256=ZVjFYv1uhjhcOQ8I5ukz7DuR6TXnbYuijPWKkgxacOM,134
|
|
84
83
|
irie/apps/inventory/templatetags/nbi.py,sha256=C251yAlF4ik1vSqHt5120maI1HcBlsPcUKoeAKQ44IY,139
|
|
@@ -96,12 +95,12 @@ irie/apps/networks/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
|
96
95
|
irie/apps/prediction/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
97
96
|
irie/apps/prediction/admin.py,sha256=WEPTXvwBFzh8m62Y_xusBfzqn0DXAT_wvqhCNefBano,335
|
|
98
97
|
irie/apps/prediction/apps.py,sha256=sejLu4xx8_IwQQKTnxC_DNK-vhjiqeG0_uk2Zg1ga-M,422
|
|
99
|
-
irie/apps/prediction/forms.py,sha256=
|
|
98
|
+
irie/apps/prediction/forms.py,sha256=3alwgkBhjnJsDmyh2zDAU1Z-2ZIfdV8f_dXUVMj6atI,650
|
|
100
99
|
irie/apps/prediction/metrics.py,sha256=Zh1utUZTGddQEVn4e1rLO74tbIz7bVvZli8sgmuB_X0,1410
|
|
101
|
-
irie/apps/prediction/models.py,sha256=
|
|
100
|
+
irie/apps/prediction/models.py,sha256=S1yLJRgau8TtbOyRTNgeco8FAmEtrhYN6LUrHfrvnpA,2295
|
|
102
101
|
irie/apps/prediction/predictor.py,sha256=-x_4kHWnfUxiX2aQfbl3dsbVAG4lRKAFbo1CqfZNCIc,831
|
|
103
|
-
irie/apps/prediction/urls.py,sha256=
|
|
104
|
-
irie/apps/prediction/views.py,sha256=
|
|
102
|
+
irie/apps/prediction/urls.py,sha256=rk5Fc9tBNGTfgM86OHVh-cwtawAgaeS1XwxhNB6gIZ8,1046
|
|
103
|
+
irie/apps/prediction/views.py,sha256=KYsdxUv3gVnCwJqN8bPBDvcUyKUnGutiEFAyfR8MMys,7347
|
|
105
104
|
irie/apps/prediction/views_api.py,sha256=DJzLYO5ouPOWkkZJNZxZJzxC3TROKJ-L6Z2IC1NMuFQ,6888
|
|
106
105
|
irie/apps/prediction/migrations/0001_initial.py,sha256=-0GWd2vUUAzSPfptccAJ3raI3UD4Xj9H0E5EJ7xN0Ek,1428
|
|
107
106
|
irie/apps/prediction/migrations/0002_alter_predictormodel_protocol.py,sha256=nrQvuZ1eRR7fR17IjdS0Xyw14y9DpE6HkG2-h7HQ_zA,560
|
|
@@ -142,9 +141,9 @@ irie/apps/static/assets/content_images/brace/mdof.svg,sha256=SJpy7HpeTceur85_wmH
|
|
|
142
141
|
irie/apps/static/assets/content_images/brace/opensees.jpg,sha256=ZX1lhOLNBfGo1lgTLTvX2O5rgPhlzhcld75KvTSNTTU,50369
|
|
143
142
|
irie/apps/static/assets/content_images/brace/sdof.svg,sha256=czlgN6GGodtOIsr-UARUoKMooeh0r33ewL_c_wbNfJ8,8415
|
|
144
143
|
irie/apps/static/assets/content_images/brace/sees.png,sha256=tAbxCCxATDWJopqDEj58_Vl6ep8Id8MeLnUqNPtSp4U,49562
|
|
145
|
-
irie/apps/static/assets/css/brace.css,sha256=
|
|
146
|
-
irie/apps/static/assets/css/brace.css.map,sha256=
|
|
147
|
-
irie/apps/static/assets/css/brace.min.css,sha256=
|
|
144
|
+
irie/apps/static/assets/css/brace.css,sha256=KmnMpyx4Whi3EvWw4qi712GkBO9ATF93pe3CZ1OKK0g,704039
|
|
145
|
+
irie/apps/static/assets/css/brace.css.map,sha256=U-nlUvJC_pkfxC5jt8j8W6YeCLn9knn1HR0kda8ksmw,1644377
|
|
146
|
+
irie/apps/static/assets/css/brace.min.css,sha256=MXFj6GzBocy0fhACJsS2EjBvHTn3D0ZWo3SYF91UpCo,577834
|
|
148
147
|
irie/apps/static/assets/css/uPlot.min.css,sha256=N9lS8A3wBs6rAzJn4F8FDO3Y1pBkZ8yGUl3ueV3Ppqk,1883
|
|
149
148
|
irie/apps/static/assets/img/brace2-no_text.png,sha256=NrwgN3GLIBfWvV_HfOzmKEv7e72OpdeUkvqVx8eNk9E,825872
|
|
150
149
|
irie/apps/static/assets/img/colStrains.svg,sha256=By5LEjXbQ1D6pSoy-5DkYfKzHKjhtR4LdexMaaVEKfQ,189260
|
|
@@ -396,17 +395,24 @@ irie/apps/templates/includes/settings-box.html,sha256=_YubYOyAJ8IldTgVlXP2wLLXpK
|
|
|
396
395
|
irie/apps/templates/includes/sidebar.html,sha256=DDwvNQI0SYNSsxBe_3MbrY3A-xR859RBaj-2Ml8y7yo,13012
|
|
397
396
|
irie/apps/templates/inventory/asset-evals.html,sha256=KzbdJJ7ildMpfO4IQDuXqGBcPzUTlYpJ_Y3Wg4payVc,2700
|
|
398
397
|
irie/apps/templates/inventory/asset-event-summary.html,sha256=5G7uZVf7kVL0wBaAfsEtTEEA5HRuBCzx8NrgDFheWI4,51357
|
|
399
|
-
irie/apps/templates/inventory/asset-
|
|
398
|
+
irie/apps/templates/inventory/asset-on-map.html,sha256=LsnvUmTi6TkHSv9sZ_L4KMOwipP_4fkQXDqLUjLS0uo,17062
|
|
399
|
+
irie/apps/templates/inventory/asset-profile.html,sha256=oJiHwQ7ilmRUQy31PMXJgZUPbefJKBNWhjV6IF8UgR0,13576
|
|
400
400
|
irie/apps/templates/inventory/asset-sensors.html,sha256=qLnlhnmOeT5uL1xH67mFPOgufXV_PJ31KEx5Aqt0TTw,2406
|
|
401
401
|
irie/apps/templates/inventory/asset-table.html,sha256=Ak_N_QDUgWzyffBBidJ8H0wLR3zX3wNHQm6MnZYbruQ,12589
|
|
402
402
|
irie/apps/templates/inventory/bridge-dashboard.html,sha256=67zrDlih3LOi9xFVwPVZZkgRT3DO-lE_qRL7q8Uz9GY,45472
|
|
403
403
|
irie/apps/templates/inventory/bridge.html,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
404
404
|
irie/apps/templates/inventory/dashboard.html,sha256=_qhFiPP6xN-UzZj5NuM5e9NxsgDHJkQ89oXN1cBwhj0,7505
|
|
405
|
+
irie/apps/templates/inventory/map-inventory.html,sha256=9afVvW5jy8VLOAk3fdzJAomukSnvJ0QXr7aJsiU_BEc,4424
|
|
406
|
+
irie/apps/templates/inventory/map-inventory2.html,sha256=bbI2tzh9puNjo7yUVlshO9197xFsMDCtzXNJVaNsxFI,5049
|
|
407
|
+
irie/apps/templates/inventory/map-single-asset.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
408
|
+
irie/apps/templates/inventory/map-single-asset2.html,sha256=57UjCuHke_ftcMIzqooh4W-ErVOcsR1sojvHQPsxxCI,28928
|
|
409
|
+
irie/apps/templates/inventory/map-terrain.html,sha256=XAvFzJM06k4b5zVmHbseSD7hQAhkvF05K4UCtXD4sOU,9493
|
|
405
410
|
irie/apps/templates/inventory/preamble.tex,sha256=TmRhIWg2-Pxj_e2OBctANRZPwU8RWMT3EZJFSa3R8HY,3547
|
|
406
411
|
irie/apps/templates/inventory/report.tex,sha256=A1XKpwknlBrAZjFzzxVIDwypjXteqzoCQiuo1tQANfw,45228
|
|
407
|
-
irie/apps/templates/inventory/sensor-upload.html,sha256=
|
|
412
|
+
irie/apps/templates/inventory/sensor-upload.html,sha256=_co80YTmOz8pxpsbiHC658fIoNIiswiAbQOcf1kK6HQ,18352
|
|
413
|
+
irie/apps/templates/inventory/three-maps.html,sha256=OUqF59SdAndul7eSDDaS9MYTlNhJDfLU87bM532omfc,8548
|
|
408
414
|
irie/apps/templates/layouts/base-fullscreen.html,sha256=q1nKewLnQ8inBxsUcHlq2Iv_s_qrw6k6bumX7mLR1mI,2579
|
|
409
|
-
irie/apps/templates/layouts/base.html,sha256=
|
|
415
|
+
irie/apps/templates/layouts/base.html,sha256=ua-PwkH11AVeSbRYnMeAwAlXgXrQWGcFsqhtGbDSiVo,2411
|
|
410
416
|
irie/apps/templates/layouts/json-form.html,sha256=cT6Pd2168Z3p8RODS7SulUC79LnuzSs0EVLVxkGOXAo,1333
|
|
411
417
|
irie/apps/templates/networks/corridor_table.html,sha256=SW6WMmxGsw2li1BXqvCRj1CFJ3IPUulfk-KHJBIMFx0,876
|
|
412
418
|
irie/apps/templates/networks/networks.html,sha256=XMBwHhBqkG4ty2zgozlzeJNgyyXAzdbD95iyNJi4gJE,5745
|
|
@@ -416,18 +422,20 @@ irie/apps/templates/prediction/asset-predictors.html,sha256=L2iJvFvO1Far0Ba1yvrf
|
|
|
416
422
|
irie/apps/templates/prediction/form-submission.html,sha256=v4jRoM_DBQ2Xoe17_5ltZUn6Yw1shT6NRe69dufhXxc,5600
|
|
417
423
|
irie/apps/templates/prediction/new-runner.html,sha256=aY4ux91FhiWkLsabevjiPpzE9XIYdY_1_fRZ-J9iqZw,2682
|
|
418
424
|
irie/apps/templates/prediction/predictor-profile.html,sha256=v4eChMDAN4nHyIk570yvdeUf0FcptKRqzNQb2net4_Q,4290
|
|
419
|
-
irie/apps/templates/prediction/predictor-upload.html,sha256=
|
|
425
|
+
irie/apps/templates/prediction/predictor-upload.html,sha256=QjgeuEqSCDFbJlGK3PY6LePia3vJXKqD6g2TKdpIeE4,3237
|
|
420
426
|
irie/apps/templates/prediction/hazus/event.html,sha256=vcmQKfb-Gww5sd-kn6b2QL3llRrfQFv8mafVNNxTHrY,841
|
|
421
427
|
irie/apps/templates/prediction/hazus/history.html,sha256=zvnwP0gxSV9JNBbYACnKlMLB9iD7hGUbdkZ6kfJtBik,136
|
|
422
428
|
irie/apps/templates/prediction/hazus/history.js,sha256=blHRXzlEfMBCezPE-2dZCpt2rVgTiGHkYlY1t-clOE8,1101
|
|
423
429
|
irie/apps/templates/site/about.html,sha256=5hS5taj3XF-F8z-uIn53ZFXVHVS4apLRMg39OyvMvRs,610
|
|
424
430
|
irie/apps/templates/site/asset_map.html,sha256=rnTjeYMc8NESIo6Uuq8fgZ_xcKNuKdt4zcqoUTDI8Xg,387
|
|
425
431
|
irie/apps/templates/site/components-forms.html,sha256=FKOiR-3e9iw-xOHeaP2RB3O2gP10R-Mt8wdXfb1rDBQ,13865
|
|
426
|
-
irie/apps/templates/site/index.html,sha256=
|
|
432
|
+
irie/apps/templates/site/index.html,sha256=bFBuqpe74Xix0Zg4qE-gmtlYsgvJFDm-j979Ms1wAIk,16983
|
|
427
433
|
irie/apps/templates/site/json-form.html,sha256=ZrRWy5xnGBOqG51b6mdVGI0Io5X1z47DTFB9wW6ZQYA,1785
|
|
434
|
+
irie/apps/templates/site/page-400-sidebar.html,sha256=MimqQUyAgbgXG-oVJy1whHwrXmgf8NUgCqrwpUHCZ0s,1502
|
|
435
|
+
irie/apps/templates/site/page-400.html,sha256=2X9hGL7mCPGqgQUEr86vz6neO_Z--w0RjIzyQsGNBIE,981
|
|
428
436
|
irie/apps/templates/site/page-403.html,sha256=caU6t3fsCJiAIuZvRQekK2UemdZSNxc3l80ceSz0mp0,1289
|
|
429
|
-
irie/apps/templates/site/page-404-sidebar.html,sha256=
|
|
430
|
-
irie/apps/templates/site/page-404.html,sha256=
|
|
437
|
+
irie/apps/templates/site/page-404-sidebar.html,sha256=wjfBQoYNdm94tXa6FqNfficmC2dsOsEHqHme53jO7J8,1578
|
|
438
|
+
irie/apps/templates/site/page-404.html,sha256=IrHim0qVW61-xiCN6SwFHdXGK3fgC-iRqiBydzaXodM,1608
|
|
431
439
|
irie/apps/templates/site/page-500.html,sha256=HY3MMO4gCGCL0r3pQ-isjDcx-CA1ktak8yxwkvWzYXo,957
|
|
432
440
|
irie/apps/templates/site/page-forgot-password.html,sha256=NVdyjk6MBbBGwX61aYxwO4pr_6molPk1_8h3zXf7qKg,2413
|
|
433
441
|
irie/apps/templates/site/page-lock.html,sha256=ZVn1xyhku1jROxozMyPwMCqS7EsRwG7Z6DMJBlML-xk,3120
|
|
@@ -448,13 +456,19 @@ irie/core/asgi.py,sha256=3lVQKFRA4bznM2mWu5Cv24a5H9pfb6YU07q-I_TN0DM,395
|
|
|
448
456
|
irie/core/settings.py,sha256=NQioOh_sdXa-_KsxsZaut5cDBh58kqR3laaUT_B11fE,6574
|
|
449
457
|
irie/core/urls.py,sha256=5_35Rh6LtnE_5TrHgsIZtVJeWpNXWwvqRfawYEWZCeE,1968
|
|
450
458
|
irie/core/wsgi.py,sha256=8dxK789vOoRWm0IatEhNqMgZhov9TlspjM6hOUbjg24,395
|
|
459
|
+
irie/fhwa/__init__.py,sha256=JJrBCuGS_8Lm85oItAZeDcwFO7AomtlVgRNKPYY77vc,4013
|
|
460
|
+
irie/fhwa/__main__.py,sha256=tPtovijLBwcOn2-tFYFeyLZI35o7PHVWiJ-dcNX7K60,3724
|
|
461
|
+
irie/fhwa/fields.py,sha256=kWDygQke-TlrpIE-mpuHQqRUFR6g3zL9F4rWWhh6UZ4,827
|
|
462
|
+
irie/fhwa/fields/nbi001.py,sha256=anW825ORjAtj9a2MW6LtuLn3ccWaB-i3fHh6n-BMhBI,1044
|
|
463
|
+
irie/fhwa/fields/nbi001b.py,sha256=St5UembcikSY6wdMryQFbMOob7icvGy12auHdKCO6z8,8
|
|
464
|
+
irie/fhwa/fields/nbi002.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
451
465
|
irie/init/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
452
|
-
irie/init/__main__.py,sha256=
|
|
466
|
+
irie/init/__main__.py,sha256=waUELqnhqZirROMIb5wMzD4mK5fgrUvWRsXoTXhjtxY,807
|
|
453
467
|
irie/init/bridges.py,sha256=OBBKnLx2lmMKDfeR0C8CBSbnpnzO0lfokBypD2nEFcM,74198
|
|
454
|
-
irie/init/calid.py,sha256
|
|
468
|
+
irie/init/calid.py,sha256=-861tihqB-u2ZfXWqAW6RzgSmR1UvcSX4Y_ZzfJVWMw,10883
|
|
455
469
|
irie/init/getCGSData.py,sha256=iZG3Ab1Y_rhiliKCPNy0MZrKBsfEe6ShgSFz2ttvTUU,2916
|
|
456
470
|
irie/init/getCGSevents.py,sha256=4dBkFFJQrUs6gfl1Nj-_R2UOZj0B_T017a6tC7fUHOw,421
|
|
457
|
-
irie/init/getNBIData.py,sha256=
|
|
471
|
+
irie/init/getNBIData.py,sha256=qCd2377wt1MmRuMm-mgRzUxQGKQBYwhMxwxyRLhVe-k,9404
|
|
458
472
|
irie/init/getNBIData2.py,sha256=JIbdG2iMq9mUNXBlw_3j_lr71wk7ScVgSWYZOUdZBvo,11782
|
|
459
473
|
irie/init/hayward.zip,sha256=WECOnYLP_3EeKHQzdxm17MHTncF2QdgXI28Vm6Iopt0,124675
|
|
460
474
|
irie/init/data/cgs-stations.json,sha256=h-KKF-u31j_OQnQZQlmFzDjqgi0AcsPNzohn7bCNq0Q,105563
|
|
@@ -464,15 +478,16 @@ irie/init/data/nbi_data-california.json,sha256=nyslZbMf30WrtdyqCpMvxd-NNxNzFHtZX
|
|
|
464
478
|
irie/init/data/nbi_definitions.json,sha256=NS3yNP1i1E_JXfGW_I_xOoNRsfeljDA5BZ_1h0Cu_1I,4301
|
|
465
479
|
irie/init/data/nbi/04.tar,sha256=ubRgxWBshe0cNKxftbEVyFeh1HcUmFarVL2BBHo9Tyk,1884160
|
|
466
480
|
irie/init/data/networks/soga_corridors.json,sha256=AQOUaKGNWkQxQKLfqphE9Qb_-NRmjN9IwK59SGjutxE,45496
|
|
467
|
-
irie/init/management/commands/init_assets.py,sha256=
|
|
481
|
+
irie/init/management/commands/init_assets.py,sha256=z-QczBwa7altFy8oLgKtF2_ogHwWOGGFiMJYLkol-zU,5709
|
|
468
482
|
irie/init/management/commands/init_cesmd.py,sha256=00aNGLN6M_oDhMyKySJuqaPW0IwJal3TxsxCKn1lCjs,1200
|
|
469
483
|
irie/init/management/commands/init_corridors.py,sha256=EzLk0HUiFxlco-2u0rypewOc9mAo_raqXC2_UCG8a_w,1241
|
|
470
|
-
irie/init/management/commands/init_predictors.py,sha256=
|
|
484
|
+
irie/init/management/commands/init_predictors.py,sha256=edCf7d36cwl4YitXLtvOfsPee-BiPF55_Gr73OvTPcU,2368
|
|
485
|
+
irie/init/management/commands/make_asset.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
471
486
|
irie/pull/nbi.py,sha256=KpBjJ9GEU72Qk1t4bGN9cg0QBeVJ8k9XcI3Y1oSgIR0,11478
|
|
472
487
|
irie/rest/__main__.py,sha256=6Nf_-Rr9zGmMyp_wqCFDO7ls9QPnPd9UyUgN17rIGYw,3680
|
|
473
488
|
irie/usgs/__main__.py,sha256=HiSvPn5IW5IqRiCk1qRRq5dCy3-7iISw7v1P_w2rLrk,5049
|
|
474
|
-
irie-0.0.
|
|
475
|
-
irie-0.0.
|
|
476
|
-
irie-0.0.
|
|
477
|
-
irie-0.0.
|
|
478
|
-
irie-0.0.
|
|
489
|
+
irie-0.0.43.dist-info/METADATA,sha256=inFKIMJbTXdIZCXzYa6vmnUerfzUbEnAj7wzZ5edwpM,3207
|
|
490
|
+
irie-0.0.43.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
|
491
|
+
irie-0.0.43.dist-info/entry_points.txt,sha256=A_3h9wPBGfxGQ78_MGa-nO6Z0foxOYeAnIE47jxEztg,44
|
|
492
|
+
irie-0.0.43.dist-info/top_level.txt,sha256=zVCxi5E2nkISZPzKq8VEhWe_dGuPcefLYV1tYqQdwlY,5
|
|
493
|
+
irie-0.0.43.dist-info/RECORD,,
|
irie/apps/inventory/CESMD.py
DELETED
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
CESMD = {
|
|
2
|
-
'89973': [40.5093, -124.1196],
|
|
3
|
-
'89324': [40.5031, -124.1009],
|
|
4
|
-
'89686': [40.8216, -124.1697],
|
|
5
|
-
'89736': [40.809, -124.1547],
|
|
6
|
-
'89735': [40.8136, -124.1594],
|
|
7
|
-
'47315': [36.8619, -121.5796],
|
|
8
|
-
'23631': [34.065, -117.2962],
|
|
9
|
-
'58700': [37.8198, -122.4788],
|
|
10
|
-
'25749': [34.4497, -119.735],
|
|
11
|
-
'14406': [33.7494, -118.2715],
|
|
12
|
-
'58632': [37.7982, -122.3774],
|
|
13
|
-
'58657': [37.8286, -122.2666],
|
|
14
|
-
'24775': [34.8663, -118.8836],
|
|
15
|
-
'58601': [37.8198, -122.3429],
|
|
16
|
-
'24706': [34.5463, -118.1301],
|
|
17
|
-
'33742': [35.6696, -117.8187],
|
|
18
|
-
'24704': [34.0368, -118.3762],
|
|
19
|
-
'24689': [34.1486, -118.1561],
|
|
20
|
-
'54730': [37.5733, -118.739],
|
|
21
|
-
'13705': [33.882, -117.5497],
|
|
22
|
-
'13795': [33.4659, -117.6674],
|
|
23
|
-
'68065': [38.1205, -122.2801],
|
|
24
|
-
'57595': [37.4639, -121.9302],
|
|
25
|
-
'68185': [38.061, -122.2265],
|
|
26
|
-
'68717': [38.3484, -122.713],
|
|
27
|
-
'58754': [37.3574, -122.397],
|
|
28
|
-
'58658': [37.6907, -122.0993],
|
|
29
|
-
'76741': [39.368, -120.1151],
|
|
30
|
-
'89708': [40.9563, -124.1161],
|
|
31
|
-
'24714': [34.2878, -118.4084],
|
|
32
|
-
'79421': [39.9213, -123.7634],
|
|
33
|
-
'68778': [38.1157, -122.5054],
|
|
34
|
-
'58602': [37.8126, -122.3627],
|
|
35
|
-
'68184': [38.061, -122.2252],
|
|
36
|
-
'12666': [33.9153, -116.6085],
|
|
37
|
-
'68682': [38.0414, -122.1238],
|
|
38
|
-
'12649': [33.9332, -116.9907],
|
|
39
|
-
'67771': [38.0278, -121.7514],
|
|
40
|
-
'57748': [37.4176, -121.9738],
|
|
41
|
-
'58600': [37.8152, -122.3589],
|
|
42
|
-
'69760': [38.955, -123.1051],
|
|
43
|
-
'47707': [36.9067, -121.7818],
|
|
44
|
-
'3679': [32.6891, -117.1538],
|
|
45
|
-
'24738': [34.2878, -118.865],
|
|
46
|
-
'36668': [35.7331, -120.2901],
|
|
47
|
-
'37728': [35.5955, -121.1256],
|
|
48
|
-
'3731': [32.838, -117.234],
|
|
49
|
-
'99190': [41.8797, -124.1373],
|
|
50
|
-
'25324': [34.2428, -119.1905],
|
|
51
|
-
'58258': [37.9344, -122.4346],
|
|
52
|
-
'79757': [39.8485, -123.7019],
|
|
53
|
-
'68322': [38.0441, -122.1229],
|
|
54
|
-
'58596': [37.505, -122.12],
|
|
55
|
-
'24694': [34.3349, -118.5084],
|
|
56
|
-
'79683': [39.2157, -123.7678],
|
|
57
|
-
'24670': [34.0314, -118.4354],
|
|
58
|
-
'69671': [38.4347, -123.1017],
|
|
59
|
-
'79761': [39.8471, -123.6967],
|
|
60
|
-
'58656': [37.7837, -122.1769],
|
|
61
|
-
'67972': [38.5728, -121.587],
|
|
62
|
-
'99710': [41.5174, -124.0307],
|
|
63
|
-
'23650': [34.2251, -117.4096],
|
|
64
|
-
'58677': [37.5836, -122.2515],
|
|
65
|
-
'25758': [34.9331, -119.5941],
|
|
66
|
-
'79296': [39.4274, -123.8068],
|
|
67
|
-
'58536': [37.6746, -122.3895],
|
|
68
|
-
'58501': [37.6708, -122.0885],
|
|
69
|
-
'58414': [37.584, -122.509],
|
|
70
|
-
'1571': [37.34105, -121.8514],
|
|
71
|
-
'5235': [33.96843, -117.44815],
|
|
72
|
-
'25725': [34.2622, -119.231],
|
|
73
|
-
'58799': [37.6083, -122.1842],
|
|
74
|
-
'47646': [36.2391, -121.7747],
|
|
75
|
-
'88638': [40.881, -122.3809],
|
|
76
|
-
'22503': [34.2419, -116.9775],
|
|
77
|
-
'88194': [40.7597, -122.3188],
|
|
78
|
-
'26917': [34.5215, -120.3369],
|
|
79
|
-
'34715': [35.0387, -118.1696],
|
|
80
|
-
'14690': [33.7865, -118.0939],
|
|
81
|
-
'58678': [37.5048, -122.3346]}
|