C* Set the BUFR RLV parameters. C* C* Define the RLV parameters that will be used. C* CHARACTER*(*) CRLVST PARAMETER ( CRLVST = + 'VSIG PRLC ' // + 'GP07 GP10 ' // + 'TMDB TMDP WDIR ' // + 'WSPD AWSB AWSA' ) C* C* Set the total number of RLV parameters that will be used. C* PARAMETER ( NCRLV = 10 ) C* C* List the relative location within CRLVST of each RLV parameter. C* PARAMETER + ( LLVSIG = 1, LLPRLC = 2, + LLGP07 = 3, LLGP10 = 4, + LLTMDB = 5, LLTMDP = 6, LLWDIR = 7, + LLWSPD = 8, LLAWSB = 9, LLAWSA = 10 ) C*---------------------------------------------------------------------- C* Set the BUFR PLV parameters. C* C* Define the PLV parameters that will be used. C* CHARACTER*(*) CPLVST PARAMETER ( CPLVST = + 'VSIG GP07 ' // + 'WDIR WSPD' ) C* C* Set the total number of PLV parameters that will be used. C* PARAMETER ( NCPLV = 4 ) C* C* List the relative location within CPLVST of each PLV parameter. C* PARAMETER + ( LPVSIG = 1, LPGP07 = 2, + LPWDIR = 3, LPWSPD = 4 ) C*---------------------------------------------------------------------- C* Set the BUFR CLD parameters. C* C* Define the CLD parameters that will be used. C* CHARACTER*(*) CCLDST PARAMETER ( CCLDST = + 'CLTP CLAM HBLCS' ) C* C* Set the total number of CLD parameters that will be used. C* PARAMETER ( NCCLD = 3 ) C* C* List the relative location within CCLDST of each CLD parameter. C* PARAMETER + ( LCCLTP = 1, LCCLAM = 2, LCHBLC = 3 )