1 import ioda._ioda_python
as _iodapy
9 return f
"ObsSpace({self.name},{self.iodafile})"
12 return f
"IODA ObsSpace Object - {self.name}"
14 def __init__(self, path, dim_dict=None, mode='r', name="NoName", iodalayout=0):
16 if mode
not in [
'r',
'w' ,
'rw']:
17 raise TypeError(f
"{mode} not one of 'r','w','rw'")
18 self.
writewrite =
True if 'w' in mode
else False
19 self.
readread =
True if 'r' in mode
else False
20 if os.path.isfile(path)
and self.
readread:
22 elif os.path.exists(os.path.dirname(path))
and self.
writewrite:
25 raise OSError(f
"{path} does not specify a valid path to a file")
32 if dim_dict
is not None:
35 raise TypeError(
"dim_dict is not defined")
40 self.
groupsgroups = self.file.listGroups(recurse=
True)
42 self.
nlocsnlocs = len(self.
obsgroupobsgroup.vars.open(
'nlocs').readVector.int())
43 self.
variablesvariables = self.file.listVars(recurse=
True)
50 if attrType == _iodapy.Types.float:
51 if np.array(attrVal).size == 1:
52 self.
obsgroupobsgroup.atts.create(attrName, attrType,
53 [1]).writeDatum.float(attrVal)
55 self.
obsgroupobsgroup.atts.create(attrName, attrType,
56 len(attrVal)).writeVector.float(attrVal)
57 elif attrType == _iodapy.Types.double:
58 if np.array(attrVal).size == 1:
59 self.
obsgroupobsgroup.atts.create(attrName, attrType,
60 [1]).writeDatum.double(attrVal)
62 self.
obsgroupobsgroup.atts.create(attrName, attrType,
63 len(attrVal)).writeVector.double(attrVal)
64 elif attrType == _iodapy.Types.int64:
65 if np.array(attrVal).size == 1:
66 self.
obsgroupobsgroup.atts.create(attrName, attrType,
67 [1]).writeDatum.int64(attrVal)
69 self.
obsgroupobsgroup.atts.create(attrName, attrType,
70 len(attrVal)).writeVector.int64(attrVal)
71 elif attrType == _iodapy.Types.int32:
72 if np.array(attrVal).size == 1:
73 self.
obsgroupobsgroup.atts.create(attrName, attrType,
74 [1]).writeDatum.int32(attrVal)
76 self.
obsgroupobsgroup.atts.create(attrName, attrType,
77 len(attrVal)).writeVector.int32(attrVal)
79 except AttributeError:
80 if (type(attrVal) == str):
81 attrType = _iodapy.Types.str
83 attrName, attrType, [1]).writeDatum.str(attrVal)
88 iodamode = _iodapy.Engines.BackendOpenModes.Read_Write
90 iodamode = _iodapy.Engines.BackendOpenModes.Read_Only
91 g = _iodapy.Engines.HH.openFile(
95 dlp = _iodapy.DLP.DataLayoutPolicy.generate(
96 _iodapy.DLP.DataLayoutPolicy.Policies(self.
iodalayoutiodalayout))
97 og = _iodapy.ObsGroup(g, dlp)
102 g = _iodapy.Engines.HH.createFile(
104 mode=_iodapy.Engines.BackendCreateModes.Truncate_If_Exists,
108 for key, value
in dim_dict.items():
110 _nlocs_var = _iodapy.NewDimensionScale.int32(
111 'nlocs', value, _iodapy.Unlimited, value)
112 _dim_list.append(_nlocs_var)
114 _dim_list.append(_iodapy.NewDimensionScale.int32(
115 key, value, value, value))
117 og = _iodapy.ObsGroup.generate(g, _dim_list)
119 self.
_p1_p1 = _iodapy.VariableCreationParameters()
120 self.
_p1_p1.compressWithGZIP()
123 def create_var(self, varname, groupname=None, dtype=np.dtype(
'float32'), dim_list=[
'nlocs']):
124 dtype_tmp = np.array([],dtype=dtype)
127 if groupname
is not None:
128 _varstr = f
"{groupname}/{varname}"
130 dims = [self.
obsgroupobsgroup.vars.open(dim)
for dim
in dim_list]
131 newVar = self.file.vars.create(_varstr, typeVar,
132 scales=dims, params=self.
_p1_p1)
135 return self.
_Variable_Variable(self, varname, groupname)
142 NumpyDtype = NumpyArr.dtype
144 if (NumpyDtype == np.dtype(
'float64')):
145 IodaDtype = _iodapy.Types.double
146 elif (NumpyDtype == np.dtype(
'float32')):
147 IodaDtype = _iodapy.Types.float
148 elif (NumpyDtype == np.dtype(
'int64')):
149 IodaDtype = _iodapy.Types.int64
150 elif (NumpyDtype == np.dtype(
'int32')):
151 IodaDtype = _iodapy.Types.int32
152 elif (NumpyDtype == np.dtype(
'int16')):
153 IodaDtype = _iodapy.Types.int16
154 elif (NumpyDtype == np.dtype(
'int8')):
155 IodaDtype = _iodapy.Types.int16
156 elif (NumpyDtype == np.dtype(
'S1')):
157 IodaDtype = _iodapy.Types.str
158 elif (NumpyDtype == np.dtype(
'object')):
159 IodaDtype = _iodapy.Types.str
163 IodaDtype = _iodapy.Types.str
165 print(
"ERROR: Unrecognized numpy data type: ", NumpyDtype)
171 return f
"IODA variable ({self._varstr})"
174 return f
"IODA variable object - {self._varstr}"
176 def __init__(self, obsspace, varname, groupname=None):
179 if groupname
is not None:
180 self.
_varstr_varstr = f
"{groupname}/{varname}"
186 if datatype == _iodapy.Types.float:
187 self.
_iodavar_iodavar.writeNPArray.float(npArray)
188 elif datatype == _iodapy.Types.double:
189 self.
_iodavar_iodavar.writeNPArray.double(npArray)
190 elif datatype == _iodapy.Types.int64:
191 self.
_iodavar_iodavar.writeNPArray.int64(npArray)
192 elif datatype == _iodapy.Types.int32:
193 self.
_iodavar_iodavar.writeNPArray.int32(npArray)
194 elif datatype == _iodapy.Types.str:
195 self.
_iodavar_iodavar.writeVector.str(npArray)
202 if attrType == _iodapy.Types.float:
203 if len(attrVal) == 1:
204 self.
_iodavar_iodavar.atts.create(attrName, attrType,
205 [1]).writeDatum.float(attrVal)
207 self.
_iodavar_iodavar.atts.create(attrName, attrType,
208 len(attrVal)).writeVector.float(attrVal)
209 elif attrType == _iodapy.Types.double:
210 if len(attrVal) == 1:
211 self.
_iodavar_iodavar.atts.create(attrName, attrType,
212 [1]).writeDatum.double(attrVal)
214 self.
_iodavar_iodavar.atts.create(attrName, attrType,
215 len(attrVal)).writeVector.double(attrVal)
216 elif attrType == _iodapy.Types.int64:
217 if len(attrVal) == 1:
218 self.
_iodavar_iodavar.atts.create(attrName, attrType,
219 [1]).writeDatum.int64(attrVal)
221 self.
_iodavar_iodavar.atts.create(attrName, attrType,
222 len(attrVal)).writeVector.int64(attrVal)
223 elif attrType == _iodapy.Types.int32:
224 if len(attrVal) == 1:
225 self.
_iodavar_iodavar.atts.create(attrName, attrType,
226 [1]).writeDatum.int32(attrVal)
228 self.
_iodavar_iodavar.atts.create(attrName, attrType,
229 len(attrVal)).writeVector.int32(attrVal)
231 except AttributeError:
232 if (type(attrVal) == str):
233 attrType = _iodapy.Types.str
235 attrName, attrType, [1]).writeDatum.str(attrVal)
239 returns numpy array/python list of variable data
242 if self.
_iodavar_iodavar.isA2(_iodapy.Types.float):
244 data = self.
_iodavar_iodavar.readNPArray.float()
245 data[np.abs(data) > 9e36] = np.nan
246 elif self.
_iodavar_iodavar.isA2(_iodapy.Types.int):
248 data = self.
_iodavar_iodavar.readNPArray.int()
249 elif self.
_iodavar_iodavar.isA2(_iodapy.Types.str):
251 data = self.
_iodavar_iodavar.readVector.str()
253 if "datetime" in self.
_varstr_varstr:
256 raise TypeError(f
"Variable {self._varstr} type not supported")
259 if data.shape[1] == 1:
260 data = data.flatten()
261 except (IndexError, AttributeError):
268 datetimes = [dt.datetime.strptime(x,
"%Y-%m-%dT%H:%M:%SZ")
for x
in datain]
269 return np.array(datetimes)
def _str_to_datetime(self, datain)
def __init__(self, obsspace, varname, groupname=None)
def write_attr(self, attrName, attrVal)
def write_data(self, npArray)
def NumpyToIodaDtype(self, NumpyArr)
def _read_obsgroup(self, path)
def _create_obsgroup(self, path, dim_dict)
def Variable(self, varname, groupname=None)
def create_var(self, varname, groupname=None, dtype=np.dtype('float32'), dim_list=['nlocs'])
def write_attr(self, attrName, attrVal)
def __init__(self, path, dim_dict=None, mode='r', name="NoName", iodalayout=0)