Open Database License (ODbL) v1.0https://www.opendatacommons.org/licenses/odbl/1.0/
License information was derived automatically
This repository contains input data for the open-source Python tool eTraGo (electricity Transmission Grid optimization) version 0.10.0.
This data will be uploaded to the OpenEnergy Platform which can be accessed by eTraGo. This dataset is an intermediate solution until the data is uploaded.
The published data includes the sector-coupled transmission grid data for the scenario status2019. It was created with the open-source tool powerd-data within the research project PoWerD. All input data sets as well as the code are available under open source licenses.
We thank the Federal Ministry for Economic Affairs and Climate Action for funding the research project PoWerD (grant number: 03EI1042C)
The data is stored as a PostgreSQL database in the attached backup file. First, the required schemas and extensions have to be created within the database by running the following SQL statements:
CREATE EXTENSION postgis;
Afterwards, the data can be restored by using e.g. pgAdmin or via PostgreSQL's pg_restore command (replace HOST
, DATABASE_NAME
, PORT
and USER
by your settings):
pg_restore --host HOST --port PORT --username USER --no-password --dbname
DATABASE_NAME --no-owner --no-privileges --verbose "PoWerD_status2019.backup"
Open Database License (ODbL) v1.0https://www.opendatacommons.org/licenses/odbl/1.0/
License information was derived automatically
THIS VERSION IS OUTDATED, PLEASE CHECK OUT THE LAST VERSION HERE: https://zenodo.org/record/6771217
_
This repository contains result data for the paper "Open modeling of electricity and heat demand curves for all residential buildings in Germany".
The published data includes residential electricity and heat demand profiles for every building in Germany. It was created with the open source tool eGon-data within the research project eGon. All input data sets as well as the code are available under open source licenses.
Files
Database structure
After restoring the backup file, the data is stored in different schemas: society, openstreetmap and demand. Different tables have to be combined to create the final demand time series for heat and electricity. In the following, the tables and the matching methods are described.
The schema society includes data from Census 2011 on population in 100m x 100m cells ('Census cells'). The cells are georeferenced and have a unique id.
Schema: society
Schema: openstreetmap
The schema openstreetmap includes data on residential buildings. All buildings hold an internal building_id. All residential buildings extracted from openstreetmap are stored in openstreetmap.osm_buildings_residential including osm_id and internal building_id. Additional, synthetic buildings are stored in openstreetmap.osm_buildings_synthetic.
Schema: demand
With the profile_ids in egon_household_electricity_profile_of_buildings, specific profiles from iee_household_load_profiles are mapped to all residential buildings. The profiles need to be scaled therafter by their annual sum and the corresponding scaling factors, which can be found in egon_household_electricity_profile_in_census_cell and matched per census cell id.
Heat demand profiles per building can be created by combining the tables egon_peta_heat, heat_idp_pool and heat_timeseries_selected_profiles. In addition, weather data (e.g. from ERA5, located in additional_data/) is needed to distribute the annual heat demands to single days. This is included in the example script, the usage is described below.
Weather data and the used climate zones are not included in the database. They are stored in files which are part of the additional_data/ folder. In this folder, you find the following data sets:
Example queries
Electricity profiles: The demand profiles for residential buildings can be obtained using the tables stored in the demand schema. To extract electricity demand profiles, the following tables have to be combined:
Example script to obtain the electrical demand timeseries for 1 specific building for the eGon2035 scenario:
Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
License information was derived automatically
DEPRECATED. DO NOT USE. See current version at https://dx.doi.org/10.7799/1812548. See active link below in the resources section. Open sourced data needed to run the basic alpha release version of the dGen model. Includes a pre-generated agent file of 100,000 agents in pickle file format along with the base schema and table data in parquet format that are needed to create a postgreSQL database for the model to interact with.
Not seeing a result you expected?
Learn how you can add new datasets to our index.
Open Database License (ODbL) v1.0https://www.opendatacommons.org/licenses/odbl/1.0/
License information was derived automatically
This repository contains input data for the open-source Python tool eTraGo (electricity Transmission Grid optimization) version 0.10.0.
This data will be uploaded to the OpenEnergy Platform which can be accessed by eTraGo. This dataset is an intermediate solution until the data is uploaded.
The published data includes the sector-coupled transmission grid data for the scenario status2019. It was created with the open-source tool powerd-data within the research project PoWerD. All input data sets as well as the code are available under open source licenses.
We thank the Federal Ministry for Economic Affairs and Climate Action for funding the research project PoWerD (grant number: 03EI1042C)
The data is stored as a PostgreSQL database in the attached backup file. First, the required schemas and extensions have to be created within the database by running the following SQL statements:
CREATE EXTENSION postgis;
Afterwards, the data can be restored by using e.g. pgAdmin or via PostgreSQL's pg_restore command (replace HOST
, DATABASE_NAME
, PORT
and USER
by your settings):
pg_restore --host HOST --port PORT --username USER --no-password --dbname
DATABASE_NAME --no-owner --no-privileges --verbose "PoWerD_status2019.backup"