IODA
|
Variables | |
g | |
intatt1 = g.atts.create(name="int-att-1", dtype=ioda.Types.int32, dims=[1]) | |
intatt2 = g.atts.create("int-att-2", ioda.Types.int32, [2]) | |
intatt3 = g.atts.create("int-att-3", ioda.Types.int32, [3]) | |
float1 = g.atts.create("float-1", ioda.Types.float, [2]) | |
attlist = g.atts.list() | |
f1 = g.atts.open('float-1') | |
d1 = g.atts.open('double-1') | |
f1_dims = f1.dims | |
a2_reopened = g.atts.open('int-att-2') | |
i2vals = a2_reopened.readVector.int32() | |
02-Attributes.a2_reopened = g.atts.open('int-att-2') |
Definition at line 150 of file 02-Attributes.py.
02-Attributes.attlist = g.atts.list() |
Definition at line 116 of file 02-Attributes.py.
02-Attributes.d1 = g.atts.open('double-1') |
Definition at line 123 of file 02-Attributes.py.
02-Attributes.f1 = g.atts.open('float-1') |
Definition at line 122 of file 02-Attributes.py.
02-Attributes.f1_dims = f1.dims |
Definition at line 135 of file 02-Attributes.py.
02-Attributes.float1 = g.atts.create("float-1", ioda.Types.float, [2]) |
Definition at line 104 of file 02-Attributes.py.
02-Attributes.g |
Definition at line 59 of file 02-Attributes.py.
02-Attributes.i2vals = a2_reopened.readVector.int32() |
Definition at line 170 of file 02-Attributes.py.
02-Attributes.intatt1 = g.atts.create(name="int-att-1", dtype=ioda.Types.int32, dims=[1]) |
Definition at line 74 of file 02-Attributes.py.
02-Attributes.intatt2 = g.atts.create("int-att-2", ioda.Types.int32, [2]) |
Definition at line 92 of file 02-Attributes.py.
02-Attributes.intatt3 = g.atts.create("int-att-3", ioda.Types.int32, [3]) |
Definition at line 99 of file 02-Attributes.py.