DanRyanIrish

Results 39 issues of 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...

Feature Request
new feature

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...

new feature

### 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....

Discussion
Resample

### 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...

Resample

### Description A request has been made for a tool that reorders the axes of an `NDCube`. Similar to `numpy.roll`?

help wanted
new feature

### 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...

Feature Request

### 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...

Discussion

### 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...