Jump to content

API Time.MJDToDate: Difference between revisions

From Flowcode Help
JonnyW (talk | contribs)
XML import for latest API
 
JonnyW (talk | contribs)
XML import
Line 1: Line 1:
<sidebar>API Contents</sidebar>
<sidebar>API Contents</sidebar>
Converts a Modified Julian Date into a Gregorian calendar date
Converts a Modified Julian Date into a Gregorian calendar date

Revision as of 15:58, 16 January 2014

<sidebar>API Contents</sidebar> Converts a Modified Julian Date into a Gregorian calendar date

Class hierarchy

Time

MJDToDate

Parameters

LONG MJD

The Modified Julian Date to alter

LONG Year

Returns the year the MJD represents
This parameter is returned back to the caller

ULONG Month

Returns the month the MJD represents starting at 1
This parameter is returned back to the caller

ULONG Date

Returns the date the MJD represents, starting at 1
This parameter is returned back to the caller


Return value

This call does not return a value


Detailed description

No additional information


Examples

Calling in a calculation

  • Add to a calculation icon:
    ::Time.MJDToDate(mjd, return_year, return_month, return_date)

No additional examples