##// END OF EJS Templates
Bug fixed in RTI and Wind Profiler Plots, when data time exceeded the xmax, the new plot generated was overwriting the first one.
Bug fixed in RTI and Wind Profiler Plots, when data time exceeded the xmax, the new plot generated was overwriting the first one.

File last commit:

r491:3acb3a6f21eb
r509:7fe23f0913c9
Show More
amisr_reader.py
39 lines | 1.2 KiB | text/x-python | PythonLexer
Daniel Valdez
scritps for amisr users
r484 import os, sys
path = os.path.split(os.getcwd())[0]
sys.path.append(path)
from controller import *
desc = "AMISR Experiment"
filename = "amisr_reader.xml"
controllerObj = Project()
controllerObj.setup(id = '191', name='test01', description=desc)
Daniel Valdez
scripts to processing AMISR data
r485 path = os.path.join(os.environ['HOME'],'Documents/amisr') #'/home/signalchain/Documents/amisr'
Daniel Valdez
scritps for amisr users
r484
Daniel Valdez
scripts to processing AMISR data
r485 figpath = os.path.join(os.environ['HOME'],'Pictures/amisr')
Daniel Valdez
scritps for amisr users
r484
Daniel Valdez
AMISR modules to read hdf5 files and link to SignalChain Objects...
r491 readUnitConfObj = controllerObj.addReadUnit(datatype='AMISRReader',
Daniel Valdez
scritps for amisr users
r484 path=path,
startDate='2014/08/18',
endDate='2014/08/18',
startTime='00:00:00',
endTime='23:59:59',
walk=1)
Daniel Valdez
AMISR modules to read hdf5 files and link to SignalChain Objects...
r491 procUnitAMISR = controllerObj.addProcUnit(datatype='AMISRProc', inputId=readUnitConfObj.getId())
Daniel Valdez
scritps for amisr users
r484
opObj11 = procUnitAMISR.addOperation(name='PrintInfo', optype='other')
print "Escribiendo el archivo XML"
controllerObj.writeXml(filename)
print "Leyendo el archivo XML"
controllerObj.readXml(filename)
controllerObj.createObjects()
controllerObj.connectObjects()
controllerObj.run()