Skip to content

Commit

Permalink
RAD-132: Added optional dq array to Science Raw (#328)
Browse files Browse the repository at this point in the history
* Added optional dq array.

* Updated Changelog

* Changed array order
  • Loading branch information
PaulHuwe authored Oct 14, 2023
1 parent 7c1c606 commit 2be10e8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

- Updated minimum python version to 3.9. [#325]

- Added optional dq array. [#328]

0.17.1 (2023-08-03)
-------------------

Expand Down
9 changes: 8 additions & 1 deletion src/rad/resources/schemas/wfi_science_raw-1.0.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ properties:
unit:
tag: tag:astropy.org:astropy/units/unit-1.0.0
enum: ["DN"]

amp33:
title: Amp 33 reference pixel data.
tag: tag:stsci.edu:asdf/unit/quantity-1.1.0
Expand All @@ -36,7 +37,13 @@ properties:
unit:
tag: tag:astropy.org:astropy/units/unit-1.0.0
enum: ["DN"]
propertyOrder: [meta, data, amp33]

resultantdq:
title: Optional 3-D data quality array (plane dq for each resultant)
tag: tag:stsci.edu:asdf/core/ndarray-1.0.0
ndim: 3
datatype: uint8
propertyOrder: [meta, data, amp33, resultantdq]
flowStyle: block
required: [meta, data, amp33]
...

0 comments on commit 2be10e8

Please sign in to comment.