https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Raw File
Tip revision: e5309efe65e2ad5bdb84eb5462f174f8cac24fe4 authored by Bryna Hazelton on 04 September 2024, 19:47:10 UTC
move for loop in test to parametrize
Tip revision: e5309ef
readwrite_uvfits.py
#! /usr/bin/env python
# Copyright (c) 2018 Radio Astronomy Software Group
# Licensed under the 2-clause BSD License
"""Read in a uvfits file and write a new one out."""

import argparse
import os.path as op

from pyuvdata import UVData

parser = argparse.ArgumentParser()
parser.add_argument("uvfits_read", help="name of a uvfits file to read in")
parser.add_argument("uvfits_write", help="name of a uvfits file to write out")

args = parser.parse_args()

uvfits_file_in = args.uvfits_read
if not op.isfile(uvfits_file_in):
    raise OSError(f"There is no file named {args.uvfits_file_in}")

uvfits_file_out = args.uvfits_write

this_uv = UVData()
this_uv.read_uvfits(uvfits_file_in)

this_uv.write_uvfits(uvfits_file_out)

del this_uv
back to top