##// END OF EJS Templates
Bug fixed: AMISR Reader filling with zeros at the begining of the processing....
Bug fixed: AMISR Reader filling with zeros at the begining of the processing. Updated: PrintInfo, print the info about AMISR Properties only one time. AMISR Reader, there is a new inut to set timezone 'lt' or 'ut', by default is 'ut' Removing sentences from figure.py to import customftp module.

File last commit:

r385:cd998dfc7f21
r497:85140003652c
Show More
testSignalChainGUI.py
29 lines | 760 B | text/x-python | PythonLexer
/ schainpy / gui / testSignalChainGUI.py
Alexander Valdez
VERSION1-GUI...
r208 #!/usr/bin/python
Alexander Valdez
Ultimo test de la Interfaz gráfica....
r368 # -*- coding: utf-8 -*-'
Alexander Valdez
Se habilitaron las vistas:...
r377 import sys
from PyQt4 import QtCore, QtGui
Alexander Valdez
VERSION1-GUI...
r208 from PyQt4.QtGui import QApplication
#from PyQt4.QtCore import pyqtSignature
Alexander Valdez
Last Change Test
r263
Alexander Valdez
Ultimo test de la Interfaz gráfica....
r368 from viewcontroller.initwindow import InitWindow
Alexander Valdez
new test con el modo basico
r288 from viewcontroller.basicwindow import BasicWindow
Alexander Valdez
Ultimo test de la Interfaz gráfica....
r368 from viewcontroller.workspace import Workspace
Alexander Valdez
VERSION1-GUI...
r208
def main():
import sys
Alexander Valdez
Se habilitaron las vistas:...
r377 app = QtGui.QApplication(sys.argv)
Alexander Valdez
Last Change Test
r263
Alexander Valdez
Ultimo test de la Interfaz gráfica....
r368 Welcome=InitWindow()
Alexander Valdez
Se habilitaron las vistas:...
r377 if not Welcome.exec_():
sys.exit(-1)
Alexander Valdez
Ultimo test de la Interfaz gráfica....
r368 WorkPathspace=Workspace()
Alexander Valdez
Se habilitaron las vistas:...
r377 if not WorkPathspace.exec_():
sys.exit(-1)
Alexander Valdez
Update
r385
Alexander Valdez
new test con el modo basico
r288 MainGUI=BasicWindow()
Alexander Valdez
Se habilitaron las vistas:...
r377 MainGUI.setWorkSpaceGUI(WorkPathspace.dirComBox.currentText())
MainGUI.show()
Alexander Valdez
VERSION1-GUI...
r208 sys.exit(app.exec_())
if __name__ == "__main__":
Alexander Valdez
Ultimo test de la Interfaz gráfica....
r368 main()