Description and impact
Very faint, coherent horizontal stripes are seen in continuum-subtracted HI datacubes. Fourier transforms of these stripes show a peak at u = 0 in the (u,v) plane. This effect can be seen in relatively short (10 hour) integration times and is primarily on the short baselines.
This affects the detection and analysis of faint extended HI gas that can lie over and between the stripes.
For detailed information please see the memo by Maccagni et al. TO BE ADDED TO SARAO REPO
The root cause of the RFI has not yet been identified. In the meantime, we advise users to be aware of the problem and to proceed with caution when extracting faint low surface brightness features from datacubes. Recommended flagging strategies are described below.
How to identify the problem
Binning sufficient channels from continuum-subtracted data, or accumulating very long integrations, will show evenly-spaced horizontal stripes. These artefacts are present in both wide-band and narrow band modes but not visible in a single channel of the narrow band observations.
The RFI is persistent but variable in magnitude over time. There is some evidence that it is stronger at lower elevations.
How to deal with it
It is not yet possible to provide a general script that will work on all MeerKAT observations. We can in the meantime explain how the MHONGOOSE and Fornax surveys have dealt with the issue. Note that this flagging method will be implemented in an upcoming release of CARACal (scheduled for July 2022) and will then be available to the general user community. Please contact the helpdesk if you think your data products have been affected and you require further assistance.
The following strategy has been successfully tested on 55-hour datacubes for the MHONGOOSE project.
Packages
In python:
casacore.tables
casatasks.mstransform
casatools.image
scipy.stats
Imaging:
wsclean
Method
Input data: continuum subtracted visibility file (MS-file in casa
format)
Split the visibility file per target scan (using
mstransform
)On each scan
create a 2D-image from a large enough (~26 kHz) line-free band (using
wsclean
)FFT the 2D-image (using
casatools.image.fft
)compute the median absolute deviation (mad) of the amplitudes of the FFT visibilities (using the
scipy.stats
functionmedian_abs_deviation
)identify in the uv-plane the coordinates of the amplitudes in the FFT above, for example median+300*(mad)
create a mask with the u,v coordinates of the visibilities to flag
flag over the full bandwidth the visibilities within the mask (using
casacore.tables
)
Recombine the now flagged scans into a single stripe-free measurement set
You can now proceed with your imaging.
There is an AIPS task UVNOU which flags points close to u = 0. However, it will overflag the stripes since it flags points close to u = 0 for all v-coordinates.
Add Comment