You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the example given in the "Making Image Cube" section is incomplete and thus can not execute.
The line
input_files = glob("data/*ffic.fits")
refers to the data subdirectory which does not exist which causes input_files to be an empty list.
Suggest solution: Test to see if data/*ffic.fits files exist before defining input_files. If no such files exist, then create a small set of *ffic.fits images in a directory called data.
The text was updated successfully, but these errors were encountered:
In the astrocut document
https://astrocut.readthedocs.io/en/latest/astrocut/
the example given in the "Making Image Cube" section is incomplete and thus can not execute.
The line
input_files = glob("data/*ffic.fits")
refers to the data subdirectory which does not exist which causes input_files to be an empty list.
Suggest solution: Test to see if data/*ffic.fits files exist before defining input_files. If no such files exist, then create a small set of *ffic.fits images in a directory called data.
The text was updated successfully, but these errors were encountered: