##// END OF EJS Templates
diffcspectra and ccfpar variables used for ESF processing.
imanay -
r1717:b09e23983536
parent child
Show More
@@ -542,6 +542,7 class Spectra(JROData):
542 self.data_dc = None
542 self.data_dc = None
543 self.data_spc = None
543 self.data_spc = None
544 self.data_cspc = None
544 self.data_cspc = None
545 self.diffcspectra = None # JULIA processing
545 self.useLocalTime = True
546 self.useLocalTime = True
546 self.radarControllerHeaderObj = RadarControllerHeader()
547 self.radarControllerHeaderObj = RadarControllerHeader()
547 self.systemHeaderObj = SystemHeader()
548 self.systemHeaderObj = SystemHeader()
@@ -568,6 +569,7 class Spectra(JROData):
568 self.spc_noise = None
569 self.spc_noise = None
569 self.metadata_list = ['type', 'heightList', 'timeZone', 'pairsList', 'channelList', 'nCohInt',
570 self.metadata_list = ['type', 'heightList', 'timeZone', 'pairsList', 'channelList', 'nCohInt',
570 'code', 'nCode', 'nBaud', 'ippSeconds', 'ipp', 'nIncohInt', 'nFFTPoints', 'nProfiles', 'flagDecodeData']
571 'code', 'nCode', 'nBaud', 'ippSeconds', 'ipp', 'nIncohInt', 'nFFTPoints', 'nProfiles', 'flagDecodeData']
572
571
573
572 def getNoisebyHildebrand(self, xmin_index=None, xmax_index=None, ymin_index=None, ymax_index=None):
574 def getNoisebyHildebrand(self, xmin_index=None, xmax_index=None, ymin_index=None, ymax_index=None):
573 """
575 """
@@ -965,6 +967,8 class Parameters(Spectra):
965 noise_estimation = None
967 noise_estimation = None
966 GauSPC = None # Fit gaussian SPC
968 GauSPC = None # Fit gaussian SPC
967 spc_noise = None
969 spc_noise = None
970 #
971
968
972
969 def __init__(self):
973 def __init__(self):
970 '''
974 '''
@@ -975,7 +979,11 class Parameters(Spectra):
975 self.type = "Parameters"
979 self.type = "Parameters"
976 self.timeZone = 0
980 self.timeZone = 0
977 self.ippFactor = 1
981 self.ippFactor = 1
978
982 # JULIA processing
983 self.diffcspectra = None
984 self.ccfpar = None
985 # JULIA processing
986
979 def getTimeRange1(self, interval):
987 def getTimeRange1(self, interval):
980
988
981 datatime = []
989 datatime = []
General Comments 0
You need to be logged in to leave comments. Login now