Skip to content
Snippets Groups Projects
Commit 725c4032 authored by Laurent Mercadier's avatar Laurent Mercadier
Browse files

fix dtype when using xr.where()

parent a0c6c695
No related branches found
No related tags found
1 merge request!326Up8062
...@@ -309,6 +309,7 @@ class Viking: ...@@ -309,6 +309,7 @@ class Viking:
return return
x = data.newt_x x = data.newt_x
spectra = data[key] spectra = data[key]
#print(x)
mask = xr.ones_like(x, dtype=bool) mask = xr.ones_like(x, dtype=bool)
if len(self.BL_SIGNAL_RANGE) > 0: if len(self.BL_SIGNAL_RANGE) > 0:
if not hasattr(self.BL_SIGNAL_RANGE[0], '__len__'): if not hasattr(self.BL_SIGNAL_RANGE[0], '__len__'):
...@@ -317,8 +318,11 @@ class Viking: ...@@ -317,8 +318,11 @@ class Viking:
ranges = self.BL_SIGNAL_RANGE ranges = self.BL_SIGNAL_RANGE
for xrange in ranges: for xrange in ranges:
mask = mask & ((x < xrange[0]) | (x > xrange[1])) mask = mask & ((x < xrange[0]) | (x > xrange[1]))
x_bl = x.where(mask, drop=True).astype(int) x_bl = x.where(mask, drop=True).astype(x.dtype)
bl = spectra.sel(newt_x=x_bl) bl = spectra.sel(newt_x=x_bl)
#print(mask)
#print(x_bl)
#print(bl)
fit = np.polyfit(x_bl, bl.T, self.BL_POLY_DEG) fit = np.polyfit(x_bl, bl.T, self.BL_POLY_DEG)
if len(spectra.shape) == 1: if len(spectra.shape) == 1:
return spectra - np.polyval(fit, x) return spectra - np.polyval(fit, x)
......
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