NCEPLIBS-ip 5.3.0
All Data Structures Namespaces Files Functions Variables Pages
ipxetas.F90
Go to the documentation of this file.
1!> @file
2!> @brief Expand or contract eta grids using linear interpolation.
3!> @author Iredell @date 96-04-10
4
5!> Expand or contract eta grids using linear interpolation.
6!>
7!> This subprogram transforms between the staggered eta grids as used
8!> in the eta model and for native grid transmission and their full
9!> expansion as used for general interpolation and graphics. The eta
10!> grids are rotated latitude-longitude grids staggered as defined by
11!> the arakawa e-grid, that is with mass data points alternating with
12!> wind data points.
13!>
14!> This is similar to:
15!> - ipxwafs2() which uses linear interpolation and accounts for
16!> - bitmapped data.
17!> - ipxwafs2() which uses neighbor interpolation and accounts for
18!> - bitmapped data.
19!>
20!> ### Program History Log
21!> Date | Programmer | Comments
22!> -----|------------|---------
23!> 96-04-10 | Iredell | Initial
24!> 2015-07-14 | Gayno | Make grib 2 compliant. Replace 4-pt interpolation with call to ipolates.
25!> 2022-11-09 | Engle | Made ibi and ibo scalars.
26!>
27!> @param[in] idir integer transform option.
28!> - 0 to expand staggered fields to full fields
29!> - -1 to contract full mass fields to staggered fields
30!> - -2 to contract full wind fields to staggered fields
31!> @param[in] igdtnumi integer grid definition template number - input
32!> grid. Corresponds to the gfld%igdtnum component of the ncep g2
33!> library gridmod data structure. Must be = 1 (for a rotated lat/lon
34!> grid.)
35!> @param[in] igdtlen integer number of elements of the grid
36!> definition template array - same for input and output grids (=22)
37!> which are both rotated lat/lon grids. corresponds to the
38!> gfld%igdtlen component of the ncep g2 library gridmod data
39!> structure.
40
41!> @param[in] igdtmpli integer (igdtlen) grid definition template
42!> array - input grid. Corresponds to the gfld%igdtmpl component of
43!> the ncep g2 library gridmod data structure (section 3 info):
44
45!> - 1 shape of earth, octet 15
46!> - 2 scale factor of spherical earth radius, octet 16
47!> - 3 scaled value of radius of spherical earth, octets 17-20
48!> - 4 scale factor of major axis of elliptical earth, octet 21
49!> - 5 scaled value of major axis of elliptical earth, octets 22-25
50!> - 6 scale factor of minor axis of elliptical earth, octet 26
51!> - 7 scaled value of minor axis of elliptical earth, octets 27-30
52!> - 8 number of points along a parallel, octs 31-34
53!> - 9 number of points along a meridian, octs 35-38
54!> - 10 basic angle of initial production domain, octets 39-42
55!> - 11 subdivisions of basic angle, octets 43-46
56!> - 12 latitude of first grid point, octets 47-50
57!> - 13 longitude of first grid point, octets 51-54
58!> - 14 resolution and component flags, octet 55
59!> - 15 latitude of last grid point, octets 56-59
60!> - 16 longitude of last grid point, octets 60-63
61!> - 17 i-direction increment, octets 64-67
62!> - 18 j-direction increment, octets 68-71
63!> - 19 scanning mode, octet 72
64!> - 20 latitude of southern pole of projection, octets 73-76
65!> - 21 longitude of southern pole of projection, octets 77-80
66!> - 22 angle of rotation of projection, octs 81-84
67!> @param[in] npts_input integer number points input grid
68!> @param[in] bitmap_input logical (npts_input) input grid bitmap
69!> @param[in] data_input real (npts_input) input grid data
70!> @param[out] igdtnumo integer grid definition template number -
71!> output grid. Corresponds to the gfld%igdtnum component of the ncep
72!> g2 library gridmod data structure. Same as igdtnumi (=1 for a
73!> rotated lat/lon grid).
74!> @param[out] igdtmplo integer (igdtlen) grid definition template
75!> array - output grid. Corresponds to the gfld%igdtmpl component of
76!> the ncep g2 library gridmod data structure. Array definitions same
77!> as "igdtmpli".
78!> @param[out] npts_output integer number points output grid. the
79!> j-dimension of the input and output grids are the same. When going
80!> from a staggered to a full grid the i-dimension increases to
81!> idim*2-1. When going from full to staggered the i-dimension
82!> decreases to (idim+1)/2.
83!> @param[out] bitmap_output logical (npts_outut) output grid bitmap
84!> @param[out] data_output real (npts_output) output grid data
85!> @param[out] iret integer return code
86!> - 0 successful transformation
87!> - non-0 invalid grid specs or problem in ipolates().
88!>
89! @author Iredell @date 96-04-10
90 SUBROUTINE ipxetas(IDIR, IGDTNUMI, IGDTLEN, IGDTMPLI, NPTS_INPUT, &
91 BITMAP_INPUT, DATA_INPUT, IGDTNUMO, IGDTMPLO, &
92 NPTS_OUTPUT, BITMAP_OUTPUT, DATA_OUTPUT, IRET)
93 USE ipolates_mod
94 IMPLICIT NONE
95!
96 INTEGER, INTENT(IN ) :: IDIR
97 INTEGER, INTENT(IN ) :: IGDTNUMI, IGDTLEN
98 INTEGER, INTENT(IN ) :: IGDTMPLI(IGDTLEN)
99 INTEGER, INTENT(IN ) :: NPTS_INPUT, NPTS_OUTPUT
100 INTEGER, INTENT( OUT) :: IGDTNUMO
101 INTEGER, INTENT( OUT) :: IGDTMPLO(IGDTLEN)
102 INTEGER, INTENT( OUT) :: IRET
103
104 LOGICAL(KIND=1), INTENT(IN ) :: BITMAP_INPUT(NPTS_INPUT)
105 LOGICAL(KIND=1), INTENT( OUT) :: BITMAP_OUTPUT(NPTS_OUTPUT)
106
107 REAL, INTENT(IN ) :: DATA_INPUT(NPTS_INPUT)
108 REAL, INTENT( OUT) :: DATA_OUTPUT(NPTS_OUTPUT)
109
110 INTEGER :: SCAN_MODE, ISCALE, IP, IPOPT(20)
111 INTEGER :: IBI, IBO, J, KM, NO
112
113 REAL :: DLONS
114 REAL, ALLOCATABLE :: OUTPUT_RLAT(:), OUTPUT_RLON(:)
115! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
116 iret = 0
117! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
118! ROUTINE ONLY WORKS FOR ROTATED LAT/LON GRIDS.
119 IF (igdtnumi/=1) THEN
120 iret=1
121 RETURN
122 ENDIF
123!
124 scan_mode=igdtmpli(19)
125 IF((scan_mode==68.OR.scan_mode==72).AND.(idir<-2.OR.idir>-1))THEN
126 igdtnumo=igdtnumi
127 igdtmplo=igdtmpli
128 igdtmplo(19)=64
129 igdtmplo(8)=igdtmplo(8)*2-1
130 IF((igdtmplo(8)*igdtmplo(9))/=npts_output)THEN
131 iret=3
132 RETURN
133 ENDIF
134 iscale=igdtmplo(10)*igdtmplo(11)
135 IF(iscale==0) iscale=10**6
136 dlons=float(igdtmplo(17))/float(iscale)
137 dlons=dlons*0.5
138 igdtmplo(17)=nint(dlons*float(iscale))
139 ELSEIF(scan_mode==64.AND.idir==-1)THEN ! FULL TO H-GRID
140 igdtnumo=igdtnumi
141 igdtmplo=igdtmpli
142 igdtmplo(19)=68
143 igdtmplo(8)=(igdtmplo(8)+1)/2
144 IF((igdtmplo(8)*igdtmplo(9))/=npts_output)THEN
145 iret=3
146 RETURN
147 ENDIF
148 iscale=igdtmplo(10)*igdtmplo(11)
149 IF(iscale==0) iscale=10**6
150 dlons=float(igdtmplo(17))/float(iscale)
151 dlons=dlons*2.0
152 igdtmplo(17)=nint(dlons*float(iscale))
153 ELSEIF(scan_mode==64.AND.idir==-2)THEN ! FULL TO V-GRID
154 igdtnumo=igdtnumi
155 igdtmplo=igdtmpli
156 igdtmplo(19)=72
157 igdtmplo(8)=(igdtmplo(8)+1)/2
158 IF((igdtmplo(8)*igdtmplo(9))/=npts_output)THEN
159 iret=3
160 RETURN
161 ENDIF
162 iscale=igdtmplo(10)*igdtmplo(11)
163 IF(iscale==0) iscale=10**6
164 dlons=float(igdtmplo(17))/float(iscale)
165 dlons=dlons*2.0
166 igdtmplo(17)=nint(dlons*float(iscale))
167 ELSE
168 iret=2
169 RETURN
170 ENDIF
171
172 km=1
173 ip=0
174 ipopt=0
175 ibi=1
176 ibo=0
177
178 ALLOCATE(output_rlat(npts_output))
179 ALLOCATE(output_rlon(npts_output))
180
181 CALL ipolates(ip, ipopt, igdtnumi, igdtmpli, igdtlen, &
182 igdtnumo, igdtmplo, igdtlen, &
183 npts_input, npts_output, km, ibi, bitmap_input, data_input, &
184 no, output_rlat, output_rlon, ibo, bitmap_output, data_output, iret)
185
186 DEALLOCATE(output_rlat, output_rlon)
187
188 IF(iret /= 0)THEN
189 print*,'- PROBLEM IN IPOLATES: ', iret
190 RETURN
191 ENDIF
192
193! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
194! REPLACE ANY UNDEFINED POINTS ALONG THE LEFT AND RIGHT EDGES.
195 DO j=1, igdtmplo(9)
196 bitmap_output(j*igdtmplo(8))=bitmap_output(j*igdtmplo(8)-1)
197 data_output(j*igdtmplo(8))=data_output(j*igdtmplo(8)-1)
198 bitmap_output((j-1)*igdtmplo(8)+1)=bitmap_output((j-1)*igdtmplo(8)+2)
199 data_output((j-1)*igdtmplo(8)+1)=data_output((j-1)*igdtmplo(8)+2)
200 ENDDO
201
202 RETURN
203! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
204 END SUBROUTINE ipxetas
subroutine ipxetas(idir, igdtnumi, igdtlen, igdtmpli, npts_input, bitmap_input, data_input, igdtnumo, igdtmplo, npts_output, bitmap_output, data_output, iret)
Expand or contract eta grids using linear interpolation.
Definition ipxetas.F90:93
Top-level driver for scalar interpolation interpolation routine ipolates().
Definition ipolates.F90:12