mattritchey commited on
Commit
2b1086d
·
verified ·
1 Parent(s): 439f97c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -4,7 +4,7 @@ Created on Thu Jun 8 03:39:02 2023
4
 
5
  @author: mritchey
6
  """
7
- # streamlit run "C:\Users\mritchey\.spyder-py3\Python Scripts\streamlit projects\hail\hail all.py"
8
 
9
  import pandas as pd
10
  import numpy as np
@@ -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, 17), 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,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-17') # change here
168
  df_hail_cut_group2
169
 
170
  data=df_hail_cut_group2.reset_index()
 
4
 
5
  @author: mritchey
6
  """
7
+ # streamlit run "hail all.py"
8
 
9
  import pandas as pd
10
  import numpy as np
 
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, 26), 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-26') # change here
168
  df_hail_cut_group2
169
 
170
  data=df_hail_cut_group2.reset_index()