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 datamodels example to include more info #3279

Merged
Merged
Changes from 3 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
8 changes: 6 additions & 2 deletions docs/imviz/import_data.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,12 @@ object, you can load it into Imviz as follows:
from astropy.nddata import NDData
from jdaviz import Imviz

# mydatamodel is a jwst.datamodels object
ndd = NDData(np.array(mydatamodel.data), wcs=mydatamodel.get_fits_wcs())
# mydatamodel is a jwst.datamodels object with stddev ERR array
ndd = NDData(mydatamodel.data,
uncertainty=StdDevUncertainty(mydatamodel.err),
mask=mydatamodel.dq,
wcs=mydatamodel.meta.wcs,
meta=dict(mydatamodel.meta.items()))
imviz = Imviz()
imviz.load_data(ndd, data_label='my_data_model')
imviz.show()
Expand Down
Loading