irie 0.0.48__py3-none-any.whl → 0.0.50__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/views.py +3 -0
- irie/init/calid.py +2 -2
- irie/init/management/commands/init_cesmd.py +6 -5
- {irie-0.0.48.dist-info → irie-0.0.50.dist-info}/METADATA +1 -1
- {irie-0.0.48.dist-info → irie-0.0.50.dist-info}/RECORD +8 -8
- {irie-0.0.48.dist-info → irie-0.0.50.dist-info}/WHEEL +0 -0
- {irie-0.0.48.dist-info → irie-0.0.50.dist-info}/entry_points.txt +0 -0
- {irie-0.0.48.dist-info → irie-0.0.50.dist-info}/top_level.txt +0 -0
irie/apps/inventory/views.py
CHANGED
|
@@ -583,6 +583,9 @@ class AssetMap:
|
|
|
583
583
|
top_markers = []
|
|
584
584
|
for b in assets:
|
|
585
585
|
lat, lon = b.coordinates
|
|
586
|
+
if lat is None or lon is None:
|
|
587
|
+
print(b)
|
|
588
|
+
continue
|
|
586
589
|
popup = folium.Popup(
|
|
587
590
|
folium.Html(
|
|
588
591
|
'<a style="display: inline;" target="_blank" href="/inventory/{calid}/">{label}</a>'.format(
|
irie/init/calid.py
CHANGED
|
@@ -41,7 +41,7 @@ CESMD = {
|
|
|
41
41
|
|
|
42
42
|
"35-0054": ("CE58677", None, "San Mateo Bridge"),
|
|
43
43
|
# "35-0054": ("CE58799", None, "San Mateo Bridge Trestle"),
|
|
44
|
-
|
|
44
|
+
# "53-3032": ("CE14709", None, "Long Beach - Schuyler Heim Bridge"),
|
|
45
45
|
"51-0104": ("CE25749", None, "Santa Barbara - San Roque Canyon Bridge"),
|
|
46
46
|
"44-0298": ("CE47646", None, "Big Sur - New Hwy 1/Pfeiffer Cnyn Bridge"),
|
|
47
47
|
"44-0060": ("CE47729", None, "Big Sur - Hwy 1/Pfeiffer Canyon Bridge [Demolished]"),
|
|
@@ -50,7 +50,7 @@ CESMD = {
|
|
|
50
50
|
"27-0013": ("CE68778", None, "Novato - Hwy37/Petaluma River Bridge"),
|
|
51
51
|
"17-0058L": ("CE76741", None, "Truckee - I80/Truckee River Bridge"),
|
|
52
52
|
"06-0210": ("CE88638", None, "Shasta Lake - I5/Antlers Bridge"),
|
|
53
|
-
|
|
53
|
+
# "54-0474F": ("CE12666", None, "North Palm Springs - I10/Hwy 62 Bridge"),
|
|
54
54
|
"53-1185": ("CE14690", None, "Los Angeles - I405/San Gabriel River Br"),
|
|
55
55
|
"50-0402R": ("CE34715", None, "Mojave - Hwy 14/Railroad Bridge"),
|
|
56
56
|
"33-0347S": ("CE58656", None, "Oakland - Hwy 580/13 Interchange Bridge"),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import irie
|
|
2
2
|
import numpy as np
|
|
3
3
|
from irie.apps.inventory.models import Asset
|
|
4
|
-
from irie.init.calid import
|
|
4
|
+
from irie.init.calid import CESMD_LONG_LAT, CESMD
|
|
5
5
|
from pathlib import Path
|
|
6
6
|
from django.core.management.base import BaseCommand
|
|
7
7
|
import json
|
|
@@ -37,12 +37,13 @@ class Command(BaseCommand):
|
|
|
37
37
|
asset = Asset()
|
|
38
38
|
asset.is_complete = False
|
|
39
39
|
|
|
40
|
-
asset.name = name
|
|
41
|
-
asset.cesmd = cesmd
|
|
40
|
+
asset.name = name
|
|
41
|
+
asset.cesmd = cesmd
|
|
42
42
|
asset.calid = calid
|
|
43
43
|
asset.cgs_data = CGS_DATA.get(cesmd, {})
|
|
44
|
-
|
|
45
|
-
|
|
44
|
+
if calid.replace("-", " ") in NBI_DATA:
|
|
45
|
+
asset.nbi_data = nbi_reshape(NBI_DATA.get(calid.replace("-", " "), [{}])[-1])
|
|
46
|
+
|
|
46
47
|
asset.save()
|
|
47
48
|
print(asset)
|
|
48
49
|
count += 1
|
|
@@ -65,7 +65,7 @@ irie/apps/inventory/models.py,sha256=ie7XhFDujpoyIinmX-YfScVx28SkkRhFadU0iNLC9HI
|
|
|
65
65
|
irie/apps/inventory/sitemaps.py,sha256=Nha1MTsIH_ad7JyoxwonPytp7MNuEhDNszkEUOmlN0o,826
|
|
66
66
|
irie/apps/inventory/tables.py,sha256=vZdPOcbN1ibuWXqLwbBUoQw9iavwa1GJ5fd83k8bu7Y,27874
|
|
67
67
|
irie/apps/inventory/urls.py,sha256=u2LNLB4K4fDq3yPYtREKf3i7_yHRzrTP3cb22G8Brvk,1578
|
|
68
|
-
irie/apps/inventory/views.py,sha256=
|
|
68
|
+
irie/apps/inventory/views.py,sha256=H9H16E8HODOadg809QuzNPV-vzeW2ZfrE45jhISa46s,21518
|
|
69
69
|
irie/apps/inventory/archive/CESMD.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
70
70
|
irie/apps/inventory/archive/calid.py,sha256=3L8MbPIGOE3kzDnqeyY055pRBiF2O2l0cmpuDbTsdTg,3014
|
|
71
71
|
irie/apps/inventory/migrations/0001_initial.py,sha256=PwTHv4Q3gqWFha--8Zp9kUOh-cYalB14jXj7RVJUVnw,1786
|
|
@@ -465,7 +465,7 @@ irie/fhwa/fields/nbi002.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
465
465
|
irie/init/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
466
466
|
irie/init/__main__.py,sha256=waUELqnhqZirROMIb5wMzD4mK5fgrUvWRsXoTXhjtxY,807
|
|
467
467
|
irie/init/bridges.py,sha256=OBBKnLx2lmMKDfeR0C8CBSbnpnzO0lfokBypD2nEFcM,74198
|
|
468
|
-
irie/init/calid.py,sha256
|
|
468
|
+
irie/init/calid.py,sha256=JsZRnR_GBNgYkKotVPyju6EcCo9eTFyjQGNweHz1xq4,10883
|
|
469
469
|
irie/init/getBridgeData.py,sha256=PU4OcdXCR0D-CCBX_T3PjyYL0QJKYyz2I4AMhaYKaZk,12650
|
|
470
470
|
irie/init/getCGSData.py,sha256=iZG3Ab1Y_rhiliKCPNy0MZrKBsfEe6ShgSFz2ttvTUU,2916
|
|
471
471
|
irie/init/getCGSevents.py,sha256=4dBkFFJQrUs6gfl1Nj-_R2UOZj0B_T017a6tC7fUHOw,421
|
|
@@ -482,15 +482,15 @@ irie/init/data/nbi_definitions.json,sha256=NS3yNP1i1E_JXfGW_I_xOoNRsfeljDA5BZ_1h
|
|
|
482
482
|
irie/init/data/nbi/04.tar,sha256=ubRgxWBshe0cNKxftbEVyFeh1HcUmFarVL2BBHo9Tyk,1884160
|
|
483
483
|
irie/init/data/networks/soga_corridors.json,sha256=AQOUaKGNWkQxQKLfqphE9Qb_-NRmjN9IwK59SGjutxE,45496
|
|
484
484
|
irie/init/management/commands/init_assets.py,sha256=z-QczBwa7altFy8oLgKtF2_ogHwWOGGFiMJYLkol-zU,5709
|
|
485
|
-
irie/init/management/commands/init_cesmd.py,sha256=
|
|
485
|
+
irie/init/management/commands/init_cesmd.py,sha256=nqq46k6u-8kpI42d_iwsi-QeXSULD-15pybm6qhFCBY,1677
|
|
486
486
|
irie/init/management/commands/init_corridors.py,sha256=EzLk0HUiFxlco-2u0rypewOc9mAo_raqXC2_UCG8a_w,1241
|
|
487
487
|
irie/init/management/commands/init_predictors.py,sha256=edCf7d36cwl4YitXLtvOfsPee-BiPF55_Gr73OvTPcU,2368
|
|
488
488
|
irie/init/management/commands/make_asset.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
489
489
|
irie/pull/nbi.py,sha256=KpBjJ9GEU72Qk1t4bGN9cg0QBeVJ8k9XcI3Y1oSgIR0,11478
|
|
490
490
|
irie/rest/__main__.py,sha256=6Nf_-Rr9zGmMyp_wqCFDO7ls9QPnPd9UyUgN17rIGYw,3680
|
|
491
491
|
irie/usgs/__main__.py,sha256=HiSvPn5IW5IqRiCk1qRRq5dCy3-7iISw7v1P_w2rLrk,5049
|
|
492
|
-
irie-0.0.
|
|
493
|
-
irie-0.0.
|
|
494
|
-
irie-0.0.
|
|
495
|
-
irie-0.0.
|
|
496
|
-
irie-0.0.
|
|
492
|
+
irie-0.0.50.dist-info/METADATA,sha256=BLbBnsk4JPAjG5LWNZcA14Fr1s7LZBO7YB9bZyv8LHY,3227
|
|
493
|
+
irie-0.0.50.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
|
494
|
+
irie-0.0.50.dist-info/entry_points.txt,sha256=A_3h9wPBGfxGQ78_MGa-nO6Z0foxOYeAnIE47jxEztg,44
|
|
495
|
+
irie-0.0.50.dist-info/top_level.txt,sha256=zVCxi5E2nkISZPzKq8VEhWe_dGuPcefLYV1tYqQdwlY,5
|
|
496
|
+
irie-0.0.50.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|