-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseparate_continuum_v3.py
248 lines (197 loc) · 9.73 KB
/
separate_continuum_v3.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
import numpy as np
from astropy.table import Table
from astropy.convolution import MexicanHat1DKernel
from astropy.convolution import Gaussian1DKernel
from astropy.convolution import convolve
from scipy.signal import general_gaussian
from scipy.signal import gaussian
from scipy.signal import fftconvolve
from scipy.signal import argrelextrema
from scipy.signal import savgol_filter
from scipy.interpolate import InterpolatedUnivariateSpline
from scipy.interpolate import interp1d
from scipy.signal import find_peaks_cwt, cwt
from scipy.signal import ricker, daub
import fnmatch
import os
import os.path
import sys
import time
import matplotlib.pyplot as plt
import stack
import measure_peaks
# Magic numbers.... oooohhhhhhhh!
block_sizes = np.array([1,2])
base_stds = np.array([0.5,0.5])
noisy_cutoffs = np.array([3.5])
noisy_sizes = np.array([6])
noisy_mult = np.array([15])
split_noisy_app = 2700 #2650 # = 6084.01 A
def filter_and_subtract(filtered, wavelength, window_size, sigma, pad=True):
mask = filtered.mask.copy()
orig = filtered.copy()
pad_size = 0
orig_begin = 0
orig_end = mask.size
if pad:
trimmed_filtered, orig_begin, orig_end = trim_array_from_mask(filtered, mask, buffer=0)
low_extent = np.ma.concatenate( (trimmed_filtered[:window_size/2+1], trimmed_filtered[:window_size/2+1][::-1]) )
high_extent = np.ma.concatenate( (trimmed_filtered[-window_size/2:][::-1], trimmed_filtered[-window_size/2:]) )
pad_size = low_extent.size
filtered = np.ma.concatenate( (low_extent, trimmed_filtered, high_extent) )
window = general_gaussian(window_size, p=2.5, sig=sigma, sym=True) + general_gaussian(window_size, p=0.5, sig=sigma*4, sym=True)
if np.any(filtered.mask) and np.any(~filtered.mask):
filtered[mask] = np.interp(wavelength[mask], wavelength[~mask], filtered[~mask])
filtered = fftconvolve(window, filtered)
filtered = (np.ma.average(orig) / np.ma.average(filtered)) * filtered
filtered = np.roll(filtered, -(window_size-1)/2)[:-(window_size-1)]
if pad:
new_filtered = np.ma.empty((mask.size, ), dtype=float)
new_filtered[:] = 0
new_filtered[orig_begin:orig_end+1] = filtered[pad_size:-pad_size]
new_filtered.mask = mask
filtered = new_filtered
return filtered
def main():
path = "."
pattern = ""
if len(sys.argv) == 3:
path = sys.argv[1]
pattern = sys.argv[2]
else:
pattern = sys.argv[1]
for file in os.listdir(path):
if fnmatch.fnmatch(file, pattern):
data = Table(Table.read(os.path.join(path, file), format="ascii"), masked=True)
orig_mask = (data['ivar'] == 0)
data.mask = [(data['ivar'] == 0)]*len(data.columns)
idstr = file[:file.rfind('.')]
test_data = data.copy()
test_data['flux'] = minimize(test_data['wavelength'], test_data['flux'], [100, 200, 300], 0, start_ind=split_noisy_app)
filtered = filter_and_subtract(test_data['flux'], test_data['wavelength'], 201, 24)
test_data['flux'] = np.ma.min(np.ma.vstack([test_data['flux'], filtered]), axis=0)
filtered = filter_and_subtract(test_data['flux'], test_data['wavelength'], 161, 18)
test_data['flux'] = np.ma.min(np.ma.vstack([test_data['flux'], filtered]), axis=0)
continuum = split_spectrum(test_data['wavelength'], test_data['flux'])
wo_continuum = data['flux'] - continuum
save_data(data['wavelength'], wo_continuum, continuum, data['ivar'], orig_mask, idstr)
def save_data(wlen, flux, con_flux, ivar, mask, idstr):
wlen.mask = np.ma.nomask
flux.mask = mask
con_flux = np.ma.array(con_flux, mask=mask)
#con_flux.mask = mask
ivar.mask = mask
continuum_table = Table([wlen.data, flux.filled(0), con_flux.filled(0), ivar.filled(0)], names=["wavelength", "flux", "con_flux", "ivar"])
continuum_table.write("{}-continuum.csv".format(idstr), format="ascii.csv")
def minimize(work_wlen, work_data, block_sizes, noise_cutoff, start_ind=0):
def _minimize_run(work_wlen, work_data, block_size, noise_cutoff, start_ind=0):
working_mask = work_data.mask.copy()
working_mask[:start_ind] = True
unmasked_inds = np.where(working_mask == False)
first_ind = np.min(unmasked_inds)
last_ind = np.max(unmasked_inds)
working_block = work_data[first_ind:last_ind+1]
work_len = last_ind + 1 - first_ind
len_overage = work_len % block_size
extent_size = 0
if len_overage > 0:
extent_size = block_size - len_overage
working_block = np.ma.concatenate((working_block, working_block[-extent_size:]))
working_block = working_block.reshape((-1,block_size))
stds = None
if noise_cutoff > 0:
stds = np.ma.std(working_block, axis=1)
mins = np.ma.min(working_block.data, axis=1)
masks = np.ma.count_masked(working_block, axis=1)
mins[masks > block_size/5] = 0
if noise_cutoff > 0:
stds[masks > block_size/5] = 0
if noise_cutoff > 0:
min_mask = (stds > noise_cutoff) | (stds == 0)
else:
min_mask = np.ones((mins.size,), dtype=bool)
working_block[min_mask, :] = mins[min_mask,np.newaxis]
working_block = working_block.reshape((working_block.size,))
if extent_size > 0:
working_block = working_block[:-extent_size]
temp_block = work_data.copy()
temp_block[first_ind:last_ind+1] = working_block[:]
working_block = temp_block
return working_block
runs = []
for block_size in block_sizes:
runs.append(_minimize_run(work_wlen, work_data, block_size, noise_cutoff, start_ind))
return np.ma.mean(runs, axis=0)
#Really need to extend the flux arr here so we don't see edge effects
def split_spectrum(work_wlen, work_data):
work_wlen_cp = work_wlen.copy()
work_data_cp = work_data.copy()
filtered = filter_and_subtract(work_data_cp, work_wlen_cp, 161, 12)
cont_flux = np.ma.min(np.vstack([filtered, work_data_cp]), axis=0)
return cont_flux
def chunk_array(data, begin_orig_mask, end_orig_mask, block_size, extend_func=np.ma.mean, extent_val=None, extent_type=float):
data_len = end_orig_mask - begin_orig_mask + 1
block_remainder = data_len % block_size
block_diff = (block_size - block_remainder) % block_size
#new_shape is shape, plus one extra row for partal data
new_shape = ( (data_len-block_remainder)/block_size + (1 if block_remainder > 0 else 0), block_size )
if block_remainder > 0:
#For now, just extend data... play with this later
if extend_func is not None:
extent_val = extend_func(data[-block_diff:])
extent = np.full( block_diff, extent_val, dtype=extent_type )
data = np.ma.concatenate([data, extent])
data = np.array(data).reshape(new_shape)
return data, block_diff, block_remainder
def trim_array_from_mask(data, orig_mask, buffer=0):
orig_mask_extents = np.where(~orig_mask)
begin_orig_mask = np.min(orig_mask_extents)-buffer
end_orig_mask = np.max(orig_mask_extents)+buffer
if begin_orig_mask < 0:
begin_orig_mask = 0
if end_orig_mask >= orig_mask.size:
end_orig_mask = orig_mask.size-1
return data[begin_orig_mask:end_orig_mask+1], begin_orig_mask, end_orig_mask
def kill_peaks(work_wlen_cp, work_data_cp, peaks_mask, orig_mask, block_size, cutoff=None,
is_noisy=False):
combined_mask = peaks_mask | orig_mask
work_wlen_cut, begin_orig_mask, end_orig_mask = trim_array_from_mask(work_wlen_cp, orig_mask)
work_data_cut = np.array(work_data_cp[begin_orig_mask:end_orig_mask+1])
combined_mask = combined_mask[begin_orig_mask:end_orig_mask+1]
'''
Need to only consider values inside the orig mask: We will set the head and tail
afterward to the average of the (un-orig-masked, un-peak-masked) values around
the two ends.
'''
work_data_cut[combined_mask] = np.interp(work_wlen_cut[combined_mask], work_wlen_cut[~combined_mask], work_data_cut[~combined_mask])
if not is_noisy:
work_data_cp[begin_orig_mask:end_orig_mask+1] = work_data_cut
return work_data_cp
work_data_cut, block_diff, block_remainder = chunk_array(work_data_cut, begin_orig_mask,
end_orig_mask, block_size)
combined_mask, block_diff, block_remainder = chunk_array(combined_mask, begin_orig_mask,
end_orig_mask, block_size, extend_func=None,
extent_val=False, extent_type=bool)
masked_count = np.ma.sum(combined_mask, axis=1)
stdevs = np.ma.std(work_data_cut, axis=1)
overs = np.ma.min(work_data_cut, axis=1)
ins = np.ma.mean(work_data_cut, axis=1)
#stdevs[masked_count > (block_size * 0.90)] = 0
x = np.arange(len(stdevs))
mask = (stdevs == 0) & (overs == 0)
stdevs[mask] = np.interp(x[mask], x[~mask], stdevs[~mask])
overs[mask] = np.interp(x[mask], x[~mask], overs[~mask])
ins[mask] = np.interp(x[mask], x[~mask], ins[~mask])
if not is_noisy:
stdev_rows = np.where(stdevs <= cutoff)
work_data_cut[stdev_rows,:] = ins[stdev_rows,np.newaxis]
stdev_rows = np.where(stdevs > cutoff)
work_data_cut[stdev_rows,:] = overs[stdev_rows,np.newaxis]
else:
stdev_rows = np.where((stdevs > cutoff) | (masked_count > (block_size/3)))
work_data_cut[stdev_rows,:] = overs[stdev_rows,np.newaxis]
work_data_cut = work_data_cut.reshape((work_data_cut.size,))
work_data_cp[begin_orig_mask:end_orig_mask+1] = work_data_cut[:-block_diff] if block_remainder > 0 else work_data_cut
return work_data_cp
if __name__ == '__main__':
main()