CASA Error Messages: Difference between revisions
From CASA Guides
Jump to navigationJump to search
No edit summary |
No edit summary |
||
(8 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== CASA Error Messages and what they mean == | == CASA Error Messages and what they mean == | ||
<pre style="background-color: # | <pre style="background-color: #FFFF00;"> | ||
WARN listobs::utils::verify Argument vis failed to verify. | WARN listobs::utils::verify Argument vis failed to verify. | ||
WARN listobs::utils::verify Some arguments failed to verify! | WARN listobs::utils::verify Some arguments failed to verify! | ||
</pre> | </pre> | ||
''' | '''Tasks where it may appear:''' any | ||
<pre style="background-color: # | '''Explanation:''' The input file for the <tt>vis</tt> parameter is either misspelled or the file does not exist in the current directory | ||
'''Solution:''' Correct the filename spelling | |||
<pre style="background-color: #FF0000;"> | |||
SEVERE Calibrater::solve Caught exception: ArrayBase::validateConformance shape [2] differs from [1] | SEVERE Calibrater::solve Caught exception: ArrayBase::validateConformance shape [2] differs from [1] | ||
SEVERE Exception Reported: Error in Calibrater::solve. | SEVERE Exception Reported: Error in Calibrater::solve. | ||
Line 14: | Line 19: | ||
</pre> | </pre> | ||
'''Explanation:''' | '''Tasks where it may appear:''' anywhere | ||
'''Explanation:''' In the C++ code, a mathematical operation of two arrays is falling over because one has a different shape (e.g. number of dimensions) than the other. | |||
'''Solution:''' ??? | |||
<pre style="background-color: #FF0000;"> | |||
SyntaxError: non-keyword arg after keyword arg (<ipython console>, line 1) | |||
</pre> | |||
'''Tasks where it may appear:''' any | |||
'''Explanation:''' A comma is in an argument of a parameter. Python then interprets that as a new parameter, since the comma is the separation between the parameter inputs. | |||
'''Solution:''' Add quotes around the argument that contains the comma. | |||
<pre style="background-color: #FF0000;"> | |||
SEVERE ImageRegion::fromRecord | |||
SEVERE image::moments Exception Reported: 2012-03-01 04:29:04 SEVERE ImageRegion::fromRecord | |||
SEVERE ImageRegion::fromRecord | |||
SEVERE ImageRegion::fromRecord | |||
</pre> | |||
'''Tasks where it may appear:''' immoments | |||
'''Explanation:''' ?? | |||
'''Solution:''' ?? |
Latest revision as of 17:07, 1 March 2012
CASA Error Messages and what they mean
WARN listobs::utils::verify Argument vis failed to verify. WARN listobs::utils::verify Some arguments failed to verify!
Tasks where it may appear: any
Explanation: The input file for the vis parameter is either misspelled or the file does not exist in the current directory
Solution: Correct the filename spelling
SEVERE Calibrater::solve Caught exception: ArrayBase::validateConformance shape [2] differs from [1] SEVERE Exception Reported: Error in Calibrater::solve. SEVERE uvcontsub::::casa Error in uvcontsub: Error in Calibrater::solve.
Tasks where it may appear: anywhere
Explanation: In the C++ code, a mathematical operation of two arrays is falling over because one has a different shape (e.g. number of dimensions) than the other.
Solution: ???
SyntaxError: non-keyword arg after keyword arg (<ipython console>, line 1)
Tasks where it may appear: any
Explanation: A comma is in an argument of a parameter. Python then interprets that as a new parameter, since the comma is the separation between the parameter inputs.
Solution: Add quotes around the argument that contains the comma.
SEVERE ImageRegion::fromRecord SEVERE image::moments Exception Reported: 2012-03-01 04:29:04 SEVERE ImageRegion::fromRecord SEVERE ImageRegion::fromRecord SEVERE ImageRegion::fromRecord
Tasks where it may appear: immoments
Explanation: ??
Solution: ??