.. File Param.rst .. include:: global.rst The measurement (or catalog) parameter file =========================================== In addition to the configuration file detailed above, |SExtractor| requires a file containing the list of measurements ("catalog parameters") that will be listed in the output catalog for every detection. This allows the software to compute only the measurements that are needed. The name of this catalog parameter file is traditionally suffixed with ``.param``, and must be specified using the :param:`PARAMETERS_NAME` config parameter. The full set of parameters can be queried with the command .. code-block:: console $ sex -dp Format ------ The format of the catalog parameter list is ASCII, and there must be *a single keyword per line*. Presently two kinds of keywords are recognized by |SExtractor|: scalars and vectors. Scalars, like :param:`X_IMAGE`, produce single numbers in the output catalog. Vectors, like :param:`MAG_APER(4)` or :param:`VIGNET(15,15)`, produce arrays of numbers. The ordering of measurements in the output catalog is identical to that of the keywords in the parameter list. Comments are allowed, they must begin with a :param:`#`. Variants -------- For many catalog parameters, especially those related to flux, position, or shape, several variants of the same measurement are available: Fluxes ~~~~~~ Fluxes may be expressed in linear (ADU) units or as Pogson :cite:`1856MNRAS_17_12P` magnitudes. Flux measurements in ADUs are prefixed with :param:`FLUX_`, for example: :param:`FLUX_AUTO`, :param:`FLUX_ISO`, etc. Magnitudes are prefixed with :param:`MAG_` e.g., :param:`MAG_AUTO`, :param:`MAG_ISO`, ... In |SExtractor| the magnitude :math:`m` of a source is derived from the flux :math:`f`: .. math:: m = \left\{\begin{array}{ll} m_{ZP} -2.5 \log_{10} f\ &\mbox{if } f > 0\\ 99.0 &\mbox{otherwise}, \end{array}\right. where :math:`m_{ZP}` is the magnitude zero-point set with the ``MAG_ZEROPOINT`` configuration parameter. Flux uncertainties ~~~~~~~~~~~~~~~~~~ Flux uncertainties follow a scheme similar to that of fluxes. Flux uncertainties are prefixed with :param:`FLUXERR_`, as in :param:`FLUXERR_AUTO` or :param:`FLUXERR_ISO`. Magnitude uncertainties start with :param:`MAGERR_`, for instance: :param:`MAGERR_AUTO`, :param:`MAGERR_ISO`,... Magnitude uncertainties :math:`\sigma_m` are derived from the estimated 1-\ :math:`\sigma` flux error :math:`\sigma_f`: .. math:: \sigma_m = \left\{\begin{array}{ll} (2.5/\ln 10) (\sigma_f/f)\ &\mbox{if } f > 0\\ 99.0 &\mbox{otherwise}. \end{array}\right. .. _coord_suffix: Positions and shapes ~~~~~~~~~~~~~~~~~~~~ Positions, distances and position angles are computed in pixel coordinates. They may be expressed in image pixels, world coordinates, or in celestial coordinates, depending on the suffix: :param:`_IMAGE` Measurements are given in pixel coordinates, in units of pixels. For example: :param:`Y_IMAGE`, :param:`ERRAWIN_IMAGE`, :param:`THETA_IMAGE` etc. Following the FITS convention, in |SExtractor| the center of the first image pixel has coordinates (1.0,1.0). Position angles are counted from the *x* axis (axis 1), positive towards the *y* axis (axis 2) :param:`_WORLD` Measurements are given in so-called “world coordinates”, converted from pixel coordinates using the local Jacobian of the transformation between both systems. This requires World Coordinate System (|WCS|_) metadata :cite:`2002AA_395_1061G` to be present in the FITS image header(s). Position angles are counted from the first world axis, positive towards the second world axis. :param:`_SKY`, :param:`_J2000`, :param:`_B1950` Measurements are given in celestial (equatorial) coordinates, converted from pixel coordinates using the local Jacobian of the transformation between both systems. Positions and distances are in units of degrees. This requires celestial |WCS| metadata :cite:`2002AA_395_1077C` to be present in the FITS image header(s). :param:`_SKY` measurements are given in the native world coordinate system. :param:`_J2000` and :param:`_B1950` measurements are automatically converted from the native |WCS|, taking into account the change of reference frame. In all cases, positions angles are counted East-of-North. Measurement parameter list -------------------------- Below is an exhaustive list of all the measurement parameters known to |SExtractor|. Please refer to the next sections for a detailed description of their meaning. .. csv-table:: |SExtractor| measurement parameters :class: targetparam :header: "Name", "Unit", "Description" :widths: 15 10 30 NUMBER,, Running object number ID_PARENT,..., Parent ID (before deblending) EXT_NUMBER,..., FITS extension number _`FLUX_ISO`, count, :ref:`Isophotal flux ` _`FLUXERR_ISO`, count, :ref:`RMS error estimate for the isophotal flux ` _`MAG_ISO`, magnitude, :ref:`Isophotal magnitude ` _`MAGERR_ISO`, magnitude, :ref:`RMS error estimate for the isophotal magnitude ` _`FLUX_ISOCOR`, count, :ref:`Corrected isophotal flux ` _`FLUXERR_ISOCOR`, count, :ref:`RMS error estimate for the corrected isophotal flux ` _`MAG_ISOCOR`, magnitude, :ref:`Corrected isophotal magnitude ` _`MAGERR_ISOCOR`, magnitude, :ref:`RMS error estimate for the corrected isophotal magnitude ` _`FLUX_APER`, count, :ref:`Flux(es) within fixed circular aperture(s) ` _`FLUXERR_APER`, count, :ref:`RMS error estimate(s) for the flux(es) within fixed circular aperture(s) ` _`MAG_APER`, magnitude, :ref:`Circular aperture magnitude(s) ` _`MAGERR_APER`, magnitude, :ref:`RMS error estimate(s) for circular aperture magnitude(s) ` _`FLUX_AUTO`, count, :ref:`Kron-like automated aperture flux ` _`FLUXERR_AUTO`, count, :ref:`RMS error estimate for Kron-like automated aperture flux ` _`MAG_AUTO`, magnitude, :ref:`Kron-like automated aperture magnitude ` _`MAGERR_AUTO`, magnitude, :ref:`RMS error estimate for Kron-like automated aperture magnitude ` _`X_IMAGE`, pixel, :ref:`Isophotal image centroid along axis 1 (x) ` _`Y_IMAGE`, pixel, :ref:`Isophotal image centroid along axis 2 (y) ` _`ERRX2_IMAGE`, pixel\ :sup:`2`, :ref:`Estimated variance of isophotal image centroid x coordinate ` _`ERRY2_IMAGE`, pixel\ :sup:`2`, :ref:`Estimated variance of isophotal image centroid y coordinate ` _`ERRXY_IMAGE`, pixel\ :sup:`2`, :ref:`Estimated covariance of isophotal image centroid x and y coordinates ` _`ERRA_IMAGE`, pixel, :ref:`Major axis of the isophotal image centroid error ellipse ` _`ERRB_IMAGE`, pixel, :ref:`Minor axis of the isophotal image centroid error ellipse ` _`ERRTHETA_IMAGE`, degree, :ref:`Position angle of the isophotal image centroid ellipse ` _`ERRCXX_IMAGE`, pixel\ :sup:`-2`, :ref:`Isophotal image centroid Cxx error ellipse parameter ` _`ERRCYY_IMAGE`, pixel\ :sup:`-2`, :ref:`Isophotal image centroid Cyy error ellipse parameter ` _`ERRCXY_IMAGE`, pixel\ :sup:`-2`, :ref:`Isophotal image centroid Cxy error ellipse parameter ` _`XPEAK_IMAGE`, pixel, :ref:`x coordinate of the brightest pixel ` _`YPEAK_IMAGE`, pixel, :ref:`y coordinate of the brightest pixel ` _`XMIN_IMAGE`, pixel, :ref:`Minimum x coordinate among detected pixels ` _`YMIN_IMAGE`, pixel, :ref:`Minimum y coordinate among detected pixels ` _`XMAX_IMAGE`, pixel, :ref:`Maximum x coordinate among detected pixels ` _`YMAX_IMAGE`, pixel, :ref:`Maximum y coordinate among detected pixels ` _`XWIN_IMAGE`, pixel, :ref:`x coordinate of windowed image centroid ` _`YWIN_IMAGE`, pixel, :ref:`y coordinate of windowed image centroid ` _`ERRX2WIN_IMAGE`, pixel\ :sup:`2`, :ref:`Estimated variance of windowed image centroid x coordinate ` _`ERRY2WIN_IMAGE`, pixel\ :sup:`2`, :ref:`Estimated variance of windowed image centroid y coordinate ` _`ERRXYWIN_IMAGE`, pixel\ :sup:`2`, :ref:`Estimated covariance of windowed image centroid x and y coordinates ` _`ERRAWIN_IMAGE`, pixel, :ref:`Major axis of the windowed image centroid error ellipse ` _`ERRBWIN_IMAGE`, pixel, :ref:`Minor axis of the windowed image centroid error ellipse ` _`ERRTHETAWIN_IMAGE`, degree, :ref:`Position angle of the windowed image centroid ellipse ` _`ERRCXXWIN_IMAGE`, pixel\ :sup:`-2`, :ref:`Windowed image centroid Cxx error ellipse parameter ` _`ERRCYYWIN_IMAGE`, pixel\ :sup:`-2`, :ref:`Windowed image centroid Cyy error ellipse parameter ` _`ERRCXYWIN_IMAGE`, pixel\ :sup:`-2`, :ref:`Windowed image centroid Cxy error ellipse parameter ` _`X2_IMAGE`, pixel\ :sup:`2`, :ref:`Isophotal image 2nd order central moment in x ` _`Y2_IMAGE`, pixel\ :sup:`2`, :ref:`Isophotal image 2nd order central moment in y ` _`XY_IMAGE`, pixel\ :sup:`2`, :ref:`Isophotal image 2nd order central cross-moment in xy ` _`A_IMAGE`, pixel, :ref:`Isophotal image major axis ` _`B_IMAGE`, pixel, :ref:`Isophotal image minor axis ` _`THETA_IMAGE`, degree, :ref:`Isophotal image position angle` _`ELONGATION`, ..., :ref:`A_IMAGE / B_IMAGE ` _`ELLIPTICITY`, ..., :ref:`1 - B_IMAGE / A_IMAGE ` _`CXX_IMAGE`, pixel\ :sup:`-2`, :ref:`Isophotal image Cxx ellipse parameter ` _`CYY_IMAGE`, pixel\ :sup:`-2`, :ref:`Isophotal image Cyy ellipse parameter ` _`CXY_IMAGE`, pixel\ :sup:`-2`, :ref:`Isophotal image Cxy ellipse parameter ` _`X2WIN_IMAGE`, pixel\ :sup:`2`, :ref:`Windowed image 2nd order central moment in x ` _`Y2WIN_IMAGE`, pixel\ :sup:`2`, :ref:`Windowed image 2nd order central moment in y ` _`XYWIN_IMAGE`, pixel\ :sup:`2`, :ref:`Windowed image 2nd order central cross-moment in xy ` _`CXXWIN_IMAGE`, pixel\ :sup:`-2`, :ref:`Windowed image Cxx ellipse parameter ` _`CYYWIN_IMAGE`, pixel\ :sup:`-2`, :ref:`Windowed image Cyy ellipse parameter ` _`CXYWIN_IMAGE`, pixel\ :sup:`-2`, :ref:`Windowed image Cxy ellipse parameter ` _`AWIN_IMAGE`, pixel, :ref:`Windowed image major axis ` _`BWIN_IMAGE`, pixel, :ref:`Windowed image minor axis ` _`THETAWIN_IMAGE`, degree, :ref:`Windowed image position angle `