57 name =
"Example-02-python.hdf5",
58 mode = ioda.Engines.BackendCreateModes.Truncate_If_Exists)
71 intatt1 = g.atts.create(name=
"int-att-1", dtype=ioda.Types.int32, dims=[1])
86 intatt1.writeDatum.int32(1)
89 intatt2 = g.atts.create(
"int-att-2", ioda.Types.int32, [2])
93 intatt2.writeVector.int32([1, 2])
96 intatt3 = g.atts.create(
"int-att-3", ioda.Types.int32, [3])
97 intatt3.writeVector.int32([1, 2, 3])
101 float1 = g.atts.create(
"float-1", ioda.Types.float, [2])
102 float1.writeVector.float([3.1159, 2.78])
105 g.atts.create(
"double-1", ioda.Types.double, [4]).writeVector.double([1.1,2.2,3.3,4.4])
109 g.atts.create(
"str-1", ioda.Types.str, [1]).writeVector.str([
"This is a test."])
113 attlist = g.atts.list()
115 if len(attlist) != 6:
116 raise Exception(
"Wrong size for g.atts.list!")
119 f1 = g.atts.open(
'float-1')
120 d1 = g.atts.open(
'double-1')
134 if f1_dims.dimensionality != 1:
135 raise Exception(
"Unexpected dimensionality")
137 if f1_dims.dimsCur[0] != 2:
138 raise Exception(
"Unexpected size")
140 if f1_dims.dimsMax[0] != 2:
141 raise Exception(
"Unexpected size")
143 if f1_dims.numElements != 2:
144 raise Exception(
"Unexpected size")
147 a2_reopened = g.atts.open(
'int-att-2')
154 if float1.isA.float() !=
True:
155 raise Exception(
"Unexpected type")
157 if g.atts.open(
'int-att-1').isA2(ioda.Types.int32) !=
True:
158 raise Exception(
"Unexpected type")
167 i2vals = a2_reopened.readVector.int32()
169 raise Exception(
"Wrong length")
IODA_DL Group createFile(const std::string &filename, BackendCreateModes mode, HDF5_Version_Range compat=defaultVersionRange())
Create a ioda::Group backed by an HDF5 file.