Skip to content

Commit

Permalink
fix: 🐛 fix sez2rae returning radians not degrees
Browse files Browse the repository at this point in the history
  • Loading branch information
thkruz committed Aug 22, 2022
1 parent 4434dd7 commit 429bab4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/transforms/transforms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ class Transforms {

return {
rng: <Kilometer>rng,
az: <Radians>az,
el: <Radians>el,
az: <Degrees>rad2deg(az),
el: <Degrees>rad2deg(el),
};
}
}
Expand Down

0 comments on commit 429bab4

Please sign in to comment.