IODA
06-ReadIodaOutputFile.py File Reference

Go to the source code of this file.

Namespaces

 06-ReadIodaOutputFile
 

Variables

 06-ReadIodaOutputFile.InFile = sys.argv[1]
 
 06-ReadIodaOutputFile.g
 
 06-ReadIodaOutputFile.og = ioda.ObsGroup(g)
 
string 06-ReadIodaOutputFile.locsDimName = "nlocs"
 
string 06-ReadIodaOutputFile.chansDimName = "nchans"
 
 06-ReadIodaOutputFile.locsDimVar = og.vars.open(locsDimName)
 
 06-ReadIodaOutputFile.chansDimVar = og.vars.open(chansDimName)
 
 06-ReadIodaOutputFile.locsCoords = locsDimVar.readVector.int()
 
 06-ReadIodaOutputFile.chansCoords = chansDimVar.readVector.int()
 
 06-ReadIodaOutputFile.numLocs = len(locsCoords)
 
 06-ReadIodaOutputFile.numChans = len(chansCoords)
 
string 06-ReadIodaOutputFile.tbName = "ObsValue/brightness_temperature"
 
string 06-ReadIodaOutputFile.hofxName = "hofx/brightness_temperature"
 
string 06-ReadIodaOutputFile.latName = "MetaData/latitude"
 
string 06-ReadIodaOutputFile.lonName = "MetaData/longitude"
 
 06-ReadIodaOutputFile.tbVar = og.vars.open(tbName)
 
 06-ReadIodaOutputFile.hofxVar = og.vars.open(hofxName)
 
 06-ReadIodaOutputFile.latVar = og.vars.open(latName)
 
 06-ReadIodaOutputFile.lonVar = og.vars.open(lonName)
 
 06-ReadIodaOutputFile.tbData = tbVar.readNPArray.float()
 
 06-ReadIodaOutputFile.hofxData = hofxVar.readNPArray.float()
 
 06-ReadIodaOutputFile.latData = latVar.readVector.float()
 
 06-ReadIodaOutputFile.lonData = lonVar.readVector.float()
 
 06-ReadIodaOutputFile.chanIndex = chansCoords.index(7)
 
 06-ReadIodaOutputFile.tbDataCh7 = tbData[:, chanIndex]
 
 06-ReadIodaOutputFile.hofxDataCh7 = hofxData[:, chanIndex]