GridStat WARNING when FCST and OBS data files record slightly different valid times #2472
-
Hi: [Please move this discussion to the appropriate channel if needed] The issue:I am running a job that produces grid-to-grid Composite Reflectivity statistics, and while the job runs successfully, it consistently puts out a "WARNING" log indicating that the valid times of the forecast file and obs file do not exactly match (e.g.):
All such WARNINGs I could find indicate a difference of only +60 seconds or less. Expected Behavior:I'd like to signal to METplus that such a difference (~1m) in valid times is permissible. Is it possible to mute these WARNINGs somehow? My attempts to fix:I tried setting "OBS_GRID_STAT_FILE_WINDOW_END = 60" but I realized that this configuration corresponds with the time used in the file name and not the valid time stored in the file's metadata, so this change did not mute the warning. Other info:sample_conf.txt I've attached a sample conf file and corresponding log file for context. Please let me know if this discussion requires more data/information and I'll provide it. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @MarcelCaron-NOAA, I see you have a question about the writing of warning messages in the MET tools when the forecast and observation valid timestamps differ. We discussed this during our internal MET development meeting yesterday afternoon. I realize that we need to be very judicious about when MET writes The easiest solution would be simply changing the valid time mismatch warning messages to debug messages. But I do think it's worthwhile to maintain these checks and warn users about "large differences" to avoid big mistakes. While those mistakes are unlikely in the context of the highly controlled EVS runs, they're much more likely when running MET in research settings. I propose that we add a new configuration option to define a maximum allowable time difference and only trigger a warning when that time difference is exceeded. I'll plan to default that difference to 0 to maintain the existing behavior. But increasing it would silence the warning in this situation... or setting it to a bad data value would silence all such warnings. Is that the sort of change you're looking for? If so, I'll write up a GitHub issue to describe this change. |
Beta Was this translation helpful? Give feedback.
Hi @MarcelCaron-NOAA, I see you have a question about the writing of warning messages in the MET tools when the forecast and observation valid timestamps differ. We discussed this during our internal MET development meeting yesterday afternoon.
I realize that we need to be very judicious about when MET writes
WARNING
messages when being run operationally on WCOSS2. We want to only write them when there is a significant problem that requires attention.The easiest solution would be simply changing the valid time mismatch warning messages to debug messages. But I do think it's worthwhile to maintain these checks and warn users about "large differences" to avoid big mistakes. While those mis…