public documents.sextractor_doc

[/] [use_param.tex] - Blame information for rev 29

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 25 gam
\section{The catalogue \index{parameter file} parameter file}
2
In addition to the \index{configuration file} configuration file detailed above, {\sc SExtractor} needs a file containing
3 19 gam
the list of parameters that will be listed in the output catalogue for every detection.
4
This allows the software to compute only catalogue parameters that are needed. The name
5
of this catalogue-parameter file is traditionally suffixed with {\tt .param}, and must be specified
6
using the {\tt PARAMETERS\_NAME} config parameter.
7
The full set of parameters can be queried with the command
8
 
9
{\tt \% sex -dp}
10
 
11
\subsection{Format}
12
The format of the catalogue parameter list is ASCII, and there must be {\em only one keyword
13
per line}. Presently two kinds of keywords
14
are recognized by {\sc SExtractor}: scalars and vectors. Scalars, like {\tt X\_IMAGE}, yield
15
single numbers
16
in the output catalogue. Vectors, like {\tt MAG\_APER(4)} or {\tt VIGNET(15,15)}, yield arrays
17
of numbers.
18
The order in which the parameters will be listed in the catalogue are the
19
same as that of the keywords in the parameter list. Comments are allowed, they
20
must begin with a ``\#''.
21
 
22
\subsection{Variants}
23
For many catalogue parameters, especially those related to flux, position, or
24
shape, several variants of the same measurement are available:
25
 
26
\paragraph{Fluxes} may be expressed in linear (ADU) units or as Pogson
27 29 bertin
\citep{pogson:1856} magnitudes. Flux measurements in ADUs are prefixed with
28 19 gam
{\tt FLUX\_}, for example: {\tt FLUX\_AUTO}, {\tt FLUX\_ISO}, etc.. Magnitudes
29
are prefixed with {\tt MAG\_} (e.g., {\tt MAG\_AUTO}, {\tt MAG\_ISO},...).
30
In {\sc SExtractor} the magnitude $m$ of a source is derived from its flux $f$:
31
\begin{equation}
32
m = \left\{\begin{array}{ll}
33
m_{ZP} -2.5 \log_{10} f\ &\mbox{if } f > 0\\
34
99.0 &\mbox{otherwise},
35
\end{array}\right.
36
\end{equation}
37 25 gam
where $m_{ZP}$ is the magnitude \index{zero-point} zero-point set with the {\tt MAG\_ZEROPOINT}
38 19 gam
configuration parameter.
39
 
40
\paragraph{Flux uncertainties} follow a scheme similar to that of fluxes.
41
Flux uncertainties are prefixed with {\tt FLUXERR\_}, as in {\tt FLUXERR\_AUTO}
42
or {\tt FLUXERR\_ISO}. Magnitude uncertainties start with {\tt MAGERR\_}, for
43
instance: {\tt MAGERR\_AUTO}, {\tt MAGERR\_ISO},... Magnitude uncertainties
44
$\sigma_m$ are derived from the estimated 1-$\sigma$ flux error $\sigma_f$:
45
\begin{equation}
46
\sigma_m = \left\{\begin{array}{ll}
47
(2.5/\ln 10) (\sigma_f/f)\ &\mbox{if } f > 0\\
48
99.0 &\mbox{otherwise}.
49
\end{array}\right.
50
\end{equation}
51
 
52 25 gam
\paragraph{Positions} and small distances can be expressed in \index{image} image pixels,
53
\index{world coordinates} world coordinates, or in \index{celestial coordinates} celestial coordinates. Measurements in units of \index{image} image
54 19 gam
pixels are indicated by the suffix {\_IMAGE}, for example: {\tt Y\_IMAGE},
55
{\tt ERRAWIN\_IMAGE},... Following the FITS convention, in {\sc SExtractor} the
56 25 gam
center of the first \index{image} image pixel has coordinates (1.0,1.0).
57 19 gam
Positions and small distances may also be expressed in so-called ``world
58
coordinates'', if World Coordinate System (WCS) metadata
59 29 bertin
\citep{greisen:calabretta:2002} are present in the \index{image} image \index{FITS header} FITS header.
60 19 gam