##// END OF EJS Templates
AMISR Reader integration with Signal Chain Blocks, this time just only for Voltages to Profile Selection and Plotting Scope(Power,IQ) and Power Profile(dB). There is thwo python scripts as experiment's test.
AMISR Reader integration with Signal Chain Blocks, this time just only for Voltages to Profile Selection and Plotting Scope(Power,IQ) and Power Profile(dB). There is thwo python scripts as experiment's test.

File last commit:

r169:661bb8af254a
r474:e3c42f4268a9
Show More
Spectra.py
75 lines | 1.4 KiB | text/x-python | PythonLexer
'''
Created on Feb 7, 2012
@author $Author$
@version $Id$
'''
from JROData import JROData
from JROHeader import RadarControllerHeader, ProcessingHeader, SystemHeader, BasicHeader
class Spectra(JROData):
'''
classdocs
'''
data_spc = None
data_cspc = None
data_dc = None
nFFTPoints = None
nPairs = None
pairsList = None
def __init__(self):
'''
Constructor
'''
self.m_RadarControllerHeader = RadarControllerHeader()
self.m_ProcessingHeader = ProcessingHeader()
self.m_SystemHeader = SystemHeader()
self.m_BasicHeader = BasicHeader()
self.type = "Spectra"
self.dataType = None
self.nHeights = 0
self.nChannels = 0
self.channelList = None
self.heightList = None
self.flagNoData = True
self.flagResetProcessing = False
#data es un numpy array de 3 dmensiones (perfiles, alturas y canales)
self.data_spc = None
self.data_cspc = None
self.data_dc = None
self.nFFTPoints = None
self.nAvg = None
self.nPairs = 0
self.pairsList = None