Skip to content

unrecognized GRIB1 field abbreviation 'APCP_24' #2640

Closed Locked Answered by j-opatz
JosemariePalero asked this question in Configuration
Discussion options

You must be logged in to vote

Hello,

And thank you for your question. I think the fix for this problem may be in how you are calling the forecast field level.

As you stated, you've already successfully used the PCP-Combine tool on your WRF file; this means that the input file is a netCDF. But in your forecast dictionary's level setting you're using

fcst = {
field = [
{
name = "APCP_24";
level = [ "A24" ];

When using a netCDF file, you must use the proper level notation for the file type. For netCDFs, this is parentheses, along with the indicies for each array of data. Since APCP_24 is defined by (lat,lon), the correct notation would be

fcst = {
field = [
{
name = "APCP_24";
level = [ "(*,*)" ];

Note that the asteris…

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Answer selected by j-opatz
Comment options

You must be logged in to vote
1 reply
@JosemariePalero
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment