Skip to content

Commit

Permalink
fix(simulation): Allow north input to be less than or equal to 360
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey committed Aug 12, 2024
1 parent 95e20d1 commit b0e251f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion honeybee_schema/energy/simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ def check_timestep(cls, v):
north_angle: float = Field(
default=0,
ge=-360,
lt=360,
le=360,
description='A number between -360 and 360 for the north direction in degrees.'
'This is the counterclockwise difference between the North and the '
'positive Y-axis. 90 is West and 270 is East. Note that this '
Expand Down

0 comments on commit b0e251f

Please sign in to comment.