-
Notifications
You must be signed in to change notification settings - Fork 75
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 #3120 from bmorris3/cube-base-class
Add Rampviz helper, generalize cube config helper and profile viewer
- Loading branch information
Showing
49 changed files
with
2,479 additions
and
496 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
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 |
---|---|---|
|
@@ -15,6 +15,7 @@ User Guide | |
cubeviz/index | ||
specviz2d/index | ||
mosviz/index | ||
rampviz/index | ||
plugin_api | ||
save_state | ||
display | ||
|
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 @@ | ||
.. |cubeviz_logo| image:: ../logos/cube.svg | ||
:height: 42px | ||
|
||
.. _rampviz: | ||
|
||
###################### | ||
|cubeviz_logo| Rampviz | ||
###################### | ||
|
||
|
||
Rampviz is a visualization and analysis toolbox for ramp cubes from | ||
infrared detectors. It is built on top of the | ||
`glue visualization <https://glueviz.org>`_ tool. Rampviz is designed to work | ||
with ramp files from the Roman Space Telescope and JWST. | ||
|
||
**Using Rampviz** | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
plugins |
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,66 @@ | ||
********************* | ||
Data Analysis Plugins | ||
********************* | ||
|
||
|
||
|
||
.. _rampviz-metadata-viewer: | ||
|
||
Metadata Viewer | ||
=============== | ||
|
||
.. seealso:: | ||
|
||
:ref:`Metadata Viewer <imviz_metadata-viewer>` | ||
Documentation on using the metadata viewer. | ||
|
||
|
||
.. _rampviz-plot-options: | ||
|
||
Plot Options | ||
============ | ||
|
||
This plugin gives access to per-viewer and per-layer plotting options. | ||
To show axes on image viewers, toggle on the "Show axes" option at the bottom of the plugin. | ||
|
||
.. seealso:: | ||
|
||
:ref:`Image Plot Options <imviz-display-settings>` | ||
Documentation on Imviz display settings in the Jdaviz viewers. | ||
|
||
.. _rampviz-subset-plugin: | ||
|
||
Subset Tools | ||
============ | ||
|
||
.. seealso:: | ||
|
||
:ref:`Subset Tools <imviz-subset-plugin>` | ||
Imviz documentation describing the concept of subsets in Jdaviz. | ||
|
||
|
||
Markers | ||
======= | ||
|
||
.. seealso:: | ||
|
||
:ref:`Markers <markers-plugin>` | ||
Imviz documentation describing the markers plugin. | ||
|
||
.. _rampviz-slice: | ||
|
||
Slice | ||
===== | ||
|
||
.. seealso:: | ||
|
||
:ref:`Slice <slice>` | ||
Documentation on using the Slice plugin. | ||
|
||
.. _ramp-extraction: | ||
|
||
Ramp Extraction | ||
=============== | ||
|
||
|
||
|
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
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,6 +1,7 @@ | ||
from .cubeviz import * # noqa | ||
from .specviz import * # noqa | ||
from .specviz2d import * # noqa | ||
from .default import * # noqa | ||
from .mosviz import * # noqa | ||
from .imviz import * # noqa | ||
from .mosviz import * # noqa | ||
from .rampviz import * # noqa | ||
from .specviz import * # noqa | ||
from .specviz2d import * # noqa |
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 @@ | ||
from .tools import * # noqa | ||
from .mixins import * # noqa | ||
from .viewers import * # noqa | ||
from .parsers import * # noqa | ||
from .moment_maps.moment_maps import * # noqa | ||
from .slice.slice import * # noqa | ||
from .spectral_extraction.spectral_extraction import * # noqa | ||
from .tools import * # noqa |
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.