NCEPLIBS-bufr 11.7.1
All Data Structures Namespaces Files Functions Variables Pages
iupbs3.f
Go to the documentation of this file.
1C> @file
2C> @brief Read a data value from Section 3 of a BUFR message.
3
4C> This function returns a specified value from within Section 3
5C> of a BUFR message.
6C>
7C> @author J. Ator
8C> @date 2009-03-23
9C>
10C> @param[in] MBAY -- integer(*): BUFR message
11C> @param[in] S3MNEM -- character*(*): Value to be read from
12C> Section 3 of MBAY
13C> - 'NSUB' = Number of data subsets
14C> - 'IOBS' = Flag indicating whether the
15C> message contains observed data:
16C> - 0 = No
17C> - 1 = Yes
18C> - 'ICMP' = Flag indicating whether the
19C> message contains compressed data:
20C> - 0 = No
21C> - 1 = Yes
22C> @returns iupbs3 -- integer: Value corresponding to S3MNEM
23C> - -1 = S3MNEM was invalid
24C>
25C> @remarks
26C> - The start of the BUFR message (i.e. the string 'BUFR') must be
27C> aligned on the first 4 bytes of MBAY.
28C>
29C> <b>Program history log:</b>
30C> | Date | Programmer | Comments |
31C> | -----|------------|----------|
32C> | 2009-03-23 | J. Ator | Original author |
33C>
34 FUNCTION iupbs3(MBAY,S3MNEM)
35
36 dimension mbay(*)
37
38 character*(*) s3mnem
39
40C-----------------------------------------------------------------------
41C-----------------------------------------------------------------------
42
43C Call subroutine WRDLEN to initialize some important information
44C about the local machine, just in case subroutine OPENBF hasn't
45C been called yet.
46
47 CALL wrdlen
48
49C Skip to the beginning of Section 3.
50
51 CALL getlens(mbay,3,len0,len1,len2,len3,l4,l5)
52 ipt = len0 + len1 + len2
53
54C Unpack the requested value.
55
56 IF(s3mnem.EQ.'NSUB') THEN
57 iupbs3 = iupb(mbay,ipt+5,16)
58 ELSE IF( (s3mnem.EQ.'IOBS') .OR. (s3mnem.EQ.'ICMP') ) THEN
59 ival = iupb(mbay,ipt+7,8)
60 IF(s3mnem.EQ.'IOBS') THEN
61 imask = 128
62 ELSE
63 imask = 64
64 ENDIF
65 iupbs3 = min(1,iand(ival,imask))
66 ELSE
67 iupbs3 = -1
68 ENDIF
69
70 RETURN
71 END
subroutine getlens(MBAY, LL, LEN0, LEN1, LEN2, LEN3, LEN4, LEN5)
This subroutine reads the lengths of all of the individual sections of a given BUFR message,...
Definition: getlens.f:40
function iupb(MBAY, NBYT, NBIT)
THIS FUNCTION UNPACKS AND RETURNS A BINARY INTEGER WORD CONTAINED WITHIN NBIT BITS OF A BUFR MESSAGE ...
Definition: iupb.f:37
function iupbs3(MBAY, S3MNEM)
This function returns a specified value from within Section 3 of a BUFR message.
Definition: iupbs3.f:35
subroutine wrdlen
This subroutine figures out some important information about the local machine on which the BUFRLIB s...
Definition: wrdlen.F:36