Ticket #25: precip.py
| File precip.py, 1.2 kB (added by aprzywecki@…, 3 years ago) |
|---|
| Line | |
|---|---|
| 1 | # Copyright (c) 2007-2008 by Lorenzo Gil Sanchez <lorenzo.gil.sanchez@gmail.com> |
| 2 | # |
| 3 | # This file is part of PyCha. |
| 4 | # |
| 5 | # PyCha is free software: you can redistribute it and/or modify |
| 6 | # it under the terms of the GNU Lesser General Public License as published by |
| 7 | # the Free Software Foundation, either version 3 of the License, or |
| 8 | # (at your option) any later version. |
| 9 | # |
| 10 | # PyCha is distributed in the hope that it will be useful, |
| 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | # GNU Lesser General Public License for more details. |
| 14 | # |
| 15 | # You should have received a copy of the GNU Lesser General Public License |
| 16 | # along with PyCha. If not, see <http://www.gnu.org/licenses/>. |
| 17 | |
| 18 | # common data for several examples |
| 19 | |
| 20 | Tainan = ( |
| 21 | ('Jan', 32.7), |
| 22 | ('Feb', 9.5), |
| 23 | ('Mar', 25.5), |
| 24 | ('Apr', 13.7), |
| 25 | ('May', 41.5), |
| 26 | ('Jun', 782.2), |
| 27 | ('Jul', 526.9), |
| 28 | ('Aug', 84.5), |
| 29 | ('Sep', 356.5), |
| 30 | ('Oct', 33.0), |
| 31 | ('Nov', 42.9), |
| 32 | ('Dec', 1.1), |
| 33 | ) |
| 34 | |
| 35 | Paris = ( |
| 36 | ('Jan', 54), |
| 37 | ('Feb', 46), |
| 38 | ('Mar', 54), |
| 39 | ('Apr', 47), |
| 40 | ('May', 63), |
| 41 | ('Jun', 58), |
| 42 | ('Jul', 54), |
| 43 | ('Aug', 52), |
| 44 | ('Sep', 54), |
| 45 | ('Oct', 56), |
| 46 | ('Nov', 56), |
| 47 | ('Dec', 56), |
| 48 | ) |
