next up previous contents
Next: Computation of antenna based Up: S.Bhatnagar: Thesis Previous: The xtract macro language   Contents

Subsections


Antenna/baseline naming convention

Antenna naming convention

An antenna can be specified by the index of the antenna or a regular expression. A full antenna name consists of three hyphen ('-') separated fields. The first field is the antenna name, the second is the side band name and the third is the polarization name. Each of the three fields can be a regular expression. All missing fields after the last specified field are replaced by "wild card" regular expressions.

E.g., a fully qualified name for C11, upper side band, 175-MHz polarization channel (nominally the LL polarization) can be expressed as:

C11-USB-175

All central square antennas, with upper side band and 130-MHz (nominally the RR polarization) polarization channel can be expressed as:

C.+-USB-130

(Here '.' matches one instance of any character and the '+' operator operates on '.' zero-or-more number of times. Hence ".+" is equivalent to the '*' wild card character. This is the POSIX regular expression syntax).

All central square antennas with upper sideband and either polarization channel can be expressed as:

C.+-USB-.+

or simply

C.+-USB

Finally, all central square antennas without any selection on the side band and polarization channel can be expressed as:

C.+-.+-.+

or simply

C.+

All above examples, but with only arm antennas can be expressed by replacing ``C.+'' in the above examples by ``[EWS].+".

Baseline naming convention

Baselines can be specified by the index of the baseline or a regular expression describing a baseline name.

A full baseline name is composed of two antenna names separated by a colon (':'). A fully qualified baseline name between the upper-side band, 175-MHz polarization signals from antennas C11 and C12 would be

C11-USB-175:C12-USB-175

Any of these fields can be regular expressions. Hence to choose all baselines with antenna C11 upper side-band signals from either of the polarization, one would use the baseline name as:

C11-USB-.+:.+

If only the first field of antenna name is given, the others are taken to be the wild card characters.

If second fully qualified antenna names is missing from the baseline name, it is also replaced by wild card.

These selections will exclude all self correlations. Also, if a baseline has already got selected in a previous selection, it will be excluded from all later selections.

To select the self correlations, one must add 'A' to be beginning of the antenna names. In such a case, the name of the second antenna is redundant and therefore not required.

Examples

  1. Baseline name to select all baselines with with C11 = C11

  2. Baseline name to select the self correlation of C11 = C11:C11 or AC11

  3. Baseline name select the self correlation of C11, 130-MHz polarization channel from both side bands = AC11-.+-130

  4. Baseline name to select all self correlations = A.

  5. Baseline name to select all lower side-band baselines with C11 = C11-USB-.+:. or C11-USB-.+.

  6. Baseline name to select all baselines in the database = .

  7. Baseline name to select all central square baselines with C02-USB-175 = C02-USB-175:C.+

  8. Baseline name to select all baselines of C02-USB-175 with only arm antennas = C02-USB-175:[EWS].+


next up previous contents
Next: Computation of antenna based Up: S.Bhatnagar: Thesis Previous: The xtract macro language   Contents
Sanjay Bhatnagar 2005-07-07