Skip to content
GitLab
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
50b39355
Commit
50b39355
authored
Mar 14, 2017
by
Uwe Schulzweida
Browse files
set min deflate size of data variables to 16.
parent
63700822
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
50b39355
...
...
@@ -5,6 +5,7 @@
2017-03-14 Uwe Schulzweida
* set chunk size of time axis to 512
* set min deflate size of data variables to 16
* streamOpenAppend: set defmiss = true (Needed for NetCDF4)
2017-03-08 Uwe Schulzweida
...
...
src/cdf_write.c
View file @
50b39355
...
...
@@ -350,7 +350,7 @@ int cdfDefVar(stream_t *streamptr, int varID)
vlistInqVarDimorder
(
vlistID
,
varID
,
&
dimorder
);
size_t
gridsize
=
(
size_t
)(
gridInqSize
(
gridID
));
bool
lchunk
=
(
gridsize
>
1
);
bool
lchunk
=
(
gridsize
>
=
1
6
);
int
gridtype
=
gridInqType
(
gridID
);
int
gridindex
=
nc_grid_index
(
streamptr
,
gridID
);
if
(
gridtype
!=
GRID_TRAJECTORY
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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