NCEPLIBS-bufr 11.7.1
igetmxby.f
Go to the documentation of this file.
1C> @file
2C> @brief Get the maximum length of a BUFR message that can be
3C> written to an output file.
4
5C> This function returns the maximum length of a BUFR message that
6C> can be written to any output file by the BUFRLIB software.
7C>
8C> @author J. Ator
9C> @date 2016-06-27
10C>
11C> @returns igetmxby -- integer: Maximum length of a BUFR message
12C> that can be written to an output file by
13C> the BUFRLIB software
14C>
15C> <p>This maximum length value can be changed at any time via a
16C> separate call to subroutine maxout().
17C>
18C> <b>Program history log:</b>
19C> | Date | Programmer | Comments |
20C> | -----|------------|----------|
21C> | 2016-06-27 | J. Ator | Original author |
22C>
23 INTEGER FUNCTION igetmxby()
24
25 USE moda_bitbuf
26
27c-----------------------------------------------------------------------
28c-----------------------------------------------------------------------
29
30 CALL openbf(0,'FIRST',0)
31
33
34 RETURN
35 END
integer function igetmxby()
This function returns the maximum length of a BUFR message that can be written to any output file by ...
Definition: igetmxby.f:24
This module contains array and variable declarations used to store BUFR messages internally for multi...
Definition: moda_bitbuf.F:10
integer maxbyt
Maximum length of an output BUFR message.
Definition: moda_bitbuf.F:22
subroutine openbf(LUNIT, IO, LUNDX)
This subroutine connects a new file to the BUFRLIB software for input or output operations.
Definition: openbf.f:139