From ddcaff0b5b7d352392fac34507de3b822c3786b5 Mon Sep 17 00:00:00 2001 From: Fabian Neumann Date: Tue, 3 Jan 2023 13:14:16 +0100 Subject: [PATCH] plot_network: do not plot very small pipelines --- scripts/plot_network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/plot_network.py b/scripts/plot_network.py index 386a45b7..5472ee69 100644 --- a/scripts/plot_network.py +++ b/scripts/plot_network.py @@ -260,7 +260,7 @@ def plot_h2_map(network, regions): bus_size_factor = 1e5 linewidth_factor = 1e4 # MW below which not drawn - line_lower_threshold = 1e2 + line_lower_threshold = 1e3 # Drop non-electric buses so they don't clutter the plot n.buses.drop(n.buses.index[n.buses.carrier != "AC"], inplace=True)