| | 167 | |
| | 168 | ''' misaligned visits''' by JRF |
| | 169 | |
| | 170 | The first chunk on PS2 has similar problems to the previous evening, where there is a large offset between different visits. This can be seen in the diff images themselves: |
| | 171 | {{{ |
| | 172 | mysql -hscidbm -uX -pX gpc2 -B -e ' select path_base,diffSkyfile.skycell_id,sources from diffRun join diffSkyfile using (diff_id) join diffInputSkyfile using (diff_id) join warpRun on (diffInputSkyfile.warp1=warpRun.warp_id) join fakeRun using (fake_id) join camRun using (cam_id) join chipRun using (chip_id) join rawExp using (exp_id) where exp_name="o8625h0167o" and quality=0 and diff_mode=1 group by diffSkyfile.skycell_id limit 5; ' | grep -v path_base | awk '{print "neb-ls -p "$1".fits"}' | bash | xargs ~/bin/ds9 -zscale -prefs nancolor orange -geometry 900x800 -frame last -zoom 0.3 -match frame -tile grid gap 3 |
| | 173 | }}} |
| | 174 | |
| | 175 | or by querying the reported RA and Dec positions in the in the smf files: |
| | 176 | {{{ |
| | 177 | mysql -hippdb08 -uX -pX gpc2 -B -e ' select path_base,exp_name,object,comment from camRun join camProcessedExp using (cam_id) join chipRun using (chip_id) join rawExp using (exp_id) where dateobs like "2019-05-22%" and ( comment like "%visit 1" or comment like "%visit 2" ) order by object; ' | grep -v path_base | awk '{print "/home/panstarrs/ipp/psconfig//ipp-20130307.lin64/bin/neb-ls -p "$1".smf"}' | tcsh | fields OBJECT AST_R0 AST_D0 |
| | 178 | }}} |
| | 179 | The above gets the path_base for visit pairs (objects) and then finds the smf file to get the position data. |
| | 180 | |