read grib2 parameter on surface level using grid_stat #2465
-
Hello The forecast field in the config file is defined like this Since grid_stat was unable to find the variable I defined a table file like this: I tried both with FSNOWC (which is the variable that wgrib2 prints) I get the error read_data_plane() -> fscov/Z0 not found in file I tried using L0 and Z0, but not sure how to specify this type of variable/level Thanks for any help. Best regards, Carlos |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Carlos, thanks for laying out the issue you're seeing and sending along sample data to illustrate. I am able to replicate the problem you describe by running the
And comparing that to the output from wgrib2 version 3.1.1, it happily identifies this data as being "FSNOWC":
And I certainly see the "FSNOWC" variable documented in this GRIB2 table. Using the MET_GRIB2_TABLES workaround for now, I created a file named
And I set
Some conclusions from this:
Thanks for pointing out this short-coming in MET, and for reading through the docs to figure out the MET_GRIB_TABLES workaround. Please let me know if you have any questions or issues with the suggestions I provided above. |
Beta Was this translation helpful? Give feedback.
Carlos, thanks for laying out the issue you're seeing and sending along sample data to illustrate. I am able to replicate the problem you describe by running the
plot_data_plane
tool for MET version 11.1.0:And comparing that to the output from wgrib2 version 3.1.1, it happily identifies this data as being "FSNOWC":
And I certainly see the "FSNOWC" variable documented in this GRIB2 table.
Using the MET_GRIB2_TABLES…