diff --git a/modules/util/infer_cloud_fraction.py b/modules/util/infer_cloud_fraction.py index 1e9262a0377acc33072a87c25ba583ef6356fe77..71fb01cc9f993c7e264d416afe91028924f44c61 100644 --- a/modules/util/infer_cloud_fraction.py +++ b/modules/util/infer_cloud_fraction.py @@ -1,13 +1,19 @@ from util.setup_cloud_fraction import model_path +from aeolus.datasource import CLAVRx import os from deeplearning.cloud_fraction_fcn_abi import run_evaluate_static, run_evaluate_static_full_disk tf_model_name = model_path+'tf_model_cld_frac_abi_v1' + os.sep +output_dir = '/home/rink' + os.sep -def infer_cloud_fraction(clavrx_file, model_path=model_path+tf_model_name): - cld_frac = run_evaluate_static(clavrx_file, None, model_path) - return cld_frac +def infer_cloud_fraction(clvrx_dir, model_path=model_path+tf_model_name): + clvrx_ds = CLAVRx(clvrx_dir) + for fname in clvrx_ds: + dto = clvrx_ds.get_datetime(fname) + clvrx_str_time = dto.strftime('%Y-%m-%d_%H:%M') + out_file = output_dir + 'cloud_fraction_' + clvrx_str_time + run_evaluate_static(fname, out_file, model_path) def infer_cloud_fraction_full_disk(clavrx_file, model_path=model_path+tf_model_name):