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

updates for icing intensity

parent d1623c33
No related branches found
No related tags found
No related merge requests found
...@@ -422,12 +422,26 @@ def analyze_all(ice_dct, no_ice_dct, neg_ice_dct): ...@@ -422,12 +422,26 @@ def analyze_all(ice_dct, no_ice_dct, neg_ice_dct):
continue continue
ice_times_5_6 = np.array(ice_times_5_6) ice_times_5_6 = np.array(ice_times_5_6)
ice_times = ice_times_1 + ice_files_2 + ice_files_3 + ice_files_4
ice_times = np.array(ice_times)
ice_times_4 = np.array(ice_files_4) ice_times_4 = np.array(ice_files_4)
np.random.shuffle(ice_times_4)
ice_times_4 = ice_times_4[0:5000]
ice_times_3 = np.array(ice_files_3) ice_times_3 = np.array(ice_files_3)
ice_times_2 = np.array(ice_files_2) np.random.shuffle(ice_times_3)
ice_times_3 = ice_times_3[0:4000]
ice_times_2 = np.array(ice_times_2)
np.random.shuffle(ice_times_2)
ice_times_2 = ice_times_2[0:7000]
ice_times_1 = np.array(ice_files_1) ice_times_1 = np.array(ice_files_1)
np.random.shuffle(ice_times_1)
ice_times_1 = ice_times_1[0:5000]
ice_times = np.concatenate([ice_times_5_6, ice_times_1, ice_times_2, ice_times_3, ice_times_4])
uniq_sorted, _, _, _ = np.unique(ice_times)
no_ice_times = np.array(no_ice_times) no_ice_times = np.array(no_ice_times)
neg_ice_times = np.array(neg_ice_times) neg_ice_times = np.array(neg_ice_times)
......
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