| Getting Started | Documentation | Glish | Learn More | Programming | Contact Us |
| Version 1.9 Build 803 |
|
Visibility data in AIPS++ are stored in an AIPS++ table known as a MeasurementSet (MS). An MS consists of a main table containing the visibility data and associated sub-tables containing auxiliary or secondary information. The full MS data format is described in AIPS++ Note 229. Tables 1 & 2 identify the commonly accessed components of the MAIN table and list data selection parameters used during typical data reduction sessions.
All AIPS++ data files, including MeasurementSets, are written into the current working directory by default, with each AIPS++ Table represented as a separate sub-directory. MS names therefore need only comply with UNIX file or directory naming conventions, and can be referred to from within AIPS++ directly, or via full pathnames.
Each row of the DATA column in the MS contains a matrix of observed complex visibilities at a single time stamp, for a single baseline in a single spectral window. The shape of the data matrix is given by the number of channels and the number of correlations (voltage-products) formed by the backend instrument of the telescope (e.g. a correlator for an array, or a spectrometer for a single dish).
| Name | Format
|
Comments |
| DATA | Complex(Nc, Nf) | Complex visibility matrix |
| Observed DATA for synthesis arrays | ||
| WEIGHT | Float(Nc) | Weight for whole data matrix |
| FLAG | Bool(Nc, Nf) | Cumulative data flags |
| CORRECTED_DATA | Complex(Nc, Nf) | Corrected data created by calibrater or imager tools |
| MODEL_DATA
|
Complex(Nc, Nf) | Model data created by calibrater or imager tools |
| IMAGING_WEIGHT | Float(Nc) | Imaging weight, e.g. uniform, natural, robust |
| Created by calibrater or imager tools |
Additional data attributes are described in AIPS++
Note 229
![]()
Nc= number of correlators,
Nf= number of frequency channels.
![]()
![]()
The MODEL_DATA column is created
with initial values: amplitude = 1 & phase = 0o.
| Parameter | Contents |
| ANTENNA1 | First antenna in baseline |
| ANTENNA2 | Second antenna in baseline |
| FIELD_ID | Field (source no.) identification |
| SPECTRAL_WINDOW_ID | Spectral window number (IF no.) |
| ARRAY_ID | Subarray number |
| OBSERVATION_ID | Observation identification |
| POLARIZATION_ID | Polarization identification |
| SCAN_NUMBER | Scan number |
| TIME | Integration midpoint time |
| UVW | UVW coordinates |
Selection of data from an MS currently appears in different
guises in the various synthesis tools due to independent development
of these tools. An effort to reconcile these differences is underway.