##// END OF EJS Templates
Se modifica el metodo LinearPlot para ploteo interactivo. Se adaptó el ejemplo 1. Se plotean dos graficos, el primero es el de una señal senoidal con ruido aleatorio, el segundo grafico es del tipo pcolor.
Se modifica el metodo LinearPlot para ploteo interactivo. Se adaptó el ejemplo 1. Se plotean dos graficos, el primero es el de una señal senoidal con ruido aleatorio, el segundo grafico es del tipo pcolor.

File last commit:

r107:33fbc5472d1b
r167:87539073aeee
Show More
JROData.py
104 lines | 2.4 KiB | text/x-python | PythonLexer
'''
Created on Feb 7, 2012
@author $Author$
@version $Id$
'''
import copy
import numpy
from JROHeader import RadarControllerHeader, ProcessingHeader, SystemHeader, BasicHeader
class Data:
'''
classdocs
'''
def __init__(self):
'''
Constructor
'''
raise ValueError, "This class has not been implemented"
def copy(self, objIn=None):
if objIn == None:
return copy.deepcopy(self)
for key in objIn.__dict__.keys():
self.__dict__[key] = objIn.__dict__[key]
def deepcopy(self):
return copy.deepcopy(self)
class JROData(Data):
'''
classdocs
'''
m_RadarControllerHeader = RadarControllerHeader()
m_ProcessingHeader = ProcessingHeader()
m_SystemHeader = SystemHeader()
m_BasicHeader = BasicHeader()
noise = None
type = None
dataType = None
nHeights = None
nProfiles = None
nChannels = None
heightList = None
channelList = None
channelIndexList = None
pairList = None
flagNoData = False
flagResetProcessing = False
def __init__(self):
'''
Constructor
'''
raise ValueError, "This class has not been implemented"
def updateHeaderFromObj(self):
xi = self.heightList[0]
step = self.heightList[1] - self.heightList[0]
self.m_ProcessingHeader.firstHeight = xi
self.m_ProcessingHeader.deltaHeight = step
self.m_ProcessingHeader.numHeights = self.nHeights
self.m_SystemHeader.numChannels = self.nChannels
self.m_SystemHeader.numProfiles = self.nProfiles
def updateObjFromHeader(self):
xi = self.m_ProcessingHeader.firstHeight
step = self.m_ProcessingHeader.deltaHeight
xf = xi + self.m_ProcessingHeader.numHeights*step
self.heightList = numpy.arange(xi, xf, step)
self.channelIndexList = numpy.arange(self.m_SystemHeader.numChannels)
self.channelList = numpy.arange(self.m_SystemHeader.numChannels)
self.nHeights = len(self.heightList)
self.nProfiles = self.m_SystemHeader.numProfiles
self.nChannels = len(self.channelList)