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

snapshot...

parent 76a7c086
No related branches found
No related tags found
No related merge requests found
...@@ -180,12 +180,12 @@ class OpdNpyDataset: ...@@ -180,12 +180,12 @@ class OpdNpyDataset:
fname = self.filenames[fi] fname = self.filenames[fi]
data = np.load(fname) data = np.load(fname)
refl = data[0, 0, :, :] refl = data[:, 0, :, :]
refl = scale(refl, 'refl_0_65um_nom', mean_std_dct) refl = scale(refl, 'refl_0_65um_nom', mean_std_dct)
refl = refl.astype(np.float32) refl = refl.astype(np.float32)
refl_s.append(refl) refl_s.append(refl)
opd = data[0, 1, :, :] opd = data[:, 1, :, :]
opd = scale(opd, 'cld_opd_dcomp', mean_std_dct) opd = scale(opd, 'cld_opd_dcomp', mean_std_dct)
opd = opd.astype(np.float32) opd = opd.astype(np.float32)
opd_s.append(opd) opd_s.append(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