NCEPLIBS-bufr  12.0.0
cadn30.f
Go to the documentation of this file.
1 C> @file
2 C> @brief Convert an FXY value from its WMO bit-wise
3 C> representation to its six-character representation.
4 C>
5 C> @author J. Ator @date 2004-08-18
6 
7 C> Convert an FXY value from its WMO bit-wise representation
8 C> to its six-character representation.
9 C>
10 C> This subroutine converts an FXY value from its WMO bit-wise
11 C> representation to its 6 character representation. It is similar
12 C> to function adn30(), except that it always returns 6 characters,
13 C> and it always returns its output as a call parameter instead of a
14 C> function value, which in turn allows it to be more easily called
15 C> from within a C language function.
16 C>
17 C> For a description of the WMO bit-wise representation of an FXY
18 C> value, see ifxy().
19 C>
20 C> @param[in] IDN - integer: Bit-wise representation of FXY value.
21 C> @param[out] ADN - character*6: FXY value.
22 C>
23 C> @author J. Ator @date 2004-08-18
24  SUBROUTINE cadn30( IDN, ADN )
25 
26  CHARACTER*(*) ADN
27  CHARACTER*6 ADN30
28 
29  adn = adn30( idn, 6 )
30 
31  RETURN
32  END
subroutine cadn30(IDN, ADN)
Convert an FXY value from its WMO bit-wise representation to its six-character representation.
Definition: cadn30.f:25