irie 0.0.22__py3-none-any.whl → 0.0.23__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/urls.py +5 -4
- irie/apps/inventory/views.py +51 -9
- irie/apps/prediction/urls.py +2 -2
- irie/apps/prediction/views.py +2 -3
- irie/apps/templates/accounts/login.html +5 -5
- irie/apps/templates/inventory/asset-evals.html +70 -0
- irie/apps/templates/inventory/asset-event-summary.html +10 -9
- irie/apps/templates/inventory/asset-profile.html +9 -16
- {irie-0.0.22.dist-info → irie-0.0.23.dist-info}/METADATA +2 -2
- {irie-0.0.22.dist-info → irie-0.0.23.dist-info}/RECORD +13 -12
- {irie-0.0.22.dist-info → irie-0.0.23.dist-info}/WHEEL +0 -0
- {irie-0.0.22.dist-info → irie-0.0.23.dist-info}/entry_points.txt +0 -0
- {irie-0.0.22.dist-info → irie-0.0.23.dist-info}/top_level.txt +0 -0
irie/apps/inventory/urls.py
CHANGED
|
@@ -12,15 +12,16 @@ from django.urls import path, re_path
|
|
|
12
12
|
from irie.apps.inventory import views
|
|
13
13
|
|
|
14
14
|
urlpatterns = [
|
|
15
|
-
path("summarize/",
|
|
15
|
+
path("summarize/", views.asset_event_report),
|
|
16
16
|
path("dashboard/", views.dashboard, name="dashboard"),
|
|
17
17
|
path("dashboard.html", views.dashboard),
|
|
18
|
-
path("dashboard/demo", views.dashboard),
|
|
19
18
|
|
|
20
19
|
path("asset-table.html", views.asset_table),
|
|
21
20
|
path("asset-table/", views.asset_table, name="asset_table"),
|
|
22
21
|
re_path(
|
|
23
|
-
|
|
22
|
+
"^evaluations/(?P<event>[0-9 A-Z-]*)/(?P<cesmd>[0-9 A-Z-]*)/.*", views.asset_event_summary,
|
|
23
|
+
name="asset_event_summary"
|
|
24
24
|
),
|
|
25
|
-
re_path(
|
|
25
|
+
re_path("^inventory/(?P<calid>[0-9 A-Z-]*)/evaluations/$", views.asset_evals, name="asset_evals"),
|
|
26
|
+
re_path("^inventory/(?P<calid>[0-9 A-Z-]*)/$", views.asset_profile, name="asset_profile"),
|
|
26
27
|
]
|
irie/apps/inventory/views.py
CHANGED
|
@@ -172,6 +172,51 @@ def asset_event_report(request):
|
|
|
172
172
|
return HttpResponse(resp)
|
|
173
173
|
|
|
174
174
|
|
|
175
|
+
# @login_required(login_url="/login/")
|
|
176
|
+
def asset_evals(request, calid):
|
|
177
|
+
context = {}
|
|
178
|
+
html_template = loader.get_template("inventory/asset-evals.html")
|
|
179
|
+
context["segment"] = "assets"
|
|
180
|
+
|
|
181
|
+
context["nce_version"] = True
|
|
182
|
+
|
|
183
|
+
page = request.GET.get("page", 1)
|
|
184
|
+
try:
|
|
185
|
+
page = int(page)
|
|
186
|
+
except:
|
|
187
|
+
page = 1
|
|
188
|
+
|
|
189
|
+
try:
|
|
190
|
+
asset = Asset.objects.get(calid=calid)
|
|
191
|
+
|
|
192
|
+
except Asset.DoesNotExist:
|
|
193
|
+
return raise404(request, context)
|
|
194
|
+
|
|
195
|
+
context["asset"] = asset
|
|
196
|
+
|
|
197
|
+
if asset.cesmd:
|
|
198
|
+
events = list(sorted(
|
|
199
|
+
(e.event for e in Evaluation.objects.exclude(status=Evaluation.Status.Invalid).filter(asset=asset)),
|
|
200
|
+
key=lambda x: x.motion_data["event_date"], reverse=True))
|
|
201
|
+
|
|
202
|
+
evals = [
|
|
203
|
+
{"event": event,
|
|
204
|
+
"pga": event.pga, #abs(event.motion_data["peak_accel"])/980.,
|
|
205
|
+
"evaluation": ssid,
|
|
206
|
+
}
|
|
207
|
+
for event, ssid in zip(events, ssid_stats(events, "period"))
|
|
208
|
+
]
|
|
209
|
+
context["evaluations"] = Paginator(evals, 10).get_page(page)
|
|
210
|
+
|
|
211
|
+
try:
|
|
212
|
+
return HttpResponse(html_template.render(context, request))
|
|
213
|
+
|
|
214
|
+
except Exception as e:
|
|
215
|
+
if "DEBUG" in os.environ and os.environ["DEBUG"]:
|
|
216
|
+
raise e
|
|
217
|
+
html_template = loader.get_template("site/page-500.html")
|
|
218
|
+
return HttpResponse(html_template.render(context, request))
|
|
219
|
+
|
|
175
220
|
|
|
176
221
|
# @login_required(login_url="/login/")
|
|
177
222
|
def asset_profile(request, calid):
|
|
@@ -188,6 +233,12 @@ def asset_profile(request, calid):
|
|
|
188
233
|
except Asset.DoesNotExist:
|
|
189
234
|
return raise404(request, context)
|
|
190
235
|
|
|
236
|
+
page = request.GET.get("page", 1)
|
|
237
|
+
try:
|
|
238
|
+
page = int(page)
|
|
239
|
+
except:
|
|
240
|
+
page = 1
|
|
241
|
+
|
|
191
242
|
context["asset"] = asset
|
|
192
243
|
|
|
193
244
|
# Compute Hazus fragility probabilities and curve
|
|
@@ -196,21 +247,13 @@ def asset_profile(request, calid):
|
|
|
196
247
|
|
|
197
248
|
# Add fragility probabilities and plot to the context
|
|
198
249
|
context["hazus"] = {
|
|
199
|
-
# "probabilities": {
|
|
200
|
-
# "Slight": hazus_results.get("Slight"),
|
|
201
|
-
# "Moderate": hazus_results.get("Moderate"),
|
|
202
|
-
# "Extensive": hazus_results.get("Extensive"),
|
|
203
|
-
# "Complete": hazus_results.get("Complete"),
|
|
204
|
-
# },
|
|
205
250
|
"sa_range": json.dumps(hazus_results["sa_range"]),
|
|
206
251
|
"curves": json.dumps(hazus_results["curves"])
|
|
207
|
-
# "plot_base64": hazus_results.get("plot_base64"),
|
|
208
252
|
}
|
|
209
253
|
except Exception as e:
|
|
210
254
|
print(e)
|
|
211
255
|
pass
|
|
212
256
|
|
|
213
|
-
|
|
214
257
|
context["tables"] = _make_tables(asset)
|
|
215
258
|
|
|
216
259
|
if asset.cesmd:
|
|
@@ -220,7 +263,6 @@ def asset_profile(request, calid):
|
|
|
220
263
|
(e.event for e in Evaluation.objects.exclude(status=Evaluation.Status.Invalid).filter(asset=asset)),
|
|
221
264
|
key=lambda x: x.motion_data["event_date"], reverse=True))
|
|
222
265
|
|
|
223
|
-
|
|
224
266
|
evals = [
|
|
225
267
|
{"event": event,
|
|
226
268
|
"pga": event.pga, #abs(event.motion_data["peak_accel"])/980.,
|
irie/apps/prediction/urls.py
CHANGED
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
# Author: Claudio Perez
|
|
8
8
|
#
|
|
9
9
|
#----------------------------------------------------------------------------#
|
|
10
|
-
from django.urls import
|
|
10
|
+
from django.urls import re_path
|
|
11
11
|
from .views import new_prediction, asset_predictors, predictor_profile, predictor_upload
|
|
12
12
|
|
|
13
13
|
urlpatterns = [
|
|
14
14
|
re_path("^inventory/[0-9 A-Z-]*/predictors/new", new_prediction),
|
|
15
15
|
re_path("^inventory/(?P<calid>[0-9 A-Z-]*)/predictors/(?P<preid>[0-9 A-Z-]{1,})", predictor_profile),
|
|
16
16
|
re_path("^inventory/(?P<calid>[0-9 A-Z-]*)/predictors/create", predictor_upload),
|
|
17
|
-
re_path("^inventory/[0-9 A-Z-]
|
|
17
|
+
re_path("^inventory/(?P<calid>[0-9 A-Z-]*)/predictors/", asset_predictors, name="asset_predictors")
|
|
18
18
|
]
|
irie/apps/prediction/views.py
CHANGED
|
@@ -36,9 +36,7 @@ def new_prediction(request):
|
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
@login_required(login_url="/login/")
|
|
39
|
-
def asset_predictors(request):
|
|
40
|
-
|
|
41
|
-
calid = request.path.split("/")[-3]
|
|
39
|
+
def asset_predictors(request, calid):
|
|
42
40
|
|
|
43
41
|
context = {"segment": "inventory"}
|
|
44
42
|
|
|
@@ -55,6 +53,7 @@ def asset_predictors(request):
|
|
|
55
53
|
|
|
56
54
|
try:
|
|
57
55
|
context["asset"] = Asset.objects.get(calid=calid)
|
|
56
|
+
|
|
58
57
|
except Asset.DoesNotExist:
|
|
59
58
|
return HttpResponse(
|
|
60
59
|
loader.get_template("site/page-404-sidebar.html").render(context, request)
|
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
<h1 class="mb-0 h3">Sign In</h1>
|
|
19
19
|
<br />
|
|
20
20
|
<p>
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
21
|
+
{% if msg %}
|
|
22
|
+
<span class="text-danger">{{ msg | safe }}</span>
|
|
23
|
+
{% else %}
|
|
24
|
+
Add your credentials
|
|
25
|
+
{% endif %}
|
|
26
26
|
</p>
|
|
27
27
|
</div>
|
|
28
28
|
<form method="post" action="" class="mt-4">
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{% extends "layouts/base.html" %}
|
|
2
|
+
|
|
3
|
+
{% block title %} {{ asset.calid }} {% endblock %}
|
|
4
|
+
|
|
5
|
+
{% block stylesheets %}
|
|
6
|
+
{% endblock stylesheets %}
|
|
7
|
+
|
|
8
|
+
{% block content %}
|
|
9
|
+
<div class="print">
|
|
10
|
+
<div class="col-10 mb-4 d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center py-4">
|
|
11
|
+
<div class="d-block mb-4 mb-md-0">
|
|
12
|
+
<nav aria-label="breadcrumb" class="d-none d-md-inline-block">
|
|
13
|
+
<ol class="breadcrumb breadcrumb-dark breadcrumb-transparent">
|
|
14
|
+
<li class="breadcrumb-item">
|
|
15
|
+
<a href="{% url 'dashboard' %}">
|
|
16
|
+
<svg class="icon icon-xxs" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6"></path></svg>
|
|
17
|
+
</a>
|
|
18
|
+
</li>
|
|
19
|
+
<li class="breadcrumb-item" aria-current="page"><a href="{% url 'asset_table' %}">Inventory</a></li>
|
|
20
|
+
<li class="breadcrumb-item active"><code>{{ asset.calid }}</code></li>
|
|
21
|
+
<li class="breadcrumb-item active">Evaluations</li>
|
|
22
|
+
</ol>
|
|
23
|
+
</nav>
|
|
24
|
+
<h2 class="h4">{{ asset.id }} - {{ asset.name }}</h2>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
<details id="event-table" open><summary><h3>Health History</h3></summary>
|
|
31
|
+
{% if asset.cesmd %}
|
|
32
|
+
<div class="row">
|
|
33
|
+
<div class="col-10 mb-4">
|
|
34
|
+
{% include 'includes/asset-event-table.html' with evaluations=evaluations %}
|
|
35
|
+
</div>
|
|
36
|
+
</div>
|
|
37
|
+
{% endif %}
|
|
38
|
+
</details>
|
|
39
|
+
<hr>
|
|
40
|
+
|
|
41
|
+
{% endblock content %}
|
|
42
|
+
|
|
43
|
+
{% block javascripts %}
|
|
44
|
+
<script>
|
|
45
|
+
const table_keys = [
|
|
46
|
+
{% for method in evaluations.0.evaluation %}
|
|
47
|
+
"{{ method }}",
|
|
48
|
+
{% endfor %}
|
|
49
|
+
];
|
|
50
|
+
for (const key of table_keys) {
|
|
51
|
+
let elem = document.querySelector(`#ssid-set-${key}`);
|
|
52
|
+
elem.onclick = () => {
|
|
53
|
+
// Unhide
|
|
54
|
+
[...document.querySelectorAll(`.ssid-method-${key}`)].map((x) => {
|
|
55
|
+
console.log(x);
|
|
56
|
+
x.style.display = null;
|
|
57
|
+
});
|
|
58
|
+
document.querySelector("#ssid-name").textContent = elem.innerText;
|
|
59
|
+
// Hide rest
|
|
60
|
+
for (const oth of table_keys) {
|
|
61
|
+
if (oth != key)
|
|
62
|
+
[...document.querySelectorAll(`.ssid-method-${oth}`)].map((x) => {
|
|
63
|
+
console.log(x);
|
|
64
|
+
x.style.display = 'none';
|
|
65
|
+
});
|
|
66
|
+
}
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
</script>
|
|
70
|
+
{% endblock javascripts %}
|
|
@@ -536,16 +536,18 @@
|
|
|
536
536
|
</div>
|
|
537
537
|
{% endcomment %}
|
|
538
538
|
<div class="tab-content" id="ssid-pills" style="overflow-x:auto;">
|
|
539
|
-
|
|
539
|
+
{% if all_evaluations.SPECTRAL_SHIFT_IDENTIFICATION %}
|
|
540
540
|
{% with summary=all_evaluations.SPECTRAL_SHIFT_IDENTIFICATION.summary %}
|
|
541
541
|
{% for model_name, metric_data in summary.items %}
|
|
542
542
|
{{ metric_data.description }}
|
|
543
|
-
{% if "error" in metric_data %}
|
|
544
|
-
<b>{{ metric_data.error }}</b>
|
|
545
|
-
{% else %}
|
|
546
543
|
<div class="tab-pane fade {% if not forloop.counter0 %}show active{% endif %}" id="pills-{{ model_name }}-ssid"
|
|
547
544
|
role="tabpanel">
|
|
548
|
-
{
|
|
545
|
+
{% if "error" in metric_data %}
|
|
546
|
+
This metric failed to run. The error message reads:
|
|
547
|
+
<blockquote style="padding: 20px;">
|
|
548
|
+
{{ metric_data.error }}
|
|
549
|
+
</blockquote>
|
|
550
|
+
{% else %}
|
|
549
551
|
<table class="table align-items-center table-flush">
|
|
550
552
|
<thead class="thead-light">
|
|
551
553
|
<tr>
|
|
@@ -568,11 +570,10 @@
|
|
|
568
570
|
</div>
|
|
569
571
|
{% endfor %}
|
|
570
572
|
{% endwith %}
|
|
571
|
-
|
|
573
|
+
{% else %}
|
|
572
574
|
<center>NA</center>
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
</div>
|
|
575
|
+
{% endif %}
|
|
576
|
+
</div>
|
|
576
577
|
</div>
|
|
577
578
|
<div class="card-footer">
|
|
578
579
|
<ul class="nav nav-pills my-0" id="pills-tab" role="tablist">
|
|
@@ -21,16 +21,10 @@
|
|
|
21
21
|
height: auto;
|
|
22
22
|
margin: -200px 0 -100px -100px;
|
|
23
23
|
}
|
|
24
|
-
/*
|
|
25
|
-
width: 400px;
|
|
26
|
-
height: 300px;
|
|
27
|
-
margin: -75px 0 0 -100px;
|
|
28
|
-
*/
|
|
29
24
|
</style>
|
|
30
25
|
<style>
|
|
31
26
|
@media print {
|
|
32
27
|
@page {
|
|
33
|
-
/* size:210mm 297mm; */
|
|
34
28
|
size: 8.5in 11in;
|
|
35
29
|
}
|
|
36
30
|
#event-table, #rendering, #structureProfile {
|
|
@@ -61,12 +55,9 @@
|
|
|
61
55
|
}
|
|
62
56
|
h1 {
|
|
63
57
|
font-size: 16pt;
|
|
64
|
-
/* position: fixed;
|
|
65
|
-
top: 0; */
|
|
66
58
|
}
|
|
67
59
|
h2, h3, h4 {
|
|
68
60
|
font-size: 14pt;
|
|
69
|
-
/* margin-top: 25px; */
|
|
70
61
|
}
|
|
71
62
|
main, div.print {
|
|
72
63
|
visibility: visible;
|
|
@@ -121,7 +112,7 @@
|
|
|
121
112
|
|
|
122
113
|
{% block content %}
|
|
123
114
|
<div class="print">
|
|
124
|
-
<div class="col-
|
|
115
|
+
<div class="col-10 mb-4 d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center py-4">
|
|
125
116
|
<div class="d-block mb-4 mb-md-0">
|
|
126
117
|
<nav aria-label="breadcrumb" class="d-none d-md-inline-block">
|
|
127
118
|
<ol class="breadcrumb breadcrumb-dark breadcrumb-transparent">
|
|
@@ -191,13 +182,17 @@
|
|
|
191
182
|
{% endif %}
|
|
192
183
|
{% if asset.cesmd %}
|
|
193
184
|
<div id="sensors" class="row">
|
|
194
|
-
<div class="col-
|
|
185
|
+
<div class="col-10 mb-4">
|
|
195
186
|
<div class="card h-100 bg-white-100 border-0 shadow">
|
|
196
187
|
<div class="card-header d-sm-flex flex-row align-items-center flex-0">
|
|
197
188
|
</div>
|
|
198
189
|
<div class="card-body align-items-center p-2">
|
|
199
190
|
<img src="{{ ASSETS_ROOT }}/inventory/ll{{ asset.cesmd|slice:"2:" }}.svg">
|
|
200
191
|
</div>
|
|
192
|
+
<div class="card-footer">
|
|
193
|
+
<span class="small">
|
|
194
|
+
Source: <a href="https://www.strongmotioncenter.org/cgi-bin/CESMD/stationhtml.pl?stationID={{asset.cesmd}}&network=CGS">CGS</a></span>
|
|
195
|
+
</div>
|
|
201
196
|
</div>
|
|
202
197
|
</div>
|
|
203
198
|
</div>
|
|
@@ -209,17 +204,15 @@
|
|
|
209
204
|
<details id="event-table" open><summary><h3>Health History</h3></summary>
|
|
210
205
|
{% if asset.cesmd %}
|
|
211
206
|
<div class="row">
|
|
212
|
-
<div class="col-
|
|
213
|
-
<!-- <div class="card bg-white-100 border-0 shadow table-wrapper table-responsive"> -->
|
|
207
|
+
<div class="col-10 mb-4">
|
|
214
208
|
{% include 'includes/asset-event-table.html' with evaluations=evaluations %}
|
|
215
|
-
<!-- </div> -->
|
|
216
209
|
</div>
|
|
217
210
|
</div>
|
|
218
211
|
{% endif %}
|
|
219
212
|
|
|
220
213
|
{# Hazus #}
|
|
221
214
|
<div class="row">
|
|
222
|
-
<div class="col-
|
|
215
|
+
<div class="col-10 mb-4">
|
|
223
216
|
<div class="card bg-white-100 border-0 shadow ">
|
|
224
217
|
<div class="card-header">
|
|
225
218
|
<h4>Hazus Fragility</h4>
|
|
@@ -240,7 +233,7 @@
|
|
|
240
233
|
<details open><summary><h3>Structure Details</h3></summary>
|
|
241
234
|
|
|
242
235
|
<div class="row">
|
|
243
|
-
<div class="col-
|
|
236
|
+
<div class="col-10 mb-4">
|
|
244
237
|
{% for table in tables %}
|
|
245
238
|
<div class="card bg-white-100 border-0 shadow table-wrapper table-responsive">
|
|
246
239
|
<div class="card">
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: irie
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.23
|
|
4
4
|
Summary: An infrastructure resilience engine
|
|
5
5
|
Author-email: "Claudio M. Perez" <50180406+claudioperez@users.noreply.github.com>
|
|
6
6
|
Project-URL: Repository, https://github.com/STAIRLab
|
|
@@ -90,7 +90,7 @@ Requires-Dist: dj-database-url==2.1.0
|
|
|
90
90
|
</td>
|
|
91
91
|
|
|
92
92
|
<td>
|
|
93
|
-
<a href="https://
|
|
93
|
+
<a href="https://structures.live">
|
|
94
94
|
<img src="https://raw.githubusercontent.com/claudioperez/sdof/master/docs/assets/stairlab.svg"
|
|
95
95
|
alt="STAIRlab Logo" width="200"/>
|
|
96
96
|
</a>
|
|
@@ -56,8 +56,8 @@ irie/apps/inventory/models.py,sha256=lAqh7UyK6cj0rScfvrdxjhurlMiKx5fN2L6OuR-g_VM
|
|
|
56
56
|
irie/apps/inventory/sitemaps.py,sha256=Nha1MTsIH_ad7JyoxwonPytp7MNuEhDNszkEUOmlN0o,826
|
|
57
57
|
irie/apps/inventory/tables.py,sha256=vZdPOcbN1ibuWXqLwbBUoQw9iavwa1GJ5fd83k8bu7Y,27874
|
|
58
58
|
irie/apps/inventory/traffic.py,sha256=B3PHqn2Pm4AEdUZ_tuA16fuFruo2rm5waMBwLQyF-9g,4490337
|
|
59
|
-
irie/apps/inventory/urls.py,sha256=
|
|
60
|
-
irie/apps/inventory/views.py,sha256=
|
|
59
|
+
irie/apps/inventory/urls.py,sha256=QZf6HMkBFi1Y1dn-WURflCOUccnL4svG_dlLmtVKjuQ,1169
|
|
60
|
+
irie/apps/inventory/views.py,sha256=JltasY7ywPJOq2gajtOjgigT1JMJErXa45XKGqOB0kc,15780
|
|
61
61
|
irie/apps/inventory/archive/arcGIS.py,sha256=vcfsy1be4edOXD1Z3rkUnq9QmCTol7dypdF816Q3B_w,34893
|
|
62
62
|
irie/apps/inventory/migrations/0001_initial.py,sha256=PwTHv4Q3gqWFha--8Zp9kUOh-cYalB14jXj7RVJUVnw,1786
|
|
63
63
|
irie/apps/inventory/migrations/0002_alter_asset_bridge_sensors_and_more.py,sha256=rPzWHkjg-ZCorVA_gv6MVb5F6LTLHcwlPwhBR1PxVr0,842
|
|
@@ -80,8 +80,8 @@ irie/apps/prediction/forms.py,sha256=TGej1UK30hlkcDGPRmLr8JujHxAqe7wIlTLZNVqXCpM
|
|
|
80
80
|
irie/apps/prediction/metrics.py,sha256=Zh1utUZTGddQEVn4e1rLO74tbIz7bVvZli8sgmuB_X0,1410
|
|
81
81
|
irie/apps/prediction/models.py,sha256=5PK8UOwS5vQBAJX9MLtHNqWQp5c3pYGzYM9vAKaKnYA,1448
|
|
82
82
|
irie/apps/prediction/predictor.py,sha256=-x_4kHWnfUxiX2aQfbl3dsbVAG4lRKAFbo1CqfZNCIc,831
|
|
83
|
-
irie/apps/prediction/urls.py,sha256=
|
|
84
|
-
irie/apps/prediction/views.py,sha256=
|
|
83
|
+
irie/apps/prediction/urls.py,sha256=eeq3AnQtNnKt0UB7mtm1BbtbJzsw5zp76ip1lXFJMNE,853
|
|
84
|
+
irie/apps/prediction/views.py,sha256=f_CBoGfxSY_kXJ4hTN5caoZ7ETbPFavDp7LhX_X7pYQ,3937
|
|
85
85
|
irie/apps/prediction/views_api.py,sha256=DJzLYO5ouPOWkkZJNZxZJzxC3TROKJ-L6Z2IC1NMuFQ,6888
|
|
86
86
|
irie/apps/prediction/migrations/0001_initial.py,sha256=-0GWd2vUUAzSPfptccAJ3raI3UD4Xj9H0E5EJ7xN0Ek,1428
|
|
87
87
|
irie/apps/prediction/migrations/0002_alter_predictormodel_protocol.py,sha256=nrQvuZ1eRR7fR17IjdS0Xyw14y9DpE6HkG2-h7HQ_zA,560
|
|
@@ -351,7 +351,7 @@ irie/apps/static/assets/vendor/waypoints/lib/zepto.waypoints.min.js,sha256=WHm5S
|
|
|
351
351
|
irie/apps/static/assets/vendor/waypoints/lib/shortcuts/infinite.min.js,sha256=rhBj6EMCVYRUhpAO7Fg5EmTwftEJWqtEqZCMLbU3e_k,1460
|
|
352
352
|
irie/apps/static/assets/vendor/waypoints/lib/shortcuts/inview.min.js,sha256=sfo9sU1TOfB7KHamco4e-OkP_3CyXoaB9xYvINziUCc,1723
|
|
353
353
|
irie/apps/static/assets/vendor/waypoints/lib/shortcuts/sticky.min.js,sha256=FMUrTx2qGqOpLZYKMR1FGNoH6At7GkQ9PxpVwJaMmaA,1243
|
|
354
|
-
irie/apps/templates/accounts/login.html,sha256=
|
|
354
|
+
irie/apps/templates/accounts/login.html,sha256=pjzjvKfj5jZx2_234jDwqR0J95FcZW8p8tytXEXDrNY,7867
|
|
355
355
|
irie/apps/templates/accounts/register.html,sha256=S41m7tBk4oNFRqFX_Wp9s_hR66f3KGDUWiE-VaTVQp4,7236
|
|
356
356
|
irie/apps/templates/admin/base_site.html,sha256=edyJ4E6r4Vc4iJGLjA8DruoZnfJjFMEPDT-V_JBZtpo,659
|
|
357
357
|
irie/apps/templates/admin/color_theme_toggle.html,sha256=owh9iJVw55HfqHEEaKUpeCxEIB4db8qFALv4fsbG0fI,697
|
|
@@ -372,8 +372,9 @@ irie/apps/templates/includes/paginate.js,sha256=dAaL4uFQzEIbm61c_USEHlQLFkKc2ndJ
|
|
|
372
372
|
irie/apps/templates/includes/scripts.html,sha256=1Up6xJJSTpdLTJp0tDAa3JubevvSlicOE4_j1vEOkek,1190
|
|
373
373
|
irie/apps/templates/includes/settings-box.html,sha256=wexsLS4SMRyKci-r4L_LQ6QM27h4U291091NcGiTT3o,2486
|
|
374
374
|
irie/apps/templates/includes/sidebar.html,sha256=uJnzXtcV7UvXscvEHe5z0wpLsFZk8B9mj1_Ye08NRbY,10972
|
|
375
|
-
irie/apps/templates/inventory/asset-
|
|
376
|
-
irie/apps/templates/inventory/asset-
|
|
375
|
+
irie/apps/templates/inventory/asset-evals.html,sha256=WpuIN9CdDGX66HxbZ5kSXSkPa2CZuKH-uuSrPmGgstw,2479
|
|
376
|
+
irie/apps/templates/inventory/asset-event-summary.html,sha256=NKEjPjy26W4PNePpfCskqc59RnYdMcg9vqxnWGiFTVY,50768
|
|
377
|
+
irie/apps/templates/inventory/asset-profile.html,sha256=uS0sN2VPcgBkeT1PWY--QibkOjZuo-EJSaeUAoI9nI0,11291
|
|
377
378
|
irie/apps/templates/inventory/asset-table.html,sha256=hiPrumCigE_m1H6vSr8l-AoRosV8WnFuRg89cuzavvY,12129
|
|
378
379
|
irie/apps/templates/inventory/bridge-dashboard.html,sha256=67zrDlih3LOi9xFVwPVZZkgRT3DO-lE_qRL7q8Uz9GY,45472
|
|
379
380
|
irie/apps/templates/inventory/bridge.html,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
@@ -439,8 +440,8 @@ irie/init/management/commands/init_corridors.py,sha256=EzLk0HUiFxlco-2u0rypewOc9
|
|
|
439
440
|
irie/init/management/commands/init_predictors.py,sha256=jdD7rd8l2qxuUuR5GOYuHXp-ZQkAK477TefksBMdlOw,2362
|
|
440
441
|
irie/rest/__main__.py,sha256=6Nf_-Rr9zGmMyp_wqCFDO7ls9QPnPd9UyUgN17rIGYw,3680
|
|
441
442
|
irie/usgs/__main__.py,sha256=HiSvPn5IW5IqRiCk1qRRq5dCy3-7iISw7v1P_w2rLrk,5049
|
|
442
|
-
irie-0.0.
|
|
443
|
-
irie-0.0.
|
|
444
|
-
irie-0.0.
|
|
445
|
-
irie-0.0.
|
|
446
|
-
irie-0.0.
|
|
443
|
+
irie-0.0.23.dist-info/METADATA,sha256=XGIANtFUPcKzxB-th2-73V1ECwww1T-83V7Vg-Jtguc,3242
|
|
444
|
+
irie-0.0.23.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
445
|
+
irie-0.0.23.dist-info/entry_points.txt,sha256=A_3h9wPBGfxGQ78_MGa-nO6Z0foxOYeAnIE47jxEztg,44
|
|
446
|
+
irie-0.0.23.dist-info/top_level.txt,sha256=zVCxi5E2nkISZPzKq8VEhWe_dGuPcefLYV1tYqQdwlY,5
|
|
447
|
+
irie-0.0.23.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|