Writing configuration file to ingest WRF forecast data #1174
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Thanks for posting the screenshots to illustrate the issue you're having in configuring the MET Point-Stat tool. I see how and why this behavior is confusing. You are passing a raw WRF NetCDF output file to Point-Stat and setting "file_type = NETCDF_PINT;" to tell MET to interpret it as such, but you're getting an error message about parsing a GRIB level information. This is actually an issue in how the "obs" dictionary is defined in the Point-Stat config file. I do see that your Point-Stat config file includes this line:
That copies the forecast settings into the observation dictionary. So it tells Point-Stat to look for observations named "T2" with a level value of "(0,*,*)". And since "obs = fcst" appears in the default Point-Stat config file, it's easy to leave that setting as-is. However it only works when processing GRIB1 or GRIB2 model data. Instead, you'll need to actually define the "obs" dictionary. By convention, those configuration settings are stored as if they were for GRIB data. Please try adding:
Does that produce any better results? I can see that we should add some log messages to make it clear that this error occurs when parsing the "obs" dictionary. |
Beta Was this translation helpful? Give feedback.
Thanks for posting the screenshots to illustrate the issue you're having in configuring the MET Point-Stat tool.
I see how and why this behavior is confusing. You are passing a raw WRF NetCDF output file to Point-Stat and setting "file_type = NETCDF_PINT;" to tell MET to interpret it as such, but you're getting an error message about parsing a GRIB level information. This is actually an issue in how the "obs" dictionary is defined in the Point-Stat config file.
I do see that your Point-Stat config file includes this line:
That copies the forecast settings into the observation dictionary. So it tells Point-Stat to look for observations named "T2" with a level value of "(0,*,*)…