C+ C NAME: C Time2DHMS C PURPOSE: C Get hour,minute,second,smallest time unit from start of day C for 2-element standard time C CATEGORY: C gen/for/lib C CALLING SEQUENCE: subroutine Time2DHMS(t,hms) C INPUTS: C t(2) integer 2-element standard time relative to current origin C OUTPUTS: C hms(4) integer hour,minute,second,milliseconc C CALLS: C Time2YDoy, Time2HMS C PROCEDURE: C The time origin is shifted to the start of day for the C current origin. Then Time2HMS is called. C MODIFICATION HISTORY: C OCT-2003, Paul Hick (UCSD/CASS; pphick@ucsd.edu) C- integer t(2) integer hms(4) integer yr integer doy(2) call Time2YDoy(0,t,yr,doy) call Time2HMS(0,doy,hms) return end