Here you can find the source of modifiedJulianToJulian(double modifiedJulian)
Parameter | Description |
---|---|
modifiedJulian | _more_ |
public static double modifiedJulianToJulian(double modifiedJulian)
//package com.java2s; /*//from ww w . jav a 2 s . com * Copyright (c) 2008-2015 Geode Systems LLC * This Software is licensed under the Geode Systems RAMADDA License available in the source distribution in the file * ramadda_license.txt. The above copyright notice shall be included in all copies or substantial portions of the Software. */ public class Main { /** * _more_ * * @param modifiedJulian _more_ * * @return _more_ */ public static double modifiedJulianToJulian(double modifiedJulian) { // MJD = JD - 2400000.5 return modifiedJulian + 2400000.5; } }