https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Raw File
Tip revision: 65953f8e68a84a821c75ff1ec8fe3bcc512573fc authored by Nicholas Kern on 24 July 2018, 02:16:45 UTC
check phsae_type == drift in miriad_to_uvfits.py before phasing
Tip revision: 65953f8
__init__.py
# -*- mode: python; coding: utf-8 -*-
# Copyright (c) 2018 Radio Astronomy Software Group
# Licensed under the 2-clause BSD License

"""init file for pyuvdata.

"""
from __future__ import absolute_import, division, print_function

from .uvbase import *
from .parameter import *
from .uvdata import *
from .utils import *
from .telescopes import *
from .uvfits import *
from .fhd import *
from .miriad import *
from .uvcal import *
from .calfits import *
from .uvbeam import *
from .uvh5 import *
from . import version

__version__ = version.version
back to top