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

snapshot...

parent c07473c5
No related branches found
No related tags found
No related merge requests found
...@@ -280,39 +280,6 @@ def run(pirep_dct, outfile=None, outfile_l1b=None, dt_str_start=None, dt_str_end ...@@ -280,39 +280,6 @@ def run(pirep_dct, outfile=None, outfile_l1b=None, dt_str_start=None, dt_str_end
create_file(outfile_l1b, data_dct, l1b_ds_list, l1b_ds_types, lon_c, lat_c, time_s, fl_alt_s, ice_int_s, unq_ids) create_file(outfile_l1b, data_dct, l1b_ds_list, l1b_ds_types, lon_c, lat_c, time_s, fl_alt_s, ice_int_s, unq_ids)
def analyze2(ice_dct):
intensity = []
cnt_0 = 0
cnt_1 = 0
cnt_2 = 0
cnt_3 = 0
cnt_4 = 0
cnt_5 = 0
cnt_6 = 0
for ts in list(ice_dct.keys()):
reports = ice_dct[ts]
for tup in reports:
it = tup[3]
if it == 0:
cnt_0 += 1
elif it == 1:
cnt_1 += 1
elif it == 2:
cnt_2 += 1
elif it == 3:
cnt_3 += 1
elif it == 4:
cnt_4 += 1
elif it == 5:
cnt_5 += 1
elif it == 6:
cnt_6 += 1
intensity.append(tup[3])
intensity = np.array(intensity)
print(np.histogram(intensity, bins=7))
print(cnt_0, cnt_1, cnt_2, cnt_3, cnt_4, cnt_5, cnt_6)
def analyze(ice_dct, no_ice_dct): def analyze(ice_dct, no_ice_dct):
last_file = None last_file = None
......
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