Next: 8.3.3 Calendar dates and
Up: 8.3 The calendar package
Previous: 8.3.1 Basic assumptions for
Contents
In this calendar tool a complete date specification is defined
as the following integer array:
c integer date(4)
c
c ( yyyymmdd, hhmmss, leap_year, dayofweek )
c
c date(1) = yyyymmdd <-- Year-Month-Day
c date(2) = hhmmss <-- Hours-Minutes-Seconds
c date(3) = leap_year <-- Leap Year/No Leap Year
c date(4) = dayofweek <-- Day of the Week
c
c leap_year is either equal to 1 (normal year)
c or equal to 2 (leap year)
c
c dayofweek has a range of 1 to 7.
In case the Gregorian Calendar is used, the first
day of the week is Friday, since day of the Gregorian
Calendar was Friday, 15 Oct. 1582. As a date array
this date would be specified as
c refdate(1) = 15821015
c refdate(2) = 0
c refdate(3) = 1
c refdate(4) = 1
mitgcm-support@dev.mitgcm.org
Copyright © 2002
Massachusetts Institute of Technology |
|
|