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;
44 struct ioda_attribute *intatt5 = NULL, *intatt6 = NULL, *intatt7 = NULL, *intatt8 = NULL;
45 struct ioda_attribute *floatatt1 = NULL, *doubleatt1 = NULL, *stratt1 = NULL, *charatt1 = NULL;
50 g =
ioda.
Engines.constructFromCmdLine(argc, argv,
"Example-02-C.hdf5");
56 long intatt1_dims[1] = {1};
59 int intatt1_data[1] = {5};
62 long intatt2_dims[1] = {2};
65 int intatt2_data[] = {1, 2};
68 long intatt3_dims[1] = {3};
71 int intatt3_data[] = {1, 2, 3};
74 long intatt4_dims[1] = {1};
75 intatt4 =
ioda.
Group.
atts.create_int(gatts, 9,
"int-att-4", 1, intatt4_dims);
77 int intatt4_data[] = {42};
80 long intatt5_dims[] = {9};
81 intatt5 =
ioda.
Group.
atts.create_int(gatts, 9,
"int-att-5", 1, intatt5_dims);
83 int intatt5_data[] = {1, 2, 3, 4, 5, 6, 7, 8, 9};
86 long intatt6_dims[] = {6};
87 intatt6 =
ioda.
Group.
atts.create_int(gatts, 9,
"int-att-6", 1, intatt6_dims);
89 int intatt6_data[] = {1, 2, 3, 4, 5, 6};
92 long intatt7_dims[] = {4};
93 intatt7 =
ioda.
Group.
atts.create_int(gatts, 9,
"int-att-7", 1, intatt7_dims);
95 int intatt7_data[] = {1, 2, 3, 4};
98 long intatt8_dims[] = {7};
99 intatt8 =
ioda.
Group.
atts.create_int(gatts, 9,
"int-att-8", 1, intatt8_dims);
101 int intatt8_data[] = {1, 2, 3, 4, 5, 6, 7};
104 long float1_dims[] = {2};
105 floatatt1 =
ioda.
Group.
atts.create_float(gatts, 7,
"float-1", 1, float1_dims);
106 if (!floatatt1)
doErr;
107 float float1_data[] = {3.1159f, 2.78f};
110 long double1_dims[] = {4};
111 doubleatt1 =
ioda.
Group.
atts.create_double(gatts, 8,
"double-1", 1, double1_dims);
112 if (!doubleatt1)
doErr;
113 double double1_data[] = {1.1, 2.2, 3.3, 4.4};
116 long str1_dims[] = {1};
117 stratt1 =
ioda.
Group.
atts.create_str(gatts, 5,
"str-1", 1, str1_dims);
119 const char* str1_data1 =
"This is a test.";
120 const char* str1_data[] = {str1_data1};
123 const char char1_data[15] =
"This is a test";
124 long char1_dims[1] = {15};
125 charatt1 =
ioda.
Group.
atts.create_char(gatts, 6,
"char-1", 1, char1_dims);
126 if (!charatt1)
doErr;
130 if (!str_list)
doErr;
131 if (str_list->n != 1)
doErr;
134 if (!att_list)
doErr;
135 if (att_list->
n != 12)
doErr;
145 size_t f1_dimensionality = 0;
147 if (f1_dimensionality != 1)
doErr;
153 size_t f1_numelems = 0;
155 if (f1_numelems != 2)
doErr;
166 int check_intatt1_val = 0;
168 if (check_intatt1_val != 5)
doErr;
170 float check_floatatt1_val[2];
173 double check_doubleatt1_val[4];
188 printf(
"%s", (errlin) ? errlin :
"An unknown error has occurred somewhere.");
208 if (att_list)
ioda.Strings.destruct(att_list);
209 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 ...
virtual Dimensions getDimensions() const
Get Attribute's dimensions.
Has_Attributes atts
Use this to access the metadata for the group / ObsSpace.
virtual std::vector< std::string > list() const
virtual void remove(const std::string &attname)
Delete an Attribute with the specified name.
virtual Attribute open(const std::string &name) const
Open an Attribute by name.
virtual bool exists(const std::string &attname) const
Does an Attribute with the specified name exist?
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.
Describes the dimensions of an Attribute or Variable.
Return type when arrays of strings are encountered.