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

RAD-139: Add Members Keyword to Resample Schema #396

Merged
merged 3 commits into from
Mar 29, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@

- Add attributes under the ``basic`` schema to ``WfiMosaic.meta``. [#390]

- Add Members Keyword to Resample Schema. [#396]


0.19.0 (2024-02-09)
-------------------
Expand Down
11 changes: 9 additions & 2 deletions src/rad/resources/schemas/resample-1.0.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@ properties:
description: |
The total exposure time for the resampled product.
type: number
members:
title: Resample Members
description: |
Filenames of resample members
type: array
items:
type: string
weight_type:
title: Weight Type
description: |
Expand All @@ -37,7 +44,7 @@ properties:
variance map ("ivm").
type: string
enum: ["exptime", "ivm"]
propertyOrder: [pixel_scale_ratio, pixfrac, pointings, product_exposure_time, weight_type]
propertyOrder: [members, pixel_scale_ratio, pixfrac, pointings, product_exposure_time, weight_type]
flowStyle: block
required: [pixel_scale_ratio, pixfrac, weight_type]
required: [members, pixel_scale_ratio, pixfrac, weight_type]
...