Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
de0bffc8
Commit
de0bffc8
authored
Aug 23, 2016
by
Uwe Schulzweida
Browse files
set_gridtype: ignore sinusoidal, laea and lcc2.
parent
3526567a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/cdf_util.c
View file @
de0bffc8
...
...
@@ -257,6 +257,12 @@ void set_gridtype(const char *attstring, int *gridtype)
*
gridtype
=
GRID_UNSTRUCTURED
;
else
if
(
strcmp
(
attstring
,
"curvilinear"
)
==
0
)
*
gridtype
=
GRID_CURVILINEAR
;
else
if
(
strcmp
(
attstring
,
"sinusoidal"
)
==
0
)
;
else
if
(
strcmp
(
attstring
,
"laea"
)
==
0
)
;
else
if
(
strcmp
(
attstring
,
"lcc2"
)
==
0
)
;
else
if
(
strcmp
(
attstring
,
"linear"
)
==
0
)
// ignore grid type linear
;
else
...
...
Write
Preview
Supports
Markdown
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