Data flagging with plotms: Difference between revisions

From CASA Guides
Jump to navigationJump to search
No edit summary
Line 3: Line 3:
== Loading the Measurement Set into [[casaplotms|Casaplotms]] ==
== Loading the Measurement Set into [[casaplotms|Casaplotms]] ==


As described in the [[Imaging Flanking Fields]] tutorial, the data may be loaded into CASA using the [[importvla]] command. The following commands import the data into the measurement set ''au079.ms'' and send them to the [[viewer]].
As described in the [[Imaging Flanking Fields]] tutorial, the data may be loaded into CASA using the [[importvla]] command. The following commands import the data into the measurement set ''au079.ms'' and exit CASA to the command line.


<source lang="python">
<source lang="python">
Line 13: Line 13:


importvla(archivefiles=fileList,vis='au079.ms')
importvla(archivefiles=fileList,vis='au079.ms')
exit()
</source>
</source>


The [[viewer]] command can also be invoked without argument, in which case a file selector GUI will appear.
The [[viewer]] command can also be invoked without argument, in which case a file selector GUI will appear.

Revision as of 10:34, 1 December 2009

Casaplotms is (currently) a standalone tool to inspect and edit measurement sets. This tutorial demonstrates how to use casaplotms to edit a multisource continuum data set: VLA program AU079, which consists of L-band (20 cm) continuum observations of galaxies and calibrator sources. It is the same data set used in the Imaging Flanking Fields tutorial, as well as the Data flagging with viewer tutorial.

Loading the Measurement Set into Casaplotms

As described in the Imaging Flanking Fields tutorial, the data may be loaded into CASA using the importvla command. The following commands import the data into the measurement set au079.ms and exit CASA to the command line.

# from loaddata.py
from glob import glob

# Define the list of files for reading. Use glob to perform wildcard matching with VLA archive filenames.
fileList = glob('AU079_*.xp?')

importvla(archivefiles=fileList,vis='au079.ms')
exit()

The viewer command can also be invoked without argument, in which case a file selector GUI will appear.