Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# Data module for electricity demand in Europe

This module prepares electricity demand timeseries for Europe at arbitrary resolution
This module prepares electricity demand timeseries for Europe at arbitrary resolution, based on ENTSO-E historical load data.

<!-- Place an attractive image of module outputs here -->

<p align="center">
<img src="./figures/plot_profiles.png">
</p>

## About
<!-- Please do not modify this templated section -->
Expand Down Expand Up @@ -83,8 +86,11 @@ snakemake --use-conda --cores 2 # run the workflow!

This module is based on the following research and datasets:

*
*
* ENTSOE Transparency Platform (https://transparency.entsoe.eu)
* Open Power System Data (https://data.open-power-system-data.org)
* Schiavina M., Freire S., Carioli A., MacManus K. (2023):
GHS-POP R2023A - GHS population grid multitemporal (1975-2030).European Commission, Joint Research Centre (JRC)
PID: http://data.europa.eu/89h/2ff68a52-5b5b-4a22-8f40-c41da8332cfe, doi:10.2905/2FF68A52-5B5B-4A22-8F40-C41DA8332CFE

## Contributors ✨

Expand Down
Binary file added figures/plot_profiles.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion workflow/scripts/demand_electricity_raster.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def main(
plt.savefig(plot_raster, bbox_inches="tight")

plot_national_profiles(demand)
plt.savefig(plot_profiles, bbox_inches="tight", dpi=300)
plt.savefig(plot_profiles, bbox_inches="tight", dpi=110)


if __name__ == "__main__":
Expand Down
Loading