Examples of FitsFilterInputStream


Examples of ca.nrc.cadc.arch.io.FitsFilterInputStream

            _fits = new Fits(fileOrUrl);
            _fits.read();
        } catch (Throwable e) { // nom.tam.fits class throws Error in some cases
            // Might be an HCompressed FITS file...
            try {
                _fits = new Fits(new FitsFilterInputStream(_getStream(fileOrUrl)));
                _fits.read();
            } catch (Throwable e2) {
                //e2.printStackTrace();
                if (e instanceof FitsException) {
                    throw (FitsException) e;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.