Analysis Utilities: Difference between revisions

From CASA Guides
Jump to navigationJump to search
 
(27 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category:CASA]] [[Category:ALMA]] [[Category:EVLA]]
[[Category:CASA]] [[Category:ALMA]] [[Category:EVLA]]
Analysis Utilities (or analysisUtils for short) is a small set of Python source code files that provide a number of analysis and plotting utilities. The primary file is analysisUtils.py (85000 lines).  The utilities were developed for ALMA commissioning and data reduction and are, in many cases, also useful for EVLA data reduction.  This CASA Guide documents some of the most useful functions contained in the analysisUtils Python module from a user's perspective, but most of the functions have fairly complete inline help.  
{{checked_6.5.4}}


=Getting Started=
== Introduction ==


'''If you are working on a machine at NRAO Charlottesville, Socorro, or Santiago, then you can skip Step 1, because the latest modules are already available at: /users/thunter/AIV/science/analysis_scripts. '''
Analysis Utilities (or analysisUtils for short) is a small set of Python source code files that provide a number of analysis and plotting utilities.  The primary file is analysisUtils.py (108000 lines as of March 2021).  The utilities were developed (and continue to be developed) for ALMA commissioning and data reduction and are, in many cases, also useful for EVLA data reduction.  This CASA Guide documents some of the most useful functions contained in the analysisUtils Python module from a user's perspective, but most of the functions have fairly complete inline help.  


'''Step 1:''' Download Analysis Utilities from [ftp://ftp.cv.nrao.edu/pub/casaguides/analysis_scripts.tar here] and extract the tar ball.  From a Unix command line this can be done with
== Getting Started ==
 
'''If you are working on a machine at NRAO Charlottesville, then you can skip Step 1, because the latest modules are already available at: /users/thunter/AIV/science/analysis_scripts. '''
 
'''Step 1:''' Download Analysis Utilities  
There are two options:
 
a) [ftp://ftp.cv.nrao.edu/pub/casaguides/analysis_scripts.tar NRAO ftp server].  (If your browser does not want to open an ftp link, then try right click to save the link and select the application to use to be wget.)
 
b) [https://zenodo.org/record/7502160 zenodo] (this provides a citeable DOI: 10.5281/zenodo.7502160, on ADS see [https://ui.adsabs.harvard.edu/abs/2023zndo...7502160H/abstract 2023zndo...7502160H])
 
Once downloaded, then extract the tar ball.  From a Unix command line this can be done with


<source lang="bash">
<source lang="bash">
$ tar xvf analysis_scripts.tar
# In bash
tar xvf analysis_scripts.tar
</source>
</source>


Line 18: Line 30:


<source lang="Python">
<source lang="Python">
# In startup.py
import sys
import sys
sys.path.append("/PATH_TO_ANALYSIS_SCRIPTS/")
sys.path.append("/PATH_TO_ANALYSIS_SCRIPTS/")
Line 25: Line 38:
where <tt>/PATH_TO_ANALYSIS_SCRIPTS/</tt> is the path to the directory you just extracted from the tar ball.  An example can be downloaded and edited here: [[File:Init.py]].  When this is done, start casapy and you will have access to all the functions contained in the analysisUtils module.
where <tt>/PATH_TO_ANALYSIS_SCRIPTS/</tt> is the path to the directory you just extracted from the tar ball.  An example can be downloaded and edited here: [[File:Init.py]].  When this is done, start casapy and you will have access to all the functions contained in the analysisUtils module.


=Support=
== Support ==


Once installed, functions can be searched for by name via minimum match string with the au.help function (where comma denotes a logical AND): e.g. au.help('antenna') or au.help('spw,caltable').  As in python, inline help for an individual function is accessed by typing 'help au.planet'.  For further help with analysisUtils installation or usage, you may submit a helpdesk ticket to the Data Reduction category at https://help.almascience.org/.  Be advised that analysisUtils is a commissioning tool, so the level of support available is not as extensive as for CASA, but we do welcome feedback.  If your question is with regard to [[plotbandpass]], then please provide the version number of this program (it is printed to the screen at execution time and on the plots).  In all cases, please provide the release date of your analysisUtils, which can be viewed from inside casapy as follows:
Once installed, functions can be searched for by name via minimum match string with the au.help function (where comma denotes a logical AND): e.g. au.help('antenna') or au.help('spw,caltable').  As in python, inline help for an individual function is accessed by typing 'help au.planet'.  For further help with analysisUtils installation or usage, you may submit a helpdesk ticket to the Data Reduction category at https://help.almascience.org/.  Be advised that analysisUtils is a commissioning tool, so the level of support available is not as extensive as for CASA, but we do welcome feedback.  If your question is with regard to [[plotbandpass]], then please provide the version number of this program (it is printed to the screen at execution time and on the plots).  In all cases, please provide the release date of your analysisUtils, which can be viewed from inside casapy as follows:
<source lang="Python">
<source lang="Python">
# In CASA
au.version()
au.version()
</source>
</source>


=Key Function=
== Script Generators ==
<!--
The documentation for the two script generators almaqa2csg.py and almaqa2isg.py, as well as how to provide feedback or get support for their usage, can be found at this link:<br> https://confluence.alma.cl/display/EAPR/ALMA+Data+Analysis+Utilities
-->
<!--
https://confluence.alma.cl/display/MDR/QA2+calibration+script+generator
https://confluence.alma.cl/display/MDR/QA2+imaging+script+generator
-->
 
The analysis package includes an ALMA QA2 Calibration Script Generator (CSG) and Imaging Script Generator (ISG). Based on the properties of the data set, the generator scripts create calibration and imaging scripts tailored to the needs of the particular case. The result is a nearly complete script draft which may work as is but should be inspected to make sure all steps are correct. To view the parameter descriptions for each, use the "help" function. After the script is generated and reviewed, it may be executed in steps by advancing the ''mysteps'' index. Several steps may be listed together such as ''mysteps=[0,1,2]''.
 
<source lang="Python">
# In CASA
import almaqa2csg as csg
help csg.generateReducScript
csg.generateReducScript('<my_EB>', parameters...) # input raw data
 
mysteps = [0]
execfile('scriptForCalibration.py')
</source>
 
<source lang="Python">
# In CASA
import almaqa2isg as isg
help isg.generateImagingScript
isg.generateImagingScript('<my_MS>', parameters...) # input calibrated MS


; [[plotbandpass]]  
mysteps = [0]
:  a faster version of plotcal for bandpass tables, with useful overlay capabilities.  This function has been incorporated into CASA as a task.
execfile('scriptForImaging.py')
</source>


=Some Examples of Other Functions=
== Some Examples of Functions ==
<b>Up-to-date, online help is available for all of these functions (and more) at the CASA prompt by simply using the command: help(au.functionName).</b>  To search for functions, you can type au.help('phrase'), where phrase is case-insensitive and minimum-match. Multiple phrases can be combined with a comma, for example au.help('baseline,stats').
<b>Up-to-date, online help is available for all of these functions (and more) at the CASA prompt by simply using the command: help(au.functionName).</b>  To search for functions, you can type au.help('phrase'), where phrase is case-insensitive and minimum-match. Multiple phrases can be combined with a comma, for example au.help('baseline,stats').
; [[angularSeparationOfFields]]
; [[angularSeparationOfFields]]
:  reads an ms and computes the angular separation of all fields, or a subset
:  reads an ms and computes the angular separation of all fields, or a subset
; [[buildConfigurationFile]]
; [[buildConfigurationFile]]
:  reads the list of antenna stations in an .ms and creates a .cfg file suitable for [http://casa.nrao.edu/docs/taskref/simobserve-task.html simobserve]
:  reads the list of antenna stations in an .ms and creates a .cfg file suitable for {{simobserve_6.5.4}}
; [[editIntents]]
; [[editIntents]]
:  change the intents for a specified field in an ms (based on John Lightfoot's pipeline script)
:  change the intents for a specified field in an ms (based on John Lightfoot's pipeline script)
Line 50: Line 91:
:  returns a bunch of statistics on the baseline lengths in your ms
:  returns a bunch of statistics on the baseline lengths in your ms
; [[gjincBeam]]
; [[gjincBeam]]
:  compute the effective restoring beam obtained from the casa command {{sdimaging}} when using the GJINC gridding kernel
:  compute the effective restoring beam obtained from the casa command {{sdimaging_6.5.4}} when using the GJINC gridding kernel
; [[lstrange]]
; [[lstrange]]
:  lists the range of LST, UT, MJD for the whole ms, and for scans with OBSERVE_TARGET intent (including the elevation range)
:  lists the range of LST, UT, MJD for the whole ms, and for scans with OBSERVE_TARGET intent (including the elevation range)
Line 61: Line 102:
; [[planetPlots]]
; [[planetPlots]]
:  generates a plots of uv amplitude vs. uv distance for a grid of ALMA configurations and observing frequencies
:  generates a plots of uv amplitude vs. uv distance for a grid of ALMA configurations and observing frequencies
; [[plotbandpass]]
:  a faster version of plotcal for bandpass tables, with useful overlay capabilities.  This function has been incorporated into CASA as task {{plotbandpass_6.5.4}}.
; [[plotSunDuringTrack]]
; [[plotSunDuringTrack]]
:  generates a plot of the Sun's az vs. el during an ms or ASDM
:  generates a plot of the Sun's az vs. el during an ms or ASDM
Line 74: Line 117:
:  plot the WVR solutions in terms of baseline-based phase corrections
:  plot the WVR solutions in terms of baseline-based phase corrections
; [[spectralindex]]
; [[spectralindex]]
:  performs a least-squares fit to the multi-spw output from {{fluxscale}}
:  performs a least-squares fit to the multi-spw output from {{fluxscale_6.5.4}}
; [[timeOnSource]]
; [[timeOnSource]]
:  compute the total time spent integrating on-source for each specified field
:  compute the total time spent integrating on-source for each specified field


Documentation of additional 900+ functions can be found at [https://safe.nrao.edu/wiki/bin/view/Main/CasaExtensions Todd's wikipage]
<b>A list of additional 1200+ functions, and their brief descriptions, can be found at [https://safe.nrao.edu/wiki/bin/view/Main/CasaExtensions Todd's wikipage]</b>

Latest revision as of 15:48, 17 April 2024

Last checked on CASA Version 6.5.4

Introduction

Analysis Utilities (or analysisUtils for short) is a small set of Python source code files that provide a number of analysis and plotting utilities. The primary file is analysisUtils.py (108000 lines as of March 2021). The utilities were developed (and continue to be developed) for ALMA commissioning and data reduction and are, in many cases, also useful for EVLA data reduction. This CASA Guide documents some of the most useful functions contained in the analysisUtils Python module from a user's perspective, but most of the functions have fairly complete inline help.

Getting Started

If you are working on a machine at NRAO Charlottesville, then you can skip Step 1, because the latest modules are already available at: /users/thunter/AIV/science/analysis_scripts.

Step 1: Download Analysis Utilities There are two options:

a) NRAO ftp server. (If your browser does not want to open an ftp link, then try right click to save the link and select the application to use to be wget.)

b) zenodo (this provides a citeable DOI: 10.5281/zenodo.7502160, on ADS see 2023zndo...7502160H)

Once downloaded, then extract the tar ball. From a Unix command line this can be done with

# In bash
tar xvf analysis_scripts.tar

Seven files will be extracted -- a README file, and six python scripts. The README file contains the time and date that the tar ball was generated, which can be useful for reporting bugs. The history file available at the ftp site contains a list of major changes in each version.

Step 2: Edit your existing casa initialization file (in CASA5: $HOME/.casa/init.py, or in CASA6: $HOME$/.casa/startup.py) or create a new file if it does not already exist, and add the following

# In startup.py
import sys
sys.path.append("/PATH_TO_ANALYSIS_SCRIPTS/")
import analysisUtils as au

where /PATH_TO_ANALYSIS_SCRIPTS/ is the path to the directory you just extracted from the tar ball. An example can be downloaded and edited here: File:Init.py. When this is done, start casapy and you will have access to all the functions contained in the analysisUtils module.

Support

Once installed, functions can be searched for by name via minimum match string with the au.help function (where comma denotes a logical AND): e.g. au.help('antenna') or au.help('spw,caltable'). As in python, inline help for an individual function is accessed by typing 'help au.planet'. For further help with analysisUtils installation or usage, you may submit a helpdesk ticket to the Data Reduction category at https://help.almascience.org/. Be advised that analysisUtils is a commissioning tool, so the level of support available is not as extensive as for CASA, but we do welcome feedback. If your question is with regard to plotbandpass, then please provide the version number of this program (it is printed to the screen at execution time and on the plots). In all cases, please provide the release date of your analysisUtils, which can be viewed from inside casapy as follows:

# In CASA
au.version()

Script Generators

The analysis package includes an ALMA QA2 Calibration Script Generator (CSG) and Imaging Script Generator (ISG). Based on the properties of the data set, the generator scripts create calibration and imaging scripts tailored to the needs of the particular case. The result is a nearly complete script draft which may work as is but should be inspected to make sure all steps are correct. To view the parameter descriptions for each, use the "help" function. After the script is generated and reviewed, it may be executed in steps by advancing the mysteps index. Several steps may be listed together such as mysteps=[0,1,2].

# In CASA
import almaqa2csg as csg
help csg.generateReducScript
csg.generateReducScript('<my_EB>', parameters...) # input raw data

mysteps = [0]
execfile('scriptForCalibration.py')
# In CASA
import almaqa2isg as isg
help isg.generateImagingScript
isg.generateImagingScript('<my_MS>', parameters...) # input calibrated MS

mysteps = [0]
execfile('scriptForImaging.py')

Some Examples of Functions

Up-to-date, online help is available for all of these functions (and more) at the CASA prompt by simply using the command: help(au.functionName). To search for functions, you can type au.help('phrase'), where phrase is case-insensitive and minimum-match. Multiple phrases can be combined with a comma, for example au.help('baseline,stats').

angularSeparationOfFields
reads an ms and computes the angular separation of all fields, or a subset
buildConfigurationFile
reads the list of antenna stations in an .ms and creates a .cfg file suitable for simobserve
editIntents
change the intents for a specified field in an ms (based on John Lightfoot's pipeline script)
getBaselineLengths
returns a dictionary of the baseline lengths in your ms, by default sorted by length
getBaselineStats
returns a bunch of statistics on the baseline lengths in your ms
gjincBeam
compute the effective restoring beam obtained from the casa command sdimaging when using the GJINC gridding kernel
lstrange
lists the range of LST, UT, MJD for the whole ms, and for scans with OBSERVE_TARGET intent (including the elevation range)
obslist
prints the antenna station coordinates in local offsets from the Center of Array, and computes longest/shortest baselines
planet
contacts the JPL Horizons telnet service and returns the J2000 position, velocity, angular diameter, range and range rate of a solar system object
planetFlux
calls Bryan Butler's solar_system_setjy module in CASA to compute flux density vs. time or flux density vs. frequency
planetPlots
generates a plots of uv amplitude vs. uv distance for a grid of ALMA configurations and observing frequencies
plotbandpass
a faster version of plotcal for bandpass tables, with useful overlay capabilities. This function has been incorporated into CASA as task plotbandpass.
plotSunDuringTrack
generates a plot of the Sun's az vs. el during an ms or ASDM
plotconfig
plot any standard telescope configuration of observatories known to casa, and return an array of the sorted baseline lengths
plotmosaic
shows relative location of pointings in an .ms
plotPWV
reads the PWV from each antenna's WVR from the ASDM_CALWVR table in an ms, and creates a plot vs. time
plotweather
plot weather conditions vs. time for your ms
plotWVRSolutions
plot the WVR solutions in terms of baseline-based phase corrections
spectralindex
performs a least-squares fit to the multi-spw output from fluxscale
timeOnSource
compute the total time spent integrating on-source for each specified field

A list of additional 1200+ functions, and their brief descriptions, can be found at Todd's wikipage