Skip to content

Commit

Permalink
add WCS to L2 and L3 models
Browse files Browse the repository at this point in the history
  • Loading branch information
nden committed Jan 10, 2024
1 parent 70f05e8 commit 661e468
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/roman_datamodels/maker_utils/_datamodels.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ def mk_level2_image(*, shape=(4088, 4088), n_groups=8, filepath=None, **kwargs):
)
wfi_image["cal_logs"] = mk_cal_logs(**kwargs)

wfi_image["wcs"] = None

return save_node(wfi_image, filepath=filepath)


Expand Down Expand Up @@ -189,6 +191,8 @@ def mk_level3_mosaic(*, shape=(4088, 4088), n_images=2, filepath=None, **kwargs)
)
wfi_mosaic["cal_logs"] = mk_cal_logs(**kwargs)

wfi_mosaic["wcs"] = None

return save_node(wfi_mosaic, filepath=filepath)


Expand Down

0 comments on commit 661e468

Please sign in to comment.