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

snapshot...

parent d7d5f71e
Branches
No related tags found
No related merge requests found
...@@ -167,10 +167,16 @@ def analyze(ice_dct, no_ice_dct): ...@@ -167,10 +167,16 @@ 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
cnt = 0
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 = ds.get_file(ts)[0]
if goes_file != last_file:
print(goes_file)
last_file = goes_file
cnt += 1
except Exception: except Exception:
continue continue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment