.. 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 :file:`.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_and_magnitudes: Fluxes and magnitudes """"""""""""""""""""" Fluxes may be expressed in counts (|ADU|\ s) or as Pogson :cite:`1856MNRAS_17_12P` magnitudes. Flux measurements in |ADU|\ s 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`, ... The ``MAG_ZEROPOINT`` configuration parameter sets the magnitude zero-point of magnitudes: .. math:: :label: mag {\tt MAG} = \left\{\begin{array}{ll} \mathrm{MAG\_ZEROPOINT} - 2.5 \log_{10} {\tt FLUX}\ &\mbox{if } {\tt FLUX} > 0\\ 99.0\ &\mbox{otherwise}. \end{array}\right. Flux and magnitude uncertainties """""""""""""""""""""""""""""""" Flux uncertainties (error estimates) follow a scheme similar to that of fluxes. They 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`,... They are computed using .. math:: :label: magerr {\tt MAGERR} = \left\{\begin{array}{ll} \frac{2.5}{\ln 10}({\tt FLUXERR}/{\tt FLUX})\ &\mbox{if } {\tt FLUX} > 0\\ 99.0\ &\mbox{otherwise}. \end{array}\right. Pixel values and Surface brightnesses """"""""""""""""""""""""""""""""""""" Pixel values (averaged or not) :math:`p` are expressed in counts (|ADU|\ s). There is no specific prefix (:param:`THRESHOLD`, :param:`BACKGROUND`, :param:`FLUX_MAX`, etc.). Surface brightnesses are given in magnitudes per square arcsecond, and prefixed with :param:`MU_` e.g., :param:`MU_THRESHOLD`, :param:`MU_MAX`, ... The conversion to surface brightness relies on the ``MAG_ZEROPOINT`` and the ``PIXEL_SCALE`` configuration parameters: .. math:: :label: mu {\tt MU} = \left\{\begin{array}{ll} \mathrm{MAG\_ZEROPOINT} - 2.5 \log_{10} (p \times {\rm PIXEL\_SCALE}\,^2)\ &\mbox{if } p > 0\\ 99.0\ &\mbox{otherwise}. \end{array}\right. Setting ``PIXEL_SCALE`` to 0 instructs |SExtractor| to compute the pixel scale from the local `Jacobian `_ of the astrometric deprojection, based on the celestial |WCS|_ info :cite:`2002AA_395_1077C` in the |FITS| image header, if available. .. _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: .. _image_coords: :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) .. _world_coords: :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 |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. .. _sky_coords: :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. .. _focal_coords: :param:`_FOCAL` Measurements are given in “focal plane coordinates”, which are actually projected coordinates, in degrees. This requires |WCS| metadata :cite:`2002AA_395_1061G` to be present in the FITS image header(s). The computation of focal plane coordinates from pixel coordinates is similar to that of :param:`_SKY` coordinates except that they are not de-projected and remain Cartesian. The main purpose of focal plane coordinates is to provide a common system for all the chips in a mosaic camera. .. note:: Conversion to :param:`_FOCAL` coordinates is available only for a limited subset of measurements. .. important:: The |WCS| library currently implemented in |SExtractor| is a customized version of an early implementation (v1.1.1) by Calabretta. Several projections from later versions and alternative astrometric descriptions such as `AST `_ or `that of original DSS plates `_ are not supported at this time. 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 _`FLAGS`, ..., :ref:`Source extraction flags ` _`FLAGS_WEIGHT`, ..., :ref:`Weighting flags ` _`IMAFLAGS_ISO`, ..., :ref:`External flags combined within the isophotal footprint ` _`NIMAFLAGS_ISO`, ..., :ref:`Number of combined external flags ` _`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 ` _`KRON_RADIUS`, ..., :ref:`Kron radius in units of A or B ` _`FLUX_PETRO`, count, :ref:`Petrosian-like aperture flux ` _`FLUXERR_PETRO`, count, :ref:`RMS error estimate for Petrosian-like aperture flux ` _`MAG_PETRO`, magnitude, :ref:`Petrosian-like aperture magnitude ` _`MAGERR_PETRO`, magnitude, :ref:`RMS error estimate for Petrosian-like aperture magnitude ` _`PETRO_RADIUS`, ..., :ref:`Petrosian radius in units of A or B ` _`BACKGROUND`, count, :ref:`Background level at the position of the centroid ` _`X_IMAGE`, pixel, :ref:`Pixel x coordinate ` of the :ref:`isophotal image centroid ` _`Y_IMAGE`, pixel, :ref:`Pixel y coordinate ` of the :ref:`isophotal image centroid ` _`X_FOCAL`, degree, :ref:`Focal plane x coordinate ` of :ref:`isophotal image centroid ` _`Y_FOCAL`, degree, :ref:`Focal plane y coordinate ` of :ref:`isophotal image centroid ` _`X_WORLD`, ..., :ref:`World x coordinate ` of the :ref:`isophotal image centroid ` _`Y_WORLD`, ..., :ref:`World y coordinate ` of the :ref:`isophotal image centroid ` _`ALPHA_SKY`, degree, :ref:`Native right ascension ` of the :ref:`isophotal image centroid ` _`DELTA_SKY`, degree, :ref:`Native declination ` of the :ref:`isophotal image centroid ` _`ALPHA_J2000`, degree, :ref:`J2000 right ascension ` of the :ref:`isophotal image centroid ` _`DELTA_J2000`, degree, :ref:`J2000 declination ` of the :ref:`isophotal image centroid ` _`ALPHA_B1950`, degree, :ref:`B1950 right ascension ` of the :ref:`isophotal image centroid ` _`DELTA_B1950`, degree, :ref:`B1950 declination ` of the :ref:`isophotal image centroid ` _`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:`Pixel x coordinate ` of the :ref:`brightest pixel ` _`YPEAK_IMAGE`, pixel, :ref:`Pixel y coordinate ` of the :ref:`brightest pixel ` _`XPEAK_FOCAL`, degree, :ref:`Focal plane x coordinate ` of the :ref:`brightest pixel ` _`YPEAK_FOCAL`, degree, :ref:`Focal plane y coordinate ` of the :ref:`brightest pixel ` _`XPEAK_WORLD`, ..., :ref:`World x coordinate ` of the :ref:`brightest pixel ` _`YPEAK_WORLD`, ..., :ref:`World y coordinate ` of the :ref:`brightest pixel ` _`ALPHAPEAK_SKY`, degree, :ref:`Native right ascension ` of the :ref:`brightest pixel ` _`DELTAPEAK_SKY`, degree, :ref:`Native declination ` of the :ref:`brightest pixel ` _`ALPHAPEAK_J2000`, degree, :ref:`J2000 right ascension ` of the :ref:`brightest pixel ` _`DELTAPEAK_J2000`, degree, :ref:`J2000 declination ` of the :ref:`brightest pixel ` _`ALPHAPEAK_B1950`, degree, :ref:`J2000 right ascension ` of the :ref:`brightest pixel ` _`DELTAPEAK_B1950`, degree, :ref:`J2000 declination ` of the :ref:`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 ` _`FLAGS_WIN`, ..., :ref:`Windowed measurement flags ` _`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 ` _`ISOAREAF_IMAGE`, pixel\ :sup:`2`, :ref:`Isophotal area (filtered) above Detection threshold ` _`ISOAREA_IMAGE`, pixel\ :sup:`2`, :ref:`Isophotal area above Analysis threshold ` _`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 ` _`CLASS_STAR`, ..., :ref:`Star/galaxy classifier ` _`VECTOR_MODEL`, ..., :ref:`Model-fitting coefficients ` _`VECTOR_MODELERR`, ..., :ref:`Model-fitting coefficient uncertainties ` _`MATRIX_MODELERR`, ..., :ref:`Model-fitting covariance matrix ` _`CHI2_MODEL`, ..., :ref:`Reduced modified Chi2 of the fit ` _`FLAGS_MODEL`, ..., :ref:`Model-fitting flags ` _`NITER_MODEL`, ..., :ref:`Number of model-fitting iterations ` _`FLUX_MODEL`, count, :ref:`Flux from model-fitting ` _`FLUXERR_MODEL`, count, :ref:`RMS error estimate for the model-fitting flux ` _`MAG_MODEL`, magnitude, :ref:`Magnitude from model-fitting ` _`MAGERR_MODEL`, count, :ref:`RMS error estimate for the model-fitting magnitude ` _`FLUX_MAX_MODEL`, count, :ref:`Peak model flux above the background ` _`FLUX_EFF_MODEL`, count, :ref:`Effective model flux above the background ` _`FLUX_MEAN_MODEL`, count, :ref:`Mean effective model flux above the background ` _`MU_MAX_MODEL`, mag.arcsec\ :sup:`-2`, :ref:`Peak model surface brightness above the background ` _`MU_EFF_MODEL`, mag.arcsec\ :sup:`-2`, :ref:`Effective model surface brightness above the background ` _`MU_MEAN_MODEL`, mag.arcsec\ :sup:`-2`, :ref:`Mean effective model surface brightness above the background ` _`XMODEL_IMAGE`, pixel, :ref:`x coordinate from model-fitting ` _`YMODEL_IMAGE`, pixel, :ref:`y coordinate from model-fitting ` _`SPREAD_MODEL`, ..., :ref:`Spread parameter from model-fitting ` _`SPREADERR_MODEL`, ..., :ref:`RMS error estimate on spread parameter from model-fitting ` .. #XMODEL_WORLD Fitted position along world x axis [deg] #YMODEL_WORLD Fitted position along world y axis [deg] #ALPHAMODEL_SKY Fitted position along right ascension (native) [deg] #DELTAMODEL_SKY Fitted position along declination (native) [deg] #ALPHAMODEL_J2000 Fitted position along right ascension (J2000) [deg] #DELTAMODEL_J2000 Fitted position along declination (J2000) [deg] #ALPHAMODEL_B1950 Fitted position along right ascension (B1950) [deg] #DELTAMODEL_B1950 Fitted position along declination (B1950) [deg] #ERRX2MODEL_IMAGE Variance of fitted position along x [pixel**2] #ERRY2MODEL_IMAGE Variance of fitted position along y [pixel**2] #ERRXYMODEL_IMAGE Covariance of fitted position between x and y [pixel**2] #ERRX2MODEL_WORLD Variance of fitted position along X-WORLD (alpha) [deg**2] #ERRY2MODEL_WORLD Variance of fitted position along Y-WORLD (delta) [deg**2] #ERRXYMODEL_WORLD Covariance of fitted position X-WORLD/Y-WORLD [deg**2] #ERRCXXMODEL_IMAGE Cxx error ellipse parameter of fitted position [pixel**(-2)] #ERRCYYMODEL_IMAGE Cyy error ellipse parameter of fitted position [pixel**(-2)] #ERRCXYMODEL_IMAGE Cxy error ellipse parameter of fitted position [pixel**(-2)] #ERRCXXMODEL_WORLD Cxx fitted error ellipse parameter (WORLD units) [deg**(-2)] #ERRCYYMODEL_WORLD Cyy fitted error ellipse parameter (WORLD units) [deg**(-2)] #ERRCXYMODEL_WORLD Cxy fitted error ellipse parameter (WORLD units) [deg**(-2)] #ERRAMODEL_IMAGE RMS error of fitted position along major axis [pixel] #ERRBMODEL_IMAGE RMS error of fitted position along minor axis [pixel] #ERRTHETAMODEL_IMAGE Error ellipse pos.angle of fitted position (CCW/x) [deg] #ERRAMODEL_WORLD World RMS error of fitted position along major axis [deg] #ERRBMODEL_WORLD World RMS error of fitted position along minor axis [deg] #ERRTHETAMODEL_WORLD Error ellipse pos.angle of fitted position (CCW/world-x) [deg] #ERRTHETAMODEL_SKY Native fitted error ellipse pos. angle (east of north) [deg] #ERRTHETAMODEL_J2000 J2000 fitted error ellipse pos. angle (east of north) [deg] #ERRTHETAMODEL_B1950 B1950 fitted error ellipse pos. angle (east of north) [deg] #X2MODEL_IMAGE Variance along x from model-fitting [pixel**2] #Y2MODEL_IMAGE Variance along y from model-fitting [pixel**2] #XYMODEL_IMAGE Covariance between x and y from model-fitting [pixel**2] #ELLIP1MODEL_IMAGE Ellipticity component from model-fitting #ELLIP2MODEL_IMAGE Ellipticity component from model-fitting #POLAR1MODEL_IMAGE Ellipticity component (quadratic) from model-fitting #POLAR2MODEL_IMAGE Ellipticity component (quadratic) from model-fitting #ELLIP1ERRMODEL_IMAGE Ellipticity component std.error from model-fitting #ELLIP2ERRMODEL_IMAGE Ellipticity component std.error from model-fitting #ELLIPCORRMODEL_IMAGE Corr.coeff between ellip.components from model-fitting #POLAR1ERRMODEL_IMAGE Polarisation component std.error from model-fitting #POLAR2ERRMODEL_IMAGE Polarisation component std.error from model-fitting #POLARCORRMODEL_IMAGE Corr.coeff between polar. components from fitting #X2MODEL_WORLD Variance along X-WORLD (alpha) from model-fitting [deg**2] #Y2MODEL_WORLD Variance along Y_WORLD (delta) from model-fitting [deg**2] #XYMODEL_WORLD Covariance between X-WORLD and Y-WORLD from model-fitting [deg**2] #ELLIP1MODEL_WORLD Ellipticity component from model-fitting #ELLIP2MODEL_WORLD Ellipticity component from model-fitting #POLAR1MODEL_WORLD Polarisation component from model-fitting #POLAR2MODEL_WORLD Polarisation component from model-fitting #ELLIP1ERRMODEL_WORLD Ellipticity component std.error from model-fitting #ELLIP2ERRMODEL_WORLD Ellipticity component std.error from model-fitting #ELLIPCORRMODEL_WORLD Corr.coeff between ellip.components from model-fitting #POLAR1ERRMODEL_WORLD Polarisation component std.error from model-fitting #POLAR2ERRMODEL_WORLD Polarisation component std.error from model-fitting #POLARCORRMODEL_WORLD Corr.coeff between polar. components from fitting #CXXMODEL_IMAGE Cxx ellipse parameter from model-fitting [pixel**(-2)] #CYYMODEL_IMAGE Cyy ellipse parameter from model-fittinh [pixel**(-2)] #CXYMODEL_IMAGE Cxy ellipse parameter from model-fitting [pixel**(-2)] #CXXMODEL_WORLD Cxx ellipse parameter (WORLD) from model-fitting [deg**(-2)] #CYYMODEL_WORLD Cyy ellipse parameter (WORLD) from model-fitting [deg**(-2)] #CXYMODEL_WORLD Cxy ellipse parameter (WORLD) from model-fitting [deg**(-2)] #AMODEL_IMAGE Model RMS along major axis [pixel] #BMODEL_IMAGE Model RMS along minor axis [pixel] #THETAMODEL_IMAGE Model position angle (CCW/x) [deg] #AMODEL_WORLD Model RMS along major axis (WORLD units) [deg] #BMODEL_WORLD Model RMS along minor axis (WORLD units) [deg] #THETAMODEL_WORLD Model position angle (CCW/WORLD-x) [deg] #THETAMODEL_SKY Model position angle (east of north) (native) [deg] #THETAMODEL_J2000 Model position angle (east of north) (J2000) [deg] #THETAMODEL_B1950 Model position angle (east of north) (B1950) [deg]