Getting Started Documentation Glish Learn More Programming Contact Us
Version 1.9 Build 1488
News FAQ
Search Home

Frequently Asked Questions About Using Synthesis

1.
Imager complains that the feed polarization type is unknown. I know what it is. How do I fix this?

The FEED subtable of the MeasurementSet was left empty by the filler. This means that the filler was not able to determine what the polarizations were (not an uncommon situation if the data were first processed in another system). To fix this for the MS sgra.ms, do the following at the Glish Command Line window.

         t=table{'sgra.ms/FEED", read_only=F);
         pt :=t.getcol(POLARIZATION_TYPE');
         for (i in 1:pt:shape[2]) {
               pt[1,i]:='R';
               pt[2,i]:='L';
         }
         t.putcol('POLARIZATION_TYPE',pt);
         t.close();

If you find that the response is slow, documents are out of date, or you receive an error message, it may help to have documentation served to you from a mirror site.

Please E-mail any comments or questions about AIPS++ to aips2-request@nrao.edu.

Copyright 1995, 1996, 1997, 1998, 1999, 2000 Associated Universities Inc., Washington, D.C.


next up previous