Projekt

Obecné

Profil

Stáhnout (506 Bajtů) Statistiky
| Větev: | Revize:
1 527abccd petrh
class DatabaseDataLine:
2 04a2b5a4 petrh
    """
3
    Class that specifies the look of data line in database
4
    """
5
    def __init__(self, name, longitude, latitude, date, occurrence):
6 527abccd petrh
        self.name = name
7
        self.latitude = latitude
8
        self.longitude = longitude
9
        self.date = date
10 04a2b5a4 petrh
        self.occurrence = occurrence
11 527abccd petrh
12
    def to_dictionary(self):
13 1187e871 petrh
        return {"place": self.name, "x": self.longitude, "y": self.latitude, "number": self.occurrence,
14
                "date": self.date}