https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 3b82581644d61d4f3f762689515dd7ee09d774a3 authored by EXTERNAL-Ewall-Wice on 15 May 2018, 21:35:38 UTC, committed by EXTERNAL-Ewall-Wice on 01 November 2018, 23:54:15 UTC
1 parent b090779
Raw File
Tip revision: 3b82581644d61d4f3f762689515dd7ee09d774a3 authored by EXTERNAL-Ewall-Wice on 15 May 2018, 21:35:38 UTC
starting to get antenna position handling in place.
Tip revision: 3b82581
__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 .uvdata import *
from .telescopes import *
from .uvcal import *
from .uvbeam import *
from . import version

__version__ = version.version
back to top