Hi Greg, I was looking at the pattern-action entries that we discussed earlier: WMO ^S[IMN][VW][ABCDEFJ].. .... ([0-3][0-9])([0-2][0-9]) FILE -close data/dynamo/(\1:yyyy)(\2:mm)\1\2.SHP WMO ^S.V.* .... ([0-3][[0-9])([0-2][0-9]) FILE -close data/weather/ddp/(\1:yyyy)(\1:mm)\1\2.SHP WMO ^S[IMN].... .... ([0-3][0-9])([0-2][0-9]) FILE -close data/dynamo/(\1:yyyy)(\2:mm)\1\2.SYN WMO ^S[IMN].... .... ([0-3][0-9])([0-2][0-9]) FILE -close data/weather/ddp/(\1:yyyy)(\2:mm)\1\2.SYN I see a mistake in the 1st, 2rd and 4th actions in this list (the 2nd action appears to be OK): you are using a reference to the hour field to set the month when you need to be using the day field to set the month (and year, which _is_ correct): WMO ^S[IMN][VW][ABCDEFJ].. .... ([0-3][0-9])([0-2][0-9]) FILE -close data/dynamo/(\1:yyyy)(\2:mm)\1\2.SHP WMO ^S[IMN].... .... ([0-3][0-9])([0-2][0-9]) FILE -close data/dynamo/(\1:yyyy)(\2:mm)\1\2.SYN WMO ^S[IMN].... .... ([0-3][0-9])([0-2][0-9]) FILE -close data/weather/ddp/(\1:yyyy)(\2:mm)\1\2.SYN In all of these, the (\2:mm) should be (\1:mm). Interestingly, these are the only 3 actions in the pqact_wmo.conf file you sent earlier that have this mistake (NB: lots of entries have \2:mm fields, but the fact that they also are using \2:yyyy suggests that the month field is being matched, but I haven't checked this to be 100% sure). I am betting that this solves the mystery of data missing between 6 and 23Z. Cheers, Tom -- **************************************************************************** Unidata User Support UCAR Unidata Program (303) 497-8642 P.O. Box 3000 address@hidden Boulder, CO 80307 ---------------------------------------------------------------------------- Unidata HomePage http://www.unidata.ucar.edu **************************************************************************** Ticket Details =================== Ticket ID: YYT-234815 Department: Support IDD Priority: Normal Status: Closed
NOTE: All email exchanges with Unidata User Support are recorded in the Unidata inquiry tracking system and then made publicly available through the web. If you do not want to have your interactions made available in this way, you must let us know in each email you send to us.