-
Notifications
You must be signed in to change notification settings - Fork 2
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 #47 from p-slash/0.5.0-dev
0.5.0 merge: + Error method for varlss is configurable. default is regJack. + Adjustable smoothing scale for noise. + Variance fitting auto calculates needed wavelength bins based on 120 A average spacing. + Mean Gaussian sigma is calculated and added to delta headers + Auto calculate quasar redshifts using wavelength ranges
- Loading branch information
Showing
25 changed files
with
375 additions
and
124 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
qsonic.catalog module | ||
qsonic.catalog | ||
======================= | ||
|
||
.. automodule:: qsonic.catalog | ||
|
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 @@ | ||
qsonic.io module | ||
qsonic.io | ||
================== | ||
|
||
.. automodule:: qsonic.io | ||
|
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 @@ | ||
qsonic.masks module | ||
qsonic.masks | ||
===================== | ||
|
||
.. automodule:: qsonic.masks | ||
|
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 @@ | ||
qsonic.mathtools module | ||
qsonic.mathtools | ||
========================= | ||
|
||
.. automodule:: qsonic.mathtools | ||
|
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 |
---|---|---|
|
@@ -22,3 +22,4 @@ Scripts | |
:maxdepth: 4 | ||
|
||
scripts.qsonic_fit | ||
scripts.qsonic_calib |
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,7 +1,8 @@ | ||
qsonic.mpi\_utils module | ||
qsonic.mpi\_utils | ||
========================== | ||
|
||
.. automodule:: qsonic.mpi_utils | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:exclude-members: _INVALID_VALUE |
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,21 @@ | ||
qsonic.scripts.qsonic_calib | ||
========================================= | ||
|
||
|
||
.. automodule:: qsonic.scripts.qsonic_calib | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:exclude-members: get_parser | ||
|
||
.. _qsonic calib arguments: | ||
|
||
Arguments | ||
--------- | ||
|
||
.. autofunction:: qsonic.scripts.qsonic_calib.get_parser | ||
|
||
.. argparse:: | ||
:ref: qsonic.scripts.qsonic_calib.get_parser | ||
:prog: qsonic-calib | ||
|
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 @@ | ||
qsonic.spectrum module | ||
qsonic.spectrum | ||
======================== | ||
|
||
.. automodule:: qsonic.spectrum | ||
|
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,6 +1,6 @@ | ||
__author__ = 'Naim Goksel Karacayli' | ||
__email__ = '[email protected]' | ||
__version__ = '0.4.4' | ||
__version__ = '0.5.0' | ||
|
||
|
||
class QsonicException(Exception): | ||
|
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
Oops, something went wrong.