calendg.f
3.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
subroutine calendg (idatjul,nd,nm,na,ier)
c*
c***********************************************************************
c*
c* "Copyright [c] CNES 98 - tous droits reserves"
c* **********************************************
c*
c*PRO MAGLIB
c*
c*VER 99.03.31 - V 1.0
c*VER 01.06.01 - V 2.0
c*VER 03.01.06 - V 2.1
c*
c*AUT spec. CNES - JC KOSIK - janvier 1991
c*AUT port. CISI
c*
c*ROL Theme : Calculs de dates
c*ROL Calcul d'une date calendaire a partir du jour julien
c*ROL CNES.
c*
c*PAR idatjul (I) : jour julien CNES (depuis le 01/01/1950)
c*
c*PAR nd (O) : jour
c*PAR nm (O) : mois
c*PAR na (O) : annee
c*
c*PAR ier (O) : code de retour
c*
c*NOT ier : sans objet
c*
c*INF utilise : sans objet
c*
c*HST version 1.0 - 99.03.31 - creation de la maglib au CDPP
c*HST version 2.0 - 01.06.01 - correction de commentaires de code
c*HST version 2.1 - 03.01.06 - corrections en compilation avec g77
c*
c***********************************************************************
c*
implicit none
c
c ---------------------------------
c*FON Declaration identificateur rcs_id
c ---------------------------------
c
character rcs_id*100
c
c --------------------------
c*FON Declaration des parametres
c --------------------------
c
integer idatjul
integer nd, nm, na
integer ier
c
c ---------------------------------
c*FON Declaration des variables locales
c ---------------------------------
c
integer n(12)
c*LOC n : nombre de jours par mois
c
integer njul,nb,nj,j,nm1,m,nj3,ndj
c*LOC Variables de travail intermediaires
c
SAVE
c
c ---------------------------------
c*FON Affectation identificateur rcs_id
c ---------------------------------
c
data rcs_id /"
>$Id$"/
c
c ******************
c Debut de programme
c ******************
c
ier = 0
c
c --------------------------
c*FON Affectation des constantes
c --------------------------
c
c* Nombre de jours par mois
c
data n /31,28,31,30,31,30,31,31,30,31,30,31/
c
c -------------------------------------
c*FON Calculs preliminaires annee,mois,jour
c -------------------------------------
c
njul = idatjul + 1
na = njul / 365
nj = njul - na * 365
nb = (na + 1) / 4
nj = nj - nb
c
c ---------------------------------------
c*FON Traitements si l'on est au dela de 1950
c ---------------------------------------
c
if (nj .gt. 0) then
c
j = na - 2 - nb * 4
na = na + 1950
c
if (j .lt. 0) go to 20
c
if (60 - nj) 10, 40, 20
c
10 continue
c
nm1 = 60
m = 3
go to 30
c
20 continue
c
nm1 = 0
m = 1
c
30 continue
c
ndj = nm1 + n(m)
nj3 = nj - ndj
c
if (nj3 .le. 0) go to 50
c
m = m + 1
nm1 = ndj
go to 30
c
40 continue
c
nm = 2
nd = 29
go to 100
c
50 continue
c
nm = m
nd = nj - nm1
c
else
c
na = na + 1949
nm = 12
nd = nj + 31
c
endif
100 continue
c
c ****************
c Fin de programme
c ****************
c
return
end