GjincBeam: Difference between revisions
From CASA Guides
Jump to navigationJump to search
Created page with "'''Return to Analysis Utilities''' This page documents the gjincBeam function of the Python module analysisUtils. This function calls the gjinc cl..." |
No edit summary |
||
Line 5: | Line 5: | ||
This function calls the gjinc class to compute the effective restoring beam obtained from the casa command sd_imaging when using the GJINC gridding kernel assuming the GJINC specific parameters are left at their default values. It returns the value in arc seconds. | This function calls the gjinc class to compute the effective restoring beam obtained from the casa command sd_imaging when using the GJINC gridding kernel assuming the GJINC specific parameters are left at their default values. It returns the value in arc seconds. | ||
==Usage== | |||
au.gjincBeam(frequency, pixelsize=10, diameter=12.0, samplingFactor=2.5) | |||
frequency: floating point number in GHz (no units) | frequency: floating point number in GHz (no units) | ||
pixelsize: floating point number in arcseconds (no units) | pixelsize: floating point number in arcseconds (no units) | ||
Line 10: | Line 13: | ||
samplingFactor: the number of sampled points per telescope FWHM | samplingFactor: the number of sampled points per telescope FWHM | ||
==Example== | |||
<source lang="python"> | <source lang="python"> | ||
# In CASA | # In CASA | ||
import analysisUtils as au | import analysisUtils as au | ||
au.gjincBeam(115 | au.gjincBeam(115.27) | ||
</source> | </source> |
Revision as of 18:39, 27 June 2013
Return to Analysis Utilities
This page documents the gjincBeam function of the Python module analysisUtils.
This function calls the gjinc class to compute the effective restoring beam obtained from the casa command sd_imaging when using the GJINC gridding kernel assuming the GJINC specific parameters are left at their default values. It returns the value in arc seconds.
Usage
au.gjincBeam(frequency, pixelsize=10, diameter=12.0, samplingFactor=2.5)
frequency: floating point number in GHz (no units) pixelsize: floating point number in arcseconds (no units) diameter: the diameter of the single dish antenna in meters (no units) samplingFactor: the number of sampled points per telescope FWHM
Example
# In CASA
import analysisUtils as au
au.gjincBeam(115.27)