MirMrsPhotomModel

class stdatamodels.jwst.datamodels.MirMrsPhotomModel(init=None, **kwargs)

Bases: ReferenceFileModel, DefaultDQMixin

A data model for MIRI MRS photom reference files.

The MIRI MRS photom model does not yet have multiple timecoeff tables, so it inherits directly from ReferenceFileModel, unlike the other photom models.

Attributes:
initany

Any of the initializers supported by ~jwst.datamodels.DataModel.

datanumpy array

An array-like object containing the pixel-by-pixel conversion values in units of (MJy / pixel) / (DN / sec).

errnumpy array

An array-like object containing the uncertainties in the conversion values, in the same units as the data array.

dqnumpy array

An array-like object containing bit-encoded data quality flags, indicating problem conditions for values in the data array.

dq_defnumpy array

A table-like object containing the data quality definitions table.

pixsiznumpy array

An array-like object containing pixel-by-pixel size values, in units of square arcseconds (arcsec^2).

timecoeff_powerlaw_ch1numpy table

A table of time and wavelength dependent throughput corrections for channel 1 using powerlaw model.

timecoeff_powerlaw_ch2numpy table

A table of time and wavelength dependent throughput corrections for channel 2 using powerlaw model.

timecoeff_powerlaw_ch3numpy table

A table of time and wavelength dependent throughput corrections for channel 3 using powerlaw model.

timecoeff_powerlaw_ch4numpy table

A table of time and wavelength dependent throughput corrections for channel 4 using powerlaw model.

Initialize a data model.

Parameters:
initstr, tuple, astropy.io.fits.HDUList, ndarray, dict, None
  • None : Create a default data model with no shape.

  • tuple : Shape of the data array. Initialize with default data array with shape specified by the tuple.

  • file path: Initialize from the given file (FITS or ASDF)

  • readable file object: Initialize from the given file object

  • astropy.io.fits.HDUList : Initialize from the given astropy.io.fits.HDUList.

  • A numpy array: Used to initialize the data array

  • dict: The object model tree for the data model

  • DataModel: Initialize from an existing DataModel instance. This will perform a shallow copy, and will convert between model subtypes as long as their schemas are compatible.

schemadict, str (optional)

Tree of objects representing a JSON schema, or string naming a schema. The schema to use to understand the elements on the model. If not provided, the schema associated with this class will be used.

pass_invalid_valuesbool or None

If True, values that do not validate the schema will be added to the metadata. If False, they will be set to None. If None, value will be taken from the environmental PASS_INVALID_VALUES. Otherwise the default value is False.

strict_validationbool or None

If True, schema validation errors will generate an exception. If False, they will generate a warning. If None, value will be taken from the environmental STRICT_VALIDATION. Otherwise, the default value is False.

validate_on_assignmentbool or None

Defaults to ‘None’. If None, value will be taken from the environmental VALIDATE_ON_ASSIGNMENT, defaulting to ‘True’ if no environment variable is set. If ‘True’, attribute assignments are validated at the time of assignment. Validation errors generate warnings and values will be set to None. If ‘False’, schema validation occurs only once at the time of write. Validation errors generate warnings.

validate_arraysbool

If True, arrays will be validated against ndim, max_ndim, and datatype validators in the schemas.

ignore_missing_extensionsbool

When False, raise warnings when a file is read that contains metadata about extensions that are not available. Defaults to True.

ignore_unrecognized_tagbool

When False, raise warnings when an unrecognized tag is encountered. When True, ignore unrecognized tags.

**kwargs

Additional keyword arguments are expected to be array-like attributes of the data model. These will be initialized with the given values only if they are defined in the schema and the schema expects an array-like value. Kwargs are only allowed when init is None, a tuple, or a numpy array. Example usage:

model = ImageModel(data=np.ones((10, 10)), dq=np.zeros((10, 10)))

Attributes Summary

schema_url

The schema URI to validate the model against.

Attributes Documentation

schema_url = 'http://stsci.edu/schemas/jwst_datamodel/mirmrs_photom.schema'

The schema URI to validate the model against. If None, only basic validation of required metadata properties (filename, model_type) will occur.