Package nom.tam.fits

Examples of nom.tam.fits.BinaryTableHDU.deleteRows()


        BinaryTableHDU hdu = findBinaryTableHDU(fits, CATINFO);
        if (hdu != null) {
            int rowIndex = findConfigEntryRow(hdu, name);
            if (rowIndex != -1) {
                hdu.deleteRows(rowIndex, 1);
            }
            if (hdu.getNRows() <= 1) {
                deleteTable(fits, CATINFO);
            }
        }
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.