Pull request #1064: CAS-14713
Merge in CASA/casa6 from CAS-14713 to master
* commit '85a64657cf577e2f2e27f15d9e8dc1843ce1efcc':
remove the duplicated funtionality that exist in almatestutils
remove print statements for debugging
Modify the code based on code review
Remove some lines previously commented out
Clean up debug messages
Add missing import for casalog
fix check_list_vals to return False if at least one of the list index match fail. Add proper handling of per-Stokes plane multiple peak locaitons.
Per pol plane peak positions
Add a function to get a list of peak positions when the peak pix value is not unique and a test function to check against a list of possible positions.
Pull request #1060: CAS-14342
Merge in CASA/casa6 from CAS-14342 to master
* commit 'da072f6cba0d386485b1188c73e598cd335fc673':
redo this...foiled by SIImageStore smartness
fixed a place whereI missed widefield
fixed typo
Added widefield as a gridder for single field that can ignore blanking when pblimit is less than 0
fixed a typo that got in
Fix reviewer suggestion + some doc change
when pblimit is -ve for non A-term gridders the beam is set to 1.0 to allow for deconvolution of pesky sources without bothering about correctness of these sources
Pull request #1059: CAS-14520
Merge in CASA/casa6 from CAS-14520 to master
* commit '6d1b664f4857b653720cb2e3a5ff36128272277e':
removed "user" from a log line
added empty space between bracket and value printed
added logger message about fracbw used by bwtaper
disabling bwtaper test in parallel to allow this feature in
Changes in doc according to reviewer
forgot to push this one in
brought fracbw up to tclean and enable test for briggsbwtaper
Pull request #1055: CAS-14430
Merge in CASA/casa6 from CAS-14430 to master
* commit '0c4da0be7d119cd0bc22330490f7acbe3227f017':
[CAS-14430] remove comment that is now misleading
[CAS-14430] fix problem generating plot file WITHOUT showing the plot
remove line duplication (found in code review) [CAS-14430]
plotcomp: resurrect, update simulator use, clean up plot, patch back into predictcomp [CAS-14430]
fix errors signaled by the python interpreter [CAS-14430] like: ---------------------------------------------------------------------- casatasks/private/task_gencal.py:99: SyntaxWarning: "is not" with 'str' literal. Did you mean "!="? if infile is not 'None' and infile is not '': casatasks/private/task_gencal.py:99: SyntaxWarning: "is not" with 'str' literal. Did you mean "!="? if infile is not 'None' and infile is not '': casatasks/private/task_gencal.py:100: SyntaxWarning: "is not" with 'str' literal. Did you mean "!="? if antenna is not '' or pol is not '' or len(parameter) != 0: casatasks/private/task_gencal.py:100: SyntaxWarning: "is not" with 'str' literal. Did you mean "!="? if antenna is not '' or pol is not '' or len(parameter) != 0:
changes to resolve warnings about invalid escape sequences in strings [CAS-14430] like: ----------------------------------------------------------------------------------- casatasks/private/task_simalma.py:385: SyntaxWarning: invalid escape sequence '\d' q = re.compile('CYCLE\d?\d')