NCEPLIBS-bufr 11.7.1
|
Convert an FXY value from its six character representation to its bit-wise (integer) representation. More...
Go to the source code of this file.
Functions/Subroutines | |
function | ifxy (ADSC) |
This function converts an FXY value from its 6 character representation to its bit-wise (integer) representation. More... | |
Convert an FXY value from its six character representation to its bit-wise (integer) representation.
Definition in file ifxy.f.
function ifxy | ( | character*6 | ADSC | ) |
This function converts an FXY value from its 6 character representation to its bit-wise (integer) representation.
[in] | ADSC | – character*6: FXY value |
For example, if ADSC = '063022' F | X | Y 0 | 63 | 22 0 0 1 1 1 1 1 1 0 0 0 1 0 1 1 0 then the corresponding ifxy = ( 2**13 + 2**12 + 2**11 + 2**10 + 2**9 + 2**8 + 2**4 + 2**2 + 2**1 ) = 16150Program History Log:
Date | Programmer | Comments |
---|---|---|
1994-01-06 | J. Woollen | Original author |
2003-11-04 | J. Ator | Added documentation |
2003-11-04 | S. Bender | Added remarks and routine interdependencies |
2003-11-04 | D. Keyser | Unified/portable for WRF; added history documentation |
Definition at line 42 of file ifxy.f.
References ifxy().
Referenced by bfrini(), dxinit(), getcfmng(), getntbe(), idn30(), ifxy(), ireadmt(), nemtab(), nemtbb(), nemtbd(), nummtb(), numtbd(), reads3(), sntbde(), sntbfe(), stbfdx(), stntbi(), and ufbqcp().