File: programs_scripting.rst

package info (click to toggle)
aoflagger 3.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 4,476 kB
  • sloc: cpp: 51,868; python: 152; sh: 25; makefile: 17
file content (74 lines) | stat: -rw-r--r-- 4,460 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
Scripted plotting
=================

Storing plots that describe the (RFI) quality of an observation can be useful for quality assessment.
Both ``rfigui`` and ``aoqplot`` have options that make it possible to save certain statistics or overview images.
The command-line options of these tools give access to these plotting capabilities from non-interactive pipelines or scripts.
When parameters are given on the command line that save images, the ``rfigui`` and ``aoqplot`` tools will not open their
default window and therefore do not require an X windows system to be running [1]_. In other words, the tools
will run as non-interactive command line programs.

Both ``rfigui`` and ``aoqplot`` provide parameter ``--help``, which will show a list of supported options.

``rfigui``
----------

The ``rfigui`` tool can be used to save time-frequency "heatmap" images, that show the flux of the correlations in a two-dimensional time and frequency display. The syntax is as follows:

.. code-block :: bash
    
    rfigui \
      -save-baseline <filename> <ant1> <ant2> <band> <seqindex>

Filename should end with an image extension. Supported formats are ``.png``, ``.pdf`` and ``.svg``. Note that ``.pdf`` and ``.svg`` are of higher quality than ``.png`` files. The created plots will by default be made from the "``DATA``" column. However, a different column can be selected with the option ``-data-column <name>``. The following example will save the correlated data from antennas 1 and 3: 

.. code-block :: bash
    
    rfigui \
      -data-column CORRECTED_DATA \
      -save-baseline WSRT-RT2xRT4.pdf 1 3 0 0 3C196_spw5_sub1.MS/

Which creates the following pdf:

.. image:: images/WSRT-RT2xRT4.png
    :alt: Result of rfigui -save-baseline command (WSRT-RT2xRT4)
  
It is also possible to repeat the '``-save-baseline``' option to save multiple images at once. This saves quite a few computations over saving the baselines one by one with separate ``rfigui`` calls.

``aoqplot``
-----------

The ``aoqplot`` syntax to save plots is as follows:

.. code-block :: bash
    
    aoqplot -save <filename prefix> <statistic name>

Note that unlike ``rfigui``, the ``aoqplot`` tool saves several images at once. The plots created are i) a per-baseline matrix plot; ii) a per antenna plot; iii) a spectrum; iv) a time-plot; and v) a time-frequency heatmap. The statistic name parameter is a case-sensitive name of the statistic that will be plotted over antenna/time/frequency, etc. The common statistics are: ``StandardDeviation``, ``DStandardDeviation`` (=stddev of difference between channels), ``Variance``, ``Mean``, ``RFIPercentage``, ``RFIRatio`` and ``Count`` (=visibility count). A full list of allowed statistics can be retrieved by typing ``aoquality liststats`` on the command line. However, not all allowed statistics are stored by default in a measurement set. This is an example ``aoqplot`` run:

.. code-block :: bash
    
    aoqplot -save aartfaac-stddev StandardDeviation aartfaac-testobs.ms/
     (1/1) Adding aartfaac-testobs.ms/ to statistics...
    Lowering time resolution...
    Lowering frequency resolution...
    Integrating baseline statistics to one channel...
    Regridding time statistics...
    Copying statistics...
    Integrating time statistics to one channel...
    Opening statistics panel...
    Saving aartfaac-stddev-antennas.pdf...
    Saving aartfaac-stddev-baselines.pdf...
    Saving aartfaac-stddev-baselinelengths.pdf...
    Saving aartfaac-stddev-timefrequency.pdf...
    Saving aartfaac-stddev-time.pdf...
    Saving aartfaac-stddev-frequency.pdf...

This is an example for the produced 'baselines' plot:

.. image:: images/WSRT-stddev-baselines.png
    :alt: Result of aoqplot -save command (baseline plot)

As can be seen from this image, antenna index 5 (WSRT RT5) is not working, and the autocorrelations show more power (as they should). Note that ``aoqplot`` uses the quality statistics tables inside the measurement set. These are normally produced by tools like ``DPPP``, ``cotter`` or ``aartfaac2ms``; however, if a measurement set is not produced by one of those tools, it is necessary to create these tables manually. This can be done with the ``aoquality collect <obs.ms>`` command.

.. [1] Older versions of ``rfigui`` and ``aoqplot`` would require an X window system to be running even when running in command line mode. However, that was resolved in AOFlagger [version 2.10](changelog-2.10.0).