30 #define slin(x) sslin(x)
33 errlin = "Error in " __FILE__ " at line " slin(__LINE__) ".\n"; \
37 int main(
int argc,
char** argv) {
39 const char* errlin = NULL;
47 struct ioda_variable *mixed_int_float_1 = NULL, *removable_var1 = NULL;
48 struct ioda_variable *var1_reopened = NULL, *var2_reopened = NULL;
54 g =
ioda.
Engines.constructFromCmdLine(argc, argv,
"Example-03-C.hdf5");
61 params_default =
ioda.VariableCreationParams.create();
62 if (!params_default)
doErr;
65 const size_t var1_dimensionality = 2;
66 long var1_dimsCur[2] = {2, 3};
67 long var1_dimsMax[2] = {2, 3};
68 var1 =
ioda.
Has_Variables.create_int(gvars, 5,
"var-1", var1_dimensionality, var1_dimsCur,
69 var1_dimsMax, params_default);
72 int var1_data[6] = {1, 2, 3, 4, 5, 6};
80 const char*
const v1a1_data[] = {
"This is a test."};
85 const size_t var2_dimensionality = 3;
86 long var2_dims[3] = {2, 3, 4};
88 var2_dims, params_default);
91 float var2_data[24] = {1.1f, 2.2f, 3.14159f, 4, 5, 6, 7, 8, 9, 10, 11.5f, 12.6f,
92 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24};
96 p1 =
ioda.VariableCreationParams.clone(params_default);
98 ptrdiff_t
chunks[2] = {200, 3};
100 ioda.VariableCreationParams.setFillValue_int(
p1, -999);
101 ioda.VariableCreationParams.compressWithSZIP(
p1, 0, 16);
102 ioda.VariableCreationParams.noCompress(
p1);
103 ioda.VariableCreationParams.compressWithGZIP(
p1, 6);
105 const size_t var3_dimensionality = 2;
106 long var3_dimsCur[2] = {200, 3};
107 long var3_dimsMax[2] = {2000, 3};
108 var3 =
ioda.
Has_Variables.create_int(gvars, 5,
"var-3", var3_dimensionality, var3_dimsCur,
112 long var3_dimsNew[2] = {400, 3};
118 long mixed_int_float_1_dims[] = {1};
130 if (!list_of_vars)
doErr;
139 =
ioda.
Group.
vars.create_int(gvars, 15,
"removable-int-1", 1, mixed_int_float_1_dims,
140 mixed_int_float_1_dims, params_default);
141 if (!removable_var1)
doErr;
143 removable_var1 = NULL;
147 if (!var1_reopened)
doErr;
150 if (!var2_reopened)
doErr;
159 size_t dimensionality = 0;
162 if (dimensionality != 2)
doErr;
172 int check_var1[6] = {0, 0, 0, 0, 0, 0};
184 const char* strings[] = {
"str-1",
"string 2",
"s3",
"Hello, world!"};
185 const long n_strs = 4;
187 =
ioda.
Has_Variables.create_str(gvars, 8,
"var_strs", 1, &n_strs, &n_strs, params_default);
188 if (!var_strs)
doErr;
194 if (!str_list)
doErr;
195 if (str_list->n != 4)
doErr;
197 for (
size_t i = 0; i < 4; ++i)
198 if (strncmp(strings[i], str_list->strings[i], 20) != 0)
doErr;
203 printf(
"%s", (errlin) ? errlin :
"An unknown error has occurred somewhere.");
210 if (params_default)
ioda.VariableCreationParams.destruct(params_default);
211 if (
p1)
ioda.VariableCreationParams.destruct(
p1);
216 if (mixed_int_float_1)
ioda.
Variable.destruct(mixed_int_float_1);
217 if (removable_var1)
ioda.
Variable.destruct(removable_var1);
218 if (var1_reopened)
ioda.
Variable.destruct(var1_reopened);
219 if (var2_reopened)
ioda.
Variable.destruct(var2_reopened);
220 if (list_of_vars)
ioda.Strings.destruct(list_of_vars);
222 if (str_list)
ioda.Strings.destruct(str_list);
This class represents attributes, which may be attached to both Variables and Groups.
Groups are a new implementation of ObsSpaces.
This class exists inside of ioda::Group or ioda::Variable and provides the interface to manipulating ...
This class exists inside of ioda::Group and provides the interface to manipulating Variables.
Has_Variables vars
Use this to access variables.
virtual Variable open(const std::string &name) const
Open a Variable by name.
virtual std::vector< std::string > list() const
virtual bool exists(const std::string &name) const
Does a Variable with the specified name exist?
virtual void remove(const std::string &name)
Delete an Attribute with the specified name.
virtual Dimensions getDimensions() const
virtual Variable resize(const std::vector< Dimensions_t > &newDims)
Resize the variable.
Common preprocessor definitions used throughout IODA.
IODA_DL struct c_ioda use_c_ioda()
Creates and returns a c_ioda struct that has all of the function pointers filled in.
int main(int argc, char **argv)
C bindings for ioda-engines.
The backends that implement the ioda-engines functionality.
A few chunking strategies for Variables.
Describes the dimensions of an Attribute or Variable.
Return type when arrays of strings are encountered.