c ------------------------------------------------------------------ c file 'p1strlen.inc' c c These parameter variables are used to size certain global strings c at compile time for WERM. They may also be consulted from within c sections of the WERM code if this file has been included. c integer mfname integer mwsta integer mloc integer mdate c c + + + VARIABLE DECLARATIONS + + + c parameter (mfname = 30) parameter (mwsta = 30) parameter (mloc = 10) parameter (mdate = 10) c c + + + VARIABLE DEFINITIONS + + + c c mfname - Maximum length of filenames c c range values min max c ------------ --------- --------- c fixed 1 OS dependent c typical 15 15 c ------------ --------- --------- c c - The length of character strings containing filenames c to be handled by any compiled version of WERM is c specified by this parameter variable. c c mwsta - Maximum length of weather station names c c range values min max c ------------ --------- --------- c fixed 1 OS dependent c typical 30 30 c ------------ --------- --------- c c - The length of character strings containing weather c station names to be handled by any compiled version c of WERM is specified by this parameter variable. c c mloc - Maximum length of weather station location strings c c range values min max c ------------ --------- --------- c fixed 1 OS dependent c typical 10 10 c ------------ --------- --------- c c - The length of character strings containing the c location of weather station names to be handled c by any compiled version of WERM is specified c by this parameter variable. c c mdate - Maximum length of date strings c c range values min max c ------------ --------- --------- c fixed 8 OS dependent c typical 10 10 c ------------ --------- --------- c c - The length of character strings containing dates c to be handled by any compiled version of WERM is c specified by this parameter variable. c c ------------------------------------------------------------------