-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
135 lines (122 loc) · 4.23 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2017 Bastien Rouzé
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
#
# All import------------------------------------------------------------
from Tkinter import *
from tkMessageBox import *
import subprocess
import tkFileDialog
import Tix
import ttk
import tkColorChooser
import tkCommonDialog
import tkSimpleDialog
import tkFont
import Tkdnd
import ScrolledText
import sys
import commands
import math
import csv
from functools import partial
import re
import matplotlib
# ----------------------------------------------------------------------
from utils.extractor import SAextractor
from utils.analysis import SAanalysis
from utils.extractor3D import SADatacube
from utils.flux_calibration import flux_calibration
from classes.GUI_SAextractor import GUI_SAextractor
from classes.GUI_SAanalysis import GUI_SAanalysis
from classes.GUI_SAdatacube import GUI_SAdatacube
from classes.GUI_FLUXextraction_datacube import GUI_FLUXextraction_datacube
from classes.GUI_FLUXcalibration import GUI_FLUXcalibration
# ----------------------------------------------------------------------
# 2 methods for main----------------------------------------------------
# Have to be improved / removed
def fetch():
'''Run the selected task from main actor task selector
by destroying et rebuilding the window'''
choice = listbox.get(ACTIVE)
print choice
destroyer('main')
#The if decides which class instance invoke.
if choice == 'Spectroastrometry - extract/2dspec':
root = Tk()
GUISAE = GUI_SAextractor(root)
elif choice == 'Spectroastrometry - analysis/2dspec':
root = Tk()
GUISAA = GUI_SAanalysis(root)
elif choice == 'Spectroastrometry - extract/3dspec':
root = Tk()
GUISAC = GUI_SAdatacube(root)
elif choice == 'Flux - fluxextract/3dspec':
root = Tk()
GUIMISCFLUXE = GUI_FLUXextraction_datacube(root)
elif choice == 'Flux - fluxcalib':
root = Tk()
GUIMISCFLUXC = GUI_FLUXcalibration(root)
else:
print 'This task does not exist ! Please Retry...'
def destroyer(who):
'''Destroy a tkinter window'''
if who=='main':
#root.quit()
root.destroy()
if who=='extractor':
root.quit()
#-----------------------------------------------------------------------
def main(args):
# The main contains the first window which give the task list to
# the current user. The user can select one task and click on run
# but he can also decide to exit the tool
# In future version main will be replaced by a class instance
program_name = 'ASPpy - Astrospec\nAstronomical Spectroscopy Package python\nGraphical User Interface for data processing\n2017'
#----------------
global root
root = Tk()
root.wm_title("Astrospec")
global listbox
frame1 = Frame(root, bg='gray')
frame1.pack(fill=X)
Label(frame1, text=program_name).pack(padx=100,pady=10)
#photo = PhotoImage(file="MU_logo.png")
#canvas = Canvas(frame1,width=350, height=70)
#canvas.create_image(240, 70/2, anchor=CENTER, image=photo)
#canvas.pack()
frame2 = Frame(root)
frame2.pack(fill=X)
Label(frame2, text='--Task selector--').pack(padx=100,pady=10)
listbox = Listbox(root)
listbox.pack(fill=X)
Button(root, text='Run', command=fetch).pack()
Button(root, text='Exit', command=root.quit).pack()
listbox.insert(1, 'Spectroastrometry - extract/2dspec')
listbox.insert(2, 'Spectroastrometry - analysis/2dspec')
listbox.insert(3, 'Spectroastrometry - extract/3dspec')
listbox.insert(4, 'Flux - fluxextract/3dspec')
listbox.insert(5, 'Flux - fluxcalib')
root.mainloop()
#----------------
print 'end'
return 0
if __name__ == '__main__':
import sys
sys.exit(main(sys.argv))