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

minor

parent bb83c1b9
No related branches found
No related tags found
No related merge requests found
......@@ -253,7 +253,7 @@ def test_nlcomp(file):
keep_2 = np.invert(np.isnan(opd))
cld_dz = get_grid_values_all(h5f, 'cld_geo_thick')
keep_3 = np.invert(np.isnan(cld_dz))
keep_3 = np.logical_and(np.invert(np.isnan(cld_dz)), cld_dz > 5.0)
keep = keep_0 & keep_1 & keep_2 & keep_3
cld_phs = cld_phs[keep]
......
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