Source code for nro45data.psw.ms4
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from astropy.io.fits.hdu.hdulist import HDUList
[docs]
def _to_ms4(
hdulist: 'HDUList',
psfile: str,
overwrite: bool = False
) -> bool:
"""Export HDUList to MeasurementSet v4 (ProcessingSet).
Not implemented yet.
Args:
hdulist: HDUList generated from NRO 45m PSW file (.nqm)
fitsfile: Output PS file name
overwrite: Overwrite existing output file or not.
Default is False (not overwrite).
Returns:
Export status. True is successful.
"""
return False