##// END OF EJS Templates
Se agrega el metodo plotScope
Se agrega el metodo plotScope

File last commit:

r126:ba26fa07a34d
r136:281987d46ec5
Show More
JROData.py
75 lines | 1.4 KiB | text/x-python | PythonLexer
'''
$Author$
$Id$
'''
import os, sys
import copy
import numpy
path = os.path.split(os.getcwd())[0]
sys.path.append(path)
from IO.JROHeader import SystemHeader, RadarControllerHeader
class JROData:
# m_BasicHeader = BasicHeader()
# m_ProcessingHeader = ProcessingHeader()
systemHeaderObj = SystemHeader()
radarControllerHeaderObj = RadarControllerHeader()
# data = None
type = None
dtype = None
nChannels = None
nHeights = None
nProfiles = None
heightList = None
channelList = None
channelIndexList = None
flagNoData = False
flagTimeBlock = False
dataUtcTime = None
nCode = None
nBaud = None
code = None
flagDecodeData = True #asumo q la data esta decodificada
flagDeflipData = True #asumo q la data esta sin flip
flagShiftFFT = False
def __init__(self):
raise ValueError, "This class has not been implemented"
def copy(self, inputObj=None):
if inputObj == None:
return copy.deepcopy(self)
for key in inputObj.__dict__.keys():
self.__dict__[key] = inputObj.__dict__[key]
def deepcopy(self):
return copy.deepcopy(self)