SUBROUTINE CG_IFPT ( rimnem, cimnem, iret ) C************************************************************************ C* CG_IFPT * C* * C* This subroutine prints the interface values arrays to the decoder * C* log if the verbosity level is 3 or higher. * C* * C* CG_IFPT ( RIMNEM, CIMNEM, IRET ) * C* * C* Input parameters: * C* RIMNEM (*) CHAR* Interface mnemonics for reals * C* CIMNEM (*) CHAR* Interface mnemonics for chars * C* * C* Output parameters: * C* IRET INTEGER Return code * C* 0 = Normal return * C* * C** * C* Log: * C* D. Kidwell/NCEP 10/97 Adapted from AF_IFPT * C* D. Kidwell/NCEP 5/98 Call DC_IFPC, DC_IFPR, 'MA' -> 'DC' in * C* WLOG calls * C* D. Kidwell/NCEP 10/98 Added intf mnemonics to calling sequence* C* R. Hollern/NCEP 1/99 Set verbosity level to 3 * C* R. Hollern/NCEP 7/99 Got report obs time from interface array* C* R. Hollern/NCEP 11/99 Modified cloud data print logic. Added * C* supplementary wind data print logic. * C* Added the precipitation print logic. * C* R. Hollern/NCEP 11/99 Removed the logic to print drifting * C* buoy data * C* R. Hollern/NCEP 2/00 Removed the code to print raw report * C* C. Caruso Magee/NCEP 4/00 Modifying for Coast Guard data * C* C. Caruso Magee/NCEP 6/00 Remove SPWS (replace by single-lev GUST)* C* C. Caruso Magee/NCEP 6/00 Remove NCLO and NSWV * C************************************************************************ INCLUDE 'GEMPRM.PRM' INCLUDE 'cgcmn.cmn' C* CHARACTER*(*) rimnem (*), cimnem (*) C------------------------------------------------------------------------ iret = 0 loglvl = 3 C C* Print all of the single-level character interface values C* that are not missing. C CALL DC_IFPC ( loglvl, cimnem, civals, NCIMN, ierf ) C C* Print all of the single-level real interface values C* that are not missing. C CALL DC_IFPR ( loglvl, rimnem, rivals, NRSLMN, ierf ) C* RETURN END