C----------------------------------------------------------------------- C Maximum number of Section 3 FXY descriptors that can be C written into a BUFR message by the BUFRLIB software. PARAMETER ( MAXNC = 600 ) C----------------------------------------------------------------------- C Maximum number of entries in the internal string cache. PARAMETER ( MXS = 1000 ) C----------------------------------------------------------------------- C Maximum number of entries in the internal descriptor list cache. PARAMETER ( MXCNEM = 450 ) C----------------------------------------------------------------------- C Maximum number of "long" character strings (i.e. greater than C 8 bytes) which can be read from a subset of a compressed BUFR C message. #ifdef SUPERSIZE_BUILD PARAMETER ( MXRST = 500 ) #else PARAMETER ( MXRST = 50 ) #endif C----------------------------------------------------------------------- C Maximum number of jump/link table entries which can be used to C store new reference values (as defined using the 2-03 operator). PARAMETER ( MXNRV = 12 ) C----------------------------------------------------------------------- C Maximum number of 2-04 associated fields that can be in effect C at the same time for any given Table B descriptor. PARAMETER ( MXNAF = 3 ) C----------------------------------------------------------------------- C BUFRLIB "missing" value. The default value for BMISS is set C within subroutine BFRINI, but it can be modified by the user via C a subsequent call to subroutine SETBMISS. COMMON /BUFRBMISS/ BMISS REAL*8 BMISS C-----------------------------------------------------------------------