https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 336746a3fc322feadf0efa6c3990e79b0cd9ad4f authored by Matthew Kolopanis on 13 May 2019, 21:34:39 UTC, committed by Bryna Hazelton on 22 May 2019, 18:57:04 UTC
1 parent bfa2874
Raw File
Tip revision: 336746a3fc322feadf0efa6c3990e79b0cd9ad4f authored by Matthew Kolopanis on 13 May 2019, 21:34:39 UTC
uvcal nose --> pytest
Tip revision: 336746a
readwrite_uvfits.py
#! /usr/bin/env python
# -*- mode: python; coding: utf-8 -*
# Copyright (c) 2018 Radio Astronomy Software Group
# Licensed under the 2-clause BSD License

from __future__ import absolute_import, division, print_function

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 IOError('There is no file named {}'.format(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