Package net.ivoa.fits.hdu

Examples of net.ivoa.fits.hdu.BasicHDU


  public static void main(String[] args) throws Exception {

    FitsFactory.setUseHierarch(true);
    Fits f = new Fits(args[0]);

    BasicHDU h = f.readHDU();

    Header hdr = h.getHeader();
    Cursor c = hdr.iterator();

    while (c.hasNext()) {
      HeaderCard hc = (HeaderCard) c.next();
      System.out.print("Key= " + hc.getKey() + "  ");
View Full Code Here

TOP

Related Classes of net.ivoa.fits.hdu.BasicHDU

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.