casa  $Rev:20696$
 All Classes Namespaces Files Functions Variables
jupiter6cm_imagingdemo.py
Go to the documentation of this file.
00001 ######################################################################
00002 #                                                                    #
00003 # Use Case Demo Script for Jupiter 6cm VLA                           #
00004 # Trimmed down from Use Case jupiter6cm_usecase.py                   #
00005 #                                                                    #
00006 # Assumes you have already flagged using jupiter6cm_flagdemo.py      #
00007 # and calibratied using jupiter6cm_caldemo.py                        #
00008 # Will do imaging                                                    #
00009 #                                                                    #
00010 # Updated STM 2008-05-26 (Beta Patch 2.0) use new clean task         #
00011 # Updated STM 2008-06-12 (Beta Patch 2.0) for summer school demo     #
00012 #                                                                    #
00013 ######################################################################
00014 
00015 import time
00016 import os
00017 
00018 # 
00019 #=====================================================================
00020 #
00021 # This script has some interactive commands: scriptmode = True
00022 # if you are running it and want it to stop during interactive parts.
00023 
00024 scriptmode = True
00025 
00026 #=====================================================================
00027 #
00028 # Set up some useful variables - these will be set during the script
00029 # also, but if you want to restart the script in the middle here
00030 # they are in one place:
00031 
00032 prefix='jupiter6cm.demo'
00033 
00034 msfile = prefix + '.ms'
00035 
00036 #
00037 # Special prefix for calibration demo output
00038 #
00039 calprefix = prefix + '.cal'
00040 
00041 srcname = 'JUPITER'
00042 srcsplitms = calprefix + '.' + srcname + '.split.ms'
00043 
00044 #
00045 #=====================================================================
00046 #
00047 # Special prefix for this imaging demo output
00048 #
00049 imprefix = prefix + '.img'
00050 
00051 # Clean up old files
00052 os.system('rm -rf '+imprefix+'*')
00053 
00054 #
00055 #=====================================================================
00056 #
00057 # Imaging parameters
00058 #
00059 # This is D-config VLA 6cm (4.85GHz) obs
00060 # Check the observational status summary
00061 # Primary beam FWHM = 45'/f_GHz = 557"
00062 # Synthesized beam FWHM = 14"
00063 # RMS in 10min (600s) = 0.06 mJy (thats now, but close enough)
00064 
00065 # Set the output image size and cell size (arcsec)
00066 # 4" will give 3.5x oversampling
00067 clncell = [4.,4.]
00068 
00069 # 280 pix will cover to 2xPrimaryBeam
00070 # clean will say to use 288 (a composite integer) for efficiency
00071 clnalg = 'clark'
00072 clnmode = ''
00073 # For Cotton-Schwab use
00074 clnmode = 'csclean'
00075 clnimsize = [288,288]
00076 
00077 # iterations
00078 clniter = 10000
00079 
00080 # Also set flux residual threshold (0.04 mJy)
00081 # From our listobs:
00082 # Total integration time = 85133.2 seconds
00083 # With rms of 0.06 mJy in 600s ==> rms = 0.005 mJy
00084 # Set to 10x thermal rms
00085 clnthreshold=0.05
00086 
00087 #
00088 # Filenames
00089 #
00090 imname1 = imprefix + '.clean1'
00091 clnimage1 = imname1+'.image'
00092 clnmodel1 = imname1+'.model'
00093 clnresid1 = imname1+'.residual'
00094 clnmask1  = imname1+'.clean_interactive.mask'
00095 
00096 imname2 = imprefix + '.clean2'
00097 clnimage2 = imname2+'.image'
00098 clnmodel2 = imname2+'.model'
00099 clnresid2 = imname2+'.residual'
00100 clnmask2  = imname2+'.clean_interactive.mask'
00101 
00102 imname3 = imprefix + '.clean3'
00103 clnimage3 = imname3+'.image'
00104 clnmodel3 = imname3+'.model'
00105 clnresid3 = imname3+'.residual'
00106 clnmask3  = imname3+'.clean_interactive.mask'
00107 
00108 #
00109 # Selfcal parameters
00110 #
00111 # reference antenna 11 (11=VLA:N1)
00112 calrefant = '11'
00113 
00114 #
00115 # Filenames
00116 #
00117 selfcaltab1 = imprefix + '.selfcal1.gtable'
00118 
00119 selfcaltab2 = imprefix + '.selfcal2.gtable'
00120 smoothcaltab2 = imprefix + '.smoothcal2.gtable'
00121 
00122 #
00123 #=====================================================================
00124 # Calibration Reset
00125 #=====================================================================
00126 #
00127 # Reset the CORRECTED_DATA column to data
00128 #
00129 print '--Clearcal--'
00130 default('clearcal')
00131 
00132 vis = srcsplitms
00133 
00134 clearcal()
00135 
00136 print "Reset calibration for MS "+vis
00137 print ""
00138 #
00139 #=====================================================================
00140 # FIRST CLEAN / SELFCAL CYCLE
00141 #=====================================================================
00142 #
00143 # Now clean an image of Jupiter
00144 # NOTE: this uses the new combined invert/clean/mosaic task Patch 2
00145 #
00146 print '--Clean 1--'
00147 default('clean')
00148 
00149 # Pick up our split source data
00150 vis = srcsplitms
00151 
00152 # Make an image root file name
00153 imagename = imname1
00154 
00155 print "Output images will be prefixed with "+imname1
00156 
00157 # Set up the output continuum image (single plane mfs)
00158 mode = 'mfs'
00159 stokes = 'I'
00160 
00161 print "Will be a single MFS continuum image"
00162 
00163 # NOTE: current version field='' doesnt work
00164 field = '*'
00165 
00166 # Combine all spw
00167 spw = ''
00168 
00169 # Imaging mode params
00170 psfmode = clnalg
00171 imagermode = clnmode
00172 
00173 # Imsize and cell
00174 imsize = clnimsize
00175 cell = clncell
00176 
00177 # NOTE: will eventually have an imadvise task to give you this
00178 # information
00179 
00180 # Standard gain factor 0.1
00181 gain = 0.1
00182 
00183 # Fix maximum number of iterations and threshold
00184 niter = clniter
00185 threshold = clnthreshold
00186 
00187 # Note - we can change niter and threshold interactively
00188 # during clean
00189 
00190 # Set up the weighting
00191 # Use Briggs weighting (a moderate value, on the uniform side)
00192 weighting = 'briggs'
00193 robust = 0.5
00194 
00195 # No clean mask or box
00196 mask = ''
00197 
00198 # Use interactive clean mode
00199 interactive = True
00200 
00201 # Moderate number of iter per interactive cycle
00202 npercycle = 100
00203 
00204 saveinputs('clean',imagename+'.clean.saved')
00205 clean()
00206 
00207 # When the interactive clean window comes up, use the right-mouse
00208 # to draw rectangles around obvious emission double-right-clicking
00209 # inside them to add to the flag region.  You can also assign the
00210 # right-mouse to polygon region drawing by right-clicking on the
00211 # polygon drawing icon in the toolbar.  When you are happy with
00212 # the region, click 'Done Flagging' and it will go and clean another
00213 # 100 iterations.  When done, click 'Stop'.
00214 
00215 print ""
00216 print "----------------------------------------------------"
00217 print "Clean"
00218 print "Final clean model is "+clnmodel1
00219 print "Final restored clean image is "+clnimage1
00220 print "The clean residual image is "+clnresid1
00221 print "Your final clean mask is "+clnmask1
00222 
00223 print ""
00224 print "This is the final restored clean image in the viewer"
00225 print "Zoom in and set levels to see faint emission"
00226 print "Use rectangle drawing tool to box off source"
00227 print "Double-click inside to print statistics"
00228 print "Move box on-source and get the max"
00229 print "Calcualte DynRange = MAXon/RMSoff"
00230 print "I got 1.060/0.004 = 270"
00231 print "Still not as good as it can be - lets selfcal"
00232 print "Close viewer panel when done"
00233 
00234 #
00235 #---------------------------------------------------------------------
00236 #
00237 # If you did not do interactive clean, bring up viewer manually
00238 viewer(clnimage1,'image')
00239 
00240 # Pause script if you are running in scriptmode
00241 if scriptmode:
00242     user_check=raw_input('Return to continue script\n')
00243 
00244 # You can use the right-mouse to draw a box in the lower right
00245 # corner of the image away from emission, the double-click inside
00246 # to bring up statistics.  Use the right-mouse to grab this box
00247 # and move it up over Jupiter and double-click again.  You should
00248 # see stuff like this in the terminal:
00249 #
00250 # jupiter6cm.usecase.clean1.image     (Jy/beam)
00251 # 
00252 # n           Std Dev     RMS         Mean        Variance    Sum
00253 # 4712        0.003914    0.003927    0.0003205   1.532e-05   1.510     
00254 # 
00255 # Flux        Med |Dev|   IntQtlRng   Median      Min         Max
00256 # 0.09417     0.002646    0.005294    0.0001885   -0.01125    0.01503   
00257 #
00258 #
00259 # On Jupiter:
00260 #
00261 # n           Std Dev     RMS         Mean        Variance    Sum
00262 # 3640        0.1007      0.1027      0.02023     0.01015     73.63     
00263 # 
00264 # Flux        Med |Dev|   IntQtlRng   Median      Min         Max
00265 # 4.592       0.003239    0.007120    0.0001329   -0.01396    1.060     
00266 #
00267 # Estimated dynamic range = 1.060 / 0.003927 = 270 (poor)
00268 #
00269 # Note that the exact numbers you get will depend on how deep you
00270 # take the interactive clean and how you draw the box for the stats.
00271 
00272 #=====================================================================
00273 #
00274 # Do some non-interactive image statistics
00275 print '--Imstat--'
00276 default('imstat')
00277 
00278 imagename = clnimage1
00279 on_statistics1 = imstat()
00280 
00281 # Now do stats in the lower right corner of the image
00282 # remember clnimsize = [288,288]
00283 box = '216,1,287,72'
00284 off_statistics1 = imstat()
00285 
00286 # Pull the max and rms from the clean image
00287 thistest_immax=on_statistics1['max'][0]
00288 print ' Found : Max in image = ',thistest_immax
00289 thistest_imrms=off_statistics1['rms'][0]
00290 print ' Found : rms in image = ',thistest_imrms
00291 print ' Clean image Dynamic Range = ',thistest_immax/thistest_imrms
00292 print ''
00293 #
00294 #---------------------------------------------------------------------
00295 #
00296 # Self-cal using clean model
00297 #
00298 # Note: clean will have left FT of model in the MODEL_DATA column
00299 # If you've done something in between, can use the ft task to
00300 # do this manually.
00301 #
00302 print '--SelfCal 1--'
00303 default('gaincal')
00304 
00305 vis = srcsplitms
00306 
00307 print "Will self-cal using MODEL_DATA left in MS by clean"
00308 
00309 # New gain table
00310 caltable = selfcaltab1
00311 
00312 print "Will write gain table "+selfcaltab1
00313 
00314 # Don't need a-priori cals
00315 selectdata = False
00316 gaincurve = False
00317 opacity = 0.0
00318 
00319 # This choice seemed to work
00320 refant = calrefant
00321 
00322 # Do amp and phase
00323 gaintype = 'G'
00324 calmode = 'ap'
00325 
00326 # Do 30s solutions with SNR>1
00327 solint = 30.0
00328 minsnr = 1.0
00329 print "Calibrating amplitudes and phases on 30s timescale"
00330 
00331 # Do not need to normalize (let gains float)
00332 solnorm = False
00333 
00334 gaincal()
00335 
00336 #
00337 #---------------------------------------------------------------------
00338 # It is useful to put this up in plotcal
00339 #
00340 #
00341 print '--PlotCal--'
00342 default('plotcal')
00343 
00344 caltable = selfcaltab1
00345 multiplot = True
00346 yaxis = 'amp'
00347 
00348 plotcal()
00349 
00350 print ""
00351 print "-------------------------------------------------"
00352 print "Plotcal"
00353 print "Looking at amplitude in self-cal table "+caltable
00354 
00355 # Pause script if you are running in scriptmode
00356 if scriptmode:
00357     user_check=raw_input('Return to continue script\n')
00358 
00359 yaxis = 'phase'
00360 
00361 plotcal()
00362 
00363 print ""
00364 print "-------------------------------------------------"
00365 print "Plotcal"
00366 print "Looking at phases in self-cal table "+caltable
00367 
00368 #
00369 # Pause script if you are running in scriptmode
00370 if scriptmode:
00371     user_check=raw_input('Return to continue script\n')
00372 
00373 #
00374 #---------------------------------------------------------------------
00375 #
00376 # Correct the data (no need for interpolation this stage)
00377 #
00378 print '--ApplyCal--'
00379 default('applycal')
00380 
00381 vis = srcsplitms
00382 
00383 print "Will apply self-cal table to over-write CORRECTED_DATA in MS"
00384 
00385 gaintable = selfcaltab1
00386 
00387 gaincurve = False
00388 opacity = 0.0
00389 field = ''
00390 spw = ''
00391 selectdata = False
00392 
00393 calwt = True
00394 
00395 applycal()
00396 
00397 # Self-cal is now in CORRECTED_DATA column of split ms
00398 #=====================================================================
00399 # Use Plotxy to look at the self-calibrated data
00400 #
00401 print '--Plotxy--'
00402 default('plotxy')
00403 
00404 vis = srcsplitms
00405 selectdata = True
00406 field = 'JUPITER'
00407 
00408 correlation = 'RR LL'
00409 xaxis = 'uvdist'
00410 yaxis = 'amp'
00411 datacolumn = 'corrected'
00412 multicolor = 'both'
00413 
00414 # Use the field name as the title
00415 selectplot = True
00416 title = field+"  "
00417 
00418 iteration = ''
00419 
00420 plotxy()
00421 
00422 print ""
00423 print "-----------------------------------------------------"
00424 print "Plotting JUPITER self-corrected visibilities"
00425 print "Look for outliers, and you can flag them"
00426 
00427 # Pause script if you are running in scriptmode
00428 if scriptmode:
00429     user_check=raw_input('Return to continue script\n')
00430 
00431 #
00432 #=====================================================================
00433 # SECOND CLEAN / SELFCAL CYCLE
00434 #=====================================================================
00435 #
00436 print '--Clean 2--'
00437 default('clean')
00438 
00439 print "Now clean on self-calibrated data"
00440 
00441 vis = srcsplitms
00442 
00443 imagename = imname2
00444 
00445 field = '*'
00446 spw = ''
00447 mode = 'mfs'
00448 gain = 0.1
00449 
00450 # Imaging mode params
00451 psfmode = clnalg
00452 imagermode = clnmode
00453 imsize = clnimsize
00454 cell = clncell
00455 niter = clniter
00456 threshold = clnthreshold
00457 
00458 weighting = 'briggs'
00459 robust = 0.5
00460 
00461 mask = ''
00462 interactive = True
00463 npercycle = 100
00464 
00465 saveinputs('clean',imagename+'.clean.saved')
00466 clean()
00467 
00468 print ""
00469 print "----------------------------------------------------"
00470 print "Clean"
00471 print "Final clean model is "+clnmodel2
00472 print "Final restored clean image is "+clnimage2
00473 print "The clean residual image is "+clnresid2
00474 print "Your final clean mask is "+clnmask2
00475 
00476 print ""
00477 print "This is the final restored clean image in the viewer"
00478 print "Zoom in and set levels to see faint emission"
00479 print "Use rectangle drawing tool to box off source"
00480 print "Double-click inside to print statistics"
00481 print "Move box on-source and get the max"
00482 print "Calcualte DynRange = MAXon/RMSoff"
00483 print "This time I got 1.076 / 0.001389 = 775 (better)"
00484 print "Still not as good as it can be - lets selfcal again"
00485 print "Close viewer panel when done"
00486 
00487 #
00488 #---------------------------------------------------------------------
00489 #
00490 # If you did not do interactive clean, bring up viewer manually
00491 viewer(clnimage2,'image')
00492 
00493 # Pause script if you are running in scriptmode
00494 if scriptmode:
00495     user_check=raw_input('Return to continue script\n')
00496 
00497 # jupiter6cm.usecase.clean2.image     (Jy/beam)
00498 # 
00499 # n           Std Dev     RMS         Mean        Variance    Sum
00500 # 5236        0.001389    0.001390    3.244e-05   1.930e-06   0.1699    
00501 # 
00502 # Flux        Med |Dev|   IntQtlRng   Median      Min         Max
00503 # 0.01060     0.0009064   0.001823    -1.884e-05  -0.004015   0.004892  
00504 # 
00505 # 
00506 # On Jupiter:
00507 # 
00508 # n           Std Dev     RMS         Mean        Variance    Sum
00509 # 5304        0.08512     0.08629     0.01418     0.007245    75.21     
00510 # 
00511 # Flux        Med |Dev|   IntQtlRng   Median      Min         Max
00512 # 4.695       0.0008142   0.001657    0.0001557   -0.004526   1.076     
00513 #
00514 # Estimated dynamic range = 1.076 / 0.001389 = 775 (better)
00515 #
00516 # Note that the exact numbers you get will depend on how deep you
00517 # take the interactive clean and how you draw the box for the stats.
00518 #
00519 print ""
00520 print "--------------------------------------------------"
00521 print "After this script is done you can continue on with"
00522 print "more self-cal, or try different cleaning options"
00523 
00524 #
00525 #=====================================================================
00526 # Image Analysis
00527 #=====================================================================
00528 #
00529 # Can do some image statistics if you wish
00530 print '--Imstat (Cycle 2)--'
00531 default('imstat')
00532 
00533 imagename = clnimage2
00534 on_statistics2 = imstat()
00535 
00536 # Now do stats in the lower right corner of the image
00537 # remember clnimsize = [288,288]
00538 box = '216,1,287,72'
00539 off_statistics2 = imstat()
00540 
00541 # Pull the max and rms from the clean image
00542 thistest_immax=on_statistics2['max'][0]
00543 print ' Found : Max in image = ',thistest_immax
00544 thistest_imrms=off_statistics2['rms'][0]
00545 print ' Found : rms in image = ',thistest_imrms
00546 print ' Clean image Dynamic Range = ',thistest_immax/thistest_imrms
00547 print ''
00548 
00549 #=====================================================================
00550 #
00551 # Print results and regression versus previous runs
00552 #
00553 print ""
00554 print ' Final Jupiter results '
00555 print ' ===================== '
00556 print ''
00557 # Pull the max and rms from the clean image
00558 thistest_immax=on_statistics2['max'][0]
00559 oldtest_immax = 1.07732224464
00560 print '   Clean image  ON-SRC max = ',thistest_immax
00561 print '   Previously found to be  = ',oldtest_immax
00562 diff_immax = abs((oldtest_immax-thistest_immax)/oldtest_immax)
00563 print '   Difference (fractional) = ',diff_immax
00564 
00565 print ''
00566 thistest_imrms=off_statistics2['rms'][0]
00567 oldtest_imrms = 0.0010449
00568 print '   Clean image OFF-SRC rms = ',thistest_imrms
00569 print '   Previously found to be  = ',oldtest_imrms
00570 diff_imrms = abs((oldtest_imrms-thistest_imrms)/oldtest_imrms)
00571 print '   Difference (fractional) = ',diff_imrms
00572 
00573 print ''
00574 print ' Final Clean image Dynamic Range = ',thistest_immax/thistest_imrms
00575 print ''
00576 print '--- Done ---'
00577 
00578 #
00579 #=====================================================================