Skip to content

Commit

Permalink
Removed distance correction
Browse files Browse the repository at this point in the history
  • Loading branch information
TedSjoblom committed Mar 30, 2023
1 parent f9a4d14 commit e68b26f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ def polar_to_cartesian(azimuth: float, distances: np.ndarray, weights: np.ndarra
y = distances * np.sin(np.deg2rad(azimuth)) # pylint: disable=invalid-name

# Distance correction (Do not know why...)
x = x * 1.852
y = y * 1.852
# x = x * 1.852
# y = y * 1.852

points = np.column_stack((y, x))

Expand Down

0 comments on commit e68b26f

Please sign in to comment.