Spaces:
Sleeping
Sleeping
mattritchey
commited on
Commit
•
6fed97b
1
Parent(s):
7393627
Update app.py
Browse files
app.py
CHANGED
@@ -97,7 +97,7 @@ def geocode(address):
|
|
97 |
|
98 |
#Side Bar
|
99 |
address = st.sidebar.text_input("Address", "Dallas, TX")
|
100 |
-
date = st.sidebar.date_input("Loss Date (Max)", pd.Timestamp(2024, 5,
|
101 |
show_data = st.sidebar.selectbox('Show Data At Least Within:', ('Show All', '1 Mile', '3 Miles', '5 Miles'))
|
102 |
|
103 |
#Geocode Addreses
|
@@ -164,7 +164,7 @@ col1, col2 = st.columns((3, 2))
|
|
164 |
|
165 |
with col1:
|
166 |
st.header('Estimated Maximum Hail Size')
|
167 |
-
st.write('Data from 2010 to 2024-5-
|
168 |
df_hail_cut_group2
|
169 |
|
170 |
data=df_hail_cut_group2.reset_index()
|
|
|
97 |
|
98 |
#Side Bar
|
99 |
address = st.sidebar.text_input("Address", "Dallas, TX")
|
100 |
+
date = st.sidebar.date_input("Loss Date (Max)", pd.Timestamp(2024, 5, 31), key='date') # change here
|
101 |
show_data = st.sidebar.selectbox('Show Data At Least Within:', ('Show All', '1 Mile', '3 Miles', '5 Miles'))
|
102 |
|
103 |
#Geocode Addreses
|
|
|
164 |
|
165 |
with col1:
|
166 |
st.header('Estimated Maximum Hail Size')
|
167 |
+
st.write('Data from 2010 to 2024-5-31') # change here
|
168 |
df_hail_cut_group2
|
169 |
|
170 |
data=df_hail_cut_group2.reset_index()
|