Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • b383306/libcdi
  • mpim-sw/libcdi
  • m214007/libcdi
3 results
Show changes
Commits on Source (5)
2025-02-28 Uwe Schulzweida
2025-03-05 Uwe Schulzweida
* Version 2.5.1 released
......
CDI NEWS
--------
Version 2.5.1 (05 Mar 2025):
Changes:
* NetCDF4: improved calculation of output chunk size
* NetCDF4: improved calculation of input chunk cache size for numStep>1 and zSize>1
Version 2.5.0 (28 Nov 2024):
Changes:
......
......@@ -3,7 +3,9 @@
#endif
#ifdef HAVE_LIBNETCDF
#include "dmemory.h"
#include "stream_cdf.h"
#include "cdf_int.h"
#include "cdf_lazy_grid.h"
static struct gridVirtTable cdfLazyGridVtable;
......
......@@ -19,8 +19,6 @@
#include <string.h>
#include "dmemory.h"
#include "cdf_int.h"
#include "grid.h"
struct xyValGet
......
......@@ -15,7 +15,6 @@
#include "stream_cdf.h"
#include "cdf_int.h"
#include "vlist.h"
#include "vlist_var.h"
static void
cdfReadGridTraj(stream_t *streamptr, int gridID)
......
......@@ -13,7 +13,6 @@
#include <string.h>
#include <ctype.h>
#include "dmemory.h"
#include "cdi.h"
#include "cdi_int.h"
#include "cdf_util.h"
......
#ifndef CDF_UTIL_H_
#define CDF_UTIL_H_
#include <stdlib.h>
#include <stdbool.h>
bool xtypeIsText(int xtype);
......
......@@ -13,7 +13,6 @@
#include "cdf.h"
#include "cdf_int.h"
#include "vlist.h"
#include "vlist_var.h"
void
cdfDefVarDeflate(int ncid, int ncvarID, int shuffle, int compLevel)
......
......@@ -1450,8 +1450,8 @@ extern int (*proj_stere_to_lonlat_func)(struct CDI_GridProjParams gpp, double, d
// Used on CDO remap_scrip_io.cc
void cdf_def_var_filter(int ncid, int ncvarID, const char *filterSpec);
int cdi_has_dap();
int cdi_has_cgribex();
int cdi_has_dap(void);
int cdi_has_cgribex(void);
#ifdef __cplusplus
}
......
......@@ -591,7 +591,7 @@ stream_def_accesstype(stream_t *s, int type)
}
int
cdi_has_dap()
cdi_has_dap(void)
{
#ifdef HAVE_LIBNC_DAP
return 1;
......@@ -600,7 +600,7 @@ cdi_has_dap()
}
int
cdi_has_cgribex()
cdi_has_cgribex(void)
{
#ifdef HAVE_LIBCGRIBEX
return 1;
......
......@@ -2,7 +2,9 @@
#include "config.h"
#endif
#ifndef _WIN32
#include <unistd.h>
#endif
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
......
......@@ -5,6 +5,8 @@
#include "config.h"
#endif
#include <stdlib.h>
enum
{
EXT_REAL = 1,
......
......@@ -11,7 +11,6 @@
* next to find out what happened */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
......
#ifndef _IEG_H
#define _IEG_H
#include <stdlib.h>
// clang-format off
/* Level Types */
......
......@@ -11,7 +11,6 @@
* next to find out what happened */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
......
......@@ -15,7 +15,6 @@
#include <limits.h>
#include "cdi.h"
#include "cdi_int.h"
#include "resource_handle.h"
#include "resource_unpack.h"
#include "namespace.h"
......
#ifndef _SERVICE_H
#define _SERVICE_H
#include <stdlib.h>
typedef struct
{
int checked;
......
......@@ -11,7 +11,6 @@
* next to find out what happened */
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <ctype.h>
......
......@@ -10,10 +10,8 @@
#include "cdi.h"
#include "cdi_int.h"
#include "dmemory.h"
#include "stream_cdf.h"
#include "cdf_int.h"
#include "vlist.h"
static int
cdfDefTimeBounds(int fileID, int nctimevarid, int nctimedimid, const char *taxis_name, taxis_t *taxis)
......