File: precip.py

package info (click to toggle)
pycha 0.5.3-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 580 kB
  • ctags: 434
  • sloc: python: 3,642; makefile: 67
file content (47 lines) | stat: -rw-r--r-- 1,210 bytes parent folder | download
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
# Copyright (c) 2007-2008 by Lorenzo Gil Sanchez <lorenzo.gil.sanchez@gmail.com>
#
# This file is part of PyCha.
#
# PyCha is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# PyCha 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with PyCha.  If not, see <http://www.gnu.org/licenses/>.


Tainan = (
    ('Jan', 32.7),
    ('Feb', 9.5),
    ('Mar', 25.5),
    ('Apr', 13.7),
    ('May', 41.5),
    ('Jun', 782.2),
    ('Jul', 526.9),
    ('Aug', 84.5),
    ('Sep', 356.5),
    ('Oct', 33.0),
    ('Nov', 42.9),
    ('Dec', 1.1),
)

Paris = (
    ('Jan', 54),
    ('Feb', 46),
    ('Mar', 54),
    ('Apr', 47),
    ('May', 63),
    ('Jun', 58),
    ('Jul', 54),
    ('Aug', 52),
    ('Sep', 54),
    ('Oct', 56),
    ('Nov', 56),
    ('Dec', 56),
)