SpectrogramCube#
- class irispy.SpectrogramCube(
- data,
- wcs,
- uncertainty,
- unit,
- meta,
- *,
- mask=None,
- copy=False,
- **kwargs,
Bases:
SpectrogramCubeClass representing spectrogram data described by a single WCS.
Idea is that this class holds one complete raster scan or a sit and stare.
- Parameters:
data (
numpy.ndarray) – The array holding the actual data in this object.wcs (
astropy.wcs.WCS) – The WCS object containing the axes’ informationunit (
astropy.units.Unitorstr) – Unit for the dataset. Strings that can be converted to a Unit are allowed.meta (
dictobject) – Additional meta information about the dataset. Must contain at least the following keys: - detector type: str, (FUV1, FUV2 or NUV) - OBSID: int - spectral window: struncertainty (any type, optional) – Uncertainty in the dataset. Should have an attribute uncertainty_type that defines what kind of uncertainty is stored, for example “std” for standard deviation or “var” for variance. A metaclass defining such an interface is NDUncertainty - but isn’t mandatory. If the uncertainty has no such attribute the uncertainty is stored as UnknownUncertainty. Defaults to None.
mask (any type, optional) – Mask for the dataset. Masks should follow the numpy convention that valid data points are marked by False and invalid ones with True. Defaults to None.
copy (
bool, optional) – Indicates whether to save the arguments as copy. True copies every attribute before saving it while False tries to save every parameter as reference. Note however that it is not always possible to save the input as reference. Default is False.
Methods Summary
plot(*args, **kwargs)Visualize the
NDCube.remove_cosmic_rays(*[, method, sigma, ...])Return a cleaned copy of the cube with cosmic rays removed.
Methods Documentation
- plot(*args, **kwargs)[source]#
Visualize the
NDCube.- Parameters:
axes (
WCSAxesor None:, optional) – The axes to plot onto. If None the current axes will be used.plot_axes (
list, optional) – A list of length equal to the number of pixel dimensions in array axis order. This list selects which cube axes are displayed on which plot axes. For an image plot this list should contain'x'and'y'for the plot axes andNonefor all the other elements. For a line plot it should only contain'x'andNonefor all the other elements.axes_unit (
list, optional) – A list of length equal to the number of world dimensions specifying the units of each axis, orNoneto use the default unit for that axis.axes_coordinates (
list, optional) – A list of length equal to the number of pixel dimensions. For each axis the value of the list should either be a string giving the world axis type orNoneto use the default axis from the WCS.data_unit (
astropy.units.Unit) – The data is changed to the unit given or theNDCube.unitif not given.wcs (
astropy.wcs.wcsapi.BaseHighLevelWCS) – The WCS object to define the coordinates of the plot axes.kwargs – Additional keyword arguments are given to the underlying plotting infrastructure which depends on the dimensionality of the data and whether 1 or 2 plot_axes are defined: - Animations:
mpl_animators.ArrayAnimatorWCS- Static 2-D images:matplotlib.pyplot.imshow- Static 1-D line plots:matplotlib.pyplot.plot
- remove_cosmic_rays( )[source]#
Return a cleaned copy of the cube with cosmic rays removed.
This is a convenience wrapper around
irispy.utils.cosmic_rays.remove_cosmic_rays.- Parameters:
method (
{"rsliding", "astroscrappy"}, optional) – Backend used to detect and clean cosmic rays.sigma (
float, optional) – Shared clipping threshold override for the selected backend.max_iters (
int, optional) – Shared iteration-count override for the selected backend.method_kwargs (
dict, optional) – Additional keyword arguments passed to the selected backend.
- Returns:
Cleaned cube with the same metadata and coordinates as the original.
- Return type: