Skip to content

Commit

Permalink
error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiste committed Dec 10, 2024
1 parent 8c9cd76 commit 04a4747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/coordinates.R
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ vec2fol0 <- function(x, y, z) {

correct_inc <- function(azi, inc) {
if (inc > 90) {
inc <- 180 - 90
inc <- 180 - inc
azi <- (azi + 180) %% 360
} else if (inc < 0) {
inc <- abs(inc)
Expand Down

0 comments on commit 04a4747

Please sign in to comment.