Skip to content

Commit

Permalink
fix(location): Add a method to convert magnetic to true north
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey committed Mar 4, 2024
1 parent ee9df99 commit 0151f57
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ladybug/location.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,9 @@ def is_default(self):
"""Get a boolean for whether the Location properties are defaulted."""
return self.latitude == 0 and self.longitude == 0 and self.elevation == 0

def magnetic_to_true_north(self, magnetic_north=0):
pass

def duplicate(self):
"""Duplicate location."""
return self.__copy__()
Expand Down

0 comments on commit 0151f57

Please sign in to comment.