Skip to content
Snippets Groups Projects
Commit 2de191df authored by tomrink's avatar tomrink
Browse files

snapshot...

parent e0e07010
No related branches found
No related tags found
No related merge requests found
...@@ -168,18 +168,33 @@ def analyze(ice_dct, no_ice_dct): ...@@ -168,18 +168,33 @@ def analyze(ice_dct, no_ice_dct):
print(np.sum(np.logical_and(hist_a > 0, hist_b > 0))) print(np.sum(np.logical_and(hist_a > 0, hist_b > 0)))
last_file = None last_file = None
cnt = 0 ice_files = []
ice_times = []
for ts in list(ice_dct.keys()):
try:
ds = get_goes_datasource(ts)
goes_file, t_0, _ = ds.get_file(ts)
if goes_file != last_file:
ice_files.append(goes_file)
ice_times.append(t_0)
last_file = goes_file
except Exception:
continue
last_file = None
no_ice_files = []
no_ice_times = []
for ts in list(no_ice_dct.keys()): for ts in list(no_ice_dct.keys()):
try: try:
ds = get_goes_datasource(ts) ds = get_goes_datasource(ts)
goes_file = ds.get_file(ts)[0] goes_file, t_0, _ = ds.get_file(ts)
if goes_file != last_file: if goes_file != last_file:
print(goes_file) no_ice_files.append(goes_file)
no_ice_times.append(t_0)
last_file = goes_file last_file = goes_file
cnt += 1
except Exception: except Exception:
continue continue
print(cnt)
def create_file(filename, ds_list, ds_types): def create_file(filename, ds_list, ds_types):
pass pass
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment