IODA
Variable_Creation_Parameters_c.h File Reference

C bindings for ioda::VariableCreationParameters, used in ioda::Has_Variables::create. More...

#include <stdbool.h>
#include "../defs.h"
#include "./c_binding_macros.h"
Include dependency graph for Variable_Creation_Parameters_c.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  c_variable_creation_parameters
 Class-like encapsulation of C variable creation parameters functions. More...
 

Macros

#define IODA_VCP_FILL_TEMPLATE2(funcnamestr, typ)    void (*funcnamestr)(struct ioda_variable_creation_parameters*, typ);
 

Functions

IODA_DL void ioda_variable_creation_parameters_destruct (struct ioda_variable_creation_parameters *params)
 Deallocates variable creation parameters. More...
 
IODA_DL struct ioda_variable_creation_parametersioda_variable_creation_parameters_create ()
 Allocates a new variable creation parameters instance. More...
 
IODA_DL struct ioda_variable_creation_parametersioda_variable_creation_parameters_clone (const struct ioda_variable_creation_parameters *source)
 Make a copy of an existing variable creation parameters object. More...
 
Chunking
IODA_DL void ioda_variable_creation_parameters_chunking (struct ioda_variable_creation_parameters *params, bool doChunking, size_t Ndims, const ptrdiff_t *chunks)
 Set chunking options. More...
 
Compression
IODA_DL void ioda_variable_creation_parameters_noCompress (struct ioda_variable_creation_parameters *params)
 Disable compression. More...
 
IODA_DL void ioda_variable_creation_parameters_compressWithGZIP (struct ioda_variable_creation_parameters *params, int level)
 Compress with GZIP. More...
 
IODA_DL void ioda_variable_creation_parameters_compressWithSZIP (struct ioda_variable_creation_parameters *params, unsigned PixelsPerBlock, unsigned options)
 Compress with SZIP. More...
 

Set fill value

#define IODA_VCP_FILL_TEMPLATE(funcnamestr, typ)    IODA_DL void funcnamestr(struct ioda_variable_creation_parameters* params, typ data);
 Sets a template for the fill value functions. More...
 
 C_TEMPLATE_FUNCTION_DEFINITION_NOSTR (ioda_variable_creation_parameters_setFillValue, IODA_VCP_FILL_TEMPLATE)
 

Detailed Description