From 37d714a34bcedc55a3f54777c1d7aa18aa809086 Mon Sep 17 00:00:00 2001 From: "Brett M. Morris" Date: Thu, 21 Nov 2024 11:00:17 -0500 Subject: [PATCH] Backport PR #3301: Adding links to ramp fitting docs for roman and jwst in rampviz --- docs/conf.py | 5 ++++- docs/rampviz/plugins.rst | 17 ++++++++++++++--- jdaviz/components/external_link.vue | 10 ++++------ .../plugins/ramp_extraction/ramp_extraction.vue | 11 +++++++++++ 4 files changed, 33 insertions(+), 10 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index ef97c8a0c9..14d5788526 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -289,7 +289,10 @@ 'specreduce': ('https://specreduce.readthedocs.io/en/stable/', None), 'specutils': ('https://specutils.readthedocs.io/en/stable/', None), 'stdatamodels': ('https://stdatamodels.readthedocs.io/en/latest/', None), - 'traitlets': ('https://traitlets.readthedocs.io/en/stable/', None)}) + 'traitlets': ('https://traitlets.readthedocs.io/en/stable/', None), + 'jwst': ('https://jwst-pipeline.readthedocs.io/en/stable/', None), + 'romancal': ('https://roman-pipeline.readthedocs.io/en/stable/', None), +}) # Options for linkcheck linkcheck_ignore = ['https://github.com/spacetelescope/jdaviz/settings/branches'] diff --git a/docs/rampviz/plugins.rst b/docs/rampviz/plugins.rst index 82301ea32b..d911f9a5f2 100644 --- a/docs/rampviz/plugins.rst +++ b/docs/rampviz/plugins.rst @@ -62,6 +62,17 @@ Slice Ramp Extraction =============== -Coming soon. - - +Extract a ramp from a ramp cube. + +Data products from infrared detectors flow through the official +:ref:`JWST ` or +`Roman `_ mission pipelines in levels. Infrared detectors use +an "up-the-ramp" readout pattern, which is summarized in the +`JWST documentation `_. + +The Ramp Extraction plugin is a quick-look tool, and it does not support all of the features of the mission pipelines. +The mission pipelines produce rate images from ramp cubes by fitting the samples up the ramp while accounting for +non-linearity, jumps detected during an integration, saturation, and detector defects. These data quality checks and +corrections are not applied in the Ramp Extraction plugin. For details on how rate images are derived from ramps, see +the JWST pipeline's :ref:`jwst:ramp_fitting_step` step or the Roman pipeline's +:ref:`romancal:ramp_fitting_step` step. diff --git a/jdaviz/components/external_link.vue b/jdaviz/components/external_link.vue index f137fda746..6621dacb48 100644 --- a/jdaviz/components/external_link.vue +++ b/jdaviz/components/external_link.vue @@ -1,10 +1,8 @@