IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 1527


Ignore:
Timestamp:
Aug 13, 2004, 10:50:59 AM (22 years ago)
Author:
Paul Price
Message:

Made the ordering of (x,y,color,magnitude) standard for the
"psPlaneDistort"s.

File:
1 edited

Legend:

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

    r1513 r1527  
    1 %%% $Id: psLibSDRS.tex,v 1.66 2004-08-12 04:19:18 price Exp $
     1%%% $Id: psLibSDRS.tex,v 1.67 2004-08-13 20:50:59 price Exp $
    22\documentclass[panstarrs,spec]{panstarrs}
    33
     
    34073407Three major classes of coordinate transformations are necessary.
    34083408First, linear coordinates from one frame must be converted to linear
    3409 coordinates in a different frame of references.  Simple transformations
    3410 of this type are independent of other quantities of the positions --
    3411 they are simply mapping between two linear spaces.  In practice, these
    3412 transformations may often be a function of the magnitude or color of
    3413 the imaged object.  The second type of conversion is the
    3414 transformation of linear coordinates to angular coordinates and
    3415 vice-versa.  This conversion depends on the desired projection, and
    3416 may represent the real mapping performed by the telescope or may
    3417 simply represent a convenient mechanism to display 3D coordinates in
    3418 useful forms.  The third conversion of interest is the transformation
    3419 of one set of spherical coordinates to another set.  Frequently in
    3420 astronomy, these conversions consist only of rotations between the two
    3421 spherical coordinates systems, where the coordinates of the pole and
    3422 equatorial rotation between the two systems define the
     3409coordinates in a different frame of references.  Simple
     3410transformations of this type are independent of other quantities of
     3411the positions -- they are simply mapping between two linear spaces.
     3412In practice, these transformations may often be a function of the
     3413color or even magnitude of the imaged object.  The second type of
     3414conversion is the transformation of linear coordinates to angular
     3415coordinates and vice-versa.  This conversion depends on the desired
     3416projection, and may represent the real mapping performed by the
     3417telescope or may simply represent a convenient mechanism to display 3D
     3418coordinates in useful forms.  The third conversion of interest is the
     3419transformation of one set of spherical coordinates to another set.
     3420Frequently in astronomy, these conversions consist only of rotations
     3421between the two spherical coordinates systems, where the coordinates
     3422of the pole and equatorial rotation between the two systems define the
    34233423transformation.  Conversions between standard coordinate systems such
    34243424as Galactic, Ecliptic, and various epochs of the Celestial coordinates
    3425 are represented by these spherical transformations. 
     3425are represented by these spherical transformations.
    34263426
    34273427\subsubsection{Linear Coordinate Transformations}
     
    34323432coordinates and no other quantities of objects at those coordinates.
    34333433The second consists of two 4D polynomials in which the output
    3434 coordinates are also specified to be a function of the magnitude and
    3435 color of the object with the given coordinates.  This type of
     3434coordinates are also specified to be a function of the color and
     3435magnitude of the object with the given coordinates.  This type of
    34363436coordinate transformation is necessary to represent the
    34373437(color-dependent) optical distortions caused by the atmosphere and
     
    34663466The \code{psPlaneDistort} represents an optical distortion.  The
    34673467lowest two terms are the $x$ and $y$ axis of the target system.  The
    3468 higher two terms may represent magnitude and color terms.
     3468higher two terms may represent color and magnitude terms.
    34693469\begin{verbatim}
    34703470typedef struct {
     
    34793479There is one of these structures for each of the two output
    34803480dimensions.  In this structure, the highest two dimensions could
    3481 represent a magnitude and a color.  As an example, consider the simple
     3481represent a color and magnitude.  As an example, consider the simple
    34823482transformation from one linear coordinate frame ($x,y$), e.g., on a
    3483 CCD, of an object with magnitude and color ($m,c$) to a second frame
     3483CCD, of an object with color and magnitude ($c,m$) to a second frame
    34843484($p,q$), e.g., the focal plane. If we have only first order terms in
    34853485the transformation \code{psPlaneDistort T}, the new coordinates
     
    34883488\begin{verbatim}
    34893489p = T.x->coeff[0][0][0][0] + x*T.x->coeff[1][0][0][0] + y*T.x->coeff[0][1][0][0]
    3490   + m*T.x->coeff[0][0][1][0] + c*T.x->coeff[0][0][0][1]
     3490  + c*T.x->coeff[0][0][1][0] + m*T.x->coeff[0][0][0][1]
    34913491q = T.y->coeff[0][0][0][0] + x*T.y->coeff[1][0][0][0] + y*T.y->coeff[0][1][0][0]
    3492   + m*T.y->coeff[0][0][1][0] + c*T.y->coeff[0][0][0][1]
     3492  + c*T.y->coeff[0][0][1][0] + m*T.y->coeff[0][0][0][1]
    34933493\end{verbatim}
    34943494%
Note: See TracChangeset for help on using the changeset viewer.