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

set_gridtype: ignore attribute CDI_grid_type for curvilinear grids.

parent c6b3d403
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@
2018-07-06 Uwe Schulzweida
* set_gridtype: ignore attribute CDI_grid_type for curvilinear and unstructured grids
* set_gridtype: ignore attribute CDI_grid_type for curvilinear grids
2018-07-03 Uwe Schulzweida
......
......@@ -268,9 +268,9 @@ void set_gridtype(const char *attstring, int *gridtype)
else if ( strcmp(attstring, "generic") == 0 )
*gridtype = GRID_GENERIC;
else if ( strcmp(attstring, "cell") == 0 )
;
*gridtype = GRID_UNSTRUCTURED;
else if ( strcmp(attstring, "unstructured") == 0 )
;
*gridtype = GRID_UNSTRUCTURED;
else if ( strcmp(attstring, "curvilinear") == 0 )
;
else if ( strcmp(attstring, "characterxy") == 0 )
......
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