CASA EVLA Scripts: Difference between revisions

From CASA Guides
Jump to navigationJump to search
No edit summary
No edit summary
Line 7: Line 7:
== Overview ==
== Overview ==


This is a collection of Python scripts to help process and analyze EVLA data.  Although they are not officially supported, some authors may choose to provide contact information.  A brief description on how to run each script is provided by the author.  If you would like to contribute, and do not have access to the CASA Guides WIKI, you may email Miriam Krauss (mkrauss at nrao.edu).
This is a collection of Python scripts to help process and analyze EVLA data.  Although they are not officially supported, some authors may choose to provide contact information.  A brief description on how to run each script is provided by the author.  If you would like to contribute, and do not have access to the CASA Guides Wiki, you may email Miriam Krauss (mkrauss at nrao.edu).


== Plotting the weather table, obtaining observation-specific opacity information ==
== Plotting the weather table, obtaining observation-specific opacity information ==
Download script: [[File:Script_plotWX.py]]
This script will plot weather table information in the MS (see example below) as well as return a list of estimated zenith opacity values for each spectral window.
<source lang="python">
# In CASA
from script_plotWX import *
myTau = plotwx('myVis.ms')
</source>
[[Image:PlotWX.png|200px|thumb|right|plotWX weather table figure]]


== Importing, plotting, and applying online flags ==
== Importing, plotting, and applying online flags ==


Download script: [[File:readflags.py]]
Download script: [[File:Readflags.py]]

Revision as of 21:42, 1 January 2011


Temporary edit link

edit me in CASA Guides

Overview

This is a collection of Python scripts to help process and analyze EVLA data. Although they are not officially supported, some authors may choose to provide contact information. A brief description on how to run each script is provided by the author. If you would like to contribute, and do not have access to the CASA Guides Wiki, you may email Miriam Krauss (mkrauss at nrao.edu).

Plotting the weather table, obtaining observation-specific opacity information

Download script: File:Script plotWX.py

This script will plot weather table information in the MS (see example below) as well as return a list of estimated zenith opacity values for each spectral window.

# In CASA
from script_plotWX import *
myTau = plotwx('myVis.ms')
plotWX weather table figure

Importing, plotting, and applying online flags

Download script: File:Readflags.py