diff --git a/hexrdgui/image_file_manager.py b/hexrdgui/image_file_manager.py index 6cfe79def..57697bc50 100644 --- a/hexrdgui/image_file_manager.py +++ b/hexrdgui/image_file_manager.py @@ -95,7 +95,9 @@ def open_file(self, f, options=None): ims = imageseries.open( f, 'hdf5', path=self.path[0], dataname=self.path[1]) elif ext == '.npz': - ims = imageseries.open(f, 'frame-cache') + ims = imageseries.open(f, 'frame-cache', style='npz') + elif ext == '.fch5': + ims = imageseries.open(f, 'frame-cache', style='fch5') elif ext == '.yml': data = yaml.load(open(f)) form = next(iter(data))