Skip to content

Commit

Permalink
updated some directroy options
Browse files Browse the repository at this point in the history
  • Loading branch information
jsschlosser committed Sep 17, 2024
1 parent e74a78c commit 84c11d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ISARA_ACTIVATE_Data_Retrieval.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,13 +188,13 @@ def curry(i1):

return curry


IFN = [f for f in os.listdir(r'./misc/ACTIVATE/FalconSMPS/') if f.endswith('.ict')]
DN = input("Enter directory name with merged in-situ data\ne.g., ACTIVATE/FalconSMPS:\n")
IFN = [f for f in os.listdir(f'./misc/{DN}/') if f.endswith('.ict')]
for input_filename in IFN:#[156:]:
print(input_filename)
# import the .ict data into a dictonary
(output_dict, time, date, alt, lat, lon, sd1, sd2, RH_amb, RH_sp, Sc,
Abs, Ext, SSA, fRH) = grab_ICT_Data(f'./misc/ACTIVATE/FalconSMPS/{input_filename}')
Abs, Ext, SSA, fRH) = grab_ICT_Data(f'./misc/{DN}/{input_filename}')
if RH_amb.size > 1:
print(RH_amb)
#RH_amb[RH_amb > 99] = 99
Expand Down

0 comments on commit 84c11d4

Please sign in to comment.