Padre notebook that renders 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 renders everything it finds in the first two directories.

Use with caution! Remove [0:2] if you really want to see everything. This can spiral out of control if your directory is very large.


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

In [ ]:
for d in dirs[0:2]:
    if d.fits:
        d.fits.thumbs()
    if d.images:
        d.images.thumbs()