forked from tdamdouni/Pythonista
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUntitled.py
179 lines (149 loc) · 4.8 KB
/
Untitled.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
from __future__ import print_function
# https://omz-forums.appspot.com/editorial/post/5842883206709248
# displaying image or matplotlib plot in a imageview ui element
#coding: utf-8
# wxtui
# A simple RGB color mixer with three sliders.
import ui
import clipboard
from random import random
from console import hud_alert
import os
#import re # str.split(), str.partition(), and `in` replace re for plain text
import console
import matplotlib.pylab as plt
import sys # for sys.exit()
global endTime, duration, wxt520Time, wxt520Data, nparm, parm
endTime=242
duration=120
wxt520Time=[]
wxt520Data=[]
# interactive wxt520 plot
def get_num(s):
return float( ''.join( x for x in s if x.isdigit() or x == '.') )
def getWxt520Data():
cwd = os.getcwd()
print(cwd)
local_files = os.listdir(cwd) # using 'list' as a variable name is dangerous... 'time' also.
print(local_files)
# list comprehension, only file ending with '.wxt', case insensitive!
files = [f for f in local_files if f.upper().endswith('.WXT')]
if not files: # deal with no .wxt files found
sys.exit('No .WXT files found in "{}"!'.format(cwd))
#for f in list:
# if re.match("WXT",f):
# files.append(f)
#print files
f = files[1] # why the second .WXT file? files[0] is the first .WXT file.
#fn = open(f,"r") # you are not closing this file which leak memory, etc.
with open(f) as in_file: # use `with open() as file_handle` which will automatically close()
lines = in_file.readlines()
date=[]
time=[]
count=[]
data=[]
for line in lines:
parts = line.split() # str.split() is more commonly used than re.split()
date.append(parts[0])
time.append(parts[1])
count.append(parts[2])
data.append(parts[3])
#create dictionary from data key:index (location of element to plot)
dict_index2parameter={}
dict_parameter2index={}
parts = data[0].split(',') # str.split() is more commonly used than re.split()
for i, part in enumerate(parts): # enumerate counts and separates at the same time
if '=' in part: # `in` is more commonly used than re.search()
q = part.split('=') # str.partition() is also useful in this instance
dict_parameter2index[q[0]]=i
dict_index2parameter[i]=q[0]
print(dict_parameter2index)
print(dict_index2parameter)
# create decimal time
dtime=[]
for t in time:
parts = t.split(':')
d = float( parts[0] ) + float( parts[1] )/60. + float( parts[2])/3600. # decimal time
dtime.append(d)
return dtime,data,dict_index2parameter,dict_parameter2index
def extractWxt520Parm(data,nparm):
# extract data
# nparm = 4 # parameter to display
y = []
for d in data:
parts = d.split(',')
y.append(get_num(parts[nparm]))
return y
def extractWxt520Subinterval(endtime,duration,dtime,parm):
iend = 60*endtime
istart = iend - duration
if istart <0:
istart = 0;
iend = duration
if iend > 1440:
iend = 1439
istart = iend - duration
x=dtime[istart:iend]
y=parm[istart:iend]
return x,y
def pltwxt520(x,y):
plt.grid()
plt.plot(x,y)
plt.save("wxt520.png",'PNG') #??? save the file to disk
# plt.show()
def button_action(sender):
global wxt520Data, wxt520Time, nparm, parm
# Get the root view:
v = sender.superview
parm = extractWxt520Parm(wxt520Data, nparm)
v['label2'].text = 'fn = '+str(nparm)
x,y = extractWxt520Subinterval(end, dur, wxt520Time, parm)
pltwxt520(x, y)
def button1(sender):
nparm = 7
button_action(sender)
def button2(sender):
nparm = 4
button_action(sender)
def button3(sender):
nparm = 9
button_action(sender)
def slider_action(sender):
global wxt520Data, wxt520Time,nparm,parm
# Get the root view:
v = sender.superview
# Get the sliders:
end = int( v['endtime'].value * 24 )
dur = int ( v['duration'].value * 120 )
# Create the new color from the slider values:
# v['view1'].background_color = (r, r*0.1, r*0.23)
v['label1'].text = 'End Time [h] = {} Duration [m] = {}'.format(end, dur) # str.format()
v['label2'].text = 'fn = '+str(nparm)
# print end, dur
x,y = extractWxt520Subinterval(end,dur,wxt520Time,parm)
pltwxt520(x,y)
# img = image.load("wxt520.png") # ??? I am stuck here, at this point, I have image on console, image on disk but no image in my imageview1 ui element
# v['imageview1'].image = img #.named("wxt520.png")
v['imageview1'].image = ui.Image.named('wxt520.png')
def main():
global wxt520Time, wxt520Data, nparm, parm
time, data, dict1, dict2 = getWxt520Data()
nparm=4
parm = extractWxt520Parm(data,nparm)
endTime = 24
duration = 120
wxt520Time = time
wxt520Data = data
# print wxt520Data
x,y = extractWxt520Subinterval(endTime,duration,time,parm)
# print x
# print y
v = ui.load_view('wxtuiplot')
slider_action(v['endtime'])
#if ui.get_screen_size()[1] >= 768:
# # iPad
# v.present('fullscreen')
#else:
# # iPhone
v.present() # 'fullscreen' is the default
main()