95 |
print "ROW VALUES:",self.values |
print "ROW VALUES:",self.values |
96 |
_v = [] |
_v = [] |
97 |
for col in table.cols.values(): |
for col in table.cols.values(): |
98 |
_v.append( col.instance.getRealValue() / col.units.getConversion() ) |
_v.append( col.instance.getRealValue() ) |
99 |
self.values = _v |
self.values = _v |
100 |
print "Made static, values:",self.values |
print "Made static, values:",self.values |
101 |
|
|
105 |
else: |
else: |
106 |
_v = [] |
_v = [] |
107 |
for index,col in table.cols.iteritems(): |
for index,col in table.cols.iteritems(): |
108 |
_v.append( col.instance.getRealValue() / col.units.getConversion() ) |
_v.append( col.instance.getRealValue() ) |
109 |
return _v |
return _v |
110 |
|
|
111 |
class ObserverTab: |
class ObserverTab: |