cubevis
Cubevis is a casangi package containing visualization tools for CASA images and image cubes. This package relies on the CASA data processing system as the processing backend while providing control and visualization using Bokeh. The casangi package provides the following functionality for use in CASA:
task / function |
description |
|---|---|
iclean |
Interactive Clean Task |
iclean.notebook |
Interactive Clean Notebook GUI |
iclean
- Interactive Clean
The iclean task is designed to use the same API parameters as tclean, with only a couple exceptions:
interactive : this parameter does not exist in iclean and interactive mode is always on
fullsummary : this parameter does not exist in iclean and fullsummary is always set to True when iclean makes calls to tclean and deconvolve
For all other API parameters please reference the tclean API.
For a detailed description of the interactive clean GUI please reference the Interactive Clean page.
iclean.notebook
- Interactive Clean Notebook
The iclean task can be used within a notebook. When it is used from a notebook, it can either display the GUI in
a separeate browser tab or it can display the GUI within the notebook. To display the GUI within a notebook, the
iclean.notebook function is used to create the GUI display of the iclean task. Once created, this GUI can be
displayed with the Bokeh show function, by using the show member function
of the GUI object or by having the created GUI be the last result of the cell.
The notebook member function accepts all of the same parameters as the iclean task itself, but instead
of executing the GUI, as the iclean tasks does, the notebook function just builds the GUI for
display and execution within a notebook.
For a detailed example of using the notebook functionality of iclean within a notebook, please reference
the Interactive Clean Notebook page. This page should execute correctly in a local classic Notebook or Jupyter
Lab Notebook. Colab usage may fail because support for Colab is being finalized.