You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/quickstart.rst
+12-28Lines changed: 12 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,27 +28,6 @@ is the only supported data source. You can retrieve data from `Zenodo <https://z
28
28
(make sure you choose latest data) or check
29
29
out the ding0 documentation on how to generate grids yourself.
30
30
31
-
Aside from grid topology data you may eventually need a dataset on future installation of power plants. You
32
-
may therefore use the scenarios developed in the `open_eGo <https://openegoproject.wordpress.com>`_ that
33
-
are available in `OpenEnergy DataBase (oedb) <https://openenergy-platform.org/dataedit/>`_ hosted on the `OpenEnergy Platform (OEP) <https://oep.iks.cs.ovgu.de/>`_.
34
-
eDisGo provides an interface to the oedb using the package `ego.io <https://github.com/openego/ego.io>`_. ego.io gives you a python SQL-Alchemy representations of
35
-
the oedb and access to it by using the `oedialect <https://github.com/openego/oedialect>`_, an SQL-Alchemy dialect used by the OEP.
36
-
37
-
To retrieve data from the oedb you need to create an account `here <http://openenergy-platform.org/login/>`_.
38
-
Upon retrieving data with eDisGo from the oedb for the first time you will be asked to type in your login information.
39
-
If you wish so, your login data will be saved to the folder ``.egoio`` to the file
40
-
``config.ini`` and your password stored in a keyring, so that you don't need to type it in every time you retrieve data.
41
-
The ``config.ini`` holds the following information:
42
-
43
-
.. code-block:: bash
44
-
45
-
[oedb]
46
-
dialect = oedialect
47
-
username = <username>
48
-
database = oedb
49
-
host = openenergy-platform.org
50
-
port = 80
51
-
52
31
.. _edisgo-mwe:
53
32
54
33
A minimum working example
@@ -57,6 +36,13 @@ A minimum working example
57
36
Following you find short examples on how to use eDisGo. Further examples and details are provided in :ref:`usage-details`.
58
37
59
38
All following examples assume you have a ding0 grid topology file named "ding0_grids__42.pkl" in current working directory.
39
+
40
+
Aside from grid topology data you may eventually need a dataset on future installation of power plants. You
41
+
may therefore use the scenarios developed in the `open_eGo <https://openegoproject.wordpress.com>`_ project that
42
+
are available in the `OpenEnergy DataBase (oedb) <https://openenergy-platform.org/dataedit/>`_ hosted on the `OpenEnergy Platform (OEP) <https://oep.iks.cs.ovgu.de/>`_.
43
+
eDisGo provides an interface to the oedb using the package `ego.io <https://github.com/openego/ego.io>`_. ego.io gives you a python SQL-Alchemy representations of
44
+
the oedb and access to it by using the `oedialect <https://github.com/openego/oedialect>`_, an SQL-Alchemy dialect used by the OEP.
45
+
60
46
You can run a worst-case scenario as follows:
61
47
62
48
Using package included command-line script
@@ -77,7 +63,7 @@ Or coding the script yourself with finer control of details
77
63
edisgo = EDisGo(ding0_grid="ding0_grids__42.pkl",
78
64
worst_case_analysis='worst-case')
79
65
80
-
# Import future generators (OEP account needed!)
66
+
# Import scenario for future generators from the oedb
0 commit comments