Spaces:
Runtime error
Runtime error
Commit
·
9fdeac0
1
Parent(s):
549da37
Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ Created on Fri Oct 14 10:35:25 2022
|
|
4 |
|
5 |
@author: mritchey
|
6 |
"""
|
7 |
-
|
8 |
import datetime
|
9 |
import glob
|
10 |
import os
|
@@ -83,7 +83,7 @@ def get_grib_data(url, d, t):
|
|
83 |
return file
|
84 |
|
85 |
|
86 |
-
@st.cache
|
87 |
def graph_entire_day(d, rows, columns):
|
88 |
year, month, day = d[:4], d[4:6], d[6:8]
|
89 |
times = [f'0{str(i)}'[-2:] for i in range(0, 24)]
|
|
|
4 |
|
5 |
@author: mritchey
|
6 |
"""
|
7 |
+
|
8 |
import datetime
|
9 |
import glob
|
10 |
import os
|
|
|
83 |
return file
|
84 |
|
85 |
|
86 |
+
# @st.cache
|
87 |
def graph_entire_day(d, rows, columns):
|
88 |
year, month, day = d[:4], d[4:6], d[6:8]
|
89 |
times = [f'0{str(i)}'[-2:] for i in range(0, 24)]
|