Examples of FITSKeywordsFrame


Examples of jsky.image.fits.gui.FITSKeywordsFrame

    public void viewFitsKeywords() {
        if (_fitsKeywordsFrame != null) {
            SwingUtil.showFrame(_fitsKeywordsFrame);
            _fitsKeywordsFrame.getFITSKeywords().updateDisplay();
        } else {
            _fitsKeywordsFrame = new FITSKeywordsFrame(this);
        }
    }
View Full Code Here

Examples of jsky.image.fits.gui.FITSKeywordsFrame

                TableQueryResult table = NavigatorFITSTable.getTable(getFilename(), fitsImage.getFits(), hduIndex);
                showNavigatorFrame(null);
                openCatalogWindow(table.getCatalog());

                // update the FITS header display, if needed
                FITSKeywordsFrame fitsKeywordsFrame = getFitsKeywordsFrame();
                if (fitsKeywordsFrame != null) {
                    fitsKeywordsFrame.getFITSKeywords().updateDisplay(hduIndex);
                }
            } catch (Exception e) {
                DialogUtil.error(this, 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.