pypsa-eur/doc/plotting.rst

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

97 lines
1.8 KiB
ReStructuredText
Raw Normal View History

..
2023-02-16 10:50:55 +00:00
SPDX-FileCopyrightText: 2019-2023 The PyPSA-Eur Authors
SPDX-License-Identifier: CC-BY-4.0
2019-06-19 11:12:02 +00:00
##########################################
Plotting and Summary
##########################################
.. warning:: The corresponding code is currently under revision and has only minimal documentation.
2019-06-19 11:12:02 +00:00
2019-08-14 16:03:34 +00:00
Rule ``make_summary``
2019-08-14 15:15:07 +00:00
========================
.. graphviz::
:align: center
digraph snakemake_dag {
graph [bgcolor=white,
margin=0,
size="8,5"
];
node [fontname=sans,
fontsize=10,
penwidth=2,
shape=box,
style=rounded
];
edge [color=grey,
penwidth=2
];
0 [color="0.47 0.6 0.85",
fillcolor=gray,
label=make_summary,
style=filled];
1 [color="0.11 0.6 0.85",
label=solve_network];
1 -> 0;
}
|
2019-08-07 08:56:23 +00:00
.. automodule:: make_summary
2019-08-11 20:34:18 +00:00
.. _summary_plot:
2019-08-14 16:03:34 +00:00
Rule ``plot_summary``
2019-08-14 15:15:07 +00:00
========================
2021-08-27 10:30:29 +00:00
.. .. graphviz::
.. :align: center
2019-08-14 15:15:07 +00:00
|
2019-06-19 11:12:02 +00:00
.. automodule:: plot_summary
2019-08-11 20:34:18 +00:00
.. _map_plot:
2019-08-14 16:03:34 +00:00
Rule ``plot_network``
2019-08-14 15:15:07 +00:00
========================
.. graphviz::
:align: center
digraph snakemake_dag {
graph [bgcolor=white,
margin=0,
size="8,5"
];
node [fontname=sans,
fontsize=10,
penwidth=2,
shape=box,
style=rounded
];
edge [color=grey,
penwidth=2
];
0 [color="0.00 0.6 0.85",
fillcolor=gray,
label=plot_network,
style=filled];
1 [color="0.50 0.6 0.85",
label=solve_network];
1 -> 0;
}
|
2019-08-06 14:53:32 +00:00
.. automodule:: plot_network
2019-08-06 14:53:32 +00:00
.. image:: img/tech-colors.png
:align: center