LOGICAL FUNCTION UA_TPID ( field ) C************************************************************************ C* UA_TPID * C* * C* This function determines whether the input field (i.e. group) * C* contains a tropopause data indicator. * C* * C* UA_TPID ( FIELD ) * C* * C* Input parameters: * C* FIELD CHAR* Field * C* * C** * C* Log: * C* J. Ator/NCEP 10/99 * C************************************************************************ INCLUDE 'GEMPRM.PRM' INCLUDE 'uacmn.cmn' C* CHARACTER*(*) field C------------------------------------------------------------------------ IF ( field (1:2) .eq. '88' ) THEN UA_TPID = .true. ELSE UA_TPID = .false. END IF C* RETURN END