| # Licensed under a 3-clause BSD style license - see LICENSE.rst | |
| # This module implements the base NDDataBase class. | |
| from abc import ABCMeta, abstractmethod | |
| __all__ = ['NDDataBase'] | |
| class NDDataBase(metaclass=ABCMeta): | |
| """Base metaclass that defines the interface for N-dimensional datasets | |
| with associated meta information used in ``astropy``. | |
| All properties and ``__init__`` have to be overridden in subclasses. See | |
| `NDData` for a subclass that defines this interface on `numpy.ndarray`-like | |
| ``data``. | |
| See also: http://docs.astropy.org/en/stable/nddata/ | |
| """ | |
| def __init__(self): | |
| pass | |
| def data(self): | |
| """The stored dataset. | |
| """ | |
| pass | |
| def mask(self): | |
| """Mask for the dataset. | |
| Masks should follow the ``numpy`` convention that **valid** data points | |
| are marked by ``False`` and **invalid** ones with ``True``. | |
| """ | |
| return None | |
| def unit(self): | |
| """Unit for the dataset. | |
| """ | |
| return None | |
| def wcs(self): | |
| """World coordinate system (WCS) for the dataset. | |
| """ | |
| return None | |
| def meta(self): | |
| """Additional meta information about the dataset. | |
| Should be `dict`-like. | |
| """ | |
| return None | |
| def uncertainty(self): | |
| """Uncertainty in the dataset. | |
| Should have an attribute ``uncertainty_type`` that defines what kind of | |
| uncertainty is stored, such as ``"std"`` for standard deviation or | |
| ``"var"`` for variance. | |
| """ | |
| return None | |