Measurement Set Contents: Difference between revisions

From CASA Guides
Jump to navigationJump to search
Line 14: Line 14:


<source lang='bash'>
<source lang='bash'>
ls sdfasd
cd <directory_path>/day2_TDEM0003_10s_norx
ls
</source>
</source>
<pre>
ANTENNA          POLARIZATION    table.f10        table.f17_TSM1  table.f21        table.f26        table.f9
DATA_DESCRIPTION PROCESSOR        table.f11        table.f18        table.f22        table.f26_TSM1  table.info
FEED            SOURCE          table.f12        table.f18_TSM1  table.f23        table.f3        table.lock
FIELD            SPECTRAL_WINDOW  table.f13        table.f19        table.f23_TSM0  table.f4
FLAG_CMD        STATE            table.f14        table.f19_TSM1  table.f24        table.f5
HISTORY          WEATHER          table.f15        table.f2        table.f24_TSM1  table.f6
OBSERVATION      table.dat        table.f16        table.f20        table.f25        table.f7
POINTING        table.f1        table.f17        table.f20_TSM1  table.f25_TSM1  table.f8
</pre>
Note that the listings in all-caps are also directories, in which more table.* files live. 
The table.* files in the root MS directory are part of the "MAIN" table, and hold the data, along with identifying characteristics.  The subdirectories are additional tables which contain metadata, referenced to columns within the MAIN table.


== Inspecting MS contents in CASA ==
== Inspecting MS contents in CASA ==

Revision as of 13:42, 5 April 2012


Overview

In order to fully understand your data and the way CASA operates on it, it's helpful to have a full picture of the way the data are stored, and what a "measurement set" really is. This CASA Guide describes the measurement set (MS) structure, and demonstrates some ways in which you can explore the information stored within an MS. This is particularly useful when exploring the lower-level CASA Toolkit functions, but is also good information to keep in mind when performing basic analysis.

Throughout this Guide, we will be using the same data as the EVLA 6cmWideband Tutorial SN2010FZ. You can use this as well if you would like identical result to what is presented here: the MS can be directly downloaded from http://casa.nrao.edu/Data/EVLA/SN2010FZ/SN2010FZ_10s.ms.tar.gz (dataset size: 2.9 GB).

Alternatively, you can get the data straight from the EVLA archive. Go to the NRAO Science Data Archive, and search for project AS1015. Then select the AS1015_sb1658169_1.55388.89474846065 dataset and choose to apply the online flags (check box "Apply flags generated during observing"); also, time-average to 10 seconds to reduce the MS size. Finally, be sure to select the tar option.

The measurement set directory structure and contents

A measurement set is actually a directory; the data and metadata are stored in tables and subdirectories within this directory. To see these components, open a terminal window, go into the MS directory, and type ls:

cd <directory_path>/day2_TDEM0003_10s_norx
ls
ANTENNA          POLARIZATION     table.f10        table.f17_TSM1   table.f21        table.f26        table.f9
DATA_DESCRIPTION PROCESSOR        table.f11        table.f18        table.f22        table.f26_TSM1   table.info
FEED             SOURCE           table.f12        table.f18_TSM1   table.f23        table.f3         table.lock
FIELD            SPECTRAL_WINDOW  table.f13        table.f19        table.f23_TSM0   table.f4
FLAG_CMD         STATE            table.f14        table.f19_TSM1   table.f24        table.f5
HISTORY          WEATHER          table.f15        table.f2         table.f24_TSM1   table.f6
OBSERVATION      table.dat        table.f16        table.f20        table.f25        table.f7
POINTING         table.f1         table.f17        table.f20_TSM1   table.f25_TSM1   table.f8

Note that the listings in all-caps are also directories, in which more table.* files live.

The table.* files in the root MS directory are part of the "MAIN" table, and hold the data, along with identifying characteristics. The subdirectories are additional tables which contain metadata, referenced to columns within the MAIN table.

Inspecting MS contents in CASA

listobs, browsetable, etc.

Advanced information about MS structure