From e4c406e0af5d85bcc52dca8103f5abd64ba00b69 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Tue, 20 Sep 2022 13:39:50 -0500 Subject: [PATCH] snapshot... --- modules/amv/caliop_clavrx_amv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/amv/caliop_clavrx_amv.py b/modules/amv/caliop_clavrx_amv.py index 82a60272..b3406ce3 100644 --- a/modules/amv/caliop_clavrx_amv.py +++ b/modules/amv/caliop_clavrx_amv.py @@ -380,9 +380,9 @@ def get_temp_prof_s_intrp(nom_time, amv_lons, amv_lats): gfs_press = gfs_xr_left['pressure levels'].values temp_prof = get_time_interpolated_vert_profile([gfs_xr_left, gfs_xr_rght], [nom_time_left, nom_time_rght], 'temperature', nom_time, amv_lons, amv_lats) - pt_s = get_time_interpolated_point_s([gfs_xr_left, gfs_xr_rght], [nom_time_left, nom_time_rght], ['surface pressure', 'surface temperature'], nom_time, amv_lons, amv_lats) + pt_s = get_time_interpolated_point_s([gfs_xr_left, gfs_xr_rght], [nom_time_left, nom_time_rght], ['surface pressure', 'surface temperature', 'surface height'], nom_time, amv_lons, amv_lats) - return temp_prof, gfs_press, pt_s[0,], pt_s[1,] + return temp_prof, gfs_press, pt_s[0,], pt_s[1,], pt_s[2,] def compute_and_add_geo_hgt(path_to_amvs, path_to_gfs, amv_source, band='14', out_file=None): -- GitLab