-
AXIS = LITERAL (Read)
-
The axis along which to collapse the NDF.
This can be specified using one of the following options.
- Its integer index within the current
Frame of the input NDF (in the range 1 to
the number of axes in the current Frame).
- Its Symbol string such as
"RA" or "VRAD".
- A generic option where "SPEC" requests the spectral axis,
"TIME" selects the time axis, "SKYLON" and
"SKYLAT" picks the sky longitude and latitude axes
respectively. Only those axis domains present are
available as options.
A list of acceptable values is displayed if an illegal value
is supplied. If the axes of the current Frame are not
parallel to the NDF pixel axes, then the pixel axis which is
most nearly parallel to the specified current Frame axis will
be used.
-
CLIP = _REAL (Read)
-
The number of standard deviations about the mean at which to
clip outliers for the "Mode", "Cmean" and "Csigma"
statistics (see Parameter ESTIMATOR). The application first computes
statistics using all the available pixels. It then rejects
all those pixels whose values lie beyond CLIP standard
deviations from the mean and will then re-evaluate the
statistics. For "Cmean" and "Csigma" there is currently
only one iteration, but up to seven for "Mode".
The value must be positive. [3.0]
-
ESTIMATOR = LITERAL (Read)
-
The method to use for estimating the output pixel values. It
can be one of the following options.
- "Mean" -- Mean value
- "WMean" -- Weighted mean in which each data value is weighted
by the reciprocal of the associated variance. (2)
- "Mode" -- Modal value (4)
- "Median" -- Median value. Note that this is extremely memory
and CPU intensive for large datasets; use with
care! If strange things happen, use "Mean". (3)
- "Absdev" -- Mean absolute deviation from the unweighted mean. (2)
- "Cmean" -- Sigma-clipped mean. (4)
- "Csigma" -- Sigma-clipped standard deviation. (4)
- "Comax" -- Co-ordinate of the maximum value.
- "Comin" -- Co-ordinate of the minimum value.
- "FBad" -- Fraction of bad pixel values.
- "FGood" -- Fraction of good pixel values.
- "Integ" -- Integrated value, being the sum of the products
of the value and pixel width in world
co-ordinates.
- "Iwc" -- Intensity-weighted co-ordinate, being the sum of
each value times its co-ordinate, all divided by
the integrated value (see the "Integ" option).
- "Iwd" -- Intensity-weighted dispersion of the
co-ordinate, normalised like "Iwc" by the
integrated value. (4)
- "Max" -- Maximum value.
- "Min" -- Minimum value.
- "NBad" -- Count of bad pixel values.
- "NGood" -- Count of good pixel values.
- "Rms" -- Root-mean-square value. (4)
- "Sigma" -- Standard deviation about the unweighted mean. (4)
- "Sum" -- The total value.
The selection is restricted if each channel contains three
or fewer pixels. For instance, measures of dispersion like
"Sigma" and "Iwd" are meaningless for single-pixel
channels. The minimum number of pixels per channel for each estimator
is given in parentheses in the list above. Where there is no number,
there is no restriction. If you supply an unavailable option, you
will be informed, and presented with the available options. ["Mean"]
-
HIGH = LITERAL (Read)
-
Together with Parameter LOW, this parameter defines the range
of values for the axis specified by Parameter AXIS to be
divided into channels. For example, if AXIS is 3 and the
current Frame of the input NDF has axes RA/DEC/Wavelength, then
a wavelength value should be supplied. If, on the other hand,
the current Frame in the NDF was the PIXEL Frame, then a pixel
co-ordinate value would be required for the third axis (note,
the pixel with index I covers a range of pixel co-ordinates
from (
) to
).
Note, HIGH and LOW should not be equal. If a null value (!) is
supplied for either HIGH or LOW, the entire range of the axis
fragmented into channels. [!]
-
IN = NDF (Read)
-
The input NDF. This must have three dimensions.
-
LOW = LITERAL (Read)
-
Together with Parameter HIGH this parameter defines the range
of values for the axis specified by Parameter AXIS to be
divided into channels. For example, if AXIS is 3 and the
current Frame of the input NDF has axes RA/DEC/Frequency, then
a frequency value should be supplied. If, on the other hand,
the current Frame in the NDF was the PIXEL Frame, then a pixel
co-ordinate value would be required for the third axis (note,
the pixel with index I covers a range of pixel co-ordinates
from (
) to
).
Note, HIGH and LOW should not be equal. If a null value
(!) is supplied for either HIGH or LOW, the entire range
of the axis fragmented into channels. [!]
-
NCHAN = _INTEGER (Read)
-
The number of channels to appear in the channel map. It must
be a positive integer up to the lesser of 100 or
the number of pixels along the collapsed axis.
-
OUT = NDF (Write)
-
The output NDF.
-
SHAPE = _INTEGER (Read)
-
The number of channels along the
axis of the output NDF. The
number along the
axis will be (NCHAN-1)/SHAPE. A null value
(!) asks the application to select a shape. It will
generate one that gives the most square output NDF possible.
The value must be positive and no more than the value of
Parameter NCHAN.
-
TITLE = LITERAL (Read)
-
Title for the output NDF structure. A null value (!)
propagates the title from the input NDF to the output NDF. [!]
-
USEAXIS = GROUP (Read)
-
USEAXIS is only accessed if the current co-ordinate Frame of
the input NDF has more than three axes. A group of three
strings should be supplied specifying the three axes which are
to be retained in a collapsed slab.
Each axis can be specified using one of the following options.
- Its integer index within the current Frame of the
input NDF (in the range 1 to the number of axes in the
current Frame).
- Its Symbol string such as
"RA" or "VRAD".
- A generic option where "SPEC" requests the spectral axis,
"TIME" selects the time axis, "SKYLON" and
"SKYLAT" picks the sky longitude and latitude axes
respectively. Only those axis domains present are
available as options.
A list of acceptable values is displayed if an illegal value
is supplied. If a null (!) value is supplied, the
axes with the same indices as the three used pixel axes
within the NDF are used. [!]
-
WLIM = _REAL (Read)
-
If the input NDF contains bad pixels, then this parameter
may be used to determine the number of good pixels which must
be present within the range of collapsed input pixels before a
valid output pixel is generated. It can be used, for example,
to prevent output pixels from being generated in regions where
there are relatively few good pixels to contribute to the
collapsed result.
WLIM specifies the minimum fraction of good pixels which must
be present in order to generate a good output pixel. If this
specified minimum fraction of good input pixels is not present,
then a bad output pixel will result, otherwise a good output
value will be calculated. The value of this parameter should
lie between 0.0 and 1.0 (the actual number used will be rounded
up if necessary to correspond to at least one pixel). [0.3]