Sadie asks that the pngwalk tool have a way to show only the QCRecords that are okay, as well as only QCRecords. We had to write a short script to pull out the "okay" images with a script, and then look at that extracted set with the pngwalk tool.
The script to do this in the meantime, which is to be run in the pngwalk directory:
from java.io import File from org.das2.util import FileUtil cwd= URI(PWD).path ll= listDirectory( cwd + '/*.ok') for l in ll: fsrc= File(cwd+l[:-3]) fdest= File(cwd+'okay_data/'+l[:-3]) FileUtil.fileCopy( fsrc, fdest )
This is done
The script to do this in the meantime, which is to be run in the pngwalk directory:
This is done