Source
1
-
<casaxml xsi:schemaLocation="http://casa.nrao.edu/schema/casa.xsd file:///opt/casa/code/xmlcasa/xml/casa.xsd" xmlns="http://casa.nrao.edu/schema/psetTypes.html" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2
-
3
-
<task type="function" name="nrobeamaverage" category="single dish">
4
-
<shortdescription>Average SD data over beams and do time averaging</shortdescription>
5
-
6
-
<description>
7
-
8
-
The task nrobeamaverage is for Nobeyama dataset of ON-ON observations.
9
-
It averages on-source spectra having specified beam IDs over specified
10
-
time bins.
11
-
12
-
</description>
13
-
14
-
<input>
15
-
16
-
<param type="path" name="infile" mustexist="true"><shortdescription>name of input SD dataset</shortdescription><description>name of input SD dataset</description>
17
-
18
-
<value/>
19
-
</param>
20
-
21
-
<param type="string" name="datacolumn" ignorecase="true"><shortdescription>name of data column to be used ["data", "float_data", or "corrected_data"]</shortdescription><description>name of data column to be used ["data", "float_data", or "corrected_data"]</description>
22
-
23
-
<value>float_data</value>
24
-
</param>
25
-
26
-
<param type="string" name="field"><shortdescription>select data by field IDs and names, e.g. "3C2*" (""=all)</shortdescription><description>select data by field IDs and names, e.g. "3C2*" (""=all)</description>
27
-
28
-
<value/>
29
-
</param>
30
-
31
-
<param type="string" name="spw"><shortdescription>select data by IF IDs (spectral windows), e.g. "3,5,7" (""=all)</shortdescription><description>select data by IF IDs (spectral windows), e.g. "3,5,7" (""=all)</description>
32
-
33
-
<value/>
34
-
</param>
35
-
36
-
<param type="string" name="timerange"><shortdescription>select data by time range, e.g. "09:14:0~09:54:0" (""=all) (see examples in help)</shortdescription><description>select data by time range, e.g. "09:14:0~09:54:0" (""=all) (see examples in help)</description>
37
-
38
-
<value/>
39
-
</param>
40
-
41
-
<param type="string" name="scan"><shortdescription>select data by scan numbers, e.g. "21~23" (""=all)</shortdescription><description>select data by scan numbers, e.g. "21~23" (""=all)</description>
42
-
43
-
<value/>
44
-
</param>
45
-
46
-
<param type="string" name="beam"><shortdescription>beam IDs to be averaged over, e.g. "1,3" (""=all)</shortdescription><description>beam IDs to be averaged over, e.g. "1,3" (""=all)</description>
47
-
48
-
<value/>
49
-
</param>
50
-
51
-
<param type="string" name="timebin"><shortdescription>bin width for time averaging.</shortdescription><description>bin width for time averaging.</description>
52
-
53
-
<value type="string">0s</value>
54
-
</param>
55
-
56
-
<param type="string" name="outfile"><shortdescription>name of output file</shortdescription><description>name of output file</description>
57
-
58
-
<value/>
59
-
</param>
60
-
</input>
61
-
62
-
<example>
63
-
-----------------
64
-
Keyword arguments
65
-
-----------------
66
-
infile -- name of input SD dataset
67
-
datacolumn -- name of data column to be used
68
-
options: 'data', 'float_data', or 'corrected_data'
69
-
default: 'float_data'
70
-
field -- select data by field IDs and names
71
-
default: '' (use all fields)
72
-
example: field='3C2*' (all names starting with 3C2)
73
-
field='0,4,5~7' (field IDs 0,4,5,6,7)
74
-
field='0,3C273' (field ID 0 or field named 3C273)
75
-
this selection is in addition to the other selections to data
76
-
spw -- select data by IF IDs (spectral windows)
77
-
default: '' (use all IFs)
78
-
example: spw='0~2,4'; spectral windows 0,1,2,4 (all channels)
79
-
spw='<2'; spectral windows less than 2 (i.e. 0,1)
80
-
this selection is in addition to the other selections to data
81
-
timerange -- select data by time range
82
-
default: '' (use all)
83
-
example: timerange = 'YYYY/MM/DD/hh:mm:ss~YYYY/MM/DD/hh:mm:ss'
84
-
Note: YYYY/MM/DD can be dropped as needed:
85
-
timerange='09:14:00~09:54:00' # this time range
86
-
timerange='09:44:00' # data within one integration of time
87
-
timerange='>10:24:00' # data after this time
88
-
timerange='09:44:00+00:13:00' #data 13 minutes after time
89
-
this selection is in addition to the other selections to data
90
-
scan -- select data by scan numbers
91
-
default: '' (use all scans)
92
-
example: scan='21~23' (scan IDs 21,22,23)
93
-
this selection is in addition to the other selections to data
94
-
beam -- beam IDs to be averaged over
95
-
default: '' (all beam IDs)
96
-
example: beam='1,3' (beam IDs 1 and 3)
97
-
NOTE: beam IDs of averaged spectra in the output file will
98
-
be the smallest one, e.g., in case of beam='1,3',
99
-
the averaged output spectra will have beam ID 1.
100
-
Note also that beam IDs should be stored in the
101
-
ANTENNA column of input MS.
102
-
timebin -- bin width for time averaging
103
-
default: '' (only beam IDs changed, no time averaging)
104
-
outfile -- name of output file
105
-
106
-
</example>
107
-
<returns>void</returns></task>
108
-
</casaxml>