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

Added function cdfDefVarCompression().

parent bd9e06b8
No related branches found
No related tags found
No related merge requests found
......@@ -323,6 +323,30 @@ int nc_grid_index(stream_t *streamptr, int gridID)
return index;
}
static
void cdfDefVarCompression(const stream_t *streamptr, int ncvarid, bool lchunk)
{
if ( streamptr->comptype == CDI_COMPRESS_ZIP )
{
if ( lchunk && (streamptr->filetype == CDI_FILETYPE_NC4 || streamptr->filetype == CDI_FILETYPE_NC4C) )
{
cdfDefVarDeflate(streamptr->fileID, ncvarid, streamptr->complevel);
}
else
{
if ( lchunk )
{
static bool lwarn = true;
if ( lwarn )
{
lwarn = false;
Warning("Deflate compression is only available for NetCDF4!");
}
}
}
}
}
static
int cdfDefVar(stream_t *streamptr, int varID)
{
......@@ -519,25 +543,7 @@ int cdfDefVar(stream_t *streamptr, int varID)
cdf_def_var_chunking(fileID, ncvarid, NC_CHUNKED, chunks);
#endif
if ( streamptr->comptype == CDI_COMPRESS_ZIP )
{
if ( lchunk && (streamptr->filetype == CDI_FILETYPE_NC4 || streamptr->filetype == CDI_FILETYPE_NC4C) )
{
cdfDefVarDeflate(fileID, ncvarid, streamptr->complevel);
}
else
{
if ( lchunk )
{
static bool lwarn = true;
if ( lwarn )
{
lwarn = false;
Warning("Deflate compression is only available for NetCDF4!");
}
}
}
}
cdfDefVarCompression(streamptr, ncvarid, lchunk);
if ( *stdname ) cdf_put_att_text(fileID, ncvarid, "standard_name", strlen(stdname), stdname);
if ( *longname ) cdf_put_att_text(fileID, ncvarid, "long_name", strlen(longname), 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