Skip to content
Snippets Groups Projects
Commit cd4fad9f authored by tomrink's avatar tomrink
Browse files

snaphot...

parent 43f25224
No related branches found
No related tags found
No related merge requests found
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment