-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cf82453
commit b43f030
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
## Background | ||
|
||
The Marktstammdatenregister (MaStR) is operated by the German Federal Network Agency (de: Bundesnetzagentur, short: BNetzA) since January 31, 2019 as a central online database for data related to the German energy system. Owners of electricity or gas generating plants are obliged to report master data on themselves and their plants. Additionally, plants consuming large amounts of electricity have to be registered if they are connected to at least a high-voltage electricity grid. | ||
|
||
Most information on units is openly accessible. The data is published under an open data license, the Data licence Germany – attribution – version 2.0 (DL-DE-BY-2.0) and can be downloaded, used and republished with no restriction if proper attribution to the Bundesnetzagentur is given. | ||
For units with a net capacity of up to 30 kW, some location information is restricted from publication. This applies to street name, house number, parcel designation and exact coordinates of units. The most granular location information accessible for all units is the postal code or the municipality. | ||
|
||
Within our paper [Analyzing Data Reliability in Germany's Energy System: A Validation of Unit Locations of the Marktstammdatenregister](https://arxiv.org/abs/2304.10581) we give further insights into the content and quality of the dataset. | ||
|
||
## Content | ||
|
||
The German Federal Network Agency regularly updates the dataset and adds new tables and attributes. Hence, the primary resource of information about the dataset should be the original website: | ||
|
||
* Get information about the `bulk` data [here](https://www.marktstammdatenregister.de/MaStR/Datendownload) (in german) | ||
* Get information about the `API` data [here](https://www.marktstammdatenregister.de/MaStRHilfe/subpages/webdienst.html) (in german) | ||
|
||
## Difference between `bulk` and `API` dataset | ||
|
||
As you might have noticed, we distinguish between `bulk` and `API` datasets. With the `bulk` dataset we mean the data obtained from the zipped xml-files downloaded from [here](https://www.marktstammdatenregister.de/MaStR/Datendownload) using the [`Mastr.download`][open_mastr.Mastr.download]. The `API` data is obtained by requesting information via the SOAP-API and the [`soap_api.download.MaStRDownload`][open_mastr.soap_api.download.MaStRDownload] module. | ||
|
||
## Tables in the database | ||
|
||
!!! note | ||
:sparkles: Confused of the amount of tables? We regularly run the whole download and cleansing pipeline and upload the dataset as csv files at [zenodo](https://zenodo.org/record/8225106)! | ||
|
||
After downloading the MaStR, you will find a database with a large number of tables. We name the most important ones here together with their content: | ||
|
||
### _extended tables | ||
The main information about the different technologies lies in the `_extended` tables. You can find the capacity, location, and other technology-specific attributes here. | ||
|
||
| _extended tables | Comments | | ||
|------|------| | ||
| biomass_extended | | | ||
| combustion_extended | *Conventional powerplants: Gas, Oil, Coal, ...* | | ||
| gsgk_extended | *gsgk is short for: Geothermal, Mine gas, and Pressure relaxation* | | ||
| hydro_extended | | | ||
| nuclear_extended | | | ||
| solar_extended | | | ||
| storage_extended | | | ||
| wind_extended | | | ||
|
||
### _eeg tables | ||
In germany, renewable energies were subsidized by the state - according to a law called 'EEG'. Relevant information like the 'EEG ID' are in the `_eeg` tables. | ||
|
||
| Tables in the database | Comments | | ||
|------|------| | ||
| biomass_eeg | | | ||
| gsgk_eeg | *gsgk is short for: Geothermal, Mine gas, and Pressure relaxation* | | ||
| hydro_eeg | | | ||
| solar_eeg | | | ||
| storage_eeg | | | ||
| wind_eeg | | | ||
|
||
### Other tables | ||
Other tables contain information about the grid, the energy market, or gas consumers and producers: | ||
|
||
| Tables in the database | Comments | | ||
|------|------| | ||
| balancing_area | *Related to the energy market* | | ||
| electricity_consumer | *Only large consumers* | | ||
| gas_consumer | *Only large consumers* | | ||
| gas_producer | | | ||
| gas_storage | | | ||
| gas_storage_extended | | | ||
| grid_connections | *Does not contain geoinformation* | | ||
| grids | *Does not contain geoinformation* | | ||
| locations_extended | *Connects units with grids - to get coordinates of units use the _extended tables*| | ||
| market_actors | | | ||
| market_roles | | | ||
| permit | | | ||
| storage_units | | | ||
| kwk | *short for: Combined heat and power (CHP)* | |