Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/convert.py
blob: a1caf22ed9df4b55a4c9279efc435140048934bc (plain)
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-

# convert.py by:
#    Cristhofer Travieso <cristhofert97@gmail.com>

# 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 3 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 St, Fifth Floor, Boston, MA  02110-1301  USA

lenght = {'m': (1, 1), 'km': (1000, 0.001), 'cm': (0.01), 'mm': 0.001,
          'dm': (0.1), 'dam': (10), 'hm': (100)}

speed = {'Km/H': (1)}

area = {'Meter2': (1)}

weight = {'Gram': (1)}

volume = {'Meter3': (1)}

temp = {'Celsius': (1)}

dic = lenght


def convert(number, unit, to_unit):
    metro = number * dic[unit][0]
    print str(metro) + 'm'
    uni = metro * dic[to_unit][1]
    return uni

#    print '%s * %s * %s' % (number, dic[unit], dic[to_unit    ])
#    return number * dic[unit] * dic[to_unit]
#    x = number * 1 / dic[unit]
#    a = x * dic[to_unit] / 1
#    return a

#    print number, dic[unit], dic[to_unit]
#    return number * dic[unit] * dic[to_unit]

# 100cm  ___ 1m
# number ___ x
# x = number * 1m / 100cm
# x = number / dic[to_unit]
#1m __ 1000mm
#x ____ a
#a = x * 1000mm / 1m

#ATENCION! buscar por que en losnumeros aparese e-
#    def convert(self):
#        number = self.spin_btn.get_value()
#        unit = self._get_active_text(self.combo1)
#        to_unit = self._get_active_text(self.combo2)
#        if unit == to_unit:
#            self.update_label_info(True, unit, to_unit)
#            return self.recut(number)
#        else:
#            self.update_label_info(False, unit, to_unit)
#            return self.recut(number * self.dic[unit] * self.dic[to_unit])
#