Package nom.tam.util

Examples of nom.tam.util.ArrayDataInput



    // Initialize a memory mapped byte buffer for accessing the FITS image data, if
    // possible
    private void _initByteBuffer() throws IOException {
        ArrayDataInput arrayDataInput = _fits.getStream();
        if (arrayDataInput instanceof BufferedFile) {
            //System.out.println("XXX FITSImage: using BufferedFile");
            long headerSize = _header.getSize();
            long offset = _hdu.getFileOffset() + headerSize;
            long size = _hdu.getSize() - headerSize;
View Full Code Here

TOP

Related Classes of nom.tam.util.ArrayDataInput

Copyright © 2018 www.massapicom. 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.