irie 0.0.24__py3-none-any.whl → 0.0.26__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.

@@ -10,7 +10,7 @@
10
10
  <ul class="list-inline list-group-flush list-group-borderless text-end mb-0">
11
11
  <li class="list-inline-item px-0 px-sm-2">
12
12
  Powered by
13
- <a target="_blank" href="https://stairlab.berkeley.edu/software/irie">
13
+ <a target="_blank" href="https://stairlab.berkeley.edu/software/irie/">
14
14
  IRiE</a>
15
15
  </li>
16
16
  </ul>
@@ -1,6 +1,10 @@
1
1
  {% extends "layouts/base.html" %}
2
2
 
3
- {% block title %} {{ asset.calid }} {% endblock %}
3
+ {% block title %} {{ asset.calid }} Evaluations {% endblock %}
4
+
5
+ {% block meta %}
6
+ <meta name="description" content="Hazard events for the {{ asset.name }} digital twin.">
7
+ {% endblock %}
4
8
 
5
9
  {% block stylesheets %}
6
10
  {% endblock stylesheets %}
@@ -17,7 +21,11 @@
17
21
  </a>
18
22
  </li>
19
23
  <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>
24
+ <li class="breadcrumb-item active">
25
+ <a href="../" >
26
+ <code>{{ asset.calid }}</code>
27
+ </a>
28
+ </li>
21
29
  <li class="breadcrumb-item active">Evaluations</li>
22
30
  </ol>
23
31
  </nav>
@@ -1,6 +1,9 @@
1
1
  {% extends "layouts/base.html" %}
2
2
 
3
- {% block title %} {{ asset.calid }} {% endblock %}
3
+ {% block title %} {{ asset.calid }} Health | {{event.id}} {% endblock %}
4
+ {% block meta %}
5
+ <meta name="description" content="Health evaluation of the {{asset.name}} in response to event {{ event.id }}.">
6
+ {% endblock %}
4
7
 
5
8
  {% block stylesheets %}
6
9
  <style>
@@ -1,7 +1,9 @@
1
1
  {% extends "layouts/base.html" %}
2
2
 
3
3
  {% block title %} {{ asset.calid }} {% endblock %}
4
-
4
+ {% block meta %}
5
+ <meta name="description" content="Live-updating digital twin for health assessment of the {{ asset.name }} ({{ asset.calid }}).">
6
+ {% endblock %}
5
7
  {% block stylesheets %}
6
8
  {% if asset.rendering %}
7
9
  <!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
@@ -9,7 +11,6 @@
9
11
  <script type="module" src="https://ajax.googleapis.com/ajax/libs/model-viewer/4.0.0/model-viewer.min.js"></script>
10
12
  <!-- <script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.min.js"></script> -->
11
13
  {% endif %}
12
-
13
14
  <style>
14
15
  .crop {
15
16
  width: 100%; /* 200px;*/
@@ -125,7 +126,7 @@
125
126
  <li class="breadcrumb-item active"><code>{{ asset.calid }}</code></li>
126
127
  </ol>
127
128
  </nav>
128
- <h2 class="h4">{{ asset.id }} - {{ asset.name }}</h2>
129
+ <h1 class="h4">{{ asset.id }} - {{ asset.name }}</h1>
129
130
  </div>
130
131
  <div class="btn-toolbar mb-2 mb-md-0">
131
132
  <a role="button"
@@ -152,7 +153,7 @@
152
153
  {% if asset.rendering %}
153
154
  <div id="rendering" class="row">
154
155
  <div class="col-10 mb-4">
155
- <div class="card h-100 bg-white-100 border-0 shadow">
156
+ <div class="card h-100 bg-white-100 border-1 rounded-0 shadow">
156
157
  <div class="card-header d-sm-flex flex-row align-items-center flex-0">
157
158
  {% comment %}
158
159
  <button
@@ -183,7 +184,7 @@
183
184
  {% if asset.cesmd %}
184
185
  <div id="sensors" class="row">
185
186
  <div class="col-10 mb-4">
186
- <div class="card h-100 bg-white-100 border-0 shadow">
187
+ <div class="card h-100 bg-white-100 border-1 rounded-0 shadow">
187
188
  <div class="card-header d-sm-flex flex-row align-items-center flex-0">
188
189
  </div>
189
190
  <div class="card-body align-items-center p-2">
@@ -213,7 +214,7 @@
213
214
  {# Hazus #}
214
215
  <div class="row">
215
216
  <div class="col-10 mb-4">
216
- <div class="card bg-white-100 border-0 shadow ">
217
+ <div class="card bg-white-100 border-1 rounded-0 shadow ">
217
218
  <div class="card-header">
218
219
  <h4>Hazus Fragility</h4>
219
220
  </div>
@@ -238,33 +239,32 @@
238
239
  <div class="row">
239
240
  <div class="col-10 mb-4">
240
241
  {% for table in tables %}
241
- <div class="card bg-white-100 border-0 shadow table-wrapper table-responsive">
242
- <div class="card">
243
- <div class="card-body shadow table-wrapper table-responsive">
244
- <table class="table table-hover" style="display: block;">
245
- <caption>{{asset.calid}} Table {{forloop.counter}}</caption>
246
- <tbody>
247
- {% for key,val in table.items %}
248
- {% if val %}
249
- <tr>
250
- <th scope="row" style="text-align:left; width:40%;">{{ key }}</th>
251
- <!-- The inline style here ensures that
252
- there are line breaks in rows with long text -->
253
- <td style="width: 60%; white-space: normal !important;word-wrap: break-word;">{{ val }}</td>
254
- </tr>
255
- {% endif %}
256
- {% endfor %}
257
- </tbody>
258
- </table>
259
- </div>
260
- <div class="card-footer">
261
- <span class="small">Source: <a rel="nofollow noreferrer" href="https://infobridge.fhwa.dot.gov/">InfoBridge</a></span>
262
- </div>
242
+ <div class="card bg-white-100 border-1 rounded-0 shadow table-wrapper table-responsive">
243
+ <div class="card-body shadow table-wrapper table-responsive">
244
+ <table class="table table-hover" style="display: block;">
245
+ <caption>{{asset.calid}} Table {{forloop.counter}}</caption>
246
+ <tbody>
247
+ {% for key,val in table.items %}
248
+ {% if val %}
249
+ <tr>
250
+ <th scope="row" style="text-align:left; width:40%;">{{ key }}</th>
251
+ <!-- The inline style here ensures that
252
+ there are line breaks in rows with long text -->
253
+ <td style="width: 60%; white-space: normal !important;word-wrap: break-word;">{{ val }}</td>
254
+ </tr>
255
+ {% endif %}
256
+ {% endfor %}
257
+ </tbody>
258
+ </table>
259
+ </div>
260
+ <div class="card-footer">
261
+ <span class="small">Source: <a rel="nofollow noreferrer" href="https://infobridge.fhwa.dot.gov/">InfoBridge</a></span>
262
+ </div>
263
263
  </div>
264
- </div>
265
- <br>
266
- {% endfor %}
267
- </div>
264
+ <br>
265
+ {% endfor %}
266
+ </div> <!-- col -->
267
+ </div><!-- row -->
268
268
  </details>
269
269
 
270
270
 
@@ -8,8 +8,6 @@
8
8
  <meta name="title" content="BRACE2 - Sign up page">
9
9
  <meta name="author" content="PEER">
10
10
  <meta name="description" content="BRACE2 is a platform for structural health monitoring.">
11
- <meta name="keywords" content="structural health monitorine, finite element method" />
12
- <link rel="canonical" href="https://peer.berkeley.edu">
13
11
 
14
12
  <!-- Open Graph / Facebook -->
15
13
  <meta property="og:type" content="website">
@@ -18,21 +18,19 @@
18
18
  gtag('config', 'G-TFW5X9DYND');
19
19
  </script>
20
20
  {% endcomment %}
21
- <title>{% block title %}{% endblock %} | BRACE2</title>
21
+ <title>{% block title %}{% endblock %}</title>
22
22
 
23
23
  <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
24
- <meta name="title" content="BRACE2 - Real-time structural health monitoring platform">
25
- <meta name="author" content="PEER">
26
- <meta name="description" content="BRACE2 is a platform for real-time structural health monitoring.">
27
- <meta name="keywords" content="dashboard, shm, bridge, fem, fea, health-monitoring, real-time, datatable, peer, brace2, pacific earthquake engineering research center, mechanics" />
24
+ <meta name="author" content="STAIRLab">
28
25
  <link rel="canonical" href="https://structures.live{{ request.path }}">
26
+ {% block meta %}
27
+ {% endblock meta %}
29
28
 
30
29
  <!-- Favicon -->
31
30
  <link rel="apple-touch-icon" sizes="120x120" href="{{ ASSETS_ROOT }}/img/favicon/apple-touch-icon.png">
32
- {% if False %}
33
31
  <link rel="icon" type="image/png" sizes="32x32" href="{{ ASSETS_ROOT }}/img/favicon/favicon-32x32.png">
34
32
  <link rel="icon" type="image/png" sizes="16x16" href="{{ ASSETS_ROOT }}/img/favicon/favicon-16x16.png">
35
- {% endif %}
33
+
36
34
  <link rel="icon" href="{{ ASSETS_ROOT }}/favicon.ico?v=2" />
37
35
  <link rel="manifest" href="{{ ASSETS_ROOT }}/img/favicon/site.webmanifest">
38
36
  <link rel="mask-icon" href="{{ ASSETS_ROOT }}/img/favicon/safari-pinned-tab.svg" color="#ffffff">
@@ -2,12 +2,11 @@
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5
- <title> BRACE<sup>2</sup></title>
5
+ <title>structures.live</title>
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7
7
  <meta name="title" content="BRACE2 Platform">
8
8
  <meta name="author" content="Claudio M. Perez">
9
9
  <meta name="description" content="BRACE2 platform for structural health monitoring.">
10
- <meta name="keywords" content="digital twin, opensees, finite element analysis, system identification, berkeley, bridge, engineering, earthquake engineering" />
11
10
 
12
11
  {# Open Graph and Facebook #}
13
12
  <meta property="og:type" content="website">
@@ -203,6 +202,7 @@ td.left-text{vertical-align:middle}
203
202
  <div class="row justify-content-between align-items-center">
204
203
  <div class="col-lg-5 order-lg-2 mb-5 mb-lg-0">
205
204
  <h2 class="h1">Health Diagnosis</h2>
205
+ <p>Heath metrics are generated in the wake of natural hazard events using leading-edge data-driven methods.</p>
206
206
  </div>
207
207
  <div class="col-lg-6 order-lg-1"><img src="{{ ASSETS_ROOT }}/img/metric.png"
208
208
  alt="Front pages overview"></div>
@@ -218,15 +218,8 @@ td.left-text{vertical-align:middle}
218
218
  <div class="row justify-content-between align-items-center">
219
219
  <div class="col-lg-5 order-lg-2 mb-5 mb-lg-0">
220
220
  <h2 class="h1">Digital Twins</h2>
221
- <p class="mb-4">Integrated state of the art modeling software</p>
222
- <a
223
- href="" target="_blank"
224
- class="btn btn-outline-gray-600 d-inline-flex align-items-center"><svg class="icon icon-xs me-2"
225
- fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
226
- <path
227
- d="M9 4.804A7.968 7.968 0 005.5 4c-1.255 0-2.443.29-3.5.804v10A7.969 7.969 0 015.5 14c1.669 0 3.218.51 4.5 1.385A7.962 7.962 0 0114.5 14c1.255 0 2.443.29 3.5.804v-10A7.968 7.968 0 0014.5 4c-1.255 0-2.443.29-3.5.804V12a1 1 0 11-2 0V4.804z">
228
- </path>
229
- </svg> Getting started</a>
221
+ <p class="mb-4">The <em>IRiE</em> engine is used to realize high-fidelity digital twins that are backed by
222
+ state-of-the-art analysis platforms like <a href="pypi.org/project/opensees">OpenSees</a> for nonlinear finite element analysis and <em><a href="chrystalchern.github.io/mdof">mdof</a></em> for system identification.</p>
230
223
  </div>
231
224
  <div class="col-lg-4 order-lg-1 card shadow"><img src="{{ ASSETS_ROOT }}/img/metric.png"
232
225
  alt="Digital twins"></div>
@@ -235,7 +228,7 @@ td.left-text{vertical-align:middle}
235
228
  <div class="col-lg-5 order-lg-2 mb-5 mb-lg-0">
236
229
  <h2 class="h1 d-flex align-items-center"> Corridors<span
237
230
  class="badge-md mb-0 fs-6 badge ms-3 rounded-pill text-dark bg-secondary">New</span></h2>
238
- <p class="mb-4">Corridor-level health analysis and recovery planning</p>
231
+ <p class="mb-4">Corridor-level health analysis and recovery planning has been implemented through collaborations at UC Berkeley and the California department of transportation.</p>
239
232
  <a href="https://dot.ca.gov/-/media/dot-media/programs/research-innovation-system-information/documents/research-notes/task3798-rns-05-24-a11y.pdf"
240
233
  target="_blank" class="btn btn-outline-gray-600 d-inline-flex align-items-center"><svg
241
234
  class="icon icon-xs me-2" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
@@ -257,15 +250,8 @@ td.left-text{vertical-align:middle}
257
250
  <div class="container align-items-center">
258
251
  <h1 class=tabs-title>Ecosystem</h1>
259
252
  <div class=uikit-tab-wrapper>
260
- <p>The <em>BRACE</em><sup>2</sup> Ecosystem</p>
253
+ <p>The <em>IRiE</em> Ecosystem</p>
261
254
  <table>
262
- {% if False %}
263
- <tr class=highlight-th>
264
- <td class="bold-text"></td>
265
- <td class="bold-text">Package</td>
266
- <td class="bold-text">Description</td>
267
- </tr>
268
- {% endif %}
269
255
  <tr>
270
256
  <td style=text-align:center>
271
257
  <a href="https://github.com/claudioperez/opensees">
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: irie
3
- Version: 0.0.24
3
+ Version: 0.0.26
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
@@ -365,24 +365,24 @@ irie/apps/templates/events/login.html,sha256=00rGrQsHXwQXbh2qF7WzEgIA4LjcbvcefAL
365
365
  irie/apps/templates/events/react_and_bootstrap.html,sha256=mwxjUMD5OMEI1JMNcWYxz7Ju5rq5R2spf6y_G7mYAUs,802
366
366
  irie/apps/templates/home/asset.html,sha256=nqzMy59L2yDalJbbK4j-MCFcBtXTUSMTkqkGwmlSriU,22323
367
367
  irie/apps/templates/includes/asset-event-table.html,sha256=ovAsKYVHKXRkS7znaDd9QzuaFG6M_2CY7yanYnC8k2w,4243
368
- irie/apps/templates/includes/footer.html,sha256=kUbuQQOemUlz5JiKnF6hw5dVs1GWbxzORn1_KRu8fFA,713
368
+ irie/apps/templates/includes/footer.html,sha256=dnfLJUYN70gdHFY_Xzkj5KuISD4ve-kKp6vwn4h8hDE,714
369
369
  irie/apps/templates/includes/modal-report.html,sha256=iqD6g9R4R7G426wLVL46H5fufWYAA3K8Acav9b0DQoU,3592
370
370
  irie/apps/templates/includes/navigation.html,sha256=6iGTqLbmbUqJb37VOWoSQvw_2LeiMIINI2v4Fm_GGZM,13658
371
371
  irie/apps/templates/includes/paginate.js,sha256=dAaL4uFQzEIbm61c_USEHlQLFkKc2ndJdR3bGzELtNc,3991
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-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=0L6eXUmYqErZqreDtLyQUIeXOD5-uJ8-Dv-K9ZTGi00,11594
375
+ irie/apps/templates/inventory/asset-evals.html,sha256=KzbdJJ7ildMpfO4IQDuXqGBcPzUTlYpJ_Y3Wg4payVc,2700
376
+ irie/apps/templates/inventory/asset-event-summary.html,sha256=r_Zl74thZlhUZiJYStycAhLFrq5DJ_YXJnmNG4yUHj0,50935
377
+ irie/apps/templates/inventory/asset-profile.html,sha256=yd0h787XFIcIjiV-DmOhMV1aqmc6sVEoNZDYVbH6CiM,11754
378
378
  irie/apps/templates/inventory/asset-table.html,sha256=hiPrumCigE_m1H6vSr8l-AoRosV8WnFuRg89cuzavvY,12129
379
379
  irie/apps/templates/inventory/bridge-dashboard.html,sha256=67zrDlih3LOi9xFVwPVZZkgRT3DO-lE_qRL7q8Uz9GY,45472
380
380
  irie/apps/templates/inventory/bridge.html,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
381
381
  irie/apps/templates/inventory/dashboard.html,sha256=yKEqsdSQpLIxv-E2sytN3yPNN9Li0q4488N3VVT9Jg8,7604
382
382
  irie/apps/templates/inventory/preamble.tex,sha256=TmRhIWg2-Pxj_e2OBctANRZPwU8RWMT3EZJFSa3R8HY,3547
383
383
  irie/apps/templates/inventory/report.tex,sha256=A1XKpwknlBrAZjFzzxVIDwypjXteqzoCQiuo1tQANfw,45228
384
- irie/apps/templates/layouts/base-fullscreen.html,sha256=14X-eubwjujt4jGMJGvbYqaWsqTSZwTX7q1BWFNDSbw,2660
385
- irie/apps/templates/layouts/base.html,sha256=uEC8GV1A2rG6iWONzqYiue1LNR9HVCD12AJRAbIL-8A,2647
384
+ irie/apps/templates/layouts/base-fullscreen.html,sha256=rDKXBySGTF65SUYc7YkrdbVqFFT_6a9HEvUcOQCetTg,2513
385
+ irie/apps/templates/layouts/base.html,sha256=gJVOOl1DzBxX1ChRJhx8PDSS3erEBzwaJAfgzM47YZc,2280
386
386
  irie/apps/templates/layouts/json-form.html,sha256=cT6Pd2168Z3p8RODS7SulUC79LnuzSs0EVLVxkGOXAo,1333
387
387
  irie/apps/templates/networks/corridor_table.html,sha256=SW6WMmxGsw2li1BXqvCRj1CFJ3IPUulfk-KHJBIMFx0,876
388
388
  irie/apps/templates/networks/networks.html,sha256=XMBwHhBqkG4ty2zgozlzeJNgyyXAzdbD95iyNJi4gJE,5745
@@ -399,7 +399,7 @@ irie/apps/templates/prediction/hazus/history.js,sha256=blHRXzlEfMBCezPE-2dZCpt2r
399
399
  irie/apps/templates/site/about.html,sha256=5hS5taj3XF-F8z-uIn53ZFXVHVS4apLRMg39OyvMvRs,610
400
400
  irie/apps/templates/site/asset_map.html,sha256=rnTjeYMc8NESIo6Uuq8fgZ_xcKNuKdt4zcqoUTDI8Xg,387
401
401
  irie/apps/templates/site/components-forms.html,sha256=FKOiR-3e9iw-xOHeaP2RB3O2gP10R-Mt8wdXfb1rDBQ,13865
402
- irie/apps/templates/site/index.html,sha256=KZiKpqwWyZ11RZSPZ4oqJ42Z-kECES6YsIfL7MCZGN8,15767
402
+ irie/apps/templates/site/index.html,sha256=mW8oFbTzlPAEcPRXO4qXddH6D3xlw0xqc7FV_v_lNOE,15218
403
403
  irie/apps/templates/site/json-form.html,sha256=ZrRWy5xnGBOqG51b6mdVGI0Io5X1z47DTFB9wW6ZQYA,1785
404
404
  irie/apps/templates/site/page-403.html,sha256=caU6t3fsCJiAIuZvRQekK2UemdZSNxc3l80ceSz0mp0,1289
405
405
  irie/apps/templates/site/page-404-sidebar.html,sha256=krMA-iYHaJNfXSwY7H_epZycWLiIb_bBbuWTmqC4ca4,1581
@@ -440,8 +440,8 @@ irie/init/management/commands/init_corridors.py,sha256=EzLk0HUiFxlco-2u0rypewOc9
440
440
  irie/init/management/commands/init_predictors.py,sha256=jdD7rd8l2qxuUuR5GOYuHXp-ZQkAK477TefksBMdlOw,2362
441
441
  irie/rest/__main__.py,sha256=6Nf_-Rr9zGmMyp_wqCFDO7ls9QPnPd9UyUgN17rIGYw,3680
442
442
  irie/usgs/__main__.py,sha256=HiSvPn5IW5IqRiCk1qRRq5dCy3-7iISw7v1P_w2rLrk,5049
443
- irie-0.0.24.dist-info/METADATA,sha256=2Oyb1Lju6AUHRGpZXxm0V7fZZjDRoGnJOZXHc1S_p8M,3242
444
- irie-0.0.24.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
445
- irie-0.0.24.dist-info/entry_points.txt,sha256=A_3h9wPBGfxGQ78_MGa-nO6Z0foxOYeAnIE47jxEztg,44
446
- irie-0.0.24.dist-info/top_level.txt,sha256=zVCxi5E2nkISZPzKq8VEhWe_dGuPcefLYV1tYqQdwlY,5
447
- irie-0.0.24.dist-info/RECORD,,
443
+ irie-0.0.26.dist-info/METADATA,sha256=Mm4HauaybbxlleHbHcp2EnK3yZXdcr3bn-JInW6nOaQ,3242
444
+ irie-0.0.26.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
445
+ irie-0.0.26.dist-info/entry_points.txt,sha256=A_3h9wPBGfxGQ78_MGa-nO6Z0foxOYeAnIE47jxEztg,44
446
+ irie-0.0.26.dist-info/top_level.txt,sha256=zVCxi5E2nkISZPzKq8VEhWe_dGuPcefLYV1tYqQdwlY,5
447
+ irie-0.0.26.dist-info/RECORD,,
File without changes