From 46a2f55c1bbebe9a491bea76f9805e363cdd6b5c Mon Sep 17 00:00:00 2001 From: Fabian Neumann Date: Sun, 27 Aug 2023 17:10:41 +0200 Subject: [PATCH] plot_network: remove function plot_series() This function is superseded by plot_balance_timeseries rule. --- scripts/plot_network.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/plot_network.py b/scripts/plot_network.py index d951d2e7..dde7d61b 100644 --- a/scripts/plot_network.py +++ b/scripts/plot_network.py @@ -671,6 +671,7 @@ def plot_ch4_map(network): ) +<<<<<<< HEAD def plot_series(network, carrier="AC", name="test"): n = network.copy() assign_location(n) @@ -984,6 +985,8 @@ def plot_map_perfect( ) +======= +>>>>>>> ead390b4 (plot_network: remove function plot_series()) if __name__ == "__main__": if "snakemake" not in globals(): from _helpers import mock_snakemake @@ -1028,6 +1031,3 @@ if __name__ == "__main__": plot_h2_map(n, regions) plot_ch4_map(n) - - # plot_series(n, carrier="AC", name=suffix) - # plot_series(n, carrier="heat", name=suffix)