IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Initial Version and Version 1 of VYSOS5.20091011


Ignore:
Timestamp:
Oct 11, 2009, 2:28:18 PM (17 years ago)
Author:
eugene
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • VYSOS5.20091011

    v1 v1  
     1== Science Analysis of VYSOS5 data with IPP ==
     2
     3(see [wiki:VYSOS5.20090820 VYSOS5 Setup] for more details on the VYSOS5 IPP Installation and Setup)
     4(return to [wiki:Data_Analysis_Examples Data Analysis Examples])
     5
     6=== Data Registration ===
     7
     8I've defined a database 'vysos5' in mysql on vysosdata1, and am using that to track the VYSOS5 science processing.
     9
     10All of the raw science images are stored in /drobopro/vysos/VYSOSData/VYSOS-5-Data/Images, which is linked to /home/ipp/alldata. 
     11
     12I injected all of the science images using a script which basically looks like this:
     13{{{
     14foreach f (alldata/200?????)
     15 set subdir = `basename $f`
     16 ipp_serial_inject.pl --telescope vysos --camera vysos --workdir path://PROCESS/$subdir --end_stage reg --dbname vysos5 $f/*.fts
     17 ipp_serial_inject.pl --telescope vysos --camera vysos --workdir path://PROCESS/$subdir --end_stage reg --dbname vysos5 $f/flats/*.fts
     18 ipp_serial_inject.pl --telescope vysos --camera vysos --workdir path://PROCESS/$subdir --end_stage reg --dbname vysos5 $f/Calibration/*.fts
     19end
     20}}}
     21
     22I ran the registration process on the images injected into the database.  There are currently 20796 science images and 7819 detrend images. 
     23
     24I am generating a master BIAS frame.  An unfortunate aspect of the VYSSO5 headers means that the DARK and BIAS images have invalid times (1970/01/01).  This makes it difficult to control which input images are used to make a master.  I have used a random sample for this initial pass, in the assumption that the camera is reasonably stable.
     25
     26Command to generate the basic master BIAS:
     27{{{
     28dettool -dbname vysos5 -definebyquery -random_subset -random_limit 25 -workdir path://PROCESS/detrend/bias -inst VYSOS5 -det_type BIAS -select_exp_type BIAS
     29}}}
     30