Skip to content

Commit 2a16b97

Browse files
committed
degrees
1 parent 5382be0 commit 2a16b97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/axiomatic/axtract.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ def get_numerical_values(ax_client, path, constants_of_interest):
663663
value *= 1e3
664664
unit = "m"
665665
# Handle degree conversions to radians
666-
elif unit in ["deg", "°"]: # degrees
666+
elif unit in ["deg", "°", "degree", "degrees"]: # degrees
667667
value = value * (3.14159265359 / 180.0) # convert to radians
668668
unit = "rad"
669669

0 commit comments

Comments
 (0)