We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Issue RCAL-728 was created on JIRA by David Davis:
The attribute model_type should be updated when the underlying model is updated.
import roman_datamodels as rdm >>> uncal1 = rdm.open('data/r0000101001001001001_01101_0001_WFI01_uncal.asdf') type(uncal1) <class 'roman_datamodels.datamodels._datamodels.ScienceRawModel'> >>> uncal1.meta.model_type 'WfiScienceRaw' result = DQInitStep.call(uncal1) .. 2023-12-01 09:38:12,091 - stpipe.DQInitStep - INFO - Step DQInitStep done >>> type(result) <class 'roman_datamodels.datamodels._datamodels.RampModel'> >>> result.meta.model_type 'WfiScienceRaw'
So the model is updated but the attribute model_type remains WfiScienceRaw
The text was updated successfully, but these errors were encountered:
meta.model_type
Comment by William Jamieson on JIRA:
This will be completed by: spacetelescope/roman_datamodels#296
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Issue RCAL-728 was created on JIRA by David Davis:
The attribute model_type should be updated when the underlying model is updated.
So the model is updated but the attribute model_type remains WfiScienceRaw
The text was updated successfully, but these errors were encountered: