mattritchey commited on
Commit
f244cc3
·
1 Parent(s): 7d20864

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -66,7 +66,7 @@ def crop_hail_jpg_filter(f, crop_coords, scaling_factor=255):
66
  @st.cache_data
67
  def get_data(start_date,end_date):
68
  files = glob.glob(
69
- r'png\2022\**\*.png', recursive=True)
70
 
71
  files_dates = np.array([int(f[-19:-11]) for f in files])
72
  mask = np.where((files_dates >= int(start_date)) & (
 
66
  @st.cache_data
67
  def get_data(start_date,end_date):
68
  files = glob.glob(
69
+ 'png/2022/**/*.png', recursive=True)
70
 
71
  files_dates = np.array([int(f[-19:-11]) for f in files])
72
  mask = np.where((files_dates >= int(start_date)) & (