NCEPLIBS-bufr  11.5.0
 All Data Structures Files Functions Variables Pages
getbmiss.f
Go to the documentation of this file.
1 C> @file
2 C> @brief Get the current placeholder value for "missing" data
3 
4 C> This function returns the current placeholder value which
5 C> represents "missing" data when reading from or writing to
6 C> BUFR files.
7 C>
8 C> @author J. Woollen
9 C> @date 2012-09-15
10 C>
11 C> @returns getbmiss - real*8: current placeholder value for
12 C> "missing" data
13 C>
14 C> <p>This subroutine can be called at any time from within an
15 C> application program, and the returned value can then be
16 C> used to represent "missing" data within the context of
17 C> future calls to any of the other BUFRLIB
18 C> [values-reading subroutines](@ref hierarchy) or
19 C> [values-writing subroutines](@ref hierarchy).
20 C> This placeholder value can also be changed at any
21 C> time via a separate call to subroutine setbmiss().
22 C>
23 C> <b>Program history log:</b>
24 C> - 2012-09-15 J. Woollen -- Original author
25 C>
26  REAL*8 FUNCTION getbmiss()
27 
28  USE modv_bmiss
29 
30 c-----------------------------------------------------------------------
31 c-----------------------------------------------------------------------
32 
33  CALL openbf(0,'FIRST',0)
34 
35  getbmiss = bmiss
36 
37  RETURN
38  END
subroutine openbf(LUNIT, IO, LUNDX)
This subroutine connects a new file to the BUFRLIB software for input or output operations.
Definition: openbf.F:157
This module declares and initializes the BMISS variable.
Definition: modv_BMISS.f90:9
REAL *8 function getbmiss()
This function returns the current placeholder value which represents &quot;missing&quot; data when reading from...
Definition: getbmiss.f:26