IODA
06-ReadIodaOutputFile.py
Go to the documentation of this file.
1 #
2 # (C) Copyright 2020-2021 UCAR
3 #
4 # This software is licensed under the terms of the Apache Licence Version 2.0
5 # which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6 #
7 
8 # This example opens and reads a sample ioda output file (v2 format).
9 
10 import os
11 import sys
12 import numpy as np
13 
14 import ioda
15 
16 # grab arguments
17 print(sys.argv)
18 InFile = sys.argv[1]
19 
20 # First task is to open the ioda file for reading. This is accomplished by constructing
21 # an ObsGroup object. This is done in two steps:
22 # 1. create a "backend" which is based on a file (ioda.Engines.HH.openFile call)
23 # 2. construct an ObsGroup based on the backend created in step 1.
24 #
26  name = InFile,
27  mode = ioda.Engines.BackendOpenModes.Read_Only)
29 
30 # The radiance data is organized as a 2D array (locations X channels). The dimension
31 # names are "nlocs" and "nchans" for locataion and channels respectively.
32 
33 # You can access the dimension variables to get coordinate values
34 locsDimName = "nlocs"
35 chansDimName = "nchans"
36 
37 locsDimVar = og.vars.open(locsDimName)
38 chansDimVar = og.vars.open(chansDimName)
39 
40 locsCoords = locsDimVar.readVector.int()
41 chansCoords = chansDimVar.readVector.int()
42 
43 numLocs = len(locsCoords)
44 numChans = len(chansCoords)
45 
46 print("INFO: locations dimension: ", locsDimName, " (", numLocs, ")")
47 print("INFO: coordinates: ")
48 for i in range(numLocs):
49  print("INFO: ", i, " --> ", locsCoords[i])
50 print("")
51 
52 print("INFO: channels dimension: ", chansDimName, " (", numChans, ")")
53 print("INFO: coordinates: ")
54 for i in range(numChans):
55  print("INFO: ", i, " --> ", chansCoords[i])
56 print("")
57 
58 # We are interested in the following variables for diagnostics:
59 # ObsValue/brightness_temperature --> y
60 # hofx/brightness_temperature --> H(x)
61 # MetaData/latitude
62 # MeatData/lognitude
63 
64 tbName = "ObsValue/brightness_temperature"
65 hofxName = "hofx/brightness_temperature"
66 latName = "MetaData/latitude"
67 lonName = "MetaData/longitude"
68 
69 tbVar = og.vars.open(tbName)
70 hofxVar = og.vars.open(hofxName)
71 latVar = og.vars.open(latName)
72 lonVar = og.vars.open(lonName)
73 
74 tbData = tbVar.readNPArray.float() # produces a numpy 2D array
75 hofxData = hofxVar.readNPArray.float()
76 latData = latVar.readVector.float() # produces a python list
77 lonData = lonVar.readVector.float()
78 
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), ")")
83 print("")
84 
85 # Grab channel 7 data from Tb and H(x) data
86 chanIndex = chansCoords.index(7)
87 
88 tbDataCh7 = tbData[:, chanIndex]
89 hofxDataCh7 = hofxData[:, chanIndex]
90 
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, ")")
94 print("")
95 
An ObsGroup is a specialization of a ioda::Group. It provides convenience functions and guarantees th...
Definition: ObsGroup.h:32
IODA_DL Group openFile(const std::string &filename, BackendOpenModes mode, HDF5_Version_Range compat=defaultVersionRange())
Open a ioda::Group backed by an HDF5 file.
Definition: HH.cpp:147