##// END OF EJS Templates
AMISR Reader integration with Signal Chain Blocks, this time just only for Voltages to Profile Selection and Plotting Scope(Power,IQ) and Power Profile(dB). There is thwo python scripts as experiment's test.
AMISR Reader integration with Signal Chain Blocks, this time just only for Voltages to Profile Selection and Plotting Scope(Power,IQ) and Power Profile(dB). There is thwo python scripts as experiment's test.

File last commit:

r385:cd998dfc7f21
r474:e3c42f4268a9
Show More
testSignalChainGUI.py
29 lines | 760 B | text/x-python | PythonLexer
/ schainpy / gui / testSignalChainGUI.py
#!/usr/bin/python
# -*- coding: utf-8 -*-'
import sys
from PyQt4 import QtCore, QtGui
from PyQt4.QtGui import QApplication
#from PyQt4.QtCore import pyqtSignature
from viewcontroller.initwindow import InitWindow
from viewcontroller.basicwindow import BasicWindow
from viewcontroller.workspace import Workspace
def main():
import sys
app = QtGui.QApplication(sys.argv)
Welcome=InitWindow()
if not Welcome.exec_():
sys.exit(-1)
WorkPathspace=Workspace()
if not WorkPathspace.exec_():
sys.exit(-1)
MainGUI=BasicWindow()
MainGUI.setWorkSpaceGUI(WorkPathspace.dirComBox.currentText())
MainGUI.show()
sys.exit(app.exec_())
if __name__ == "__main__":
main()