plot_network: remove function plot_series()

This function is superseded by plot_balance_timeseries rule.
This commit is contained in:
Fabian Neumann 2023-08-27 17:10:41 +02:00
parent bb202ad2c4
commit 46a2f55c1b

View File

@ -671,6 +671,7 @@ def plot_ch4_map(network):
) )
<<<<<<< HEAD
def plot_series(network, carrier="AC", name="test"): def plot_series(network, carrier="AC", name="test"):
n = network.copy() n = network.copy()
assign_location(n) assign_location(n)
@ -984,6 +985,8 @@ def plot_map_perfect(
) )
=======
>>>>>>> ead390b4 (plot_network: remove function plot_series())
if __name__ == "__main__": if __name__ == "__main__":
if "snakemake" not in globals(): if "snakemake" not in globals():
from _helpers import mock_snakemake from _helpers import mock_snakemake
@ -1028,6 +1031,3 @@ if __name__ == "__main__":
plot_h2_map(n, regions) plot_h2_map(n, regions)
plot_ch4_map(n) plot_ch4_map(n)
# plot_series(n, carrier="AC", name=suffix)
# plot_series(n, carrier="heat", name=suffix)