Skip to content
Snippets Groups Projects
Commit 65d16d27 authored by Luis Kornblueh's avatar Luis Kornblueh
Browse files

Corrected error of defining NV in grib2 (changed from 2 to 3).

parent b019b18c
No related branches found
Tags cdi-1.5.6
No related merge requests found
......@@ -664,7 +664,7 @@ void gribapiAddRecord(int streamID, int param, grib_handle *gh,
long nlev, nvgrid;
GRIB_CHECK(grib_get_long(gh, "NV", &lpar), 0);
if ( lpar != 2 )
if ( lpar != 3 )
{
fprintf(stderr, "Warning ...\n");
}
......@@ -2629,7 +2629,7 @@ void gribapiDefLevel(grib_handle *gh, int param, int zaxisID, int levelID)
GRIB_CHECK(grib_set_long(gh, "typeOfFirstFixedSurface", GRIB2_LTYPE_REFERENCE), 0);
GRIB_CHECK(grib_set_double(gh, "level", level), 0);
GRIB_CHECK(grib_set_long(gh, "NV", 2), 0);
GRIB_CHECK(grib_set_long(gh, "NV", 3), 0);
GRIB_CHECK(grib_set_long(gh, "nlev", (long) zaxisInqSize(zaxisID)), 0);
GRIB_CHECK(grib_set_long(gh, "numberOfVGridUsed", reference), 0);
len = 16;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment