##// END OF EJS Templates
Changes to meteor detection and phase correction because of relocation of antenna
Changes to meteor detection and phase correction because of relocation of antenna

File last commit:

r583:e5ed8fbe1d1e
r819:c63b6bff3798
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()