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: README.rst
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,13 +33,13 @@ Go to the `download page <http://readthedocs.org/projects/windpowerlib/downloads
33
33
Installation
34
34
============
35
35
36
-
If you have a working Python 3 (>= 3.6) environment, use pypi to install the latest windpowerlib version:
36
+
If you have a working Python 3 environment, use pypi to install the latest windpowerlib version:
37
37
38
38
::
39
39
40
40
pip install windpowerlib
41
41
42
-
The windpowerlib is designed for Python 3 and tested on Python >= 3.5. We highly recommend to use virtual environments.
42
+
The windpowerlib is designed for Python 3 and tested on Python >= 3.10. We highly recommend to use virtual environments.
43
43
Please see the `installation page <http://oemof.readthedocs.io/en/stable/installation_and_setup.html>`_ of the oemof documentation for complete instructions on how to install python and a virtual environment on your operating system.
44
44
45
45
Optional Packages
@@ -97,8 +97,8 @@ To update your local files with the latest version of the `oedb turbine library
97
97
98
98
.. code:: python
99
99
100
-
from windpowerlib.wind_turbineimportload_turbine_data_from_oedb
101
-
load_turbine_data_from_oedb()
100
+
from windpowerlib.dataimportstore_turbine_data_from_oedb
101
+
store_turbine_data_from_oedb()
102
102
103
103
If you find your turbine in the database it is very easy to use it in the
Copy file name to clipboardExpand all lines: doc/getting_started.rst
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ If you have a working Python 3 environment, use pypi to install the latest windp
43
43
44
44
pip install windpowerlib
45
45
46
-
The windpowerlib is designed for Python 3 and tested on Python >= 3.5. We highly recommend to use virtual environments.
46
+
The windpowerlib is designed for Python 3 and tested on Python >= 3.10. We highly recommend to use virtual environments.
47
47
Please see the `installation page <http://oemof.readthedocs.io/en/stable/installation_and_setup.html>`_ of the oemof documentation for complete instructions on how to install python and a virtual environment on your operating system.
48
48
49
49
Optional Packages
@@ -69,9 +69,9 @@ The basic usage of the windpowerlib is shown in the ModelChain example that is a
69
69
To run the example you need the example weather and turbine data used:
70
70
71
71
* :download:`Example weather data file <../example/weather.csv>`
72
-
* :download:`Example power curve data file <../example/data/power_curves.csv>`
73
-
* :download:`Example power coefficient curve data file <../example/data/power_coefficient_curves.csv>`
74
-
* :download:`Example nominal power data file <../example/data/turbine_data.csv>`
72
+
* :download:`Example power curve data file <../windpowerlib/data/default_turbine_data/power_curves.csv>`
73
+
* :download:`Example power coefficient curve data file <../windpowerlib/data/default_turbine_data/power_coefficient_curves.csv>`
74
+
* :download:`Example nominal power data file <../windpowerlib/data/default_turbine_data/turbine_data.csv>`
75
75
76
76
Furthermore, you have to install the windpowerlib and to run the notebook you also need to install `notebook` using pip3. To launch jupyter notebook type ``jupyter notebook`` in the terminal.
77
77
This will open a browser window. Navigate to the directory containing the notebook to open it. See the jupyter notebook quick start guide for more information on `how to install <http://jupyter-notebook-beginner-guide.readthedocs.io/en/latest/install.html>`_ and
@@ -102,8 +102,8 @@ To update your local files with the latest version of the `oedb turbine library
102
102
103
103
.. code:: python
104
104
105
-
from windpowerlib.wind_turbineimportload_turbine_data_from_oedb
106
-
load_turbine_data_from_oedb()
105
+
from windpowerlib.dataimportstore_turbine_data_from_oedb
106
+
store_turbine_data_from_oedb()
107
107
108
108
If you find your turbine in the database it is very easy to use it in the
109
109
windpowerlib
@@ -223,4 +223,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
223
223
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
224
224
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
225
225
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
0 commit comments