/usr/lib/python2.7/dist-packages/pytrainer/timegraph.py is in pytrainer 1.11.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # -*- coding: iso-8859-1 -*-
#Copyright (C) Sigurður H. Pálsson shp@itn.is
#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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
import datetime
import logging
from gui.drawArea import DrawArea
class TimeGraph(object):
def __init__(self, sports, vbox = None, window = None, combovalue = None, combovalue2 = None, main = None):
self.drawarea = DrawArea(vbox, window)
self.SPORT_FIELD = 9
self.sport_colors = dict([(sport.name, sport.color.to_hex_string()) for sport in sports])
def getFloatValue(self, value):
try:
return float(value)
except:
return float(0)
def getValue(self,record,value_selected):
#hacemos una relacion entre el value_selected y los values / we make a relation between value_selected and the values
conv = {
0: 1, #value 0 es kilometros (1)
1: 2, #value 1 es tiempo (2)
2: 3, #value 2 es pulsaciones(3)
3: 5, #value 3 es media(5)
4: 6 #value 4 es calorias(6)
}
value_sel = conv[value_selected]
#si la opcion es tiempo lo pasamos a horas / if the option is time we passed it to hours
if (value_sel == 2):
return self.getFloatValue(record[value_sel])/3600
else:
return self.getFloatValue(record[value_sel])
def get_values(self, values, value_selected, key_format, sportfield=9):
valueDict = {} #Stores the totals
valueCount = {} #Counts the totals to allow for averaging if needed
sportColors = {}
for record in values:
if record[0]:
day = unicode(datetime.datetime.strptime(record[0], "%Y-%m-%d").strftime(key_format)) # Gives year for this record
sport = record[sportfield]
value = self.getValue(record, value_selected)
if sport in valueDict: #Already got this sport
if day in valueDict[sport]: #Already got this sport on this day
valueDict[sport][day] += value
valueCount[sport][day] += 1
else: #New day for this sport
valueDict[sport][day] = value
valueCount[sport][day] = 1
else: #New sport
valueDict[sport] = {day: value}
valueCount[sport] = {day: 1}
else:
logging.debug("No date string found, skipping entry: " + str(record))
if value_selected in (2, 3):
total = {}
count = {}
for sport in valueDict.keys():
for day in valueDict[sport].keys():
if valueCount[sport][day] > 1: #Only average if 2 or more entries on this day
valueDict[sport][day] /= valueCount[sport][day]
if value_selected == 1: #Values are of time type
valuesAreTime=True
else:
valuesAreTime=False
return valueDict, valuesAreTime
def drawgraph(self,values, extra=None, x_func=None):
xval = []
yval = []
xlab = []
ylab = []
tit = []
valsAreTime = []
value_selected = self.combovalue.get_active()
value_selected2 = self.combovalue2.get_active()
if value_selected < 0:
self.combovalue.set_active(0)
value_selected = 0
y1,ylabel,title,y2 = self.get_value_params(value_selected)
ylab.append(ylabel)
tit.append(title)
yvalues, valuesAreTime = self.get_values(values,value_selected, self.KEY_FORMAT, sportfield=self.SPORT_FIELD)
if not len(values): return
xvalues = x_func(yvalues)
yval.append(yvalues)
xlab.append(xvalues)
valsAreTime.append(valuesAreTime)
#Second combobox used
if value_selected2 > 0:
value_selected2 = value_selected2-1
y1, ylabel,title,y2 = self.get_value_params(value_selected2)
ylab.append(ylabel)
tit.append(title)
yvalues, valuesAreTime = self.get_values(values,value_selected2, self.KEY_FORMAT, sportfield=self.SPORT_FIELD)
yval.append(yvalues)
xlab.append(xvalues)
valsAreTime.append(valuesAreTime)
#Draw chart
self.drawarea.drawStackedBars(xlab,yval,ylab,tit,valsAreTime, colors = self.sport_colors)
def get_value_params(self,value):
return self.value_params[value]
|