-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from miguelcarcamov/development
Development
- Loading branch information
Showing
10 changed files
with
89 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
try: | ||
# -- Distribution mode -- | ||
# import from _version.py generated by setuptools_scm during release | ||
from ._version import version as __version__ | ||
except ImportError: | ||
# -- Source mode -- | ||
# use setuptools_scm to get the current version from src using git | ||
from setuptools_scm import get_version as _gv | ||
from os import path as _path | ||
__version__ = _gv(_path.join(_path.dirname(__file__), _path.pardir)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .gpuvmem import * | ||
from .imager import * | ||
from .tclean import * | ||
from .wsclean import * | ||
from .gpuvmem import GPUvmem | ||
from .imager import Imager | ||
from .tclean import Tclean | ||
from .wsclean import WSClean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .ampcal import * | ||
from .apcal import * | ||
from .phasecal import * | ||
from .selfcal import * | ||
from .ampcal import Ampcal | ||
from .apcal import AmpPhasecal | ||
from .phasecal import Phasecal | ||
from .selfcal import Selfcal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
from .image_utils import * | ||
from .selfcal_utils import * | ||
from .image_utils import nanrms, rms, get_header, get_hdu, get_hdul, get_data, get_header_and_data, export_ms_to_fits, calculate_psnr_fits, calculate_psnr_ms, reproject | ||
from .selfcal_utils import is_column_in_ms, get_table_rows, calculate_number_antennas |