Padre notebook that lists everything in your directory

You must select "Cell|Run All" from the above menu to (re)run the notebook, and wait for it to finish rendering.

This notebook simply lists all FITS files and images it finds.


In [ ]:
### mandatory init
%matplotlib inline
from radiopadre import DirList
dirs = DirList("data")
dirs

In [ ]:
dirs.show()
for d in dirs:
    if d.fits:
        d.fits.show()
    if d.images:
        d.images.show()