##// END OF EJS Templates
Se agrega el folder "graphics" que contiene figure.py y mpldriver.py...
Se agrega el folder "graphics" que contiene figure.py y mpldriver.py figure.py contiene las clases: Figure, Axes mpldriver.py driver para matplotlib En el modelo se creado: jroplot.py, aqui se ha agregado la clase Scope, para hacer graficos tipo osciloscopio. El archivo de prueba: test4NewSignalChain.py contiene un ejemplo.

File last commit:

r169:661bb8af254a
r190:cfcc2c9608cc
Show More
Voltage.py
60 lines | 1.2 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 Voltage(JROData):
'''
classdocs
'''
data = None
nProfiles = None
profileIndex = None
def __init__(self):
'''
Constructor
'''
self.m_RadarControllerHeader = RadarControllerHeader()
self.m_ProcessingHeader = ProcessingHeader()
self.m_SystemHeader = SystemHeader()
self.m_BasicHeader = BasicHeader()
self.type = "Voltage"
#data es un numpy array de 3 dmensiones (perfiles, alturas y canales)
self.data = None
self.dataType = None
self.nHeights = 0
self.nChannels = 0
self.channelList = None
self.heightList = None
self.flagNoData = True
self.flagResetProcessing = False
self.nAvg = None
self.profileIndex = None
self.nProfiles = None