resamp mode inlist out start step end
(This command was called RESAMPLE in Specdre, but because of a command of the same name in Figaro, it has been renamed.)
Depending on the operation mode this routine either
- takes a list of one-dimensional NDFs as input, re-samples them to a common linear grid of axis values, and averages them into a single one-dimensional NDF, or
- takes a single N-dimensional NDF as input and re-samples each row into a new row of a similar output NDF; re-sampling is along the first axis, all further axes are retained.
- 'SPECTRA': Average several 1-D input NDFs into a single 1-D output NDF. Re-sample before averaging.
- 'CUBE': Accept only one - but N-D - input NDF. Re-sample each row (1-D subset extending along first axis) separately.
Note that a single spectrum could be handled by both modes; it is more effective to treat it as a 1-D cube than as an N=1 average. ['Cube']
M_51(25:35,-23.0,-24.0),M101,^LISTFILE.LIS
This NDF group specification consists of - one identified NDF from which a subset is to be taken, - one identified NDF, - an indirection to an ASCII file containing more NDF group specifications. That file may have comment lines and in-line comments, which are recognised as beginning with a hash (#).
R E S A M P The re-sampling creates an interdependence between pixels of the output NDF. Only limited information on this interdependence is stored in the output and ignored by most applications. Data input to this routine is assumed to have no such interdependence. The re-sampling algorithm is reintegration (Meyerdierks, 1992a) and it is applied to each input NDF separately. Any re-sampled data value is a weighted sum of the input values. The weights are the normalised overlaps between the output and input pixels. The re-sampled spectra are averaged pixel by pixel. If input variances are to be ignored it is assumed that the variance is a global constant, i.e. equal in all pixels of all input NDFs. The re-sampling may still result in different weights for different pixels. In the averaging process the global input variance is calculated and reported. The output variance will be derived on a pixel-by-pixel basis from the data scatter in the averaging process. In any input NDF, this routine recognises axis centres (pixel positions), pixel widths, data values, and data variances. (This routine also recognises the Specdre Extension and will use it where relevant.) Any other information is propagated from the first input NDF. Labels and units are checked for consistency, but only a warning is given. In interpreting the data all labels and units are assumed to be the same as in the first input NDF. All input NDFs must have a variance component (unless VARUSE is set false). NDFs without variances are ignored. A warning to that effect is issued. If VARUSE is set false, input NDFs may or may not have variances, such information will be ignored at any rate. The output NDF is based primarily on the first input NDF. There will be no pixel widths, since the pixel positions are linear and the pixels contiguous. The pixel positions, data values, and data variances will be affected by the re-sampling process. The output Specdre Extension will be based on the first input NDF or will be created. The vector of row sums of the covariance matrix (Meyerdierks, 1992a/b) will be created in the Specdre Extension. This is an NDF structure with only a data component of the same shape as the main data array. If such a structure is found in one of the input NDFs, a warning is issued but such information is ignored.
resample spectra ^inlist out 3.5 0.0254902 10.0 The names of input NDFs are read from an ASCII list file called INLIST. The result will be stored in OUT which has 256 pixels covering the coordinates from 3.5 to 10.0 resample spectra ^inlist out varuse=false accept The names of input NDFs are read from an ASCII list file called INLIST. The input NDFs either have no variance, or their variance information is to be ignored. The output will be in OUT. The start and end pixel positions for OUT are the same as in the first input NDF. OUT also has the same number of pixels. The pixel spacings are constant in OUT while they may not be in the input NDF. resample cube ^inlist out 3.5 0.0254902 10.0 INLIST contains only one NDF probably with more than one dimension. OUT will have the same dimensions except the first, which is the re-sampled one.
This routine recognises the Specdre Extension v. 0.7.
x x x x
|1111111|2222222| |3333333|4444444|
|1111111| |333333333333333333333333333333333| |222222222222222222222222222222222| |4444444|
Since this routine uses the overlap between input and output pixels as weights for re-sampling, non-bad pixels next to such a gap in data will affect too many output pixels with too much weight. Users should be aware that spectra as illustrated here are somewhat pathologic and that they should be given an explicit width array.
The routine accesses one input NDF at a time and needs not hold all input NDFs at the same time. However, The routine needs temporary workspace. If KMAX is the number of pixels in an input NDF and LMAX the number of output pixels, the routine needs - one vector of length LMAX, - one matrix of size KMAX by LMAX, - two matrices of size LMAX by LMAX.
These workspaces are usually of type _REAL. All (!) are of type _DOUBLE if the first valid input NDF has type _DOUBLE for either of the following: - pixel position, - pixel width, - data value, - data variance.
In addition one integer vector of length LMAX is needed.
There is an oddity about this routine if only one input NDF is used and its variance array is used and some or all variance values are zero. In this case the output will formally still be an average of input NDFs using 1/variance as weights. Data with zero variance cannot be weighted and are regarded as bad. If this is a problem, users can set VARUSE false to ignore all the input variances. (Note that zero variances always cause that pixel to be ignored by this routine. But where it really calculates an average of two or more spectra, this is considered proper procedure.)
Meyerdierks, H., 1992b, Fitting resampled spectra, in P.J. Grosbol, R.C.E. de Ruijsscher (eds), 4th ESO/ST-ECF Data Analysis Workshop, Garching, 13 - 14 May 1992, ESO Conference and Workshop Proceedings No. 41, Garching bei Muenchen, 1992
FIGARO A general data reduction system