1
|
|
|
from geoalchemy2 import Geometry |
2
|
|
|
from sqlalchemy import MetaData, Table |
3
|
|
|
from sqlalchemy.dialects.postgresql.base import ischema_names |
4
|
|
|
|
5
|
|
|
from egon.data.db import engine |
6
|
|
|
|
7
|
|
|
|
8
|
|
|
def context(): |
9
|
|
|
""" |
10
|
|
|
Project context information for metadata |
11
|
|
|
|
12
|
|
|
Returns |
13
|
|
|
------- |
14
|
|
|
dict |
15
|
|
|
OEP metadata conform data license information |
16
|
|
|
""" |
17
|
|
|
|
18
|
|
|
return { |
19
|
|
|
"homepage": "https://ego-n.org/", |
20
|
|
|
"documentation": "https://egon-data.readthedocs.io/en/latest/", |
21
|
|
|
"sourceCode": "https://github.com/openego/eGon-data", |
22
|
|
|
"contact": "https://ego-n.org/partners/", |
23
|
|
|
"grantNo": "03EI1002", |
24
|
|
|
"fundingAgency": "Bundesministerium für Wirtschaft und Energie", |
25
|
|
|
"fundingAgencyLogo": "https://www.innovation-beratung-" |
26
|
|
|
"foerderung.de/INNO/Redaktion/DE/Bilder/" |
27
|
|
|
"Titelbilder/titel_foerderlogo_bmwi.jpg?" |
28
|
|
|
"__blob=normal&v=3", |
29
|
|
|
"publisherLogo": "https://ego-n.org/images/eGon_logo_" |
30
|
|
|
"noborder_transbg.svg", |
31
|
|
|
} |
32
|
|
|
|
33
|
|
|
|
34
|
|
|
def meta_metadata(): |
35
|
|
|
""" |
36
|
|
|
Meta data on metadata |
37
|
|
|
|
38
|
|
|
Returns |
39
|
|
|
------- |
40
|
|
|
dict |
41
|
|
|
OEP metadata conform metadata on metadata |
42
|
|
|
""" |
43
|
|
|
|
44
|
|
|
return { |
45
|
|
|
"metadataVersion": "OEP-1.4.1", |
46
|
|
|
"metadataLicense": { |
47
|
|
|
"name": "CC0-1.0", |
48
|
|
|
"title": "Creative Commons Zero v1.0 Universal", |
49
|
|
|
"path": ("https://creativecommons.org/publicdomain/zero/1.0/"), |
50
|
|
|
}, |
51
|
|
|
} |
52
|
|
|
|
53
|
|
|
|
54
|
|
|
def licenses_datenlizenz_deutschland(attribution): |
55
|
|
|
""" |
56
|
|
|
License information for Datenlizenz Deutschland |
57
|
|
|
|
58
|
|
|
Parameters |
59
|
|
|
---------- |
60
|
|
|
attribution : str |
61
|
|
|
Attribution for the dataset incl. © symbol, e.g. '© GeoBasis-DE / BKG' |
62
|
|
|
|
63
|
|
|
Returns |
64
|
|
|
------- |
65
|
|
|
dict |
66
|
|
|
OEP metadata conform data license information |
67
|
|
|
""" |
68
|
|
|
|
69
|
|
|
return { |
70
|
|
|
"name": "dl-by-de/2.0", |
71
|
|
|
"title": "Datenlizenz Deutschland – Namensnennung – Version 2.0", |
72
|
|
|
"path": "www.govdata.de/dl-de/by-2-0", |
73
|
|
|
"instruction": ( |
74
|
|
|
"Jede Nutzung ist unter den Bedingungen dieser „Datenlizenz " |
75
|
|
|
"Deutschland - Namensnennung - Version 2.0 zulässig.\nDie " |
76
|
|
|
"bereitgestellten Daten und Metadaten dürfen für die " |
77
|
|
|
"kommerzielle und nicht kommerzielle Nutzung insbesondere:" |
78
|
|
|
"(1) vervielfältigt, ausgedruckt, präsentiert, verändert, " |
79
|
|
|
"bearbeitet sowie an Dritte übermittelt werden;\n " |
80
|
|
|
"(2) mit eigenen Daten und Daten Anderer zusammengeführt und " |
81
|
|
|
"zu selbständigen neuen Datensätzen verbunden werden;\n " |
82
|
|
|
"(3) in interne und externe Geschäftsprozesse, Produkte und " |
83
|
|
|
"Anwendungen in öffentlichen und nicht öffentlichen " |
84
|
|
|
"elektronischen Netzwerken eingebunden werden.\n" |
85
|
|
|
"Bei der Nutzung ist sicherzustellen, dass folgende Angaben " |
86
|
|
|
"als Quellenvermerk enthalten sind:\n" |
87
|
|
|
"(1) Bezeichnung des Bereitstellers nach dessen Maßgabe,\n" |
88
|
|
|
"(2) der Vermerk Datenlizenz Deutschland – Namensnennung – " |
89
|
|
|
"Version 2.0 oder dl-de/by-2-0 mit Verweis auf den Lizenztext " |
90
|
|
|
"unter www.govdata.de/dl-de/by-2-0 sowie\n" |
91
|
|
|
"(3) einen Verweis auf den Datensatz (URI)." |
92
|
|
|
"Dies gilt nur soweit die datenhaltende Stelle die Angaben" |
93
|
|
|
"(1) bis (3) zum Quellenvermerk bereitstellt.\n" |
94
|
|
|
"Veränderungen, Bearbeitungen, neue Gestaltungen oder " |
95
|
|
|
"sonstige Abwandlungen sind im Quellenvermerk mit dem Hinweis " |
96
|
|
|
"zu versehen, dass die Daten geändert wurden." |
97
|
|
|
), |
98
|
|
|
"attribution": attribution, |
99
|
|
|
} |
100
|
|
|
|
101
|
|
|
|
102
|
|
|
def license_odbl(attribution): |
103
|
|
|
""" |
104
|
|
|
License information for Open Data Commons Open Database License (ODbL-1.0) |
105
|
|
|
|
106
|
|
|
Parameters |
107
|
|
|
---------- |
108
|
|
|
attribution : str |
109
|
|
|
Attribution for the dataset incl. © symbol, e.g. |
110
|
|
|
'© OpenStreetMap contributors' |
111
|
|
|
|
112
|
|
|
Returns |
113
|
|
|
------- |
114
|
|
|
dict |
115
|
|
|
OEP metadata conform data license information |
116
|
|
|
""" |
117
|
|
|
return { |
118
|
|
|
"name": "ODbL-1.0", |
119
|
|
|
"title": "Open Data Commons Open Database License 1.0", |
120
|
|
|
"path": "https://opendatacommons.org/licenses/odbl/1.0/index.html", |
121
|
|
|
"instruction": "You are free: To Share, To Create, To Adapt; " |
122
|
|
|
"As long as you: Attribute, Share-Alike, Keep open!", |
123
|
|
|
"attribution": attribution, |
124
|
|
|
} |
125
|
|
|
|
126
|
|
|
|
127
|
|
|
def license_ccby(attribution): |
128
|
|
|
""" |
129
|
|
|
License information for Creative Commons Attribution 4.0 International |
130
|
|
|
(CC-BY-4.0) |
131
|
|
|
|
132
|
|
|
Parameters |
133
|
|
|
---------- |
134
|
|
|
attribution : str |
135
|
|
|
Attribution for the dataset incl. © symbol, e.g. '© GeoBasis-DE / BKG' |
136
|
|
|
|
137
|
|
|
Returns |
138
|
|
|
------- |
139
|
|
|
dict |
140
|
|
|
OEP metadata conform data license information |
141
|
|
|
""" |
142
|
|
|
return { |
143
|
|
|
"name": "CC-BY-4.0", |
144
|
|
|
"title": "Creative Commons Attribution 4.0 International", |
145
|
|
|
"path": "https://creativecommons.org/licenses/by/4.0/legalcode", |
146
|
|
|
"instruction": "You are free: To Share, To Create, To Adapt; " |
147
|
|
|
"As long as you: Attribute.", |
148
|
|
|
"attribution": attribution, |
149
|
|
|
} |
150
|
|
|
|
151
|
|
|
|
152
|
|
|
def license_geonutzv(attribution): |
153
|
|
|
""" |
154
|
|
|
License information for GeoNutzV |
155
|
|
|
|
156
|
|
|
Parameters |
157
|
|
|
---------- |
158
|
|
|
attribution : str |
159
|
|
|
Attribution for the dataset incl. © symbol, e.g. '© GeoBasis-DE / BKG' |
160
|
|
|
|
161
|
|
|
Returns |
162
|
|
|
------- |
163
|
|
|
dict |
164
|
|
|
OEP metadata conform data license information |
165
|
|
|
""" |
166
|
|
|
return { |
167
|
|
|
"name": "geonutzv-de-2013-03-19", |
168
|
|
|
"title": "Verordnung zur Festlegung der Nutzungsbestimmungen für die " |
169
|
|
|
"Bereitstellung von Geodaten des Bundes", |
170
|
|
|
"path": "https://www.gesetze-im-internet.de/geonutzv/", |
171
|
|
|
"instruction": "Geodaten und Geodatendienste, einschließlich " |
172
|
|
|
"zugehöriger Metadaten, werden für alle derzeit " |
173
|
|
|
"bekannten sowie für alle zukünftig bekannten Zwecke " |
174
|
|
|
"kommerzieller und nicht kommerzieller Nutzung " |
175
|
|
|
"geldleistungsfrei zur Verfügung gestellt, soweit " |
176
|
|
|
"durch besondere Rechtsvorschrift nichts anderes " |
177
|
|
|
"bestimmt ist oder vertragliche oder gesetzliche " |
178
|
|
|
"Rechte Dritter dem nicht entgegenstehen.", |
179
|
|
|
"attribution": attribution, |
180
|
|
|
} |
181
|
|
|
|
182
|
|
|
|
183
|
|
|
def license_agpl(attribution): |
184
|
|
|
""" |
185
|
|
|
License information for GNU Affero General Public License v3.0 |
186
|
|
|
|
187
|
|
|
Parameters |
188
|
|
|
---------- |
189
|
|
|
attribution : str |
190
|
|
|
Attribution for the dataset incl. © symbol, e.g. '© GeoBasis-DE / BKG' |
191
|
|
|
|
192
|
|
|
Returns |
193
|
|
|
------- |
194
|
|
|
dict |
195
|
|
|
OEP metadata conform data license information |
196
|
|
|
""" |
197
|
|
|
return { |
198
|
|
|
"name": "AGPL-3.0 License", |
199
|
|
|
"title": "GNU Affero General Public License v3.0", |
200
|
|
|
"path": "https://www.gnu.org/licenses/agpl-3.0.de.html", |
201
|
|
|
"instruction": "Permissions of this strongest copyleft license are" |
202
|
|
|
"conditioned on making available complete source code of licensed " |
203
|
|
|
"works and modifications, which include larger works using a licensed" |
204
|
|
|
"work, under the same license. Copyright and license notices must be" |
205
|
|
|
"preserved. Contributors provide an express grant of patent rights." |
206
|
|
|
"When a modified version is used to provide a service over a network," |
207
|
|
|
"the complete source code of the modified version must be made " |
208
|
|
|
"available.", |
209
|
|
|
"attribution": attribution, |
210
|
|
|
} |
211
|
|
|
|
212
|
|
|
|
213
|
|
|
def license_dedl(attribution): |
214
|
|
|
""" |
215
|
|
|
License information for Data licence Germany – attribution – version 2.0 |
216
|
|
|
|
217
|
|
|
Parameters |
218
|
|
|
---------- |
219
|
|
|
attribution : str |
220
|
|
|
Attribution for the dataset incl. © symbol, e.g. '© GeoBasis-DE / BKG' |
221
|
|
|
|
222
|
|
|
Returns |
223
|
|
|
------- |
224
|
|
|
dict |
225
|
|
|
OEP metadata conform data license information |
226
|
|
|
""" |
227
|
|
|
return { |
228
|
|
|
"name": "DL-DE-BY-2.0", |
229
|
|
|
"title": "Data licence Germany – attribution – version 2.0", |
230
|
|
|
"path": "https://www.govdata.de/dl-de/by-2-0", |
231
|
|
|
"instruction": ( |
232
|
|
|
"Any use will be permitted provided it fulfils the requirements of" |
233
|
|
|
" this 'Data licence Germany – attribution – Version 2.0'. The " |
234
|
|
|
"data and meta-data provided may, for commercial and " |
235
|
|
|
"non-commercial use, in particular be copied, printed, presented, " |
236
|
|
|
"altered, processed and transmitted to third parties; be merged " |
237
|
|
|
"with own data and with the data of others and be combined to form" |
238
|
|
|
" new and independent datasets; be integrated in internal and " |
239
|
|
|
"external business processes, products and applications in public " |
240
|
|
|
"and non-public electronic networks. The user must ensure that the" |
241
|
|
|
" source note contains the following information: the name of the " |
242
|
|
|
"provider, the annotation 'Data licence Germany – attribution – " |
243
|
|
|
"Version 2.0' or 'dl-de/by-2-0' referring to the licence text " |
244
|
|
|
"available at www.govdata.de/dl-de/by-2-0, and a reference to the " |
245
|
|
|
"dataset (URI). This applies only if the entity keeping the data " |
246
|
|
|
"provides the pieces of information 1-3 for the source note. " |
247
|
|
|
"Changes, editing, new designs or other amendments must be marked " |
248
|
|
|
"as such in the source note." |
249
|
|
|
), |
250
|
|
|
"attribution": attribution, |
251
|
|
|
} |
252
|
|
|
|
253
|
|
|
|
254
|
|
|
def generate_resource_fields_from_sqla_model(model): |
255
|
|
|
"""Generate a template for the resource fields for metadata from a SQL |
256
|
|
|
Alchemy model. |
257
|
|
|
|
258
|
|
|
For details on the fields see field 14.6.1 of `Open Energy Metadata |
259
|
|
|
<https://github.com/OpenEnergyPlatform/ oemetadata/blob/develop/metadata/ |
260
|
|
|
v141/metadata_key_description.md>`_ standard. |
261
|
|
|
The fields `name` and `type` are automatically filled, the `description` |
262
|
|
|
and `unit` must be filled manually. |
263
|
|
|
|
264
|
|
|
Examples |
265
|
|
|
-------- |
266
|
|
|
>>> from egon.data.metadata import generate_resource_fields_from_sqla_model |
267
|
|
|
>>> from egon.data.datasets.zensus_vg250 import Vg250Sta |
268
|
|
|
>>> resources = generate_resource_fields_from_sqla_model(Vg250Sta) |
269
|
|
|
|
270
|
|
|
Parameters |
271
|
|
|
---------- |
272
|
|
|
model : sqlalchemy.ext.declarative.declarative_base() |
273
|
|
|
SQLA model |
274
|
|
|
|
275
|
|
|
Returns |
276
|
|
|
------- |
277
|
|
|
list of dict |
278
|
|
|
Resource fields |
279
|
|
|
""" |
280
|
|
|
|
281
|
|
|
return [ |
282
|
|
|
{ |
283
|
|
|
"name": col.name, |
284
|
|
|
"description": "", |
285
|
|
|
"type": str(col.type).lower(), |
286
|
|
|
"unit": "none", |
287
|
|
|
} |
288
|
|
|
for col in model.__table__.columns |
289
|
|
|
] |
290
|
|
|
|
291
|
|
|
|
292
|
|
|
def generate_resource_fields_from_db_table(schema, table, geom_columns=None): |
293
|
|
|
"""Generate a template for the resource fields for metadata from a |
294
|
|
|
database table. |
295
|
|
|
|
296
|
|
|
For details on the fields see field 14.6.1 of `Open Energy Metadata |
297
|
|
|
<https://github.com/OpenEnergyPlatform/ oemetadata/blob/develop/metadata/ |
298
|
|
|
v141/metadata_key_description.md>`_ standard. |
299
|
|
|
The fields `name` and `type` are automatically filled, the `description` |
300
|
|
|
and `unit` must be filled manually. |
301
|
|
|
|
302
|
|
|
Examples |
303
|
|
|
-------- |
304
|
|
|
>>> from egon.data.metadata import generate_resource_fields_from_db_table |
305
|
|
|
>>> resources = generate_resource_fields_from_db_table( |
306
|
|
|
... 'openstreetmap', 'osm_point', ['geom', 'geom_centroid'] |
307
|
|
|
... ) # doctest: +SKIP |
308
|
|
|
|
309
|
|
|
Parameters |
310
|
|
|
---------- |
311
|
|
|
schema : str |
312
|
|
|
The target table's database schema |
313
|
|
|
table : str |
314
|
|
|
Database table on which to put the given comment |
315
|
|
|
geom_columns : list of str |
316
|
|
|
Names of all geometry columns in the table. This is required to return |
317
|
|
|
Geometry data type for those columns as SQL Alchemy does not recognize |
318
|
|
|
them correctly. Defaults to ['geom']. |
319
|
|
|
|
320
|
|
|
Returns |
321
|
|
|
------- |
322
|
|
|
list of dict |
323
|
|
|
Resource fields |
324
|
|
|
""" |
325
|
|
|
|
326
|
|
|
# handle geometry columns |
327
|
|
|
if geom_columns is None: |
328
|
|
|
geom_columns = ["geom"] |
329
|
|
|
for col in geom_columns: |
330
|
|
|
ischema_names[col] = Geometry |
331
|
|
|
|
332
|
|
|
table = Table( |
333
|
|
|
table, MetaData(), schema=schema, autoload=True, autoload_with=engine() |
334
|
|
|
) |
335
|
|
|
|
336
|
|
|
return [ |
337
|
|
|
{ |
338
|
|
|
"name": col.name, |
339
|
|
|
"description": "", |
340
|
|
|
"type": str(col.type).lower(), |
341
|
|
|
"unit": "none", |
342
|
|
|
} |
343
|
|
|
for col in table.c |
344
|
|
|
] |
345
|
|
|
|
346
|
|
|
|
347
|
|
|
def sources(): |
348
|
|
|
return { |
349
|
|
|
"bgr_inspee": { |
350
|
|
|
"title": "Salt structures in Northern Germany", |
351
|
|
|
"description": 'The application "Information System Salt Structures" provides information about the ' |
352
|
|
|
"areal distribution of salt structures (stocks and pillows) in Northern Germany. With general structural " |
353
|
|
|
"describing information, such as depth, secondary thickness, types of use or state of exploration, queries " |
354
|
|
|
"can be conducted. Contours of the salt structures can be displayed at horizontal cross-sections at four " |
355
|
|
|
"different depths up to a maximum depth of 2000 m below NN. A data sheet with information and further " |
356
|
|
|
"reading is provided for every single salt structure. Taking into account the fact that this work was " |
357
|
|
|
"undertaken at a scale for providing an overview and not for investigation of single structures, the scale " |
358
|
|
|
"of display is limited to a minimum of 1:300.000. This web application is the product of a BMWi-funded " |
359
|
|
|
'research project "InSpEE" running from the year 2012 to 2015. The acronym stands for "Information system ' |
360
|
|
|
"salt structures: planning basis, selection criteria and estimation of the potential for the construction " |
361
|
|
|
'of salt caverns for the storage of renewable energies (hydrogen and compressed air)".', |
362
|
|
|
"path": "https://produktcenter.bgr.de/terraCatalog/DetailResult.do?fileIdentifier=338136ea-261a-4569-a2bf-92999d09bad2", |
363
|
|
|
"licenses": [license_geonutzv("© BGR, Hannover, 2015")], |
364
|
|
|
}, |
365
|
|
|
"bgr_inspeeds": { |
366
|
|
|
"title": "Flat layered salts in Germany", |
367
|
|
|
"description": "Which salt formations are suitable for storing hydrogen or compressed air? " |
368
|
|
|
"In the InSpEE-DS research project, scientists developed requirements and criteria for the assessment " |
369
|
|
|
"of suitable sites even if their exploration is still at an early stage and there is little knowledge of " |
370
|
|
|
"the salinaries' structures. Scientists at DEEP.KBB GmbH in Hanover, worked together with their project " |
371
|
|
|
"partners at the Federal Institute for Geosciences and Natural Resources and the Leibniz University " |
372
|
|
|
"Hanover, Institute for Geotechnics Hanover, to develop the planning basis for the site selection and for " |
373
|
|
|
"the construction of storage caverns in flat layered salt and multiple or double saliniferous formations. " |
374
|
|
|
"Such caverns could store renewable energy in the form of hydrogen or compressed air. While the previous " |
375
|
|
|
"project InSpEE was limited to salt formations of great thickness in Northern Germany, salt horizons of " |
376
|
|
|
"different ages have now been examined all over Germany. To estimate the potential, depth contour maps of " |
377
|
|
|
"the top and the base as well as thickness maps of the respective stratigraphic units and reference " |
378
|
|
|
"profiles were developed. Information on compressed air and hydrogen storage potential were given for the " |
379
|
|
|
"identified areas and for the individual federal states. The web service " |
380
|
|
|
'"Information system for flat layered salt" gives access to this data. The scale of display is limited ' |
381
|
|
|
"to a minimum of 1:300.000. This geographic information is product of a BMWi-funded research project " |
382
|
|
|
'"InSpEE-DS" running from the year 2015 to 2019. The acronym stands for "Information system salt: ' |
383
|
|
|
"planning basis, selection criteria and estimation of the potential for the construction of salt caverns " |
384
|
|
|
'for the storage of renewable energies (hydrogen and compressed air) - double saline and flat salt layers".', |
385
|
|
|
"path": "https://produktcenter.bgr.de/terraCatalog/DetailResult.do?fileIdentifier=630430b8-4025-4d6f-9a62-025b53bc8b3d", |
386
|
|
|
"licenses": [license_geonutzv("© BGR, Hannover, 2021")], |
387
|
|
|
}, |
388
|
|
|
"bgr_inspeeds_data_bundle": { |
389
|
|
|
"title": "Informationssystem Salz: Planungsgrundlagen, Auswahlkriterien und Potenzialabschätzung für die " |
390
|
|
|
"Errichtung von Salzkavernen zur Speicherung von Erneuerbaren Energien (Wasserstoff und Druckluft) – " |
391
|
|
|
"Doppelsalinare und flach lagernde Salzschichten. Teilprojekt Bewertungskriterien und Potenzialabschätzung", |
392
|
|
|
"description": "Shapefiles corresponding to the data provided in figure 7-1 " |
393
|
|
|
"(Donadei, S., et al., 2020, p. 7-5). The energy storage potential data are provided per federal state " |
394
|
|
|
" in table 7-1 (Donadei, S., et al., 2020, p. 7-4). Note: Please include all bgr data sources when using " |
395
|
|
|
"the data.", |
396
|
|
|
"path": "https://dx.doi.org/10.5281/zenodo.4896526", |
397
|
|
|
"licenses": [license_geonutzv("© BGR, Hannover, 2021")], |
398
|
|
|
}, |
399
|
|
|
"bgr_inspeeds_report": { |
400
|
|
|
"title": "Informationssystem Salz: Planungsgrundlagen, Auswahlkriterien und Potenzialabschätzung für die " |
401
|
|
|
"Errichtung von Salzkavernen zur Speicherung von Erneuerbaren Energien (Wasserstoff und Druckluft) – " |
402
|
|
|
"Doppelsalinare und flach lagernde Salzschichten. Teilprojekt Bewertungskriterien und Potenzialabschätzung", |
403
|
|
|
"description": "The report includes availability of saltstructures for energy storage and energy " |
404
|
|
|
"storage potential accumulated per federal state in Germany.", |
405
|
|
|
"path": "https://www.bgr.bund.de/DE/Themen/Nutzung_tieferer_Untergrund_CO2Speicherung/Downloads/InSpeeDS_TP_Bewertungskriterien.pdf?__blob=publicationFile&v=3", |
406
|
|
|
"licenses": [license_geonutzv("© BGR, Hannover, 2021")], |
407
|
|
|
}, |
408
|
|
|
"demandregio": { |
409
|
|
|
"title": "DemandRegio", |
410
|
|
|
"description": "Harmonisierung und Entwicklung von Verfahren zur regionalen und " |
411
|
|
|
"zeitlichen Auflösung von Energienachfragen", |
412
|
|
|
"path": "https://doi.org/10.34805/ffe-119-20", |
413
|
|
|
"licenses": [license_ccby("© FZJ, TUB, FfE")], |
414
|
|
|
}, |
415
|
|
|
"egon-data": { |
416
|
|
|
"titel": "eGon-data", |
417
|
|
|
"description": "Workflow to download, process and generate data sets" |
418
|
|
|
"suitable for the further research conducted in the project eGon (https://ego-n.org/)", |
419
|
|
|
"path": "https://github.com/openego/eGon-data", |
420
|
|
|
"licenses": [ |
421
|
|
|
license_agpl( |
422
|
|
|
"© eGon development team" |
423
|
|
|
) |
424
|
|
|
], |
425
|
|
|
}, |
426
|
|
|
"Einspeiseatlas": { |
427
|
|
|
"title": "Einspeiseatlas", |
428
|
|
|
"description": "Im Einspeiseatlas finden sie sich die Informationen " |
429
|
|
|
"zu realisierten und geplanten Biomethanaufbereitungsanlagen - mit " |
430
|
|
|
"und ohne Einspeisung ins Gasnetz - in Deutschland und weltweit.", |
431
|
|
|
"path": "https://www.biogaspartner.de/einspeiseatlas/", |
432
|
|
|
"licenses": [license_ccby("Deutsche Energie-Agentur (dena, 2021)")], |
433
|
|
|
}, |
434
|
|
|
"era5": { |
435
|
|
|
"title": "ERA5 global reanalysis", |
436
|
|
|
"description": "ERA5 is the fifth generation ECMWF reanalysis for the global climate " |
437
|
|
|
"and weather for the past 4 to 7 decades. Currently data is available from 1950, " |
438
|
|
|
"split into Climate Data Store entries for 1950-1978 (preliminary back extension) and f" |
439
|
|
|
"rom 1979 onwards (final release plus timely updates, this page). ERA5 replaces the ERA-Interim reanalysis. " |
440
|
|
|
"See the online ERA5 documentation " |
441
|
|
|
"(https://confluence.ecmwf.int/display/CKB/ERA5%3A+data+documentation#ERA5:datadocumentation-Dataupdatefrequency) " |
442
|
|
|
"for more information.", |
443
|
|
|
"path": "https://confluence.ecmwf.int/display/CKB/ERA5%3A+data+documentation#ERA5:datadocumentation-Dataupdatefrequency", |
444
|
|
|
"licenses": [ |
445
|
|
|
{ |
446
|
|
|
"name": "Licence to use Copernicus Products", |
447
|
|
|
"title": "Licence to use Copernicus Products", |
448
|
|
|
"path": "https://cds.climate.copernicus.eu/api/v2/terms/static/licence-to-use-copernicus-products.pdf", |
449
|
|
|
"instruction": "This Licence is free of charge, worldwide, non-exclusive, royalty free and perpetual. " |
450
|
|
|
"Access to Copernicus Products is given for any purpose in so far as it is lawful, whereas use " |
451
|
|
|
"may include, but is not limited to: reproduction; distribution; communication to the public; " |
452
|
|
|
"adaptation, modification and combination with other data and information; or any " |
453
|
|
|
"combination of the foregoing", |
454
|
|
|
"attribution": "Copernicus Climate Change Service (C3S) Climate Data Store", |
455
|
|
|
}, |
456
|
|
|
], |
457
|
|
|
}, |
458
|
|
|
"dsm-heitkoetter": { |
459
|
|
|
"title": "Assessment of the regionalised demand response potential " |
460
|
|
|
"in Germany using an open source tool and dataset", |
461
|
|
|
"description": "With the expansion of renewable energies in Germany, " |
462
|
|
|
"imminent grid congestion events occur more often. One approach for " |
463
|
|
|
"avoiding curtailment of renewable energies is to cover excess feed-in " |
464
|
|
|
"by demand response. As curtailment is often a local phenomenon, in " |
465
|
|
|
"this work we determine the regional demand response potential for " |
466
|
|
|
"the 401 German administrative districts with a temporal resolution " |
467
|
|
|
"of 15 min, including technical, socio-technical and economic " |
468
|
|
|
"restrictions.", |
469
|
|
|
"path": "https://doi.org/10.1016/j.adapen.2020.100001", |
470
|
|
|
"licenses": [ |
471
|
|
|
license_ccby("© 2020 German Aerospace Center (DLR), " |
472
|
|
|
"Institute of Networked Energy Systems.")], |
473
|
|
|
}, |
474
|
|
|
"hotmaps_industrial_sites": { |
475
|
|
|
"titel": "industrial_sites_Industrial_Database", |
476
|
|
|
"description": "Georeferenced industrial sites of energy-intensive industry sectors in EU28", |
477
|
|
|
"path": "https://gitlab.com/hotmaps/industrial_sites/industrial_sites_Industrial_Database", |
478
|
|
|
"licenses": [ |
479
|
|
|
license_ccby("© 2016-2018: Pia Manz, Tobias Fleiter") |
480
|
|
|
], |
481
|
|
|
}, |
482
|
|
|
"hotmaps_scen_buildings": { |
483
|
|
|
"titel": "scen_current_building_demand", |
484
|
|
|
"description": "Energy demand scenarios in buidlings until the year 2050 - current policy scenario", |
485
|
|
|
"path": "https://gitlab.com/hotmaps/scen_current_building_demand", |
486
|
|
|
"licenses": [ |
487
|
|
|
license_ccby( |
488
|
|
|
"© 2016-2018: Michael Hartner, Lukas Kranzl, Sebastian Forthuber, Sara Fritz, Andreas Müller" |
489
|
|
|
) |
490
|
|
|
], |
491
|
|
|
}, |
492
|
|
|
"mastr": { |
493
|
|
|
"title": "open-MaStR power unit registry", |
494
|
|
|
"description": "Raw data download Marktstammdatenregister (MaStR) data " |
495
|
|
|
"using the webservice. All data from the Marktstammdatenregister is included." |
496
|
|
|
"There are duplicates included. For further information read in the documentation" |
497
|
|
|
"of the original data source: https://www.marktstammdatenregister.de/MaStRHilfe/subpages/statistik.html", |
498
|
|
|
"path": "https://sandbox.zenodo.org/record/808086", |
499
|
|
|
"licenses": [ |
500
|
|
|
licenses_datenlizenz_deutschland( |
501
|
|
|
"© 2021 Bundesnetzagentur für Elektrizität, Gas, Telekommunikation, Post und Eisenbahnen" |
502
|
|
|
) |
503
|
|
|
], |
504
|
|
|
}, |
505
|
|
|
"nep2021": { |
506
|
|
|
"title": "Netzentwicklungsplan Strom 2035, Version 2021, erster Entwurf", |
507
|
|
|
"description": "Die vier deutschen Übertragungsnetzbetreiber zeigen mit " |
508
|
|
|
"diesem ersten Entwurf des Netzentwicklungsplans 2035, Version 2021, den " |
509
|
|
|
"benötigten Netzausbau für die nächsten Jahre auf. Der NEP-Bericht beschreibt " |
510
|
|
|
"keine konkreten Trassenverläufe von Übertragungsleitungen, sondern er " |
511
|
|
|
"dokumentiert den notwendigen Übertragungsbedarf zwischen Netzknoten. " |
512
|
|
|
"Das heißt, es werden Anfangs- und Endpunkte von zukünftigen Leitungsverbindungen " |
513
|
|
|
"definiert sowie konkrete Empfehlungen für den Aus- und Neubau der Übertragungsnetze " |
514
|
|
|
"an Land und auf See in Deutschland gemäß den Detailanforderungen im § 12 EnWG gegeben.", |
515
|
|
|
"path": "https://zenodo.org/record/5743452#.YbCoz7so8go", |
516
|
|
|
"licenses": [license_ccby("© Übertragungsnetzbetreiber")], |
517
|
|
|
}, |
518
|
|
|
"openffe_gas": { |
519
|
|
|
"title": "Load Curves of the Industry Sector – eXtremOS solidEU Scenario (Europe NUTS-3)", |
520
|
|
|
"description": "Load Curves of the Industry Sector for the eXtremOS solidEU Scenario Scenario at NUTS-3-Level. " |
521
|
|
|
"More information at https://extremos.ffe.de/.", |
522
|
|
|
"path": "http://opendata.ffe.de/dataset/load-curves-of-the-industry-sector-extremos-solideu-scenario-europe-nuts-3/", |
523
|
|
|
"licenses": [license_ccby("© FfE, eXtremOS Project")], |
524
|
|
|
}, |
525
|
|
|
"openstreetmap": { |
526
|
|
|
"title": "OpenStreetMap Data Extracts (Geofabrik)", |
527
|
|
|
"description": "Full data extract of OpenStreetMap data for defined" |
528
|
|
|
"spatial extent at ''referenceDate''", |
529
|
|
|
"path": "https://download.geofabrik.de/europe/germany-210101.osm.pbf", |
530
|
|
|
"licenses": [license_odbl("© OpenStreetMap contributors")], |
531
|
|
|
}, |
532
|
|
|
"peta": { |
533
|
|
|
"title": "Pan-European Thermal Atlas, Peta version 5.0.1", |
534
|
|
|
"description": "Modelled Heat Demand distribution (in GJ per hectare grid cell) for residential and service " |
535
|
|
|
"heat demands for space heating and hot water for the year 2015 using HRE4 data and the combined " |
536
|
|
|
"top-down bottom-up approach of HRE4. " |
537
|
|
|
"National sector-specific heat demand data, derived by the FORECAST model in HRE4 for residential " |
538
|
|
|
"(delivered energy, for space heating and hot water) and service-sector (delivered energy, for space heating, hot " |
539
|
|
|
"water and process heat) buildings for the year 2015, were distributed using modelled, spatial " |
540
|
|
|
"statistics based floor areas in 100x100m grids and a population grid. " |
541
|
|
|
"For further information please see the documentation available on the Heat Roadmap Europe website, " |
542
|
|
|
"in particular D2.3 report 'Methodologies and assumptions used in the mapping'.", |
543
|
|
|
"path": "https://s-eenergies-open-data-euf.hub.arcgis.com/search", |
544
|
|
|
"licenses": [ |
545
|
|
|
license_ccby( |
546
|
|
|
"© Europa-Universität Flensburg, Halmstad University and Aalborg University" |
547
|
|
|
) |
548
|
|
|
], |
549
|
|
|
}, |
550
|
|
|
"pipeline_classification": { |
551
|
|
|
"title": "Technical pipeline characteristics for high pressure pipelines", |
552
|
|
|
"description": "Parameters for the classification of gas pipelines, " |
553
|
|
|
"the whole documentation could is available at: " |
554
|
|
|
"https://www.econstor.eu/bitstream/10419/173388/1/1011162628.pdf", |
555
|
|
|
"path": "https://zenodo.org/record/5743452", |
556
|
|
|
"licenses": [license_ccby("© DIW Berlin, 2017")], |
557
|
|
|
}, |
558
|
|
|
"schmidt": { |
559
|
|
|
"title": "Supplementary material to the masters thesis: " |
560
|
|
|
"NUTS-3 Regionalization of Industrial Load Shifting Potential in Germany using a Time-Resolved Model", |
561
|
|
|
"description": "Supplementary material to the named masters thesis, containing data on industrial processes" |
562
|
|
|
"for the estimation of NUTS-3 load shifting potential of suitable electrically powered industrial processes" |
563
|
|
|
"(cement milling, mechanical pulping, paper production, air separation).", |
564
|
|
|
"path": "https://zenodo.org/record/3613767", |
565
|
|
|
"licenses": [license_ccby("© 2019 Danielle Schmidt")], |
566
|
|
|
}, |
567
|
|
|
"SciGRID_gas": { |
568
|
|
|
"title": "SciGRID_gas IGGIELGN", |
569
|
|
|
"description": "The SciGRID_gas dataset represents the European " |
570
|
|
|
"gas transport network (pressure levels of 20 bars and higher) " |
571
|
|
|
"including the geo-referenced transport pipelines, compressor " |
572
|
|
|
"stations, LNG terminals, storage, production sites, gas power " |
573
|
|
|
"plants, border points, and demand time series. ", |
574
|
|
|
"path": "https://dx.doi.org/10.5281/zenodo.4896526", |
575
|
|
|
"licenses": [license_ccby( |
576
|
|
|
"Jan Diettrich; Adam Pluta; Wided Medjroubi (DLR-VE)" |
577
|
|
|
),] |
578
|
|
|
}, |
579
|
|
|
"seenergies": { |
580
|
|
|
"title": "D5 1 Industry Dataset With Demand Data", |
581
|
|
|
"description": "Georeferenced EU28 industrial sites with quantified annual excess heat volumes and demand data" |
582
|
|
|
"within main sectors: Chemical industry, Iron and steel, Non-ferrous metals, Non-metallic minerals, Paper and printing, and Refineries.", |
583
|
|
|
"path": "https://s-eenergies-open-data-euf.hub.arcgis.com/datasets/5e36c0af918040ed936b4e4c101f611d_0/about", |
584
|
|
|
"licenses": [license_ccby("© Europa-Universität Flensburg")], |
585
|
|
|
}, |
586
|
|
|
"technology-data": { |
587
|
|
|
"titel": "Energy System Technology Data v0.3.0", |
588
|
|
|
"description": "This script compiles assumptions on energy system " |
589
|
|
|
"technologies (such as costs, efficiencies, lifetimes, etc.) for " |
590
|
|
|
"chosen years (e.g. [2020, 2030, 2050]) from a variety of sources " |
591
|
|
|
"into CSV files to be read by energy system modelling software. " |
592
|
|
|
"The merged outputs have standardized cost years, technology names, " |
593
|
|
|
"units and source information.", |
594
|
|
|
"path": "https://github.com/PyPSA/technology-data/tree/v0.3.0", |
595
|
|
|
"licenses": [ |
596
|
|
|
license_agpl( |
597
|
|
|
"© Marta Victoria (Aarhus University), Kun Zhu (Aarhus University), Elisabeth Zeyen (TUB), Tom Brown (TUB)" |
598
|
|
|
) |
599
|
|
|
], |
600
|
|
|
}, |
601
|
|
|
"tyndp": { |
602
|
|
|
"title": "Ten-Year Network Development Plan (TYNDP) 2020 Scenarios", |
603
|
|
|
"description": "ENTSOs’ TYNDP 2020 Scenario Report describes possible European energy futures up to 2050. " |
604
|
|
|
"Scenarios are not forecasts; they set out a range of possible futures used by the ENTSOs to test future " |
605
|
|
|
"electricity and gas infrastructure needs and projects. The scenarios are ambitious as they deliver " |
606
|
|
|
"a low carbon energy system for Europe by 2050. The ENTSOs have developed credible scenarios that are " |
607
|
|
|
"guided by technically sound pathways, while reflecting country by country specifics, so that a pan-European " |
608
|
|
|
"low carbon future is achieved.", |
609
|
|
|
"path": "https://tyndp.entsoe.eu/maps-data", |
610
|
|
|
"licenses": [license_ccby("© ENTSO-E and ENTSOG")], |
611
|
|
|
}, |
612
|
|
|
"vg250": { |
613
|
|
|
"title": "Verwaltungsgebiete 1:250 000 (Ebenen)", |
614
|
|
|
"description": "Der Datenbestand umfasst sämtliche Verwaltungseinheiten der " |
615
|
|
|
"hierarchischen Verwaltungsebenen vom Staat bis zu den Gemeinden " |
616
|
|
|
"mit ihren Grenzen, statistischen Schlüsselzahlen, Namen der " |
617
|
|
|
"Verwaltungseinheit sowie die spezifische Bezeichnung der " |
618
|
|
|
"Verwaltungsebene des jeweiligen Landes.", |
619
|
|
|
"path": "https://daten.gdz.bkg.bund.de/produkte/vg/vg250_ebenen_0101/2020/vg250_01-01.geo84.shape.ebenen.zip", |
620
|
|
|
"licenses": [ |
621
|
|
|
licenses_datenlizenz_deutschland( |
622
|
|
|
"© Bundesamt für Kartographie und Geodäsie " |
623
|
|
|
"2020 (Daten verändert)" |
624
|
|
|
) |
625
|
|
|
], |
626
|
|
|
}, |
627
|
|
|
"zensus": { |
628
|
|
|
"title": "Statistisches Bundesamt (Destatis) - Ergebnisse des Zensus 2011 zum Download", |
629
|
|
|
"description": "Als Download bieten wir Ihnen auf dieser Seite zusätzlich zur " |
630
|
|
|
"Zensusdatenbank CSV- und teilweise Excel-Tabellen mit umfassenden Personen-, Haushalts- " |
631
|
|
|
"und Familien- sowie Gebäude- und Wohnungsmerkmalen. Die Ergebnisse liegen auf Bundes-, " |
632
|
|
|
"Länder-, Kreis- und Gemeindeebene vor. Außerdem sind einzelne Ergebnisse für Gitterzellen verfügbar.", |
633
|
|
|
"path": "https://www.zensus2011.de/SharedDocs/Aktuelles/Ergebnisse/DemografischeGrunddaten.html;jsessionid=E0A2B4F894B258A3B22D20448F2E4A91.2_cid380?nn=3065474", |
634
|
|
|
"licenses": [ |
635
|
|
|
licenses_datenlizenz_deutschland( |
636
|
|
|
"© Statistische Ämter des Bundes und der Länder 2014" |
637
|
|
|
) |
638
|
|
|
], |
639
|
|
|
}, |
640
|
|
|
} |
641
|
|
|
|
642
|
|
|
|
643
|
|
|
def contributors(authorlist): |
644
|
|
|
contributors_dict = { |
645
|
|
|
"am": { |
646
|
|
|
"title": "Aadit Malla", |
647
|
|
|
"email": "https://github.com/aadit879", |
648
|
|
|
}, |
649
|
|
|
"an": { |
650
|
|
|
"title": "Amélia Nadal", |
651
|
|
|
"email": "https://github.com/AmeliaNadal", |
652
|
|
|
}, |
653
|
|
|
"cb": { |
654
|
|
|
"title": "Clara Büttner", |
655
|
|
|
"email": "https://github.com/ClaraBuettner", |
656
|
|
|
}, |
657
|
|
|
"ce": { |
658
|
|
|
"title": "Carlos Epia", |
659
|
|
|
"email": "https://github.com/CarlosEpia", |
660
|
|
|
}, |
661
|
|
|
"fw": { |
662
|
|
|
"title": "Francesco Witte", |
663
|
|
|
"email": "https://github.com/fwitte", |
664
|
|
|
}, |
665
|
|
|
"gp": { |
666
|
|
|
"title": "Guido Pleßmann", |
667
|
|
|
"email": "https://github.com/gplssm", |
668
|
|
|
}, |
669
|
|
|
"ic": { |
670
|
|
|
"title": "Ilka Cußmann", |
671
|
|
|
"email": "https://github.com/IlkaCu", |
672
|
|
|
}, |
673
|
|
|
"ja": { |
674
|
|
|
"title": "Jonathan Amme", |
675
|
|
|
"email": "https://github.com/nesnoj", |
676
|
|
|
}, |
677
|
|
|
"je": { |
678
|
|
|
"title": "Jane Doe", |
679
|
|
|
"email": "https://github.com/JaneDoe", |
680
|
|
|
}, |
681
|
|
|
"ke": { |
682
|
|
|
"title": "Katharina Esterl", |
683
|
|
|
"email": "https://github.com/KathiEsterl", |
684
|
|
|
}, |
685
|
|
|
"sg": { |
686
|
|
|
"title": "Stephan Günther", |
687
|
|
|
"email": "https://github.com/gnn", |
688
|
|
|
}, |
689
|
|
|
"um": { |
690
|
|
|
"title": "Ulf Müller", |
691
|
|
|
"email": "https://github.com/ulfmueller", |
692
|
|
|
}, |
693
|
|
|
} |
694
|
|
|
return [ |
695
|
|
|
{key: value for key, value in contributors_dict[author].items()} |
696
|
|
|
for author in authorlist |
697
|
|
|
] |
698
|
|
|
|