-
Notifications
You must be signed in to change notification settings - Fork 0
/
database.py
223 lines (185 loc) · 7.21 KB
/
database.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
import pony.orm as porm
#import database
from datetime import date
#import station_names
import getpass
import pandas as pd
from pony.orm.core import ObjectNotFound, TransactionIntegrityError
conn_url = 'postgresql://localhost:5432'
db = porm.Database()
class Station(db.Entity):
stations_id = porm.PrimaryKey(int, auto=False)
von_datum = porm.Optional(date)
bis_datum = porm.Optional(date)
stationshoehe = porm.Optional(int)
geobreite = porm.Optional(float)
geolaenge = porm.Optional(float)
stationsname = porm.Required(str)
bundesland = porm.Optional(str)
measurements = porm.Set('DailyMeasurement')
@classmethod
def in_city(cls, city_name):
return cls.select(lambda s: city_name in s.stationsname)
class DailyMeasurement(db.Entity):
mess_datum = porm.Required(date)
stations_id = porm.Required(int)
station = porm.Optional(Station)
qn_3 = porm.Optional(int) # quality level of next columns
fx = porm.Optional(float)
fm = porm.Optional(float)
qn_4 = porm.Optional(int)
rsk = porm.Optional(float)
rskf = porm.Optional(float)
sdk = porm.Optional(float)
shk_tag = porm.Optional(float)
nm = porm.Optional(float)
vpm = porm.Optional(float)
pm = porm.Optional(float)
tmk = porm.Optional(float)
upm = porm.Optional(float)
txk = porm.Optional(float)
tnk = porm.Optional(float)
tgk = porm.Optional(float)
porm.PrimaryKey(mess_datum, stations_id)
#import math
#def before_insert(self):
# for x in self._columns_:
# if isinstance(getattr(self, x), float):
# if math.isnan((getattr(self, x))):
# setattr(self, x, None)
# self.station = Station[self.stations_id]
#def after_insert(self):
# self.station = Station[self.stations_id]
#def after_update(self):
# self.station = Station[self.stations_id]
class DailyPrediction(db.Entity):
id = porm.PrimaryKey(int, auto=True)
website = porm.Required(str)
city = porm.Required(str)
date_of_acquisition = porm.Required(str)
date_for_which_weather_is_predicted = porm.Required(str)
temperature_max = porm.Required(float)
temperature_min = porm.Required(float)
wind_speed = porm.Optional(float, nullable=True)
humidity = porm.Optional(float, nullable=True)
precipitation_per = porm.Optional(float, nullable=True)
precipitation_l = porm.Optional(float, nullable=True)
wind_direction = porm.Optional(str, 3, nullable=True)
condition = porm.Optional(str, nullable=True)
snow = porm.Optional(float, nullable=True)
UVI = porm.Optional(int, unsigned=True)
class HourlyPrediction(db.Entity):
id = porm.PrimaryKey(int, auto=True)
website = porm.Required(str)
city = porm.Required(str)
date_of_acquisition = porm.Required(str)
date_for_which_weather_is_predicted = porm.Required(str)
temperature = porm.Required(float)
wind_speed = porm.Optional(float)
humidity = porm.Optional(float)
precipitation_per = porm.Optional(float)
precipitation_l = porm.Optional(float)
wind_direction = porm.Optional(str, 3)
condition = porm.Optional(str)
snow = porm.Optional(float)
UVI = porm.Optional(int, unsigned=True)
class DailyPeriodPrediction(db.Entity):
id = porm.PrimaryKey(int, auto=True)
website = porm.Required(str)
city = porm.Required(str)
date_of_acquisition = porm.Required(str)
date_for_which_weather_is_predicted = porm.Required(str)
temperature = porm.Required(float)
wind_speed = porm.Optional(float)
precipitation_per = porm.Optional(float)
precipitation_l = porm.Optional(float)
wind_direction = porm.Optional(str, 3)
condition = porm.Optional(str)
@porm.db_session
def set_station_trigger(db):
trigger_text = '''
create or replace function set_station()
returns trigger as '
begin
new.station := new.stations_id;
return new;
end;
' language plpgsql;
drop trigger if exists set_station on dailymeasurement;
create trigger set_station
before insert
on dailymeasurement
for each row
execute procedure set_station();
'''
db.execute(trigger_text)
def set_up_connection(db, db_name, user='', password=None, host='127.0.0.1', create_tables=False):
'''
Sets up a connection with the database server.
Set create_tables to True if the tables don't exist.
'''
if password is None:
password = getpass.getpass(prompt='postgres user password: ')
db.bind(provider='postgres', user=user, password=password, host=host, database=db_name)
db.generate_mapping(create_tables = create_tables)
global conn_url
conn_url = 'postgresql://{}:{}@{}:5432/{}'.format(user, password, host, db_name)
if create_tables:
set_station_trigger(db)
@porm.db_session
def _insert_without_pandas(df, table_name):
table_obj = db.entities[table_name]
pk = table_obj._pk_columns_
if df.index.name is None:
df_q = df.set_index(pk)
else:
df_q = df.copy()
for i in df_q.index:
try:
table_obj[i]
except ObjectNotFound:
try:
table_obj(**{**dict(zip(pk, i)),
**df_q.loc[i].to_dict()})
except TypeError:
table_obj(**{**{pk : i},
**df_q.loc[i].to_dict()})
@porm.db_session
def _insert_with_pandas(df, table_name, auto_id=False, overwrite=False):
indices_to_keep = []
rows_to_delete = []
table_obj = db.entities[table_name]
if df.index.name is None and not auto_id:
df_q = df.set_index(table_obj._pk_columns_)
else:
df_q = df.copy()
try:
df_q.to_sql(table_name.lower(), conn_url, if_exists='append', index=not auto_id)
except:
for i in df_q.index:
try:
row = table_obj[i]
if overwrite:
rows_to_delete.append(row)
indices_to_keep.append(i)
except ObjectNotFound:
indices_to_keep.append(i)
except:
print(i)
table_obj.select(lambda x: x in rows_to_delete).delete(bulk = True)
porm.commit()
print('starting insert')
df_to_insert = df_q.loc[indices_to_keep]
df_to_insert.to_sql(table_name.lower(), conn_url, if_exists='append', index=not auto_id)
@porm.db_session
def insert_into_table(df, table_name, use_pandas=True, auto_id=False, overwrite=False):
if use_pandas:
_insert_with_pandas(df, table_name, auto_id, overwrite)
else:
_insert_without_pandas(df, table_name)
@porm.db_session
def query_to_dataframe(query):
try:
return pd.read_sql_query(query.get_sql(), conn_url)
except:
return pd.DataFrame([o.to_dict() for o in query])