Skip to content
Snippets Groups Projects
Commit 4cd16c88 authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

cdfInqContents: bug fix for unsupported grids (dims > 2)

parent 8707ef89
No related branches found
No related tags found
No related merge requests found
2008-04-?? Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
* cdfInqContents: bug fix for inconsistent curvilinear grid [report: Holger Goettel]
* cdfInqContents: bug fix for unsupported grids (dims > 2) [report: Wolfgang Langhans]
* cdfInqContents: check type of _FillValue
* gridCompare: compare grid.yinc only if set
* vlist_att.find_att: allocate attribute only if size > 0
......
......@@ -4266,6 +4266,16 @@ int cdfInqContents(int streamID)
xvarid = UNDEFID;
yvarid = UNDEFID;
}
if ( ncvars[xvarid].ndims > 2 || ncvars[yvarid].ndims > 2 )
{
Warning(func, "Unsupported grid structure for variable %s (grid dims > 2)!",
ncvars[ncvarid].name);
ncvars[ncvarid].xvarid = UNDEFID;
ncvars[ncvarid].yvarid = UNDEFID;
xvarid = UNDEFID;
yvarid = UNDEFID;
}
}
if ( xvarid != UNDEFID )
......@@ -4283,6 +4293,7 @@ int cdfInqContents(int streamID)
if ( ncvars[xvarid].xtype == NC_FLOAT ) grid.prec = DATATYPE_FLT32;
grid.xvals = (double *) malloc(size*sizeof(double));
fprintf(stderr, ">>>>> %d %d %d %s %s\n", ncvarid, xvarid, size, ncvars[ncvarid].name, ncvars[xvarid].name);
cdf_get_var_double(fileID, xvarid, grid.xvals);
strcpy(grid.xname, ncvars[xvarid].name);
strcpy(grid.xlongname, ncvars[xvarid].longname);
......
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