-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
97412fd
commit dbcfe42
Showing
7 changed files
with
58 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ Package Index | |
tweakreg/index.rst | ||
outlier_detection/index.rst | ||
resample/index.rst | ||
skymatch/index.rst |
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,4 @@ | ||
Description | ||
============ | ||
|
||
This sub-package contains the functions and objects useful for skymatch. |
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,14 @@ | ||
.. _skymatch: | ||
|
||
======================= | ||
Skymatch | ||
======================= | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
description.rst | ||
|
||
.. automodapi:: stcal.skymatch.skystatistics | ||
.. automodapi:: stcal.skymatch.skyimage | ||
.. automodapi:: stcal.skymatch.skymatch |
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,7 +1,7 @@ | ||
""" | ||
`skystatistics` module provides statistics computation class used by | ||
:py:func:`~jwst.skymatch.skymatch.skymatch` | ||
and :py:class:`~jwst.skymatch.skyimage.SkyImage`. | ||
:py:func:`~stcal.skymatch.skymatch.skymatch` | ||
and :py:class:`~stcal.skymatch.skyimage.SkyImage`. | ||
:Authors: Mihai Cara (contact: [email protected]) | ||
|
@@ -30,8 +30,9 @@ def __init__(self, skystat='mean', lower=None, upper=None, | |
Parameters | ||
----------- | ||
skystat : {'mode', 'median', 'mode', 'midpt'}, optional | ||
Sets the statistics that will be returned by `~SkyStats.calc_sky`. | ||
skystat : optional | ||
possible values are'mode', 'median', 'mode', 'midpt". | ||
Sets the statistics that will be returned by `~stcal.skymatch.skystatistics.SkyStats.calc_sky`. | ||
The following statistics are supported: 'mean', 'mode', 'midpt', | ||
and 'median'. First three statistics have the same meaning as in | ||
`stsdas.toolbox.imgtools.gstatistics <http://stsdas.stsci.edu/\ | ||
|