Skip to content

WARING in GRIB2_ipdtmpl_index setting #2417

Discussion options

You must be logged in to vote

Hi @BinbinZhou-NOAA I see you're getting a warning related to the GRIB2_ipdtmpl_index and GRIB2_ipdtmpl_val configuration options. I tried some things and was able to replicate the warning message you're getting. The solution is just removing the enclosing quotes (") around the values.

The MET code expects them to be set as, and parses them as, integers. The warning message occurs because you're defining them as strings.

For example, just changes this setting FROM THIS:

{ name="APCP"; level="L0"; GRIB2_ipdtmpl_index="21"; GRIB2_ipdtmpl_val="0"; }

TO THIS:

{ name="APCP"; level="L0"; GRIB2_ipdtmpl_index=21; GRIB2_ipdtmpl_val=0; }

Please scan through your configuration settings and remove …

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by JohnHalleyGotway
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment