Aperture Tracing¶
Cross-Correlate¶
The ap_trace
works by dividing the 2D spectrum into subspectra, and then each part is summed along the spectral direction before cross-correlating with the adjacent subspectra, the shift and scaling of the spectrum/a along the spectral direction can be found simultaneously. The middle of the 2D spectrum is used as the zero point of the procedure. Here is the detailed description of the algorithm.
The input 2D spectrum is divided into
nwindow
subspectra.Each subspectrum is summed along the spectral direction in order to improve the signal(s) of the spectrum/a along the spatial direction – we call this a spatial spectrum.
Each spatial spectrum is upscale by a factor of
resample_factor
to allow for sub-pixel correlation. This utilises thescipy.signal.resample()
function to fit the spatial profile with spline. Click here for the API. This factor should be as large as you can trust the centroiding to1/resample_factor
pixel.The i-th spatial spectrum is then cross-correlated i+1-th spatial spectrum. The shift (and scale) at where the maximum occurs within the tolerance limit
tol
will be stored.While the spatial spectra are being cross-correlatd. They are aligned and stacked for peak finding and gaussian fitting. Peak finding is performed with
scipy.signal.find_peaks()
and returned the list of peaks sorted by theirprominence
. Only centroiding has to be accurate at this stage, so a gaussian function is sufficient. The standard deviation of the gaussian is only served as a first guess of the profile when performing optimal extraction; it would not be used in the case of top-hat extraction.
Manual¶
The add_trace
function allows users to supply their own traces. Which would be particularly useful for faint and/or confused sources that are beyond the capability of the automated tracing functions. The trace
indicates the pixel of the spectrum in the spatial direction. It must be supplied with
1. the same size as number of pixels in the spectral direction, and a matching number of trace_sigma
; or
2. the same shape as the x_pix
provided to indicate the pixel locations of the trace in the spectral direction.