IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 1517


Ignore:
Timestamp:
Aug 12, 2004, 11:15:47 AM (22 years ago)
Author:
Paul Price
Message:

Added color,mag to functions that transform between the FPA and the
tangent plane. This is required for the 4th order polynomial.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/pslib/psLibSDRS_Astrom.tex

    r1512 r1517  
    460460
    461461\begin{verbatim}
    462 psPlane *psCoordFPAToTP(psPlane *out, const psPlane *in, const psFPA *fpa);
     462psPlane *psCoordFPAToTP(psPlane *out, const psPlane *in, float color, float mag, const psFPA *fpa);
    463463\end{verbatim}
    464464which converts coordinates \code{in} on the specified focal plane
    465465\code{fpa} to tangent plane coordinates, applying the appropriate
    466 distortion terms.
     466distortion terms.  The \code{color} and magnitude (\code{mag}) of the
     467source is necessary in order to perform the distortion between the
     468focal plane and the tangent plane.
    467469
    468470\begin{verbatim}
     
    480482
    481483\begin{verbatim}
    482 psSphere *psCoordCellToSky(psSphere *out, const psPlane *in, const psCell *cell);
     484psSphere *psCoordCellToSky(psSphere *out, const psPlane *in, float color, float mag, const psCell *cell);
    483485\end{verbatim}
    484486which converts coordinates on the specified cell to (RA,Dec).  This
     
    488490transformations is available in the \code{.parent} elements of
    489491\code{psCell} and \code{psChip}, and the \code{psFPA.exposure}
    490 element.
     492element.  The \code{color} and magnitude (\code{mag}) of the source is
     493necessary in order to perform the distortion between the focal plane
     494and the tangent plane.
    491495
    492496\begin{verbatim}
     
    510514
    511515\begin{verbatim}
    512 psPlane *psCoordTPToFPA(psPlane *out, const psPlane *in, const psFPA *fpa);
    513 \end{verbatim}
    514 which converts the tangent plane coordinates \code{in} to focal plane coordinates.
     516psPlane *psCoordTPToFPA(psPlane *out, const psPlane *in, float color, float mag, const psFPA *fpa);
     517\end{verbatim}
     518which converts the tangent plane coordinates \code{in} to focal plane
     519coordinates.  The \code{color} and magnitude (\code{mag}) of the
     520source is necessary in order to perform the distortion between the
     521focal plane and the tangent plane.
    515522
    516523\begin{verbatim}
     
    533540
    534541\begin{verbatim}
    535 psPlane *psCoordSkyToCell(psPlane *out, const psSphere *in, psCell *cell);
     542psPlane *psCoordSkyToCell(psPlane *out, const psSphere *in, float color, float mag, psCell *cell);
    536543\end{verbatim}
    537544which directly converts (RA,Dec) \code{in} to coordinates on the
    538545specified cell.  The specified cell need not contain the input
    539 coordinates.
     546coordinates.  The \code{color} and magnitude (\code{mag}) of the
     547source is necessary in order to perform the distortion between the
     548focal plane and the tangent plane.
    540549
    541550\begin{verbatim}
Note: See TracChangeset for help on using the changeset viewer.