Examples of FitsDate


Examples of net.ivoa.fits.FitsDate

   *
   * @return either <CODE>null</CODE> or a Date object
   */
  public Date getCreationDate() {
    try {
      return new FitsDate(myHeader.getStringValue("DATE")).toDate();
    } catch (FitsException e) {
      return null;
    }
  }
View Full Code Here

Examples of net.ivoa.fits.FitsDate

   *
   * @return either <CODE>null</CODE> or a Date object
   */
  public Date getObservationDate() {
    try {
      return new FitsDate(myHeader.getStringValue("DATE-OBS")).toDate();
    } catch (FitsException e) {
      return null;
    }
  }
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.