Skip to content

Commit 629257d

Browse files
Height above ground in the wind class now defaults to 10.0 meters (#278)
2 parents b36d379 + 795427a commit 629257d

File tree

1 file changed

+1
-1
lines changed
  • LadybugTools_Engine/Python/src/ladybugtools_toolkit

1 file changed

+1
-1
lines changed

LadybugTools_Engine/Python/src/ladybugtools_toolkit/wind.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class Wind:
6868
wind_speeds: list[float]
6969
wind_directions: list[float]
7070
datetimes: list[datetime] | pd.DatetimeIndex
71-
height_above_ground: float
71+
height_above_ground: float = 10.0
7272
source: str = None
7373

7474
def __post_init__(self):

0 commit comments

Comments
 (0)