-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomTypes.py
132 lines (117 loc) · 3.39 KB
/
customTypes.py
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
from dataclasses import dataclass
from typing import List
from collections import namedtuple
def customWeatherDecoder(weatherDict):
return namedtuple('X', weatherDict.keys())(*weatherDict.values())
@dataclass
class HourlyUnits:
time: str
temperature_2m: str
precipitation: str
cloud_cover: str
sunshine_duration: str
def to_dict(self):
return {
"time": self.time,
"temperature_2m": self.temperature_2m,
"precipitation": self.precipitation,
"cloud_cover": self.cloud_cover,
"sunshine_duration": self.sunshine_duration
}
@dataclass
class Hourly:
time: List[str]
temperature_2m: List[float]
precipitation: List[float]
cloud_cover: List[int]
sunshine_duration: List[float]
def to_dict(self):
return {
"time": self.time,
"temperature_2m": self.temperature_2m,
"precipitation": self.precipitation,
"cloud_cover": self.cloud_cover,
"sunshine_duration": self.sunshine_duration
}
@dataclass
class DailyUnits:
time: str
sunrise: str
sunset: str
sunshine_duration: str
def to_dict(self):
return {
"time": self.time,
"sunrise": self.sunrise,
"sunset": self.sunset,
"sunshine_duration": self.sunshine_duration
}
@dataclass
class Daily:
time: List[str]
sunrise: List[str]
sunset: List[str]
sunshine_duration: List[float]
def to_dict(self):
return {
"time": self.time,
"sunrise": self.sunrise,
"sunset": self.sunset,
"sunshine_duration": self.sunshine_duration
}
@dataclass
class WeatherData:
latitude: float
longitude: float
generationtime_ms: float
utc_offset_seconds: int
timezone: str
timezone_abbreviation: str
elevation: float
hourly_units: HourlyUnits
hourly: Hourly
daily_units: DailyUnits
daily: Daily
def to_dict(self):
return {
"latitude": self.latitude,
"longitude": self.longitude,
"generationtime_ms": self.generationtime_ms,
"utc_offset_seconds": self.utc_offset_seconds,
"timezone": self.timezone,
"timezone_abbreviation": self.timezone_abbreviation,
"elevation": self.elevation,
"hourly_units": self.hourly_units.to_dict(),
"hourly": self.hourly.to_dict(),
"daily_units": self.daily_units.to_dict(),
"daily": self.daily.to_dict()
}
@dataclass
class DocumentDesciption():
kalenderwoche: int
jahr: int
starttag: int
endtag: int
@dataclass
class DocumentList:
docs:list[DocumentDesciption]
@dataclass
class MinMaxWeather():
power_production: tuple[float,float]
percipitation: tuple[float,float]
temp: tuple[float,float]
cloud_cover: tuple[float,float]
wind_speed: tuple[float,float]
irradiance: tuple[float,float]
humidity: tuple[float,float]
diffuse_radiation: tuple[float,float]
direct_normal_irradiance: tuple[float,float]
diffuse_radiation_instant: tuple[float,float]
direct_normal_irradiance_instant: tuple[float,float]
global_tilted_irradiance_instant: tuple[float,float]
@dataclass
class MinMaxSeasons():
winter: MinMaxWeather
spring: MinMaxWeather
summer: MinMaxWeather
autumn: MinMaxWeather