diff --git a/modules/amv/caliop_clavrx_amv.py b/modules/amv/caliop_clavrx_amv.py index 9014e632817dcc5d0153f2f3489925ac6fe6975b..5b3491f75cebb49a1c359dc060a284e077d66414 100644 --- a/modules/amv/caliop_clavrx_amv.py +++ b/modules/amv/caliop_clavrx_amv.py @@ -379,7 +379,7 @@ def get_temp_prof_s_intrp(nom_time, amv_lons, amv_lats): gfs_xr_rght = xr.open_dataset(gfs_fname_rght) 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'], amv_lons, amv_lats) + 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) temp_prof = temp_prof.values temp_prof_s = temp_prof[0, :, :]