Skip to content

Commit 6fae170

Browse files
committed
Change data type of data_height to only Dictionary
1 parent 8199005 commit 6fae170

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

windpowerlib/modelchain.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def rho_hub(self, weather, data_height):
135135
for interpolation.
136136
If a Dictionary is used the data inside the dictionary has to be of
137137
the types pandas.Series or numpy.array.
138-
data_height : DataFrame or Dictionary
138+
data_height : Dictionary
139139
Containing columns or keys with the heights in m for which the
140140
corresponding parameters in `weather` apply.
141141
@@ -208,7 +208,7 @@ def v_wind_hub(self, weather, data_height):
208208
optionally wind speed `v_wind_2` in m/s at different height.
209209
If a Dictionary is used the data inside the dictionary has to be of
210210
the types pandas.Series or numpy.array.
211-
data_height : DataFrame or Dictionary
211+
data_height : Dictionary
212212
Containing columns or keys with the heights in m for which the
213213
corresponding parameters in `weather` apply.
214214
@@ -345,7 +345,7 @@ def run_model(self, weather, data_height):
345345
`temp_air_2` in K at different height for interpolation.
346346
If a Dictionary is used the data inside the dictionary has to be of
347347
the types pandas.Series or numpy.array.
348-
data_height : DataFrame or Dictionary
348+
data_height : Dictionary
349349
Containing columns or keys with the heights in m for which the
350350
corresponding parameters in `weather` apply.
351351

0 commit comments

Comments
 (0)