IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 40026


Ignore:
Timestamp:
May 8, 2017, 11:06:39 AM (9 years ago)
Author:
eugene
Message:

more edits

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/release.2015/ps1.datasystem/datasystem.tex

    r40023 r40026  
    11111111\label{sec:postprocessing}
    11121112
     1113\begin{table}[hb]
     1114\begin{center}
     1115\caption{DVO Database Tables\label{tab:DVOtables}}
     1116\begin{tabular}{ll}
     1117\hline
     1118\hline
     1119{\bf Table Name} & {\bf Description} \\
     1120\hline
     1121Images               & The images that have objects in the DB. \\
     1122Image Overlaps       & Image regions which are touched by specific images. \\
     1123Objects              & The objects --- average properties of multiple detections of the same object. \\
     1124Average Magnitudes   & Average photometry in multiple filters \\
     1125Solar System Objects & Identification of solar system objects \\
     1126Matched Detections   & Detections of sources in an image identified with an Object. \\
     1127Orphaned Detections  & Detections of sources in an image not identified with an Object. \\
     1128Non-detections       & Non-detections of objects in an image. \\
     1129SkyRegions           & spatial distribution of tables \\
     1130Filters              & Filters understood by the system. \\
     1131Photcodes            & Transformations between different photometric systems \\
     1132Zero Points          & History of Zero-point \& Airmass terms \\
     1133Distortion Models    & History of Optical Distortion terms \\
     1134Database Hosts       & computers used to store the tables \\
     1135\hline
     1136\end{tabular}
     1137\end{center}
     1138\end{table}
     1139
    11131140\begin{verbatim}
    11141141DVO section outline or list of topics:
     
    11321159\label{sec:DVO}
    11331160
     1161\subsubsection{Overview}
     1162
     1163% intro
    11341164The Pan-STARRS IPP uses an internal database system, distinct from the
    11351165publically visible database system, to determine the association
     
    11421172context. 
    11431173
     1174% overview
     1175DVO tracks three main classes of information: 1) properties of
     1176astronomical objects; 2) measurements of those objects (from which the
     1177properties are derived); 3) properties of image which provided some or
     1178all of the measuements.  Figure~\ref{fig:DVO_schema} illustrates the
     1179schematic relationship between these types of measurements. 
     1180
     1181In the most basic implementation, a collection of measurements from a
     1182set of images are loaded into DVO along with the metadata describing
     1183the images.  The latter includes properties such as the exposure time,
     1184airmass, filter, time \& date of the exposure, etc.  Critically, the
     1185image metadata includes an astrometric transformation relating the
     1186detection coordinate on the image to the coordinate on the sky.  As
     1187the collection of measurements are loaded into DVO, the software
     1188constructs astronomical objects based on those detections.  If
     1189images overlapped, multiple observations of the same astronomical
     1190object are grouped together.  Thus, a single DVO database will contain
     1191a one-to-many relationship between the images and the measurements and
     1192a many-to-one relationship between the measurements and the derived
     1193astronomical objects.
     1194
     1195Table~\ref{tab:DVO_schema} lists the full collection of database
     1196tables used by DVO.  These tables fall into one of several classes:
     1197those which store information about the average properties of
     1198astronomical objects; those which store information about individual
     1199measurements; those which store information about the images; those
     1200which store supporting information.
     1201
     1202Beyond that basic use, DVO has the ability to accept data from other
     1203kinds of data sources in which measurements are not clearly associated
     1204with specific images.  DVO ingest methods are defined for several
     1205large-scale surveys for which the published data represent average
     1206properties derived from multiple measurements, and for which the
     1207measurement-to-image relationship is not provided.  Ingets methods
     1208have been defined for example for 2MASS, WISE, Gaia, USNO-B.  In each
     1209of these cases, the astrometric and photometric measurements are
     1210stored in the \table{Measure} table, with the data source identified
     1211by the photcode of the measurement.
     1212
     1213% object -> detection
    11441214One of the main purposes of DVO is to define the relationship between
    11451215individual detections of an astronomical object and the definition of
     
    11521222database, the detection is associated with the closest object.
    11531223
     1224% photcodes
    11541225Detections in DVO have a special piece of metadata called the
    11551226\ippdbcolumn{photcode} which identifies the source of the measurement.
     
    11741245photcodes.
    11751246
     1247% FITS table + compression
    11761248In the implementation of DVO used for the PV3 calibration analysis,
    11771249the database tables are stored on disk using binary FITS tables.  Each
     
    11831255volume (70TB compressed) drove the decision to compress the tables.
    11841256
     1257% FITS table compression details
    11851258The FITS binary table compression scheme uses a strategy similar to
    11861259that used for FITS image compression (\note{REF}).  The binary tabular
     
    11961269TTYPE1) and units (e.g., TUNIT1) are retained in their original form.
    11971270
     1271% FITS table compression details
    11981272The compression algorithm can treat the entire column as a single
    11991273block of data, or it may be broken into a number of chunks, each
     
    12621336  and the calibration paper?}
    12631337
     1338% parallel partitions
    12641339The DVO software system allows the tables which are partitioned across
    12651340the sky to also be distributed across multiple computers, which we
Note: See TracChangeset for help on using the changeset viewer.