Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
14ad5c33
Commit
14ad5c33
authored
Jul 06, 2018
by
Uwe Schulzweida
Browse files
set_gridtype: ignore attribute CDI_grid_type for curvilinear and unstructured grids.
parent
47a58ce5
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
14ad5c33
...
...
@@ -3,6 +3,10 @@
* using CGRIBEX library version 1.9.1
* Version 1.9.5 released
2018-07-06 Uwe Schulzweida
* set_gridtype: ignore attribute CDI_grid_type for curvilinear and unstructured grids
2018-07-03 Uwe Schulzweida
* gridCompare: bug fix comparing uuid of unstructured grid
...
...
src/cdf_util.c
View file @
14ad5c33
...
...
@@ -268,11 +268,11 @@ 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
)
*
gridtype
=
GRID_CURVILINEAR
;
;
else
if
(
strcmp
(
attstring
,
"characterxy"
)
==
0
)
*
gridtype
=
GRID_CHARXY
;
else
if
(
strcmp
(
attstring
,
"sinusoidal"
)
==
0
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment