mirror of
https://github.com/eddyem/BTA_lib.git
synced 2026-03-21 09:11:08 +03:00
copy
This commit is contained in:
94
slalib/cldj.f
Normal file
94
slalib/cldj.f
Normal file
@@ -0,0 +1,94 @@
|
||||
SUBROUTINE sla_CLDJ (IY, IM, ID, DJM, J)
|
||||
*+
|
||||
* - - - - -
|
||||
* C L D J
|
||||
* - - - - -
|
||||
*
|
||||
* Gregorian Calendar to Modified Julian Date
|
||||
*
|
||||
* Given:
|
||||
* IY,IM,ID int year, month, day in Gregorian calendar
|
||||
*
|
||||
* Returned:
|
||||
* DJM dp modified Julian Date (JD-2400000.5) for 0 hrs
|
||||
* J int status:
|
||||
* 0 = OK
|
||||
* 1 = bad year (MJD not computed)
|
||||
* 2 = bad month (MJD not computed)
|
||||
* 3 = bad day (MJD computed)
|
||||
*
|
||||
* The year must be -4699 (i.e. 4700BC) or later.
|
||||
*
|
||||
* The algorithm is adapted from Hatcher 1984 (QJRAS 25, 53-55).
|
||||
*
|
||||
* Last revision: 27 July 2004
|
||||
*
|
||||
* Copyright P.T.Wallace. All rights reserved.
|
||||
*
|
||||
* License:
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program (see SLA_CONDITIONS); if not, write to the
|
||||
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||
* Boston, MA 02111-1307 USA
|
||||
*
|
||||
*-
|
||||
|
||||
IMPLICIT NONE
|
||||
|
||||
INTEGER IY,IM,ID
|
||||
DOUBLE PRECISION DJM
|
||||
INTEGER J
|
||||
|
||||
* Month lengths in days
|
||||
INTEGER MTAB(12)
|
||||
DATA MTAB / 31,28,31,30,31,30,31,31,30,31,30,31 /
|
||||
|
||||
|
||||
|
||||
* Preset status.
|
||||
J = 0
|
||||
|
||||
* Validate year.
|
||||
IF ( IY .LT. -4699 ) THEN
|
||||
J = 1
|
||||
ELSE
|
||||
|
||||
* Validate month.
|
||||
IF ( IM.GE.1 .AND. IM.LE.12 ) THEN
|
||||
|
||||
* Allow for leap year.
|
||||
IF ( MOD(IY,4) .EQ. 0 ) THEN
|
||||
MTAB(2) = 29
|
||||
ELSE
|
||||
MTAB(2) = 28
|
||||
END IF
|
||||
IF ( MOD(IY,100).EQ.0 .AND. MOD(IY,400).NE.0 )
|
||||
: MTAB(2) = 28
|
||||
|
||||
* Validate day.
|
||||
IF ( ID.LT.1 .OR. ID.GT.MTAB(IM) ) J=3
|
||||
|
||||
* Modified Julian Date.
|
||||
DJM = DBLE ( ( 1461 * ( IY - (12-IM)/10 + 4712 ) ) / 4
|
||||
: + ( 306 * MOD ( IM+9, 12 ) + 5 ) / 10
|
||||
: - ( 3 * ( ( IY - (12-IM)/10 + 4900 ) / 100 ) ) / 4
|
||||
: + ID - 2399904 )
|
||||
|
||||
* Bad month.
|
||||
ELSE
|
||||
J=2
|
||||
END IF
|
||||
|
||||
END IF
|
||||
|
||||
END
|
||||
Reference in New Issue
Block a user