diff --git a/modules/amv/caliop_clavrx_amv.py b/modules/amv/caliop_clavrx_amv.py
index 607179c0dabf911cff42e547148ad63eacfd9547..130fbcb911896a1edc53a753b63bc2bc1908010d 100644
--- a/modules/amv/caliop_clavrx_amv.py
+++ b/modules/amv/caliop_clavrx_amv.py
@@ -64,7 +64,7 @@ def match_calipso_clavrx_to_amvs(calipso_clavrx_ds, calipso_clavrx_file, amv_fil
     gfs_xr = xr.open_dataset(gfs_fname)
     gfs_press = gfs_xr['pressure levels']
     gfs_press = gfs_press.values
-    gfs_press = gfs_press[::-1]
+    #gfs_press = gfs_press[::-1]
 
     match_dict[nom_time] = []
 
@@ -132,7 +132,7 @@ def match_calipso_clavrx_to_amvs(calipso_clavrx_ds, calipso_clavrx_file, amv_fil
         temp_prof = get_vert_profile_s(gfs_xr, ['temperature'], lons, lats, method='nearest')
         temp_prof = temp_prof.values
         temp_prof_s = temp_prof[0, :, :]
-        temp_prof_s = temp_prof_s[:, ::-1]
+        #temp_prof_s = temp_prof_s[:, ::-1]
         print(temp_prof_s.shape)
 
         for k in range(num_amvs):