NCEPLIBS-bufr  11.6.0
 All Data Structures Files Functions Variables Pages
cadn30.f
Go to the documentation of this file.
1 C> @file
2 C> @brief Convert an FXY value from its bit-wise (integer)
3 C> representation to its six character representation
4 
5 C> This subroutine converts an FXY value from its bit-wise (integer)
6 C> representation to its 6 character representation. It is similar
7 C> to function adn30(), except that it always returns 6 characters,
8 C> and it always returns its output as a call parameter instead of a
9 C> function value, which in turn allows it to be more easily called
10 C> from within a C language function.
11 C>
12 C> @author J. Ator
13 C> @date 2004-08-18
14 C>
15 C> @param[in] IDN -- integer: Bit-wise representation of FXY value
16 C> @param[out] ADN -- character*6: FXY value
17 C>
18 C> <b>Program History Log:</b>
19 C> | Date | Programmer | Comments |
20 C> | -----|------------|----------|
21 C> | 2004-08-18 | J. Ator | Original author |
22 C>
23  SUBROUTINE cadn30( IDN, ADN )
24 
25  character*(*) adn
26  character*6 adn30
27 
28  adn = adn30( idn, 6 )
29 
30  RETURN
31  END
character *(*) function adn30(IDN, L30)
This function converts an FXY value from its bit-wise (integer) representation to its 5 or 6 characte...
Definition: adn30.f:28
subroutine cadn30(IDN, ADN)
This subroutine converts an FXY value from its bit-wise (integer) representation to its 6 character r...
Definition: cadn30.f:23