resolve merge conflict

This commit is contained in:
Fabian Neumann 2024-01-25 20:51:51 +01:00
parent 5fcfafe971
commit 7becfdea9c
3 changed files with 2 additions and 5 deletions

View File

@ -75,7 +75,7 @@ if config["foresight"] == "perfect":
rule all:
input:
RESULTS + "graphs/costs.pdf",
expand(RESULTS + "maps/power-network-{clusters}.pdf", **config["scenario"]),
expand(RESULTS + "maps/power-network-s{simpl}-{clusters}.pdf", **config["scenario"]),
expand(
RESULTS
+ "maps/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}-costs-all_{planning_horizons}.pdf",

View File

@ -16,9 +16,8 @@ if config["foresight"] != "perfect":
network=RESOURCES + "networks/elec_s{simpl}_{clusters}.nc",
regions_onshore=RESOURCES
+ "regions_onshore_elec_s{simpl}_{clusters}.geojson",
rc="matplotlibrc",
output:
map=RESULTS + "maps/power-network-{clusters}.pdf",
map=RESULTS + "maps/power-network-s{simpl}-{clusters}.pdf",
threads: 1
resources:
mem_mb=4000,

View File

@ -24,8 +24,6 @@ if __name__ == "__main__":
configfiles=["../../config/config.test.yaml"],
)
plt.style.use(snakemake.input.rc)
lw_factor = 2e3
n = pypsa.Network(snakemake.input.network)