| | 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 | |
| | 8 | I've defined a database 'vysos5' in mysql on vysosdata1, and am using that to track the VYSOS5 science processing. |
| | 9 | |
| | 10 | All of the raw science images are stored in /drobopro/vysos/VYSOSData/VYSOS-5-Data/Images, which is linked to /home/ipp/alldata. |
| | 11 | |
| | 12 | I injected all of the science images using a script which basically looks like this: |
| | 13 | {{{ |
| | 14 | foreach 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 |
| | 19 | end |
| | 20 | }}} |
| | 21 | |
| | 22 | I ran the registration process on the images injected into the database. There are currently 20796 science images and 7819 detrend images. |
| | 23 | |
| | 24 | I 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 | |
| | 26 | Command to generate the basic master BIAS: |
| | 27 | {{{ |
| | 28 | dettool -dbname vysos5 -definebyquery -random_subset -random_limit 25 -workdir path://PROCESS/detrend/bias -inst VYSOS5 -det_type BIAS -select_exp_type BIAS |
| | 29 | }}} |
| | 30 | |