File: iareset.F

package info (click to toggle)
emoslib 000380%2Bdfsg-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 47,712 kB
  • ctags: 11,551
  • sloc: fortran: 89,643; ansic: 24,200; makefile: 370; sh: 355
file content (305 lines) | stat: -rwxr-xr-x 8,332 bytes parent folder | download | duplicates (2)
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
C Copyright 1981-2007 ECMWF
C 
C Licensed under the GNU Lesser General Public License which
C incorporates the terms and conditions of version 3 of the GNU
C General Public License.
C See LICENSE and gpl-3.0.txt for details.
C

      INTEGER FUNCTION IARESET (KSEC2, KSEC4, KVALUES, KPR, KERR)
C
C---->
C**** *IARESET*
C
C     PURPOSE
C     _______
C
C     Generate the output field definition.
C
C     INTERFACE
C     _________
C
C     IERR = IARESET (KSEC2, KSEC4, KVALUES, KPR, KERR)
C
C     Input parameters
C     ________________
C
C     KSEC2      - The GRIB Section 2 array for the input field.
C
C     KSEC4      - The GRIB Section 4 array for the input field.
C
C     KVALUES    - The number of values in the output field.
C
C     KPR        - The debug print switch.
C                  0  , No debugging output.
C                  1  , Produce debugging output.
C
C     KERR       - The error control flag.
C                  -ve, No error message. Return error code.
C                  0  , Hard failure with error message.
C                  +ve, Print error message. Return error code.
C
C     Output parameters
C     ________________
C
C     KSEC2      - The modified GRIB Section 2 array for the output
C                  field.
C
C     KSEC4      - The modified GRIB Section 4 array for the output
C                  field.
C
C     Return value
C     ____________
C
C     The error indicator (INTEGER).
C
C     Error and Warning Return Values
C     _______________________________
C
C     None
C
C     Common block usage
C     __________________
C
C     nofld.common - This file contains all the output field
C                    definition variables.
C
C     NOACC        - Number of packing bits to be used for output
C                    GRIB field is used.
C     NOAREA       - Output field area definition (N/W/S/E) is used.
C     NOGAUSS      - Output field Gaussian truncation is used.
C     NOGRID       - Output field grid definition (WE/NS) is used.
C     NONS         - Number of grid points in NS direction for output
C                    field is used.
C     NOREPR       - Output field representation is used.
C     NOSCNM       - Output field scanning mode is used.
C     NOWE         - Number of grid points in WE direction for output
C                    field is used.
C
C     EXTERNALS
C     _________
C
C     SETPAR       - Standard routine used to generate "missing" data
C                    values for GRIB fields.
C     INTLOG(R)    - Logs messages.
C
C     METHOD
C     ______
C
C     This routine modifies sections 2 and 4 of the GRIB definition
C     to match the output field.
C
C     REFERENCE
C     _________
C
C     None
C
C     COMMENTS
C     ________
C
C     Program contains sections 0 to 4 and 9
C
C     AUTHOR
C     ______
C
C     K. Fielding      *ECMWF*      Apr 1994
C
C     MODIFICATIONS
C     _____________
C
C     None
C
C----<
C     _______________________________________________________
C
C
C*    Section 0. Definition of variables.
C     _______________________________________________________
C
C*    Prefix conventions for variable names
C
C     Logical      L (but not LP), global or common.
C                  O, dummy argument
C                  G, local variable
C                  LP, parameter.
C     Character    C, global or common.
C                  H, dummy argument
C                  Y (but not YP), local variable
C                  YP, parameter.
C     Integer      M and N, global or common.
C                  K, dummy argument
C                  I, local variable
C                  J (but not JP), loop control
C                  JP, parameter.
C     REAL         A to F and Q to X, global or common.
C                  P (but not PP), dummy argument
C                  Z, local variable
C                  PP, parameter.
C
C     Implicit statement to force declarations
C
      IMPLICIT NONE
C
#include "parim.h"
#include "nofld.common"
C
C     Dummy arguments
      INTEGER KVALUES, KPR, KERR
      INTEGER KSEC2 (JPGRIB_ISEC2), KSEC4 (JPGRIB_ISEC4)
C
C     Local variables
      INTEGER IWEINC, ITEMP, IMISS, IERR
      INTEGER JPROUTINE
      PARAMETER (JPROUTINE = 24200)
C
C     External functions
C
C     Transform definition variables that must be preserved
C
C
C     _______________________________________________________
C
C*    Section 1. Initialisation
C     _______________________________________________________
C
  100 CONTINUE
C
      IF (KPR.GE.1) CALL INTLOG(JP_DEBUG,'IARESET: Section 1.',JPQUIET)
C
      IARESET = 0
      IERR = 0
C
      IF (KPR .GE. 1) THEN
        CALL INTLOG(JP_DEBUG,'IARESET: Input parameters.',JPQUIET)
        CALL INTLOG(JP_DEBUG,
     X    'IARESET: No.bits for output field packing = ',NOACC)
        CALL INTLOG(JP_DEBUG,
     X    'IARESET: No.values to be packed = ',KVALUES)
        IF (NOREPR .EQ. JPREGULAR) THEN
          CALL INTLOG(JP_DEBUG,
     X      'IARESET: West-East stride = ', NOGRID (JPWESTEP))
          CALL INTLOG(JP_DEBUG,
     X      'IARESET: North-South stride = ', NOGRID (JPNSSTEP))
        ELSE
          CALL INTLOG(JP_DEBUG,
     X      'IARESET: Gaussian truncation = ',NOGAUSS)
        ENDIF
      ENDIF
C
C     Get GRIB missing data value
C
      CALL SETPAR (ITEMP, IMISS, KPR)
C
C     Representation
C
      KSEC2 (JPSEC2_REP) = NOREPR
      KSEC2 (JPSEC2_SCAN) = NOSCNM
C
C     _______________________________________________________
C
C*    Section 2. Set Grib Section 2 regular grid variables
C     _______________________________________________________
C
  200 CONTINUE
C
      IF (NOREPR .EQ. JPREGULAR) THEN
C
      IF (KPR.GE.1) CALL INTLOG(JP_DEBUG,'IARESET: Section 2.',JPQUIET)
C
         KSEC2 (JPSEC2_QUASI) = 0
C
         KSEC2 (JPSEC2_NLONG) = NOWE
         KSEC2 (JPSEC2_NLAT) = NONS
C
         KSEC2 (JPSEC2_NORTH) = NOAREA (JPNORTH) / 10
         KSEC2 (JPSEC2_WEST) = NOAREA (JPWEST) / 10
         KSEC2 (JPSEC2_SOUTH) = NOAREA (JPSOUTH) / 10
C
         IF (MOD (NOAREA (JPEAST), 10) .EQ. 5) THEN
            KSEC2 (JPSEC2_EAST) = NOAREA (JPEAST) / 10 + 1
         ELSE
            KSEC2 (JPSEC2_EAST) = NOAREA (JPEAST) / 10
         ENDIF
C
         IF (MOD (NOGRID (JPWESTEP), 10) .EQ. 5 .OR.
     X      MOD (NOGRID (JPNSSTEP), 10) .EQ. 5) THEN
C
            KSEC2 (JPSEC2_RESOL) = 0
            KSEC2 (JPSEC2_DLONG) = IMISS
            KSEC2 (JPSEC2_DLAT) = IMISS
C
         ELSE
C
            KSEC2 (JPSEC2_RESOL) = 128
            KSEC2 (JPSEC2_DLONG) = NOGRID (JPWESTEP) / 10
            KSEC2 (JPSEC2_DLAT) = NOGRID (JPNSSTEP) / 10
C
         ENDIF
C
C     _______________________________________________________
C
C*    Section 3. Set Grib Section 2 Gaussian values
C     _______________________________________________________
C
  300 CONTINUE
C
      ELSE IF (NOREPR .EQ. JPGAUSSIAN) THEN
C
      IF (KPR.GE.1) CALL INTLOG(JP_DEBUG,'IARESET: Section 3.',JPQUIET)
C
         KSEC2 (JPSEC2_QUASI) = 0
C
         KSEC2 (JPSEC2_GTRUNC) = NOGAUSS
         KSEC2 (JPSEC2_NLONG) = NOWE
         KSEC2 (JPSEC2_NLAT) = NONS
C
         KSEC2 (JPSEC2_NORTH) = NOAREA (JPNORTH) / 10
         KSEC2 (JPSEC2_WEST) = NOAREA (JPWEST) / 10
         KSEC2 (JPSEC2_SOUTH) = NOAREA (JPSOUTH) / 10
C
         IF (MOD (NOAREA (JPEAST), 10) .EQ. 5) THEN
            KSEC2 (JPSEC2_EAST) = NOAREA (JPEAST) / 10 + 1
         ELSE
            KSEC2 (JPSEC2_EAST) = NOAREA (JPEAST) / 10
         ENDIF
C
         IWEINC = JP90 / NOGAUSS
C
         IF (MOD (IWEINC, 10) .EQ. 5) THEN
C
            KSEC2 (JPSEC2_RESOL) = 0
            KSEC2 (JPSEC2_DLONG) = IMISS
C
         ELSE
C
            KSEC2 (JPSEC2_RESOL) = 128
            KSEC2 (JPSEC2_DLONG) = IWEINC / 10
C
         ENDIF
C
      ENDIF
C
C     _______________________________________________________
C
C*    Section 4. Set Grib Section 4 values
C     _______________________________________________________
C
  400 CONTINUE
C
      IF (KPR.GE.1) CALL INTLOG(JP_DEBUG,'IARESET: Section 4.',JPQUIET)
C
      KSEC4 (JPSEC4_NVALUE) = KVALUES
C
      IF (NOACC .NE. 0) KSEC4 (JPSEC4_NBITS) = NOACC
C
C     _______________________________________________________
C
C*    Section 9. Return to calling routine. Format statements
C     _______________________________________________________
C
  900 CONTINUE
C
      IF (KPR.GE.1) CALL INTLOG(JP_DEBUG,'IARESET: Section 9.',JPQUIET)
C
      RETURN
      END