27 mode = ioda.Engines.BackendOpenModes.Read_Only)
35 chansDimName =
"nchans"
37 locsDimVar = og.vars.open(locsDimName)
38 chansDimVar = og.vars.open(chansDimName)
40 locsCoords = locsDimVar.readVector.int()
41 chansCoords = chansDimVar.readVector.int()
43 numLocs = len(locsCoords)
44 numChans = len(chansCoords)
46 print(
"INFO: locations dimension: ", locsDimName,
" (", numLocs,
")")
47 print(
"INFO: coordinates: ")
48 for i
in range(numLocs):
49 print(
"INFO: ", i,
" --> ", locsCoords[i])
52 print(
"INFO: channels dimension: ", chansDimName,
" (", numChans,
")")
53 print(
"INFO: coordinates: ")
54 for i
in range(numChans):
55 print(
"INFO: ", i,
" --> ", chansCoords[i])
64 tbName =
"ObsValue/brightness_temperature"
65 hofxName =
"hofx/brightness_temperature"
66 latName =
"MetaData/latitude"
67 lonName =
"MetaData/longitude"
69 tbVar = og.vars.open(tbName)
70 hofxVar = og.vars.open(hofxName)
71 latVar = og.vars.open(latName)
72 lonVar = og.vars.open(lonName)
74 tbData = tbVar.readNPArray.float()
75 hofxData = hofxVar.readNPArray.float()
76 latData = latVar.readVector.float()
77 lonData = lonVar.readVector.float()
79 print(
"INFO: input Tb variable: ", tbName,
" (", tbData.shape,
")")
80 print(
"INFO: output Tb H(x) variable: ", hofxName,
" (", hofxData.shape,
")")
81 print(
"INFO: latitude variable: ", latName,
" (", len(latData),
")")
82 print(
"INFO: longitude variable: ", lonName,
" (", len(lonData),
")")
86 chanIndex = chansCoords.index(7)
88 tbDataCh7 = tbData[:, chanIndex]
89 hofxDataCh7 = hofxData[:, chanIndex]
91 print(
"INFO: Channel 7 is located at channel index: ", chanIndex)
92 print(
"INFO: input Tb variable, channel 7: ", tbName,
" (", tbDataCh7.shape,
")")
93 print(
"INFO: output Tb H(x) variable, channel 7: ", hofxName,
" (", hofxDataCh7.shape,
")")
An ObsGroup is a specialization of a ioda::Group. It provides convenience functions and guarantees th...
IODA_DL Group openFile(const std::string &filename, BackendOpenModes mode, HDF5_Version_Range compat=defaultVersionRange())
Open a ioda::Group backed by an HDF5 file.