Difference between revisions of "API Time.MJDToSeconds"
From Flowcode Help
Jump to navigationJump to search (XML import for latest API) |
(XML import) |
||
Line 1: | Line 1: | ||
− | |||
− | |||
<sidebar>API Contents</sidebar> | <sidebar>API Contents</sidebar> | ||
Converts a Modified Julian Date into a number of seconds since a specified epoch | Converts a Modified Julian Date into a number of seconds since a specified epoch |
Revision as of 15:58, 16 January 2014
<sidebar>API Contents</sidebar> Converts a Modified Julian Date into a number of seconds since a specified epoch
Contents
Parameters
LONG MJD
- The Modified Julian Date to convert
LONG Millisecs
- The number of milliseconds into the MJD to convert
LONG EpochMJD
- The modified Julian Date which would return zero seconds
ULONG EpochMS
- The number of milliseconds wich would return zero seconds
Return value
No additional information
Detailed description
No additional information
Examples
Calling in a calculation
- Declare a variable 'result' of type LONG
- Add to a calculation icon:
result = ::Time.MJDToSeconds(mjd, millisecs, epochmjd, epochms)
No additional examples