File: islproc.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 (288 lines) | stat: -rwxr-xr-x 8,753 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
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

      REAL FUNCTION ISLPROC(RLAT,RLON,NEWTYPE,OLAT,OLON,TYPE,PT,OLDFLD)
C
C---->
C**** ISLPROC
C
C     Purpose
C     -------
C
C     Generates a new field point from its four nearest neighbours
C     taking account of matching land-sea mask types.
C
C
C     Interface
C     ---------
C
C     VALUE = ISLPROC(RLAT,RLON,NEWTYPE,OLAT,OLON,TYPE,PT,OLDFLD)
C
C     Input
C     -----
C
C     RLAT    - Latitude of the new point
C     RLON    - Longitude of the new point
C     NEWTYPE - Land-sea mask type of the new point (land/sea)
C     OLAT    - Latitudes of the four neighbouring points
C     OLON    - Longitudes of the four neighbouring points
C     TYPE    - Land-sea mask types of the four neighbouring points
C     PT      - Positions in old field array of the four neighbours
C     OLDFLD  - Array of old field values
C
C
C     Output
C     ------
C
C     Function returns a value for the new field point.
C
C
C     Method
C     ------
C
C     Find which neighbours have same land-sea mask type and use
C     them to calculate a new value by bi-linear interpolation.
C
C     Use all four neighbours if none of them have the same
C     land-sea mask type as the new point.
C
C
C     Externals
C     ---------
C
C     None.
C
C
C     Author
C     ------
C
C     J.D.Chambers     ECMWF     August 2000
C
C     Modifications
C     -------------
C
C     Force nearest neighbour processing with env variable or
C     INTOUT parameter
C     S.Curic           ECMWF    September 2005
C

C----<
C
      IMPLICIT NONE
C
C     Function arguments
C
      REAL RLAT,RLON,OLAT(2),OLON(4),OLDFLD(*)
      INTEGER NEWTYPE,TYPE(4),PT(4)
C
#include "intisl.h"
#include "parim.h"
#include "nifld.common"
#include "nofld.common"
C
C     Local variables
C
      LOGICAL LVEGGY
      CHARACTER*12 YFLAG
      INTEGER MCOUNT, COUNT, LOOP, NEAREST
      REAL WEIGHT(4), MATCH(4), NWEIGHT, SWEIGHT, NORMAL
C
C     -----------------------------------------------------------------|
C*    Section 1.   Find which neighbours have same land-sea mask type
C     -----------------------------------------------------------------|
C
  100 CONTINUE
C
      COUNT  = 0
      DO LOOP = 1, 4
        IF( TYPE(LOOP).EQ.NEWTYPE ) THEN
          COUNT = COUNT + 1
          MATCH(LOOP) = 1.0
        ELSE
          MATCH(LOOP) = 0.0
        ENDIF
      ENDDO
C
      IF( COUNT.EQ.0 ) THEN
C
C       Use all four neighbours if none of them have the same
C       land-sea mask type as the new point
C
        COUNT = 4
        DO LOOP = 1, 4
          MATCH(LOOP) = 1.0
        ENDDO
      ENDIF
C
C     -----------------------------------------------------------------|
C*    Section 3.   Handle case when missing values are present
C     -----------------------------------------------------------------|
C
  200 CONTINUE
C
C     Identify matching neighbours with missing values
C
      IF( LIMISSV ) THEN
        MCOUNT = 0
        DO LOOP = 1, 4
          IF((MATCH(LOOP).EQ.1.0).AND.(OLDFLD(PT(LOOP)).EQ.RMISSGV))THEN
            MCOUNT = MCOUNT + 1
            MATCH(LOOP) = 0.0
            COUNT = COUNT - 1
          ENDIF
        ENDDO
C
C       Set new value to 'missing' if all neighbours are missing
C
        IF( (MCOUNT.EQ.4).OR.(COUNT.EQ.0) ) THEN
          ISLPROC = RMISSGV
          GOTO 900
        ENDIF
      ENDIF
C
C     -----------------------------------------------------------------|
C*    Section 3.   Use neighbours that match to calculate the new value
C     -----------------------------------------------------------------|
C
  300 CONTINUE
C
C     Calculate the north/south weighting values allowing for
C     southern latitude to be same as northern latitude
C
      NWEIGHT = OLAT(NORTH) - RLAT
      SWEIGHT = RLAT - OLAT(SOUTH)
      IF( SWEIGHT.EQ.0.0 ) NWEIGHT = 1.0
C
C     Calculate the weighting values for each matching neighbour
C
      WEIGHT(NWEST) = ABS((OLON(SEAST) - RLON) * SWEIGHT)
      WEIGHT(NEAST) = ABS((RLON - OLON(SWEST)) * SWEIGHT)
      WEIGHT(SWEST) = ABS((OLON(NEAST) - RLON) * NWEIGHT)
      WEIGHT(SEAST) = ABS((RLON - OLON(NWEST)) * NWEIGHT)
C
C     Normalise the weights since not all neighbours necessarily used
C
      NORMAL = ( WEIGHT(NWEST) * MATCH(NWEST) +
     X           WEIGHT(NEAST) * MATCH(NEAST) +
     X           WEIGHT(SWEST) * MATCH(SWEST) +
     X           WEIGHT(SEAST) * MATCH(SEAST) )
C
C     Special cases when matching points have no weight
C
      IF( NORMAL.EQ.0.0 )  THEN
C
C       Only one matching neighbour: set its weight so that is used
C
        IF( COUNT.EQ.1 ) THEN
          NORMAL = 1.0
          IF( MATCH(NWEST).EQ.1.0 ) WEIGHT(NWEST) = 1.0
          IF( MATCH(NEAST).EQ.1.0 ) WEIGHT(NEAST) = 1.0
          IF( MATCH(SWEST).EQ.1.0 ) WEIGHT(SWEST) = 1.0
          IF( MATCH(SEAST).EQ.1.0 ) WEIGHT(SEAST) = 1.0
C
C       Two matching neighbours: set their weights to those of the
C       neighbours on the opposite side of the interpolation rectangle
C
        ELSEIF( COUNT.EQ.2 ) THEN
          IF( (MATCH(NWEST).EQ.1.0).AND.(MATCH(NEAST).EQ.1.0) ) THEN
            WEIGHT(NWEST) = WEIGHT(SWEST)
            WEIGHT(NEAST) = WEIGHT(SWEST)
            NORMAL = WEIGHT(NWEST) + WEIGHT(NEAST)
          ELSEIF( (MATCH(NWEST).EQ.1.0).AND.(MATCH(SWEST).EQ.1.0) ) THEN
            WEIGHT(NWEST) = WEIGHT(NEAST)
            WEIGHT(SWEST) = WEIGHT(SEAST)
            NORMAL = WEIGHT(NWEST) + WEIGHT(SWEST)
          ELSEIF( (MATCH(NEAST).EQ.1.0).AND.(MATCH(SEAST).EQ.1.0) ) THEN
            WEIGHT(NEAST) = WEIGHT(NWEST)
            WEIGHT(SEAST) = WEIGHT(SWEST)
            NORMAL = WEIGHT(NEAST) + WEIGHT(SEAST)
          ELSEIF( (MATCH(SWEST).EQ.1.0).AND.(MATCH(SEAST).EQ.1.0) ) THEN
            WEIGHT(SWEST) = WEIGHT(NWEST)
            WEIGHT(SEAST) = WEIGHT(NEAST)
            NORMAL = WEIGHT(SWEST) + WEIGHT(SEAST)
          ELSEIF( (MATCH(NWEST).EQ.1.0).AND.(MATCH(SEAST).EQ.1.0) ) THEN
            WEIGHT(NWEST) = WEIGHT(NEAST)
            WEIGHT(SEAST) = WEIGHT(SWEST)
            NORMAL = WEIGHT(NWEST) + WEIGHT(SEAST)
          ELSE
            WEIGHT(NEAST) = WEIGHT(SEAST)
            WEIGHT(SWEST) = WEIGHT(NWEST)
            NORMAL = WEIGHT(NEAST) + WEIGHT(SWEST)
          ENDIF
C
C       Three matching neighbours with no weight, ie the interpolation
C       point is coincident with a grid point, but the land-sea masks
C       disagree about its type. Use it anyway.
C
        ELSE
          IF( MATCH(NWEST).EQ.0.0 ) THEN
            MATCH(NWEST) = 1.0
            NORMAL = WEIGHT(NWEST)
          ELSE IF( MATCH(NEAST).EQ.0.0 ) THEN
            MATCH(NEAST) = 1.0
            NORMAL = WEIGHT(NEAST)
          ELSE IF( MATCH(SWEST).EQ.0.0 ) THEN
            MATCH(SWEST) = 1.0
            NORMAL = WEIGHT(SWEST)
          ELSE
            MATCH(SEAST) = 1.0
            NORMAL = WEIGHT(SEAST)
          ENDIF
        ENDIF
      ENDIF
C
C     -----------------------------------------------------------------|
C*    Section 4.   Interpolate
C     -----------------------------------------------------------------|
C
  400 CONTINUE
C
      WEIGHT(NWEST) = WEIGHT(NWEST)/NORMAL
      WEIGHT(NEAST) = WEIGHT(NEAST)/NORMAL
      WEIGHT(SWEST) = WEIGHT(SWEST)/NORMAL
      WEIGHT(SEAST) = WEIGHT(SEAST)/NORMAL
C
C     Use nearest neighbour for vegetation field
C
      LVEGGY = (NITABLE.EQ.128).AND.
     X         ((NIPARAM.EQ.27).OR.
     X          (NIPARAM.EQ.28).OR.
     X          (NIPARAM.EQ.29).OR.
     X          (NIPARAM.EQ.30).OR.
     X          (NIPARAM.EQ.43) ) 
C     Force nearest neighbour processing with env variable
        CALL GETENV('NEAREST_NEIGHBOUR', YFLAG)
        IF( YFLAG(1:1).EQ.'1' ) LVEGGY = .TRUE.

C     Force nearest neighbour processing with INTOUT parameter
        IF( LMETHOD ) LVEGGY = .TRUE.

C
      IF( LVEGGY ) THEN
        NEAREST = NWEST
        IF( WEIGHT(NEAST).GT.WEIGHT(NEAREST) ) NEAREST = NEAST
        IF( WEIGHT(SWEST).GT.WEIGHT(NEAREST) ) NEAREST = SWEST
        IF( WEIGHT(SEAST).GT.WEIGHT(NEAREST) ) NEAREST = SEAST
        ISLPROC = OLDFLD(PT(NEAREST))
C
      ELSE
C
        ISLPROC = ( (OLDFLD(PT(NWEST)) * WEIGHT(NWEST) * MATCH(NWEST)) +
     X              (OLDFLD(PT(NEAST)) * WEIGHT(NEAST) * MATCH(NEAST)) +
     X              (OLDFLD(PT(SWEST)) * WEIGHT(SWEST) * MATCH(SWEST)) +
     X              (OLDFLD(PT(SEAST)) * WEIGHT(SEAST) * MATCH(SEAST)) )
      ENDIF
C
C     -----------------------------------------------------------------|
C*    Section 9.   Return
C     -----------------------------------------------------------------|
C
  900 CONTINUE
C
      RETURN
      END