Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update MultiSpec schema to provide keywords for recording extraction characteristics #264

Merged
merged 4 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ Other
options to ``DarkModel`` and ``MIRIDarkModel``. Add the array extension
to the ``RampModel``, for tracking the average dark current. [#265]

- Add ``EXTRXSTR``, ``EXTRXSTP``, ``EXTRYSTR``, and ``EXTRYSTP`` keywords
to the jwst ``MultiSpec`` schema. [#264]


1.9.1 (2024-01-25)
==================

Expand Down
20 changes: 20 additions & 0 deletions src/stdatamodels/jwst/datamodels/schemas/multispec.schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,26 @@ allOf:
type: number
fits_keyword: EXTR_Y
fits_hdu: EXTRACT1D
extraction_xstart:
title: X axis start of extraction region
type: number
fits_keyword: EXTRXSTR
fits_hdu: EXTRACT1D
extraction_xstop:
title: X axis end of extraction region
type: number
fits_keyword: EXTRXSTP
fits_hdu: EXTRACT1D
extraction_ystart:
title: Y axis start of extraction region
type: number
fits_keyword: EXTRYSTR
fits_hdu: EXTRACT1D
extraction_ystop:
title: Y axis end of extraction region
type: number
fits_keyword: EXTRYSTP
fits_hdu: EXTRACT1D
shutter_state:
title: All (open and close) shutters in a slit
type: string
Expand Down
Loading