DanRyanIrish
DanRyanIrish
### Description Currently, the ```NDCube.mask``` implementation is simply a boolean array. However I there may be many components to a mask and in some cases users may want to keep...
Add a ```save``` method to ```NDCube``` with the following API: ```NDCube.save(self, filename, file_type="FITS"):``` For now it should just support FITS. More file types can be added later. The method should...
### Provide a general description of the issue or problem. Upstream WCS wrappers to astropy
### Description Initial implementation of `NDCube.resample` will ignore and drop `NDCube.extra_coords`. However, this must be resolved before we release this functionality. One option is to decide to always ignore extra_coords....
### Description Create a method on `NDCubeSequence` that: * Uses `NDCube.resample` (#429) reprojects each `NDCube` in the sequence to the WCS of the first `NDCube`; * Stacks the data arrays...
### Description A request has been made for a tool that reorders the axes of an `NDCube`. Similar to `numpy.roll`?
### Description This issue proposes a new method or function, `crop_to_roi`. It would allow users supply an ROI defined by any number of real world vertices. The function would then...
### Description Currently is it required that each ```NDCube``` instance has a ```WCS``` instance attached to it. However, coordinated can be expressed in the form of ```extra_coords```. Therefore, it may...
### Description As demonstrated in [IRISpy issue #82](https://github.com/sunpy/irispy/issues/82) the uncertainty array can add a significant memory burden to an ```NDCube```-based object. In that issue the option of making ```NDCube.uncertainty``` a...
### Description This PR introduces a sliceable `Meta` class based on `dict`, which allows metadata to be associated with data axes and the whole class to be sliced using the...