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