...
Binning sufficient channels from continuum-subtracted data, or accumulating very long integrations, will show evenly-spaced horizontal stripes (see Figs. 1 and 2). 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 Below we explain how the MHONGOOSE and Fornax surveys have dealt with the issue. Note also that this flagging method will be was implemented in an upcoming a release of CARACal (scheduled for July 2022) and will then be in late 2022, through which it is available to the general user community. Please contact the helpdesk if you think your data products have been affected and you require further assistance.
...
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.
...