NDDataBase¶
-
class
astropy.nddata.NDDataBase[source] [edit on github]¶ Bases:
objectBase metaclass that defines the interface for NDData
Classes that wish to use this interface without inheriting from
NDDatashould subclassNDDataBaseinstead.All properties and methods except uncertainty must be override by derived classes.
Attributes Summary
dataThe data; should be capable of behaving like a numpy array, though it need not actually be a numpy array. maskMask for the data, following the numpy convention that Truemeans the data should not be used.metaMetadata, if any, must be dict-like. uncertaintyUncertainty in the data. unitUnit for the data, if any. wcsWCS for the data, if any. Attributes Documentation
-
data¶ The data; should be capable of behaving like a numpy array, though it need not actually be a numpy array.
-
mask¶ Mask for the data, following the numpy convention that
Truemeans the data should not be used.
-
meta¶ Metadata, if any, must be dict-like.
-
uncertainty¶ Uncertainty in the data.
Uncertainty must have an attribute
uncertainty_typethat is a string.
-
unit¶ Unit for the data, if any.
-
wcs¶ WCS for the data, if any.
-