Definition at line 30 of file time_info.f.
33 print *,
'Times and dates can be specified as follows:' 34 print *,
'1. Absolute time' 35 print *,
' defines a specific date, like ' 36 & ,
'2005/7/15_12:30 specifies the' 37 print *,
' 15th of July in 2005 at half past twelve. ' 38 & ,
'The general format' 39 print *,
' for absolute time is: ' 40 & ,
'yyyy/mm/dd/HH/MM/SS.SSSSSS' 41 print *,
'2. Relative time' 42 print *,
' specifies a time range like 0/8/15, which ' 43 & ,
'means 8 hours and' 44 print *,
' fifteen minutes. The general format for ' 46 print *,
' dd/HH/MM/SS.SSSSSS' 47 print *,
'In the format strings given above, `/` serves ' 48 & ,
'as a field separator.' 49 print *,
'This character may be replaced by any ' 50 & ,
'non-digit character. Leading' 51 print *,
'zeroes may be omitted in all fields, where ' 52 & ,
'yyyy means year, mm' 53 print *,
'means month, dd means day, HH means hour, mm ' 55 print *,
'SS.SSSSSS means seconds. Seconds are ' 56 & ,
'specified as a floating point' 57 print *,
'value with precision down to microseconds. ' 58 & ,
'Two-digit year values' 59 print *,
'will be interpreted as years in the 20th ' 60 & ,
'century (for values larger' 61 print *,
'than 69) or in the 21st century (for values ' 62 & ,
'smaller than 70).' 63 print *,
'Fields from HH on may be omitted.'