Specifying "desc" in forecast vs. obs in PointStat #2445
Replies: 1 comment
-
@gsketefian I see you have a question about setting the description column (DESC) in the MET output. The short answer is no, specifying Here's a link to the relevant documentation in the MET User's Guide: There's several options like this that can be specified separately for each verification task. Look in the PointStatConfig_default file for entries with Logically, as you note, these things could be specified in the forecast dictionary or the observation dictionary. For simplicity, we chose the convention noted above, that settings in this category should be specified within the observation dictionary. I can see how the code could be enhanced to support what you're requesting, but it isn't a trivial change. Because we always read the default config file, the default In this specific case, I'd actually recommend that you consider using the
That would set the So I'll pose a question to you. As a METplus user, do you think it's worth the effort to document this feature request with a new GitHub issue in the MET repo? Would the flexibility of specifying the description value in the forecast OR observation settings greatly improve the usability/configurability of MET? If so, I'm happy to add it and confident that a good solution exists. We would also need to update the documentation and config file contents to state |
Beta Was this translation helpful? Give feedback.
-
Hi,
I have a METplus config file for PointStat that has this section:
Here, the obs for VAR10 and VAR11 are the same; they're just the PBL height. But for the forecast, VAR10 is the PBL height calculated using the TKE, and VAR11 is the PBL height using the Richardson number (RI). So it makes sense that the
desc = "[TKE|RI]"
options are set for the forecast but not the obs. The issue I have is that the resulting stat file containsNA
in theDESC
column of these variables instead ofTKE
orRI
. But if I switch thedesc = ...
options to the obs, i.e.then
TKE
andRI
do show up in theDESC
column of the stat file. But this is misleading because it makes it look like the obs for the two variables are somehow different, and it doesn't clearly indicate that the forecasts are the ones that are different. Is there a way to make thedesc
option for the FCST variables show up in the stat file?Thanks,
Gerard
Beta Was this translation helpful? Give feedback.
All reactions