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

`snapshot...`

parent 9fdcbd01
No related branches found
No related tags found
No related merge requests found
...@@ -824,11 +824,12 @@ class SRCNN: ...@@ -824,11 +824,12 @@ class SRCNN:
bt_us = normalize(bt_us, 'temp_11_0um_nom', mean_std_dct) bt_us = normalize(bt_us, 'temp_11_0um_nom', mean_std_dct)
refl = np.where(np.isnan(refl), 0, refl) refl = np.where(np.isnan(refl), 0, refl)
refl = refl[self.slc_y_m, self.slc_x_m] # refl = refl[self.slc_y_m, self.slc_x_m]
refl = refl[self.slc_y, self.slc_x]
refl = np.expand_dims(refl, axis=0) refl = np.expand_dims(refl, axis=0)
refl_us = self.upsample(refl) # refl_us = self.upsample(refl)
if DO_SMOOTH: if DO_SMOOTH:
refl_us = smooth_2d(refl_us) refl_us = smooth_2d(refl)
refl_us = normalize(refl_us, 'refl_0_65um_nom', mean_std_dct) refl_us = normalize(refl_us, 'refl_0_65um_nom', mean_std_dct)
cld_opd = np.where(np.isnan(cld_opd), 0, cld_opd) cld_opd = np.where(np.isnan(cld_opd), 0, cld_opd)
......
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