forked from ycahome/MoonPhases
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fiximages.py
43 lines (41 loc) · 1.43 KB
/
fiximages.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
# turn moon right way up for images kindly provided for domoticz plugin
# see http://www.domoticz.com/forum/viewtopic.php?f=65&t=21993
# ross lazarus me fecit march 10 2018
# added updated icons.txt
# rlazarus@rosshp:/tmp/mp$ cat MoonPhases1NM/icons.txt
# MoonPhases1NM;MoonPhases1NM;NewMoon MoonPhases
import os
suffix = 'SH'
ourd = os.getcwd()
flist = os.listdir('.')
flist = [x for x in flist if x[0] == 'M' and x[-4:] == '.zip']
for f in flist:
os.chdir(ourd)
dname = f.split('.')[0]
try:
os.mkdir(dname)
except:
print dname, 'already exists'
os.chdir(dname)
try:
os.system('unzip -o ../%s' % f)
except:
print f, 'zip contents already exist'
pnames = os.listdir('.')
pnames = [x for x in pnames if x.endswith('.png') and not 'SH' in x]
for pname in pnames:
p = pname.split('.')[0]
rest = p[10:] # eg MoonPhases4WG48_Off
newname = 'MoonPhases%s%s%s.png' % (rest[:3],suffix,rest[3:])
os.system('convert -rotate "200" ./%s ./%s' % (pname,newname))
print 'rotated',pname,'to',newname
ico = open('icons.txt','r').read()
lnew = [x for x in ico.split(';')]
lnew[0] = '%s%s' % (lnew[0],suffix)
lnew[1] = lnew[0] # same..
newico = ';'.join(lnew)
ico = open('icons.txt','w')
ico.write(newico)
ico.close()
os.system('zip ../%s%s %s%s*.png icons.txt' % (dname,suffix,dname,suffix))
print 'Added SH images to',dname