diff --git a/modules/aeolus/aeolus_amv.py b/modules/aeolus/aeolus_amv.py index 599e1e0b274596aa20fe07a2ce64160db99b12dd..61a0f81641c3e19d22ae254aedcaed253c3c3a94 100644 --- a/modules/aeolus/aeolus_amv.py +++ b/modules/aeolus/aeolus_amv.py @@ -551,10 +551,10 @@ def create_file(filename, aeolus_to_amv_dct, aeolus_dct, amv_files, cld_lyr=Fals # outfile: pathname for the Netcdf match file def create_amv_to_aeolus_match_file(aeolus_files_dir, amv_files_dir, outfile=None, amv_source='OPS', band='14', chan='mie'): a_d = get_aeolus_time_dict_s(aeolus_files_dir, chan=chan) - # a_d = time_dict_to_nd(a_d) + a_d = time_dict_to_nd(a_d) #---------------------------------- - a_d = time_dict_to_cld_layers(a_d) - a_d = time_dict_to_nd_2(a_d) + #a_d = time_dict_to_cld_layers(a_d) + #a_d = time_dict_to_nd_2(a_d) amv_files = None if amv_source == 'CARR': @@ -565,7 +565,7 @@ def create_amv_to_aeolus_match_file(aeolus_files_dir, amv_files_dir, outfile=Non if outfile is not None: cld_lyr = False if chan == 'mie': - cld_lyr = True + cld_lyr = False create_file(outfile, m_d, a_d, amv_files, cld_lyr=cld_lyr)