|
1
|
|
|
import datetime |
|
2
|
|
|
import json |
|
3
|
|
|
|
|
4
|
|
|
from geoalchemy2 import Geometry |
|
5
|
|
|
from omi.dialects import get_dialect |
|
6
|
|
|
from sqlalchemy import ( |
|
7
|
|
|
Boolean, |
|
8
|
|
|
Column, |
|
9
|
|
|
DateTime, |
|
10
|
|
|
Float, |
|
11
|
|
|
Integer, |
|
12
|
|
|
Sequence, |
|
13
|
|
|
String, |
|
14
|
|
|
) |
|
15
|
|
|
from sqlalchemy.ext.declarative import declarative_base |
|
16
|
|
|
|
|
17
|
|
|
from egon.data import config, db |
|
18
|
|
|
from egon.data.metadata import ( |
|
19
|
|
|
context, |
|
20
|
|
|
contributors, |
|
21
|
|
|
generate_resource_fields_from_db_table, |
|
22
|
|
|
license_dedl, |
|
23
|
|
|
meta_metadata, |
|
24
|
|
|
meta_metadata, |
|
25
|
|
|
sources, |
|
26
|
|
|
) |
|
27
|
|
|
|
|
28
|
|
|
Base = declarative_base() |
|
29
|
|
|
|
|
30
|
|
|
|
|
31
|
|
|
class EgonMastrGeocoded(Base): |
|
32
|
|
|
__tablename__ = "egon_mastr_geocoded" |
|
33
|
|
|
__table_args__ = {"schema": "supply"} |
|
34
|
|
|
|
|
35
|
|
|
index = Column( |
|
36
|
|
|
Integer, Sequence("mastr_geocoded_seq"), primary_key=True, index=True |
|
37
|
|
|
) |
|
38
|
|
|
zip_and_municipality = Column(String) |
|
39
|
|
|
latitude = Column(Float) |
|
40
|
|
|
longitude = Column(Float) |
|
41
|
|
|
altitude = Column(Float) |
|
42
|
|
|
geometry = Column(Geometry("POINT", 4326)) |
|
43
|
|
|
|
|
44
|
|
|
|
|
45
|
|
|
class EgonPowerPlantsPv(Base): |
|
46
|
|
|
__tablename__ = "egon_power_plants_pv" |
|
47
|
|
|
__table_args__ = {"schema": "supply"} |
|
48
|
|
|
|
|
49
|
|
|
id = Column(Integer, Sequence("pp_pv_seq"), primary_key=True) |
|
50
|
|
|
bus_id = Column(Integer, nullable=True) # Grid district id |
|
51
|
|
|
gens_id = Column(String, nullable=True) # EinheitMastrNummer |
|
52
|
|
|
|
|
53
|
|
|
status = Column(String, nullable=True) # EinheitBetriebsstatus |
|
54
|
|
|
commissioning_date = Column(DateTime, nullable=True) # Inbetriebnahmedatum |
|
55
|
|
|
postcode = Column(String(5), nullable=True) # Postleitzahl |
|
56
|
|
|
city = Column(String(50), nullable=True) # Ort |
|
57
|
|
|
municipality = Column(String, nullable=True) # Gemeinde |
|
58
|
|
|
federal_state = Column(String(31), nullable=True) # Bundesland |
|
59
|
|
|
site = Column(String, nullable=True) # Standort |
|
60
|
|
|
zip_and_municipality = Column(String, nullable=True) |
|
61
|
|
|
|
|
62
|
|
|
site_type = Column(String(69), nullable=True) # Lage |
|
63
|
|
|
usage_sector = Column(String(36), nullable=True) # Nutzungsbereich |
|
64
|
|
|
orientation_primary = Column(String(11), nullable=True) # Hauptausrichtung |
|
65
|
|
|
orientation_primary_angle = Column( |
|
66
|
|
|
String(18), nullable=True |
|
67
|
|
|
) # HauptausrichtungNeigungswinkel |
|
68
|
|
|
orientation_secondary = Column( |
|
69
|
|
|
String(11), nullable=True |
|
70
|
|
|
) # Nebenausrichtung |
|
71
|
|
|
orientation_secondary_angle = Column( |
|
72
|
|
|
String(18), nullable=True |
|
73
|
|
|
) # NebenausrichtungNeigungswinkel |
|
74
|
|
|
orientation_uniform = Column( |
|
75
|
|
|
Boolean, nullable=True |
|
76
|
|
|
) # EinheitlicheAusrichtungUndNeigungswinkel |
|
77
|
|
|
module_count = Column(Float, nullable=True) # AnzahlModule |
|
78
|
|
|
|
|
79
|
|
|
capacity = Column(Float, nullable=True) # Nettonennleistung |
|
80
|
|
|
capacity_inverter = Column( |
|
81
|
|
|
Float, nullable=True |
|
82
|
|
|
) # ZugeordneteWirkleistungWechselrichter in MW |
|
83
|
|
|
feedin_type = Column(String(47), nullable=True) # Einspeisungsart |
|
84
|
|
|
voltage_level = Column(Integer, nullable=True) |
|
85
|
|
|
voltage_level_inferred = Column(Boolean, nullable=True) |
|
86
|
|
|
|
|
87
|
|
|
geometry_geocoded = Column(Boolean) |
|
88
|
|
|
geom = Column(Geometry("POINT", 4326), index=True, nullable=True) |
|
89
|
|
|
|
|
90
|
|
|
|
|
91
|
|
View Code Duplication |
class EgonPowerPlantsWind(Base): |
|
|
|
|
|
|
92
|
|
|
__tablename__ = "egon_power_plants_wind" |
|
93
|
|
|
__table_args__ = {"schema": "supply"} |
|
94
|
|
|
|
|
95
|
|
|
id = Column(Integer, Sequence("pp_wind_seq"), primary_key=True) |
|
96
|
|
|
bus_id = Column(Integer, nullable=True) # Grid district id |
|
97
|
|
|
gens_id = Column(String, nullable=True) # EinheitMastrNummer |
|
98
|
|
|
|
|
99
|
|
|
status = Column(String, nullable=True) # EinheitBetriebsstatus |
|
100
|
|
|
commissioning_date = Column(DateTime, nullable=True) # Inbetriebnahmedatum |
|
101
|
|
|
postcode = Column(String(5), nullable=True) # Postleitzahl |
|
102
|
|
|
city = Column(String(50), nullable=True) # Ort |
|
103
|
|
|
municipality = Column(String, nullable=True) # Gemeinde |
|
104
|
|
|
federal_state = Column(String(31), nullable=True) # Bundesland |
|
105
|
|
|
zip_and_municipality = Column(String, nullable=True) |
|
106
|
|
|
|
|
107
|
|
|
site_type = Column(String(17), nullable=True) # Lage |
|
108
|
|
|
manufacturer_name = Column(String(100), nullable=True) # Hersteller |
|
109
|
|
|
type_name = Column(String(100), nullable=True) # Typenbezeichnung |
|
110
|
|
|
hub_height = Column(Float, nullable=True) # Nabenhoehe |
|
111
|
|
|
rotor_diameter = Column(Float, nullable=True) # Rotordurchmesser |
|
112
|
|
|
|
|
113
|
|
|
capacity = Column(Float, nullable=True) # Nettonennleistung |
|
114
|
|
|
feedin_type = Column(String(47), nullable=True) # Einspeisungsart |
|
115
|
|
|
voltage_level = Column(Integer, nullable=True) |
|
116
|
|
|
voltage_level_inferred = Column(Boolean, nullable=True) |
|
117
|
|
|
|
|
118
|
|
|
geometry_geocoded = Column(Boolean) |
|
119
|
|
|
geom = Column(Geometry("POINT", 4326), index=True, nullable=True) |
|
120
|
|
|
|
|
121
|
|
|
|
|
122
|
|
View Code Duplication |
class EgonPowerPlantsBiomass(Base): |
|
|
|
|
|
|
123
|
|
|
__tablename__ = "egon_power_plants_biomass" |
|
124
|
|
|
__table_args__ = {"schema": "supply"} |
|
125
|
|
|
|
|
126
|
|
|
id = Column(Integer, Sequence("pp_biomass_seq"), primary_key=True) |
|
127
|
|
|
bus_id = Column(Integer, nullable=True) # Grid district id |
|
128
|
|
|
gens_id = Column(String, nullable=True) # EinheitMastrNummer |
|
129
|
|
|
|
|
130
|
|
|
status = Column(String, nullable=True) # EinheitBetriebsstatus |
|
131
|
|
|
commissioning_date = Column(DateTime, nullable=True) # Inbetriebnahmedatum |
|
132
|
|
|
postcode = Column(String(5), nullable=True) # Postleitzahl |
|
133
|
|
|
city = Column(String(50), nullable=True) # Ort |
|
134
|
|
|
municipality = Column(String, nullable=True) # Gemeinde |
|
135
|
|
|
federal_state = Column(String(31), nullable=True) # Bundesland |
|
136
|
|
|
zip_and_municipality = Column(String, nullable=True) |
|
137
|
|
|
|
|
138
|
|
|
technology = Column(String(45), nullable=True) # Technologie |
|
139
|
|
|
main_fuel = Column(String(52), nullable=True) # Hauptbrennstoff |
|
140
|
|
|
fuel_type = Column(String(19), nullable=True) # Biomasseart |
|
141
|
|
|
|
|
142
|
|
|
capacity = Column(Float, nullable=True) # Nettonennleistung |
|
143
|
|
|
th_capacity = Column(Float, nullable=True) # ThermischeNutzleistung |
|
144
|
|
|
feedin_type = Column(String(47), nullable=True) # Einspeisungsart |
|
145
|
|
|
voltage_level = Column(Integer, nullable=True) |
|
146
|
|
|
voltage_level_inferred = Column(Boolean, nullable=True) |
|
147
|
|
|
|
|
148
|
|
|
geometry_geocoded = Column(Boolean) |
|
149
|
|
|
geom = Column(Geometry("POINT", 4326), index=True, nullable=True) |
|
150
|
|
|
|
|
151
|
|
|
|
|
152
|
|
View Code Duplication |
class EgonPowerPlantsHydro(Base): |
|
|
|
|
|
|
153
|
|
|
__tablename__ = "egon_power_plants_hydro" |
|
154
|
|
|
__table_args__ = {"schema": "supply"} |
|
155
|
|
|
|
|
156
|
|
|
id = Column(Integer, Sequence("pp_hydro_seq"), primary_key=True) |
|
157
|
|
|
bus_id = Column(Integer, nullable=True) # Grid district id |
|
158
|
|
|
gens_id = Column(String, nullable=True) # EinheitMastrNummer |
|
159
|
|
|
|
|
160
|
|
|
status = Column(String, nullable=True) # EinheitBetriebsstatus |
|
161
|
|
|
commissioning_date = Column(DateTime, nullable=True) # Inbetriebnahmedatum |
|
162
|
|
|
postcode = Column(String(5), nullable=True) # Postleitzahl |
|
163
|
|
|
city = Column(String(50), nullable=True) # Ort |
|
164
|
|
|
municipality = Column(String, nullable=True) # Gemeinde |
|
165
|
|
|
federal_state = Column(String(31), nullable=True) # Bundesland |
|
166
|
|
|
zip_and_municipality = Column(String, nullable=True) |
|
167
|
|
|
|
|
168
|
|
|
plant_type = Column(String(39), nullable=True) # ArtDerWasserkraftanlage |
|
169
|
|
|
water_origin = Column(String(20), nullable=True) # ArtDesZuflusses |
|
170
|
|
|
|
|
171
|
|
|
capacity = Column(Float, nullable=True) # Nettonennleistung |
|
172
|
|
|
feedin_type = Column(String(47), nullable=True) # Einspeisungsart |
|
173
|
|
|
voltage_level = Column(Integer, nullable=True) |
|
174
|
|
|
voltage_level_inferred = Column(Boolean, nullable=True) |
|
175
|
|
|
|
|
176
|
|
|
geometry_geocoded = Column(Boolean) |
|
177
|
|
|
geom = Column(Geometry("POINT", 4326), index=True, nullable=True) |
|
178
|
|
|
|
|
179
|
|
|
|
|
180
|
|
View Code Duplication |
class EgonPowerPlantsCombustion(Base): |
|
|
|
|
|
|
181
|
|
|
__tablename__ = "egon_power_plants_combustion" |
|
182
|
|
|
__table_args__ = {"schema": "supply"} |
|
183
|
|
|
|
|
184
|
|
|
id = Column(Integer, Sequence("pp_combustion_seq"), primary_key=True) |
|
185
|
|
|
bus_id = Column(Integer, nullable=True) # Grid district id |
|
186
|
|
|
gens_id = Column(String, nullable=True) # EinheitMastrNummer |
|
187
|
|
|
|
|
188
|
|
|
status = Column(String, nullable=True) # EinheitBetriebsstatus |
|
189
|
|
|
commissioning_date = Column(DateTime, nullable=True) # Inbetriebnahmedatum |
|
190
|
|
|
postcode = Column(String(5), nullable=True) # Postleitzahl |
|
191
|
|
|
city = Column(String(50), nullable=True) # Ort |
|
192
|
|
|
municipality = Column(String, nullable=True) # Gemeinde |
|
193
|
|
|
federal_state = Column(String(31), nullable=True) # Bundesland |
|
194
|
|
|
zip_and_municipality = Column(String, nullable=True) |
|
195
|
|
|
|
|
196
|
|
|
carrier = Column(String) # Energietraeger |
|
197
|
|
|
main_fuel = Column(String) # Hauptbrennstoff |
|
198
|
|
|
other_main_fuel = Column(String) # WeitererHauptbrennstoff |
|
199
|
|
|
technology = Column(String) # Technologie |
|
200
|
|
|
|
|
201
|
|
|
capacity = Column(Float, nullable=True) # Nettonennleistung |
|
202
|
|
|
th_capacity = Column(Float, nullable=True) # ThermischeNutzleistung |
|
203
|
|
|
feedin_type = Column(String(47), nullable=True) # Einspeisungsart |
|
204
|
|
|
voltage_level = Column(Integer, nullable=True) |
|
205
|
|
|
voltage_level_inferred = Column(Boolean, nullable=True) |
|
206
|
|
|
|
|
207
|
|
|
geometry_geocoded = Column(Boolean) |
|
208
|
|
|
geom = Column(Geometry("POINT", 4326), index=True, nullable=True) |
|
209
|
|
|
|
|
210
|
|
|
|
|
211
|
|
View Code Duplication |
class EgonPowerPlantsGsgk(Base): |
|
|
|
|
|
|
212
|
|
|
__tablename__ = "egon_power_plants_gsgk" |
|
213
|
|
|
__table_args__ = {"schema": "supply"} |
|
214
|
|
|
|
|
215
|
|
|
id = Column(Integer, Sequence("pp_gsgk_seq"), primary_key=True) |
|
216
|
|
|
bus_id = Column(Integer, nullable=True) # Grid district id |
|
217
|
|
|
gens_id = Column(String, nullable=True) # EinheitMastrNummer |
|
218
|
|
|
|
|
219
|
|
|
status = Column(String, nullable=True) # EinheitBetriebsstatus |
|
220
|
|
|
commissioning_date = Column(DateTime, nullable=True) # Inbetriebnahmedatum |
|
221
|
|
|
postcode = Column(String(5), nullable=True) # Postleitzahl |
|
222
|
|
|
city = Column(String(50), nullable=True) # Ort |
|
223
|
|
|
municipality = Column(String, nullable=True) # Gemeinde |
|
224
|
|
|
federal_state = Column(String(31), nullable=True) # Bundesland |
|
225
|
|
|
zip_and_municipality = Column(String, nullable=True) |
|
226
|
|
|
|
|
227
|
|
|
carrier = Column(String) # Energietraeger |
|
228
|
|
|
technology = Column(String) # Technologie |
|
229
|
|
|
|
|
230
|
|
|
capacity = Column(Float, nullable=True) # Nettonennleistung |
|
231
|
|
|
th_capacity = Column(Float, nullable=True) # ThermischeNutzleistung |
|
232
|
|
|
feedin_type = Column(String(47), nullable=True) # Einspeisungsart |
|
233
|
|
|
voltage_level = Column(Integer, nullable=True) |
|
234
|
|
|
voltage_level_inferred = Column(Boolean, nullable=True) |
|
235
|
|
|
|
|
236
|
|
|
geometry_geocoded = Column(Boolean) |
|
237
|
|
|
geom = Column(Geometry("POINT", 4326), index=True, nullable=True) |
|
238
|
|
|
|
|
239
|
|
|
|
|
240
|
|
View Code Duplication |
class EgonPowerPlantsNuclear(Base): |
|
|
|
|
|
|
241
|
|
|
__tablename__ = "egon_power_plants_nuclear" |
|
242
|
|
|
__table_args__ = {"schema": "supply"} |
|
243
|
|
|
|
|
244
|
|
|
id = Column(Integer, Sequence("pp_nuclear_seq"), primary_key=True) |
|
245
|
|
|
bus_id = Column(Integer, nullable=True) # Grid district id |
|
246
|
|
|
gens_id = Column(String, nullable=True) # EinheitMastrNummer |
|
247
|
|
|
|
|
248
|
|
|
status = Column(String, nullable=True) # EinheitBetriebsstatus |
|
249
|
|
|
commissioning_date = Column(DateTime, nullable=True) # Inbetriebnahmedatum |
|
250
|
|
|
postcode = Column(String(5), nullable=True) # Postleitzahl |
|
251
|
|
|
city = Column(String(50), nullable=True) # Ort |
|
252
|
|
|
municipality = Column(String, nullable=True) # Gemeinde |
|
253
|
|
|
federal_state = Column(String(31), nullable=True) # Bundesland |
|
254
|
|
|
zip_and_municipality = Column(String, nullable=True) |
|
255
|
|
|
|
|
256
|
|
|
carrier = Column(String) # Energietraeger |
|
257
|
|
|
technology = Column(String) # Technologie |
|
258
|
|
|
|
|
259
|
|
|
capacity = Column(Float, nullable=True) # Nettonennleistung |
|
260
|
|
|
th_capacity = Column(Float, nullable=True) # ThermischeNutzleistung |
|
261
|
|
|
feedin_type = Column(String(47), nullable=True) # Einspeisungsart |
|
262
|
|
|
voltage_level = Column(Integer, nullable=True) |
|
263
|
|
|
voltage_level_inferred = Column(Boolean, nullable=True) |
|
264
|
|
|
|
|
265
|
|
|
geometry_geocoded = Column(Boolean) |
|
266
|
|
|
geom = Column(Geometry("POINT", 4326), index=True, nullable=True) |
|
267
|
|
|
|
|
268
|
|
|
|
|
269
|
|
View Code Duplication |
class EgonPowerPlantsStorage(Base): |
|
|
|
|
|
|
270
|
|
|
__tablename__ = "egon_power_plants_storage" |
|
271
|
|
|
__table_args__ = {"schema": "supply"} |
|
272
|
|
|
|
|
273
|
|
|
id = Column(Integer, Sequence("pp_storage_seq"), primary_key=True) |
|
274
|
|
|
bus_id = Column(Integer, nullable=True) # Grid district id |
|
275
|
|
|
gens_id = Column(String, nullable=True) # EinheitMastrNummer |
|
276
|
|
|
|
|
277
|
|
|
status = Column(String, nullable=True) # EinheitBetriebsstatus |
|
278
|
|
|
commissioning_date = Column(DateTime, nullable=True) # Inbetriebnahmedatum |
|
279
|
|
|
postcode = Column(String(5), nullable=True) # Postleitzahl |
|
280
|
|
|
city = Column(String(50), nullable=True) # Ort |
|
281
|
|
|
municipality = Column(String, nullable=True) # Gemeinde |
|
282
|
|
|
federal_state = Column(String(31), nullable=True) # Bundesland |
|
283
|
|
|
zip_and_municipality = Column(String, nullable=True) |
|
284
|
|
|
|
|
285
|
|
|
carrier = Column(String) # Energietraeger |
|
286
|
|
|
technology = Column(String) # Technologie |
|
287
|
|
|
battery_type = Column(String) # Batterietechnologie |
|
288
|
|
|
pump_storage_type = Column(String) # Pumpspeichertechnologie |
|
289
|
|
|
|
|
290
|
|
|
capacity = Column(Float, nullable=True) # Nettonennleistung |
|
291
|
|
|
th_capacity = Column(Float, nullable=True) # ThermischeNutzleistung |
|
292
|
|
|
feedin_type = Column(String(47), nullable=True) # Einspeisungsart |
|
293
|
|
|
voltage_level = Column(Integer, nullable=True) |
|
294
|
|
|
voltage_level_inferred = Column(Boolean, nullable=True) |
|
295
|
|
|
|
|
296
|
|
|
geometry_geocoded = Column(Boolean) |
|
297
|
|
|
geom = Column(Geometry("POINT", 4326), index=True, nullable=True) |
|
298
|
|
|
|
|
299
|
|
|
|
|
300
|
|
|
def add_metadata(): |
|
301
|
|
|
technologies = config.datasets()["mastr_new"]["technologies"] |
|
302
|
|
|
|
|
303
|
|
|
target_tables = { |
|
304
|
|
|
"pv": EgonPowerPlantsPv, |
|
305
|
|
|
"wind": EgonPowerPlantsWind, |
|
306
|
|
|
"biomass": EgonPowerPlantsBiomass, |
|
307
|
|
|
"hydro": EgonPowerPlantsHydro, |
|
308
|
|
|
"combustion": EgonPowerPlantsCombustion, |
|
309
|
|
|
"gsgk": EgonPowerPlantsGsgk, |
|
310
|
|
|
"nuclear": EgonPowerPlantsNuclear, |
|
311
|
|
|
"storage": EgonPowerPlantsStorage, |
|
312
|
|
|
} |
|
313
|
|
|
|
|
314
|
|
|
deposit_id_data_bundle = config.datasets()["data-bundle"]["sources"][ |
|
315
|
|
|
"zenodo" |
|
316
|
|
|
]["deposit_id"] |
|
317
|
|
|
deposit_id_mastr = config.datasets()["mastr_new"]["deposit_id"] |
|
318
|
|
|
|
|
319
|
|
|
contris = contributors(["kh", "kh"]) |
|
320
|
|
|
|
|
321
|
|
|
contris[0]["date"] = "2023-03-15" |
|
322
|
|
|
|
|
323
|
|
|
contris[0]["object"] = "metadata" |
|
324
|
|
|
contris[1]["object"] = "dataset" |
|
325
|
|
|
|
|
326
|
|
|
contris[0]["comment"] = "Add metadata to dataset." |
|
327
|
|
|
contris[1]["comment"] = "Add workflow to generate dataset." |
|
328
|
|
|
|
|
329
|
|
|
for technology in technologies: |
|
330
|
|
|
target_table = target_tables[technology] |
|
331
|
|
|
|
|
332
|
|
|
meta = { |
|
333
|
|
|
"name": ( |
|
334
|
|
|
f"{target_table.__table_args__['schema']}." |
|
335
|
|
|
f"{target_table.__tablename__}" |
|
336
|
|
|
), |
|
337
|
|
|
"title": f"eGon {technology} power plants", |
|
338
|
|
|
"id": "WILL_BE_SET_AT_PUBLICATION", |
|
339
|
|
|
"description": ( |
|
340
|
|
|
f"eGon {technology} power plants status quo derived from MaStR" |
|
341
|
|
|
), |
|
342
|
|
|
"language": "en-US", |
|
343
|
|
|
"keywords": [technology, "mastr"], |
|
344
|
|
|
"publicationDate": datetime.date.today().isoformat(), |
|
345
|
|
|
"context": context(), |
|
346
|
|
|
"spatial": { |
|
347
|
|
|
"location": "none", |
|
348
|
|
|
"extent": "Germany", |
|
349
|
|
|
"resolution": "1 m", |
|
350
|
|
|
}, |
|
351
|
|
|
"temporal": { |
|
352
|
|
|
"referenceDate": ( |
|
353
|
|
|
config.datasets()["mastr_new"]["egon2021_date_max"].split( |
|
354
|
|
|
" " |
|
355
|
|
|
)[0] |
|
356
|
|
|
), |
|
357
|
|
|
"timeseries": {}, |
|
358
|
|
|
}, |
|
359
|
|
|
"sources": [ |
|
360
|
|
|
{ |
|
361
|
|
|
"title": "Data bundle for egon-data", |
|
362
|
|
|
"description": ( |
|
363
|
|
|
"Data bundle for egon-data: A transparent and " |
|
364
|
|
|
"reproducible data processing pipeline for energy " |
|
365
|
|
|
"system modeling" |
|
366
|
|
|
), |
|
367
|
|
|
"path": ( |
|
368
|
|
|
"https://zenodo.org/record/" |
|
369
|
|
|
f"{deposit_id_data_bundle}#.Y_dWM4CZMVM" |
|
370
|
|
|
), |
|
371
|
|
|
"licenses": [license_dedl(attribution="© Cußmann, Ilka")], |
|
372
|
|
|
}, |
|
373
|
|
|
{ |
|
374
|
|
|
"title": ( |
|
375
|
|
|
"open-MaStR power unit registry for eGo^n project" |
|
376
|
|
|
), |
|
377
|
|
|
"description": ( |
|
378
|
|
|
"Data from Marktstammdatenregister (MaStR) data using " |
|
379
|
|
|
"the data dump from 2022-11-17 for eGon-data." |
|
380
|
|
|
), |
|
381
|
|
|
"path": ( |
|
382
|
|
|
f"https://zenodo.org/record/{deposit_id_mastr}" |
|
383
|
|
|
), |
|
384
|
|
|
"licenses": [license_dedl(attribution="© Amme, Jonathan")], |
|
385
|
|
|
}, |
|
386
|
|
|
sources()["egon-data"], |
|
387
|
|
|
], |
|
388
|
|
|
"licenses": [license_dedl(attribution="© eGon development team")], |
|
389
|
|
|
"contributors": contris, |
|
390
|
|
|
"resources": [ |
|
391
|
|
|
{ |
|
392
|
|
|
"profile": "tabular-data-resource", |
|
393
|
|
|
"name": ( |
|
394
|
|
|
f"{target_table.__table_args__['schema']}." |
|
395
|
|
|
f"{target_table.__tablename__}" |
|
396
|
|
|
), |
|
397
|
|
|
"path": "None", |
|
398
|
|
|
"format": "PostgreSQL", |
|
399
|
|
|
"encoding": "UTF-8", |
|
400
|
|
|
"schema": { |
|
401
|
|
|
"fields": generate_resource_fields_from_db_table( |
|
402
|
|
|
target_table.__table_args__["schema"], |
|
403
|
|
|
target_table.__tablename__, |
|
404
|
|
|
geom_columns=["geom"], |
|
405
|
|
|
), |
|
406
|
|
|
"primaryKey": "id", |
|
407
|
|
|
}, |
|
408
|
|
|
"dialect": {"delimiter": "", "decimalSeparator": ""}, |
|
409
|
|
|
} |
|
410
|
|
|
], |
|
411
|
|
|
"review": {"path": "", "badge": ""}, |
|
412
|
|
|
"metaMetadata": meta_metadata(), |
|
413
|
|
|
"_comment": { |
|
414
|
|
|
"metadata": ( |
|
415
|
|
|
"Metadata documentation and explanation (https://github." |
|
416
|
|
|
"com/OpenEnergyPlatform/oemetadata/blob/master/metadata/" |
|
417
|
|
|
"v141/metadata_key_description.md)" |
|
418
|
|
|
), |
|
419
|
|
|
"dates": ( |
|
420
|
|
|
"Dates and time must follow the ISO8601 including time " |
|
421
|
|
|
"zone (YYYY-MM-DD or YYYY-MM-DDThh:mm:ss±hh)" |
|
422
|
|
|
), |
|
423
|
|
|
"units": "Use a space between numbers and units (100 m)", |
|
424
|
|
|
"languages": ( |
|
425
|
|
|
"Languages must follow the IETF (BCP47) format (en-GB, " |
|
426
|
|
|
"en-US, de-DE)" |
|
427
|
|
|
), |
|
428
|
|
|
"licenses": ( |
|
429
|
|
|
"License name must follow the SPDX License List " |
|
430
|
|
|
"(https://spdx.org/licenses/)" |
|
431
|
|
|
), |
|
432
|
|
|
"review": ( |
|
433
|
|
|
"Following the OEP Data Review (https://github.com/" |
|
434
|
|
|
"OpenEnergyPlatform/data-preprocessing/wiki)" |
|
435
|
|
|
), |
|
436
|
|
|
"none": "If not applicable use (none)", |
|
437
|
|
|
}, |
|
438
|
|
|
} |
|
439
|
|
|
|
|
440
|
|
|
dialect = get_dialect(meta_metadata()["metadataVersion"])() |
|
441
|
|
|
|
|
442
|
|
|
meta = dialect.compile_and_render(dialect.parse(json.dumps(meta))) |
|
443
|
|
|
|
|
444
|
|
|
db.submit_comment( |
|
445
|
|
|
f"'{json.dumps(meta)}'", |
|
446
|
|
|
target_table.__table_args__["schema"], |
|
447
|
|
|
target_table.__tablename__, |
|
448
|
|
|
) |
|
449
|
|
|
|