M100 Band3 Combine 4.5: Difference between revisions

From CASA Guides
Jump to navigationJump to search
No edit summary
 
(5 intermediate revisions by 2 users not shown)
Line 50: Line 50:
<source lang="python">
<source lang="python">
# In CASA
# In CASA
os.system('rm -rf m100_*m.ms.listobs')
os.system('rm -rf M100_*m.ms.listobs')
listobs('M100_Band3_12m_CalibratedData.ms',listfile='M100_12m.ms.listobs')
listobs('M100_Band3_12m_CalibratedData.ms',listfile='M100_12m.ms.listobs')
listobs('M100_Band3_7m_CalibratedData.ms',listfile='M100_7m.ms.listobs')
listobs('M100_Band3_7m_CalibratedData.ms',listfile='M100_7m.ms.listobs')
Line 177: Line 177:
os.system('rm -rf 7m_WT.png 12m_WT.png')
os.system('rm -rf 7m_WT.png 12m_WT.png')
plotms(vis='M100_12m_CO.ms',yaxis='wt',xaxis='uvdist',spw='0:200',
plotms(vis='M100_12m_CO.ms',yaxis='wt',xaxis='uvdist',spw='0:200',
       coloraxis='spw',plotfile='12m_WT.png')
       coloraxis='spw',plotfile='12m_WT.png', showgui = True)
#
#
plotms(vis='M100_7m_CO.ms',yaxis='wt',xaxis='uvdist',spw='0~1:200',
plotms(vis='M100_7m_CO.ms',yaxis='wt',xaxis='uvdist',spw='0~1:200',
       coloraxis='spw',plotfile='7m_WT.png')
       coloraxis='spw',plotfile='7m_WT.png', showgui = True)
</source>
</source>


Line 201: Line 201:
os.system('rm -rf combine_CO_WT.png')
os.system('rm -rf combine_CO_WT.png')
plotms(vis='M100_combine_CO.ms',yaxis='wt',xaxis='uvdist',spw='0~2:200',
plotms(vis='M100_combine_CO.ms',yaxis='wt',xaxis='uvdist',spw='0~2:200',
       coloraxis='spw',plotfile='combine_CO_WT.png')
       coloraxis='spw',plotfile='combine_CO_WT.png', showgui = True)
</source>
</source>


Line 216: Line 216:
os.system('rm -rf M100_combine_uvdist.png')
os.system('rm -rf M100_combine_uvdist.png')
plotms(vis='M100_combine_CO.ms',yaxis='amp',xaxis='uvdist',spw='', avgscan=True,
plotms(vis='M100_combine_CO.ms',yaxis='amp',xaxis='uvdist',spw='', avgscan=True,
       avgchannel='5000', coloraxis='spw',plotfile='M100_combine_uvdist.png')  
       avgchannel='5000', coloraxis='spw',plotfile='M100_combine_uvdist.png', showgui = True)  
</source>
</source>


Line 227: Line 227:
os.system('rm -rf M100_combine_vel.png')
os.system('rm -rf M100_combine_vel.png')
plotms(vis='M100_combine_CO.ms',yaxis='amp',xaxis='velocity',spw='', avgtime='1e8',avgscan=True,coloraxis='spw',avgchannel='5',
plotms(vis='M100_combine_CO.ms',yaxis='amp',xaxis='velocity',spw='', avgtime='1e8',avgscan=True,coloraxis='spw',avgchannel='5',
       transform=True,freqframe='LSRK',restfreq='115.271201800GHz', plotfile='M100_combine_vel.png')
       transform=True,freqframe='LSRK',restfreq='115.271201800GHz', plotfile='M100_combine_vel.png', showgui = True)
</source>
</source>


Line 265: Line 265:
=== Interactive Cleaning ===
=== Interactive Cleaning ===


To create your own clean mask, run the following clean command with interactive=T.  
To create your own clean mask, run the following clean command with interactive=True.  


<source lang="python">
<source lang="python">
Line 277: Line 277:
       restfreq=restfreq,outframe=outframe,veltype='radio',
       restfreq=restfreq,outframe=outframe,veltype='radio',
       multiscale=scales,smallscalebias=smallscalebias,
       multiscale=scales,smallscalebias=smallscalebias,
       interactive = T,
       interactive = True,
       niter = 10000,threshold = str(thresh) +'Jy/beam')
       niter = 10000,threshold = str(thresh) +'Jy/beam')


Line 286: Line 286:
Once you're satisfied that you have cleaned all of the emission that needs cleaning, hit the red X to finish the process. The outputs of clean include several useful image cubes: the cleaned image (.image), the final mask created from all of your rounds of cleaning (.mask), the map of all of the clean components used in the model (.model), the beam (.psf), and the residuals remaining after all of your rounds of clean (.residual).
Once you're satisfied that you have cleaned all of the emission that needs cleaning, hit the red X to finish the process. The outputs of clean include several useful image cubes: the cleaned image (.image), the final mask created from all of your rounds of cleaning (.mask), the map of all of the clean components used in the model (.model), the beam (.psf), and the residuals remaining after all of your rounds of clean (.residual).


Another option: instead of starting your own mask from scratch, you could also use the provided mask as a starting place to do interactive cleaning. It is possible to "reuse" and change a mask anytime you create one. To use the provided mask, M100_combine_CO_provided.mask, as a starting place, use the following command with interactive=T.  
Another option: instead of starting your own mask from scratch, you could also use the provided mask as a starting place to do interactive cleaning. It is possible to "reuse" and change a mask anytime you create one. To use the provided mask, M100_combine_CO_provided.mask, as a starting place, use the following command with interactive=True.  


<source lang="python">
<source lang="python">
Line 299: Line 299:
       multiscale=scales,smallscalebias=smallscalebias,
       multiscale=scales,smallscalebias=smallscalebias,
       mask = 'M100_combine_CO_provided.mask',
       mask = 'M100_combine_CO_provided.mask',
       interactive = T,
       interactive = True,
       niter = 10000,threshold = str(thresh) +'Jy/beam')
       niter = 10000,threshold = str(thresh) +'Jy/beam')


Line 306: Line 306:
=== Non-Interactive Cleaning ===
=== Non-Interactive Cleaning ===


If you would instead prefer to use the provided per channel mask, M100_combine_CO_provided.mask, you can find it in your directory. In this case, the mask file is specified and the clean command uses interactive=F.
If you would instead prefer to use the provided per channel mask, M100_combine_CO_provided.mask, you can find it in your directory. In this case, the mask file is specified and the clean command uses interactive=False.


<source lang="python">
<source lang="python">
Line 319: Line 319:
       multiscale=scales,smallscalebias=smallscalebias,
       multiscale=scales,smallscalebias=smallscalebias,
       mask = 'M100_combine_CO_provided.mask',
       mask = 'M100_combine_CO_provided.mask',
       interactive = F,
       interactive = False,
       niter = 10000,threshold = str(thresh) +'Jy/beam')
       niter = 10000,threshold = str(thresh) +'Jy/beam')


Line 433: Line 433:
=== Comparison with 7m, 12m Moment Maps ===
=== Comparison with 7m, 12m Moment Maps ===


Below the moment maps from the 7m-only and the 12m-only data are shown for comparison. The moment maps were made using clean masks drawn by hand for comparison to the automasking technique; the two appear to be qualitatively similar. Details on the creation of these images (masking, thresholding, and the number of iterations of clean) can be found within the 12m and 7m imaging scripts available with the downloaded package. The range and scaling for the 12m-only figures are the same as that used for the 7m+12m figures for ease of comparison.
Below the moment maps from the 7m-only and the 12m-only data are shown for comparison. The moment maps were made using clean masks drawn by hand. Details on the creation of these images (masking, thresholding, and the number of iterations of clean) can be found within the 12m and 7m imaging scripts available with the downloaded package. The range and scaling for the 12m-only figures are the same as that used for the 7m+12m figures for ease of comparison.


As expected, the 7m+12m image shows considerably more extended emission than the 12m-only data and finer detail than the 7m-only data. For comparison, the 7m+12m synthesized beam is 3.82"x2.55", while the 12m-only beam is 3.46"x2.37" and the 7m-only beam is 12.72"x10.12".
As expected, the 7m+12m image shows considerably more extended emission than the 12m-only data and finer detail than the 7m-only data. For comparison, the 7m+12m synthesized beam is 3.82"x2.55", while the 12m-only beam is 3.46"x2.37" and the 7m-only beam is 12.72"x10.12".
Line 487: Line 487:
</source>
</source>


Now we trim the 7m+12m and (regridded) TP images, in order to exclude the regions masked by the {{clean}} task with minpb=0.2 and/or noisy edge regions in the TP image.  The {{viewer}} task can be used to determine the trimming box.  Here we use (x, y) = (219, 148) and (612, 579) [pixels] as the bottom-left and top-right corners, respectively, and set these values to the "box" parameter of the {{imsubimage}} task.
Now we trim the 7m+12m and (regridded) TP images, in order to exclude the regions masked by the {{clean}} task with minpb=0.2 and/or noisy edge regions in the TP image.  The {{viewer}} task can be used to determine the trimming box.  Here we use (x, y) = (48,46) and (488,569) [pixels] as the bottom-left and top-right corners, respectively, and set these values to the "box" parameter of the {{imsubimage}} task.


<source lang="python">
<source lang="python">
Line 636: Line 636:
<source lang="python">
<source lang="python">
#In CASA
#In CASA
os.system('rm -rf M100_Feather_CO.image.pbcor')
immath(imagename=['M100_Feather_CO.image',
immath(imagename=['M100_Feather_CO.image',
                   'M100_combine_CO_cube.flux.subim'],
                   'M100_combine_CO_cube.flux.subim'],
Line 730: Line 731:
</pre>
</pre>


The 'flux' value in the result is the total integrated line flux in Jy km/s. Note that these values are the ones obtained using the provided mask file and interactive=F cleaning. If you adjusted the masking of the 12m+7m cleaning run, your results may vary here.  
The 'flux' value in the result is the total integrated line flux in Jy km/s. Note that these values are the ones obtained using the provided mask file and interactive=False cleaning. If you adjusted the masking of the 12m+7m cleaning run, your results may vary here.  


Similarly, the total line fluxes of the TP image (after multiplying the 7m+12m primary beam response), feathered image, and feathered image after the primary-beam correction are
Similarly, the total line fluxes of the TP image (after multiplying the 7m+12m primary beam response), feathered image, and feathered image after the primary-beam correction are
Line 748: Line 749:


We see the followings from these values:
We see the followings from these values:
* The flux recovered by the 7m+12m observations is about a third of the total flux (998/2771 = 0.360).
* The flux recovered by the 7m+12m observations is about a third of the total flux (998/2931).
* The feathering process preserves the flux of the TP data.
* The feathering process preserves the flux of the TP data.
* The flux of the primary-beam corrected feathered image is consistent with the values from the literature (2972 +/- 319 Jy km/s from the BIMA SONG; Helfer et al. 2003).
* The flux of the primary-beam corrected feathered image is consistent with the values from the literature (2972 +/- 319 Jy km/s from the BIMA SONG; Helfer et al. 2003).


{{Checked 4.5.2}}
{{Checked 4.5.2}}

Latest revision as of 09:33, 10 April 2017

WARNING: Note that this guide has been prepared exclusively for the 2016 Synthesis Imaging Summer School and is not intended for general use. 

The currently maintained combination CASAguide, written for CASA 4.3.0, can be found here: https://casaguides.nrao.edu/index.php/M100_Band3_Combine_4.3


Overview

This guide describes how to combine the 7m and 12m interferometric data and then how to feather the resulting image with the total power TP image. All of the data for this SV project can be found at https://almascience.nrao.edu/alma-data/science-verification. This guide has been written for data reduced in CASA 4.5.0 and assumes that all calibration tables (Tsys and gain tables) have been applied to the visibility weights using calwt=True. If either of these is not the case for your data, do not follow this guide, instead look at https://casaguides.nrao.edu/index.php/DataWeightsAndCombination for methods to correct the data weights for data reduced in earlier versions of CASA.

In order to run this guide you will need the following three files:

  • 12m array calibrated data: M100_Band3_12m_CalibratedData.ms
  • 7m array calibrated data: M100_Band3_7m_CalibratedData.ms
  • Total Power image: M100_TP_CO_cube.bl.image

To obtain the fully calibrated 12m data M100_Band3_12m_CalibratedData.ms, either download the file M100_Band3_12m_CalibratedData.tgz or download the uncalibrated 12m data (M100_Band3_12m_UnalibratedData.tgz) and execute the calibration scripts (M100_Band3_12m_CalibrationScripts.tgz). How to obtain the data is described in M100_Band3#Obtaining the Data. An overview of the 12m data and its calibration is located at M100_Band3.

WARNING: Note that the imaging presented in this Guide uses the new calibration (using CASA 4.5)
of the same 12-m array data that were released previously (using CASA 3.3).

Do not use the previously released CASA 3.3 version of the calibrated 12-m data (either downloaded 
before 28 July 2015 or identified by the suffix "_CASA3.3" after 28 July 2015) for this tutorial.

To obtain the fully calibrated 7m data M100_Band3_7m_CalibratedData.ms, either download the file M100_Band3_7m_CalibratedData.tgz or download the uncalibrated 7m data (M100_Band3_7m_UnalibratedData.tgz) and execute the calibration scripts (M100_Band3_7m_CalibrationScripts.tgz). How to obtain the data is described in M100_Band3#Obtaining the Data. An overview of the 7m data and its calibration is located at M100_Band3.

To obtain the Total Power image M100_TP_CO_cube.bl.image, either run the M100_Band3_SingleDish_4.5 guide to calibrate and image the Total Power data or download the image file from M100_ACA_ReferenceImages.tgz. How to obtain the data is described in M100_Band3#Obtaining the Data. An overview of the Total Power data and its calibration is located at M100_Band3.

Confirm your version of CASA

This guide has been written for CASA release 4.5.0. Please confirm your version before proceeding.

# In CASA
version = casadef.casa_version
print "You are using " + version
if (version < '4.5.0'):
    print "YOUR VERSION OF CASA IS TOO OLD FOR THIS GUIDE."
    print "PLEASE UPDATE IT BEFORE PROCEEDING."
else:
    print "Your version of CASA is appropriate for this guide."

Combine and Image the 7m+12m Interferometric Data

Split off CO spectral windows (SPWs)

# In CASA
os.system('rm -rf M100_*m.ms.listobs')
listobs('M100_Band3_12m_CalibratedData.ms',listfile='M100_12m.ms.listobs')
listobs('M100_Band3_7m_CalibratedData.ms',listfile='M100_7m.ms.listobs')

Running the task "listobs" provides the setups used in the observations at a glance. Below are the first target scans of the 12m and 7m observations and the spectral window tables as generated by listobs; these are excerpts from the complete files obtained in each case. Notice that the six 7m data sets were taken with two slightly different correlator setups (one with four SPWs and the other with two SPWs), so the concatenated data set has six total SPWs.

12m data:


ObservationID = 0         ArrayID = 0
  Date        Timerange (UTC)          Scan  FldId FieldName             nRows     SpwIds   Average Interval(s)    ScanIntent
  10-Aug-2011/19:38:05.8 - 19:50:22.8    11      1 M100                      1500  [0,1,2,3]  [6.05, 6.05, 6.05, 6.05] [CALIBRATE_WVR#ON_SOURCE,OBSERVE_TARGET#ON_SOURCE]

Spectral Windows:  (4 unique spectral windows and 1 unique polarization setups)
  SpwID  Name   #Chans   Frame   Ch0(MHz)  ChanWid(kHz)  TotBW(kHz) CtrFreq(MHz) BBC Num  Corrs
  0              3840   TOPO  113726.419       488.281   1875000.0 114663.6750        1  XX  YY
  1              3840   TOPO  111851.419       488.281   1875000.0 112788.6750        2  XX  YY
  2              3840   TOPO  103663.431      -488.281   1875000.0 102726.1750        3  XX  YY
  3              3840   TOPO  101850.931      -488.281   1875000.0 100913.6750        4  XX  YY


7m data:


ObservationID = 0         ArrayID = 0
  Date        Timerange (UTC)          Scan  FldId FieldName             nRows     SpwIds   Average Interval(s)    ScanIntent
  17-Mar-2013/04:44:04.3 - 04:50:43.7    11      1 M100                       261  [0,1,2,3]  [10.1, 10.1, 10.1, 10.1] [OBSERVE_TARGET#ON_SOURCE]

Spectral Windows:  (6 unique spectral windows and 1 unique polarization setups)
  SpwID  Name                           #Chans   Frame   Ch0(MHz)  ChanWid(kHz)  TotBW(kHz) CtrFreq(MHz) BBC Num  Corrs
  0      ALMA_RB_03#BB_1#SW-01#FULL_RES   4080   TOPO  101945.850      -488.281   1992187.5 100950.0000        1  XX  YY
  1      ALMA_RB_03#BB_2#SW-01#FULL_RES   4080   TOPO  103761.000      -488.281   1992187.5 102765.1500        2  XX  YY
  2      ALMA_RB_03#BB_3#SW-01#FULL_RES   4080   TOPO  111811.300       488.281   1992187.5 112807.1500        3  XX  YY
  3      ALMA_RB_03#BB_4#SW-01#FULL_RES   4080   TOPO  113686.300       488.281   1992187.5 114682.1500        4  XX  YY
  4      ALMA_RB_03#BB_1#SW-01#FULL_RES   4080   TOPO  111798.250       488.281   1992187.5 112794.1000        1  XX  YY
  5      ALMA_RB_03#BB_2#SW-01#FULL_RES   4080   TOPO  113673.250       488.281   1992187.5 114669.1000        2  XX  YY

<figure id="12m_mosaic.png">

FOV of 12m mosaic.

</figure>

<figure id="7m_mosaic.png">

FOV of 7m mosaic.

</figure>

Examination of the listobs files shows that the CO is in SPW='0' for the 12m data and in SPW='3,5' for the 7m data. There are two SPWs containing CO in the 7m data due to the slightly differing correlator setups.

Also note that the integration time per visibility (average interval parameter in listobs) is different: 6.05s for the 12m data and 10.1s for the 7m. This will be important to know later when we check the visibility weights.

Next we split out the CO spectral windows.

# In CASA
os.system('rm -rf M100_12m_CO.ms')
split(vis='M100_Band3_12m_CalibratedData.ms',
      outputvis='M100_12m_CO.ms',spw='0',field='M100',
      datacolumn='data',keepflags=False)
os.system('rm -rf M100_7m_CO.ms')
split(vis='M100_Band3_7m_CalibratedData.ms',
      outputvis='M100_7m_CO.ms',spw='3,5',field='M100',
      datacolumn='data',keepflags=False)

Also of interest is that the 12m data has 47 fields and the 7m has 23 fields (not shown in the excerpts above). The difference in number of pointings is because the 7m antennas have a FWHP (full width half power) primary beam diameter that is 12/7 times larger than the 12m antennas. One easy way to see how the mosaics compare is to install the AnalysisUtils package (see Analysis_Utilities for information on how to download and import AnalysisUtils). Then with AnalysisUtils you can make the following plots (look at the listobs to obtain the sourceid):

# In CASA
os.system('rm -rf *m_mosaic.png')
au.plotmosaic('M100_12m_CO.ms',sourceid='0',figfile='12m_mosaic.png')
au.plotmosaic('M100_7m_CO.ms',sourceid='0',figfile='7m_mosaic.png')

We see that the mosaics cover a common area but that the 7m mosaic is a bit larger. This means that the outer edges of the combined mosaic will be noisier than expected if they overlapped perfectly; this is just something to keep in mind. If you had the case where the mosaic coverages are dramatically different, it would be best to exclude the completely non-overlapping fields from the combination.

NOTE: At this stage one would typically do continuum subtraction (if there is any). However we already know from the individual data reductions that the 3mm continuum emission is quite weak and does not significantly contribute to a 5km/s channel, so we will forgo the the continuum subtraction step. Examples of how to do this if you are so inclined are located in various other ALMA CASAguides.

Checking the weights and concatenating the data

<figure id="7m_WT.png">

12m weights.

</figure>

<figure id="12m_WT.png">

7m weights.

</figure>

When combining data with disparate properties it is very important that the relative weights of each visibility be in the correct proportion to the other data according to the radiometer equation. Formally, the visibility weights should be proportional to 1/sigma2 where sigma is the variance or rms noise of a given visibility.

The rms noise in a single channel for a single visibility is:

[math]\displaystyle{ \sigma_{ij} (Jy) =\frac{2k}{\eta_{q}\eta_{c}A_{eff}} }[/math] [math]\displaystyle{ \sqrt{\frac{T_{sys,i} T_{sys,j}}{2\Delta\nu_{ch} t_{ij}}} }[/math] [math]\displaystyle{ \times 10^{26}, }[/math]

where:

k is Boltzmann's constant.

Aeff is the effective antenna area which is equal to the aperture efficiency x the geometric area of the antenna. The aperture efficiency depends on the rms antenna surface accuracy.

ηq and ηc are the quantization and correlator efficiencies, respectively. These have values near 1 and will be ignored for the purposes of this casaguide, but see the ALMA Technical Handbook for more information.

Tsys,i is the system temperature for antenna i, and Tsys,j is the system temperature for antenna j

Δνch is the channel frequency width.

tij is the integration time per visibility.

As of CASA 4.3.1, weights are initially scaled by 2ΔνchΔtij, and after the Tsys table applycal step of the calibration process, it further scales the weights by 1/[(Tsys(i) * Tsys(j)] as long as calwt=True. In the subsequent amplitude gain calibration table applycal step of the calibration, the weights are further scaled by a factor of [gain(i)2 * gain(j)2] if calwt=True. This step up-weights data from the best performing antennas from the gain point of view, and importantly for data combination, makes the weights correctly proportional to the antenna size.

In the calibration scripts for all executions of the 12m and 7m data, both applycal steps set calwt=True. To verify that the weights come out as expected, we plot the weights of the 7m and 12m data and measure their ratio to be, on average, 7m/12m ~ 0.055/0.3 ~ 0.18. Note that in the plots the points are colored by SPW, so there is only one 12m CO SPW but there are two 7m CO SPWs, and that no averaging can be turned on when plotting the weights.

# In CASA
os.system('rm -rf 7m_WT.png 12m_WT.png')
plotms(vis='M100_12m_CO.ms',yaxis='wt',xaxis='uvdist',spw='0:200',
       coloraxis='spw',plotfile='12m_WT.png', showgui = True)
#
plotms(vis='M100_7m_CO.ms',yaxis='wt',xaxis='uvdist',spw='0~1:200',
       coloraxis='spw',plotfile='7m_WT.png', showgui = True)

<figure id="combine_CO_WT.png">

7m and 12m weights after concatenation.

</figure>

The two key things that are different between the 7m and 12m-array data are that the effective dish areas are different by (7/12)2, and the integration times are different by (10.1/6.05). Since the dish area and the integration time per visibility are in the denominator of the radiometer equation, and assuming the weight of an individual visibility is proportional to 1/sigma2, the ratio of the weights should be (7./12.)4 x (10.1/6.05) = 0.19. This is very close to the value we measure for the ratio of the weights, particularly given that the 7m flux calibration relied on a source which changed substantially over the course of the six 7m-array observations.

Now concatenate the two data sets and plot the concatenated weights to verify that they are as expected.

# In CASA
# Concat and scale weights
os.system('rm -rf M100_combine_CO.ms')
concat(vis=['M100_12m_CO.ms','M100_7m_CO.ms'],
       concatvis='M100_combine_CO.ms')

# In CASA
os.system('rm -rf combine_CO_WT.png')
plotms(vis='M100_combine_CO.ms',yaxis='wt',xaxis='uvdist',spw='0~2:200',
       coloraxis='spw',plotfile='combine_CO_WT.png', showgui = True)

Here, we create more instructive plots of the combined data to check that things are in order. (Let each plot finish before cutting and pasting next plot. If plotms gui disappears, exit CASA and restart.)

<figure id="M100_combine_vel.png">

Amplitude as a function of velocity.

</figure>

One way to assess the relative noise in the combined data is to plot amplitude as a function of uv-distance. Here, it's clear that the 7m data is noisier than the 12m data (note also that this plot is not shown):

# In CASA
os.system('rm -rf M100_combine_uvdist.png')
plotms(vis='M100_combine_CO.ms',yaxis='amp',xaxis='uvdist',spw='', avgscan=True,
       avgchannel='5000', coloraxis='spw',plotfile='M100_combine_uvdist.png', showgui = True)

A fairer comparison of these data is achieved by isolating the brightest line channels in individual 12m and 7m data sets (i.e., not the concatenated data sets) and comparing only those channels in amplitude vs. uv-distance. Here the agreement is better, as it is less dominated by the scatter among the several 7m executions.

To plot the CO line as a function of velocity (this plot takes a while):

# In CASA
os.system('rm -rf M100_combine_vel.png')
plotms(vis='M100_combine_CO.ms',yaxis='amp',xaxis='velocity',spw='', avgtime='1e8',avgscan=True,coloraxis='spw',avgchannel='5',
       transform=True,freqframe='LSRK',restfreq='115.271201800GHz', plotfile='M100_combine_vel.png', showgui = True)

To see each spectral window independently in plotms, run the command again but remove the call to "plotfile" and add " iteraxis='spw' ".

Image The Combined Data

The commands in this section enable the user to choose between interactive cleaning -- i.e., building your own cleaning mask -- and using a provided mask to do the cleaning. Imaging this data requires using the imagemode='mosaic' mode of clean. This mode automatically calculates the correct convolution of the primary beam response of the mosaic when different antenna dish diameters are present. NOTE: even if these data had only been comprised of a single pointing of 7m and 12m-array data, the imagemode='mosaic' mode would be needed to correctly image data with different antenna sizes.

Any time it is necessary to enter a long series of commands, typing cpaste before the start of the series and -- at the end of the series lets CASA know that there are more commands coming. This can be very helpful when needing to cut and paste a lot of lines at once. These commands are not explicitly included in any of the sets of commands below, but they can be applicable for any of them.

Define Parameters

### Define clean parameters
vis='M100_combine_CO.ms'
prename='M100_combine_CO_cube'
myimage=prename+'.image'
imsize=[540,600]
cell='0.5arcsec'
minpb=0.2
restfreq='115.271201800GHz'
outframe='LSRK'
spw='0~2:1500~2500'
width='5km/s'
start='1400km/s'
nchan=70
robust=0.5
phasecenter='J2000 12h22m54.3 +15d48m46.7'
scales=[0]
smallscalebias=0.6
thresh=0.04502129927277565

Interactive Cleaning

To create your own clean mask, run the following clean command with interactive=True.

os.system('rm -rf M100_combine_CO_cube*')
clean(vis=vis,imagename='M100_combine_CO_cube',
      imagermode='mosaic',ftmachine='mosaic',minpb=minpb,
      imsize=imsize,cell=cell,spw=spw,
      weighting='briggs',robust=robust,phasecenter=phasecenter,
      mode='velocity',width=width,start=start,nchan=nchan,
      restfreq=restfreq,outframe=outframe,veltype='radio',
      multiscale=scales,smallscalebias=smallscalebias,
      interactive = True,
      niter = 10000,threshold = str(thresh) +'Jy/beam')

The viewer will pop up and allow you to draw regions around emission (or absorption!) peaks that you believe to be real. The tools for drawing elliptical, rectangular, or polygonal regions are located at the top of the viewer window. You have the option to clean "all channels" or a "single channel" at a time; for M100, where the emission moves spatially from channel to channel, make sure to select the option to clean one channel at a time. Click through the channels with the channel iterator on the right in the viewer window to draw per channel clean boxes. Once you're satisfied with the boxes drawn in each channel, click the green arrow button to continue to the next major cycle of cleaning. Iterate through this process until the residual image returned looks like noise. You'll need several iterations of this process.

Once you're satisfied that you have cleaned all of the emission that needs cleaning, hit the red X to finish the process. The outputs of clean include several useful image cubes: the cleaned image (.image), the final mask created from all of your rounds of cleaning (.mask), the map of all of the clean components used in the model (.model), the beam (.psf), and the residuals remaining after all of your rounds of clean (.residual).

Another option: instead of starting your own mask from scratch, you could also use the provided mask as a starting place to do interactive cleaning. It is possible to "reuse" and change a mask anytime you create one. To use the provided mask, M100_combine_CO_provided.mask, as a starting place, use the following command with interactive=True.

os.system('rm -rf M100_combine_CO_cube*')
clean(vis=vis,imagename='M100_combine_CO_cube',
      imagermode='mosaic',ftmachine='mosaic',minpb=minpb,
      imsize=imsize,cell=cell,spw=spw,
      weighting='briggs',robust=robust,phasecenter=phasecenter,
      mode='velocity',width=width,start=start,nchan=nchan,
      restfreq=restfreq,outframe=outframe,veltype='radio',
      multiscale=scales,smallscalebias=smallscalebias,
      mask = 'M100_combine_CO_provided.mask',
      interactive = True,
      niter = 10000,threshold = str(thresh) +'Jy/beam')

Non-Interactive Cleaning

If you would instead prefer to use the provided per channel mask, M100_combine_CO_provided.mask, you can find it in your directory. In this case, the mask file is specified and the clean command uses interactive=False.

os.system('rm -rf M100_combine_CO_cube*')
clean(vis=vis,imagename='M100_combine_CO_cube',
      imagermode='mosaic',ftmachine='mosaic',minpb=minpb,
      imsize=imsize,cell=cell,spw=spw,
      weighting='briggs',robust=robust,phasecenter=phasecenter,
      mode='velocity',width=width,start=start,nchan=nchan,
      restfreq=restfreq,outframe=outframe,veltype='radio',
      multiscale=scales,smallscalebias=smallscalebias,
      mask = 'M100_combine_CO_provided.mask',
      interactive = False,
      niter = 10000,threshold = str(thresh) +'Jy/beam')

Image Analysis for the 7m+12m Data

Moment Maps for 7m+12m CO (1-0) Cube

Start by examining the final image cube. Determine the start and stopping channels for the line emission -- this will be used in the "chans" parameter of immoments.

# In CASA
viewer('M100_combine_CO_cube.image')

Next determine the rms noise per channel and use that to exclude pixels from the moment images. All images are shown in the gallery at the end of the following section.

# In CASA
myimage='M100_combine_CO_cube.image'
chanstat=imstat(imagename=myimage,chans='4')
rms1= chanstat['rms'][0]
chanstat=imstat(imagename=myimage,chans='66')
rms2= chanstat['rms'][0]
rms=0.5*(rms1+rms2)
print 'rms in a channel = '+str(rms)

Next make the moment maps. For the integrated intensity: moment 0, a 2 sigma cut often considerably improves the appearance of the image with little effect on the integrated intensity as long as emission free channels are excluded. For higher order moments it is necessary to exclude all low S/N data. Typically 5-6 sigma for the higher moments works well. We also apply further masking based on the .flux image because the edges of the combined mosaic are especially noisy because the 7m mosaic is somewhat larger than the 12m mosaic as described above (see Figures 1 & 2).

# In CASA
os.system('rm -rf M100_combine_CO_cube.image.mom0')
immoments(imagename = 'M100_combine_CO_cube.image',
         moments = [0],
         axis = 'spectral',chans = '9~61',
         mask='M100_combine_CO_cube.flux>0.3',
         includepix = [rms*2,100.],
         outfile = 'M100_combine_CO_cube.image.mom0')

os.system('rm -rf M100_combine_CO_cube.image.mom1')
immoments(imagename = 'M100_combine_CO_cube.image',
         moments = [1],
         axis = 'spectral',chans = '9~61',
         mask='M100_combine_CO_cube.flux>0.3',
         includepix = [rms*5.5,100.],
         outfile = 'M100_combine_CO_cube.image.mom1')

Now we can make some figures showing the moment maps:

# In CASA
os.system('rm -rf M100_combine_CO_cube.image.mom*.png')
imview (raster=[{'file': 'M100_combine_CO_cube.image.mom0',
                 'range': [-0.3,25.],'scaling': -1.3,'colorwedge': T}],
         zoom={'blc': [48,46],'trc': [488,569]},
         out='M100_combine_CO_cube.image.mom0.png')

imview (raster=[{'file': 'M100_combine_CO_cube.image.mom1',
                 'range': [1440,1695],'colorwedge': T}],
         zoom={'blc': [48,46],'trc': [488,569]}, 
         out='M100_combine_CO_cube.image.mom1.png')

If you plan to use your moment 0 image to make measurements, it needs to be primary beam corrected first. First we need to subimage the .flux cube to extract a single plane that can be used to primary beam correct the moment 0 image.

# In CASA
os.system('rm -rf M100_combine_CO_cube.flux.1ch')
imsubimage(imagename='M100_combine_CO_cube.flux',
           outfile='M100_combine_CO_cube.flux.1ch',
           chans='35')

Next, primary beam correct the moment 0 image. This is the version that would be used for measurements, though the uncorrected one can be useful for figures. The difference is clear in the images seen below in the following section.

# In CASA
os.system('rm -rf M100_combine_CO_cube.image.mom0.pbcor')
immath(imagename=['M100_combine_CO_cube.image.mom0', \
                       'M100_combine_CO_cube.flux.1ch'],
        expr='IM0/IM1',
        outfile='M100_combine_CO_cube.image.mom0.pbcor')

Have a look at the difference the primary beam correction makes.

# In CASA
imview (raster=[{'file': 'M100_combine_CO_cube.image.mom0',
                 'range': [-0.3,25.],'scaling': -1.3},
                {'file': 'M100_combine_CO_cube.image.mom0.pbcor',
                 'range': [-0.3,25.],'scaling': -1.3}],
         zoom={'blc': [48,46],'trc': [488,569]})

With the viewer open, you can flip back and forth between the images to compare them. Next, make a figure.

# In CASA
os.system('rm -rf M100_combine_CO_cube.image.mom0.pbcor.png')
imview (raster=[{'file': 'M100_combine_CO_cube.image.mom0.pbcor',
                 'range': [-0.3,25.],'scaling': -1.3,'colorwedge': T}],
         zoom={'blc': [48,46],'trc': [488,569]},
         out='M100_combine_CO_cube.image.mom0.pbcor.png')

Comparison with 7m, 12m Moment Maps

Below the moment maps from the 7m-only and the 12m-only data are shown for comparison. The moment maps were made using clean masks drawn by hand. Details on the creation of these images (masking, thresholding, and the number of iterations of clean) can be found within the 12m and 7m imaging scripts available with the downloaded package. The range and scaling for the 12m-only figures are the same as that used for the 7m+12m figures for ease of comparison.

As expected, the 7m+12m image shows considerably more extended emission than the 12m-only data and finer detail than the 7m-only data. For comparison, the 7m+12m synthesized beam is 3.82"x2.55", while the 12m-only beam is 3.46"x2.37" and the 7m-only beam is 12.72"x10.12".

Convert 7m+12m Images to Fits Format

# In CASA
os.system('rm -rf *.fits')
exportfits(imagename='M100_combine_CO_cube.image',fitsimage='M100_combine_CO_cube.image.fits')

exportfits(imagename='M100_combine_CO_cube.flux',fitsimage='M100_combine_CO_cube.flux.fits')

exportfits(imagename='M100_combine_CO_cube.image.mom0',fitsimage='M100_combine_CO_cube.image.mom0.fits')

exportfits(imagename='M100_combine_CO_cube.image.mom0.pbcor',fitsimage='M100_combine_CO_cube.image.mom0.pbcor.fits')

exportfits(imagename='M100_combine_CO_cube.image.mom1',fitsimage='M100_combine_CO_cube.image.mom1.fits')

Feathering the Total Power and 7m+12m Interferometric Images

In this section the interferometric (7m+12m) image produced above is combined with the Total Power (single dish) image. The "feather" algorithm is employed, in which the two images are combined in the spatial frequency domain, i.e., the low and high spatial frequency components are predominantly taken from the TP and interferometric images, respectively.

Prepare Images for Feathering

Regrid the TP image to match the shape of the 7m+12m image using the task imregrid. The TP image is resampled onto the same grid as that of the "template" 7m+12m image along the first two axes of the cube (i.e., RA and Dec; it is not necessary to regrid the velocity axis, since the axis is already common to the both images).

#In CASA
os.system('rm -rf M100_TP_CO_cube.regrid')
imregrid(imagename='M100_TP_CO_cube.bl.image',
         template='M100_combine_CO_cube.image',
         axes=[0, 1],
         output='M100_TP_CO_cube.regrid')

Now we trim the 7m+12m and (regridded) TP images, in order to exclude the regions masked by the clean task with minpb=0.2 and/or noisy edge regions in the TP image. The viewer task can be used to determine the trimming box. Here we use (x, y) = (48,46) and (488,569) [pixels] as the bottom-left and top-right corners, respectively, and set these values to the "box" parameter of the imsubimage task.

#In CASA
os.system('rm -rf M100_TP_CO_cube.regrid.subim')
imsubimage(imagename='M100_TP_CO_cube.regrid',
           outfile='M100_TP_CO_cube.regrid.subim',
           box='48,46,488,569')
os.system('rm -rf M100_combine_CO_cube.image.subim')
imsubimage(imagename='M100_combine_CO_cube.image',
           outfile='M100_combine_CO_cube.image.subim',
           box='48,46,488,569')

While the 7m+12m image (before the primary-beam correction) has non-uniform primary beam response (i.e., lower response in the outskirts of the mosaic field), the TP image does not have such non-uniformity. In order to feather the TP and 7m+12m images together, they should have the common response on the sky. Hence we need to multiply the TP image by the 7m+12m primary beam response before proceeding. To do this, create the subimage of the 7m+12m response,

#In CASA
os.system('rm -rf M100_combine_CO_cube.flux.subim')
imsubimage(imagename='M100_combine_CO_cube.flux',
           outfile='M100_combine_CO_cube.flux.subim',
           box='48,46,488,569')

then multiply it and the TP image using the task immath.

#In CASA
os.system('rm -rf M100_TP_CO_cube.regrid.subim.depb')
immath(imagename=['M100_TP_CO_cube.regrid.subim',
                  'M100_combine_CO_cube.flux.subim'],
       expr='IM0*IM1',
       outfile='M100_TP_CO_cube.regrid.subim.depb')

As a result, the feathered image will have the same response as that of the 7m+12m image. The primary-beam correction can be done after the feathering process (see below).

Feather TP Cube with 7m+12m Cube

Now we are ready to execute the feather task to combine the TP and 7m+12m images.

#In CASA
os.system('rm -rf M100_Feather_CO.image')
feather(imagename='M100_Feather_CO.image',
        highres='M100_combine_CO_cube.image.subim',
        lowres='M100_TP_CO_cube.regrid.subim.depb')

The task produces the combined image in the following way:

  • Convert the input images specified by the "highres" and "lowres" parameters onto the spatial frequency plane.
  • Combine them on the spatial frequency plane. The weighting is determined by the beam sizes/shapes of the input images.
  • Convert it back to the image plane.

Please refer to the online help and documents for the details.

Make Moment Maps of the Feathered Images

We will use the same technique as the 7m+12m image analysis above to make moment maps.

First (but optionally; this is solely for comparison to the feathered images and not needed to create the final feathered images), make moment maps for the (regridded) TP image.

#In CASA
myimage = 'M100_TP_CO_cube.regrid.subim'
chanstat = imstat(imagename=myimage,chans='4')
rms1 = chanstat['rms'][0]
chanstat = imstat(imagename=myimage,chans='66')
rms2 = chanstat['rms'][0]
rms = 0.5*(rms1+rms2)  
 
os.system('rm -rf M100_TP_CO_cube.regrid.subim.mom0')
immoments(imagename='M100_TP_CO_cube.regrid.subim',
         moments=[0],
         axis='spectral',
         chans='10~61',
         includepix=[rms*2., 50],
         outfile='M100_TP_CO_cube.regrid.subim.mom0')
 
os.system('rm -rf M100_TP_CO_cube.regrid.subim.mom1')
immoments(imagename='M100_TP_CO_cube.regrid.subim',
         moments=[1],
         axis='spectral',
         chans='10~61',
         includepix=[rms*5.5, 50],
         outfile='M100_TP_CO_cube.regrid.subim.mom1')

os.system('rm -rf M100_TP_CO_cube.regrid.subim.mom*.png')
imview(raster=[{'file': 'M100_TP_CO_cube.regrid.subim.mom0',
                'range': [0., 1080.],
                'scaling': -1.3,
                'colorwedge': T}],
       out='M100_TP_CO_cube.regrid.subim.mom0.png')
 
imview(raster=[{'file': 'M100_TP_CO_cube.regrid.subim.mom1',
                'range': [1440, 1695],
                'colorwedge': T}], 
       out='M100_TP_CO_cube.regrid.subim.mom1.png')

Then make moment maps for the feathered image.

#In CASA
myimage = 'M100_Feather_CO.image'
chanstat = imstat(imagename=myimage,chans='4')
rms1 = chanstat['rms'][0]
chanstat = imstat(imagename=myimage,chans='66')
rms2 = chanstat['rms'][0]
rms = 0.5*(rms1+rms2)  
 
os.system('rm -rf M100_Feather_CO.image.mom0')
immoments(imagename='M100_Feather_CO.image',
         moments=[0],
         axis='spectral',
         chans='10~61',
         includepix=[rms*2., 50],
         outfile='M100_Feather_CO.image.mom0')
 
os.system('rm -rf M100_Feather_CO.image.mom1')
immoments(imagename='M100_Feather_CO.image',
         moments=[1],
         axis='spectral',
         chans='10~61',
         includepix=[rms*5.5, 50],
         outfile='M100_Feather_CO.image.mom1')

os.system('rm -rf M100_Feather_CO.image.mom*.png')
imview(raster=[{'file': 'M100_Feather_CO.image.mom0',
                'range': [-0.3, 25.],
                'scaling': -1.3,
                'colorwedge': T}],
       out='M100_Feather_CO.image.mom0.png')
 
imview(raster=[{'file': 'M100_Feather_CO.image.mom1',
                'range': [1440, 1695],
                'colorwedge': T}], 
       out='M100_Feather_CO.image.mom1.png')

Correct the Primary Beam Response

Apply the primary beam response to the feathered image using the task immath,

#In CASA
os.system('rm -rf M100_Feather_CO.image.pbcor')
immath(imagename=['M100_Feather_CO.image',
                  'M100_combine_CO_cube.flux.subim'],
       expr='IM0/IM1',
       outfile='M100_Feather_CO.image.pbcor')

and also to the moment 0 image.

#In CASA
os.system('rm -rf M100_combine_CO_cube.flux.1ch.subim')
imsubimage(imagename='M100_combine_CO_cube.flux.subim',
           outfile='M100_combine_CO_cube.flux.1ch.subim',
           chans='35')

os.system('rm -rf M100_Feather_CO.image.mom0.pbcor')
immath(imagename=['M100_Feather_CO.image.mom0',
                  'M100_combine_CO_cube.flux.1ch.subim'],
        expr='IM0/IM1',
        outfile='M100_Feather_CO.image.mom0.pbcor')

Save the primary-beam corrected moment 0 image to a PNG file.

#In CASA
os.system('rm -rf M100_Feather_CO.image.mom0.pbcor.png')
imview(raster=[{'file': 'M100_Feather_CO.image.mom0.pbcor',
                'range': [-0.3, 25.],
                'scaling': -1.3,
                'colorwedge': T}],
       out='M100_Feather_CO.image.mom0.pbcor.png')

Compare the Various Images

Now we compare all the images:

You can see that more extended emission is recovered by adding the TP data to the interferometric data.

For quantitative comparison, we measure the total line fluxes of the various images. The task imstat can be used to do this. For example, for the subimage of the 7m+12m image,

#In CASA
imstat('M100_combine_CO_cube.image.subim')

yields the following:


{'blc': array([0, 0, 0, 0], dtype=int32),
 'blcf': '12:23:01.990, +15.46.39.692, I, 1.14733e+11Hz',
 'flux': array([ 1031.66933033]),
 'max': array([ 0.67689651]),
 'maxpos': array([195, 312,   0,  49], dtype=int32),
 'maxposf': '12:22:55.235, +15.49.15.700, I, 1.14639e+11Hz',
 'mean': array([ 0.00060066]),
 'medabsdevmed': array([ 0.00857783]),
 'median': array([-0.00013253]),
 'min': array([-0.0872678]),
 'minpos': array([273, 316,   0,  25], dtype=int32),
 'minposf': '12:22:52.533, +15.49.17.700, I, 1.14685e+11Hz',
 'npts': array([ 15434710.]),
 'q1': array([-0.00867673]),
 'q3': array([ 0.00847944]),
 'quartile': array([ 0.01715617]),
 'rms': array([ 0.01700558]),
 'sigma': array([ 0.01699497]),
 'sum': array([ 9270.95406483]),
 'sumsq': array([ 4463.55839316]),
 'trc': array([440, 523,   0,  69], dtype=int32),
 'trcf': '12:22:46.746, +15.51.01.192, I, 1.146e+11Hz'}

The 'flux' value in the result is the total integrated line flux in Jy km/s. Note that these values are the ones obtained using the provided mask file and interactive=False cleaning. If you adjusted the masking of the 12m+7m cleaning run, your results may vary here.

Similarly, the total line fluxes of the TP image (after multiplying the 7m+12m primary beam response), feathered image, and feathered image after the primary-beam correction are

#In CASA
imstat('M100_TP_CO_cube.regrid.subim.depb')['flux']
imstat('M100_Feather_CO.image')['flux']
imstat('M100_Feather_CO.image.pbcor')['flux']
array([ 2934.61181467])
array([ 2931.0992893])
array([ 3402.22025601])

We see the followings from these values:

  • The flux recovered by the 7m+12m observations is about a third of the total flux (998/2931).
  • The feathering process preserves the flux of the TP data.
  • The flux of the primary-beam corrected feathered image is consistent with the values from the literature (2972 +/- 319 Jy km/s from the BIMA SONG; Helfer et al. 2003).

Last checked on CASA Version 4.5.2