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
de33b689
Commit
de33b689
authored
Jul 04, 2016
by
Uwe Schulzweida
Browse files
Removed unused includes.
parent
a0e3c17b
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/stream_cdf_i.c
View file @
de33b689
...
...
@@ -6,10 +6,8 @@
//#define TEST_GROUPS 1
#include
<limits.h>
#include
<ctype.h>
#include
<math.h>
#include
<float.h>
#ifdef HAVE_MMAP
#include
<unistd.h>
#include
<sys/mman.h>
...
...
@@ -21,20 +19,16 @@
#include
<pthread.h>
#endif
#include
<netcdf.h>
//
#include <netcdf.h>
#include
"dmemory.h"
#include
"cdi.h"
#include
"basetime.h"
#include
"gaussgrid.h"
#include
"cdi_int.h"
#include
"cdi_uuid.h"
#include
"stream_cdf.h"
#include
"cdf.h"
#include
"cdf_int.h"
#include
"varscan.h"
#include
"vlist.h"
#include
"zaxis.h"
//#define PROJECTION_TEST
...
...
src/stream_cdf_o.c
View file @
de33b689
...
...
@@ -4,33 +4,10 @@
#ifdef HAVE_LIBNETCDF
//#define TEST_GROUPS 1
#include
<limits.h>
#include
<ctype.h>
#include
<math.h>
#include
<float.h>
#ifdef HAVE_MMAP
#include
<unistd.h>
#include
<sys/mman.h>
#include
<sys/types.h>
#include
<sys/stat.h>
#include
<fcntl.h>
#endif
#ifdef HAVE_LIBPTHREAD
#include
<pthread.h>
#endif
#include
<netcdf.h>
#include
"dmemory.h"
#include
"cdi.h"
#include
"basetime.h"
#include
"gaussgrid.h"
#include
"cdi_int.h"
#include
"cdi_uuid.h"
#include
"stream_cdf.h"
#include
"cdf.h"
#include
"cdf_int.h"
#include
"varscan.h"
#include
"vlist.h"
...
...
@@ -40,13 +17,13 @@
#undef UNDEFID
#define UNDEFID CDI_UNDEFID
static
const
char
bndsName
[]
=
"bnds"
;
#define POSITIVE_UP 1
#define POSITIVE_DOWN 2
static
const
char
bndsName
[]
=
"bnds"
;
void
cdfCopyRecord
(
stream_t
*
streamptr2
,
stream_t
*
streamptr1
)
{
int
vlistID1
=
streamptr1
->
vlistID
;
...
...
@@ -103,33 +80,6 @@ void cdfDefRecord(stream_t *streamptr)
(
void
)
streamptr
;
}
#if defined(NC_SZIP_NN_OPTION_MASK)
static
void
cdfDefVarSzip
(
int
ncid
,
int
ncvarid
)
{
int
retval
;
/* Set options_mask and bits_per_pixel. */
int
options_mask
=
NC_SZIP_NN_OPTION_MASK
;
int
bits_per_pixel
=
16
;
if
((
retval
=
nc_def_var_szip
(
ncid
,
ncvarid
,
options_mask
,
bits_per_pixel
)))
{
if
(
retval
==
NC_EINVAL
)
{
static
int
lwarn
=
TRUE
;
if
(
lwarn
)
{
lwarn
=
FALSE
;
Warning
(
"NetCDF4/Szip compression not compiled in!"
);
}
}
else
Error
(
"nc_def_var_szip failed, status = %d"
,
retval
);
}
}
#endif
static
void
cdfDefTimeValue
(
stream_t
*
streamptr
,
int
tsID
)
{
...
...
@@ -2016,7 +1966,6 @@ void cdfDefPole(stream_t *streamptr, int gridID)
cdf_enddef
(
fileID
);
}
static
void
cdfDefMapping
(
stream_t
*
streamptr
,
int
gridID
)
{
...
...
@@ -2239,6 +2188,7 @@ void cdfDefVars(stream_t *streamptr)
}
*/
}
#endif
/*
* Local Variables:
...
...
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