Name

CL_dat_mjd2cjd — Modified Julian Date to CNES Julian date

Calling Sequence

   cjd = CL_dat_mjd2cjd(mjd)
   
   

Description

  • This function converts a Modified Julian date (Julian date - 2400000.5) into a CNES Julian date (number of fractionnal days since January 1st 1950).

    The fractional part of cjd (cjd-int(cjd)) gives the time of the day as a decimal fraction of one day with 0.5 representing midday UT.

  • Last update : 27/6/2008

Parameters

mjd:

Modified Julian day (Julian date - 2400000.5) (1xN)

cjd:

CNES Julian day (number of fractionnal days since January 1st 1950) (1xN)

Bibliography

1 Mecanique spatiale, CNES - Cepadues 1995, Chapitre 3, section 3.3.3 Les années

See also

CL_dat_cjd2mjd

Authors

CNES - DCT/SB

Examples

mjd=[53282.45687,53283.26789];
cjd = CL_dat_mjd2cjd(mjd);
mjd2 = CL_dat_cjd2mjd(cjd);