Skip to content

Commit

Permalink
correct min long check
Browse files Browse the repository at this point in the history
  • Loading branch information
mkapur-noaa committed Jan 28, 2025
1 parent f743d90 commit 9f65689
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/check_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ check_data <- function(dat, sex = FALSE, showPlot = TRUE) {
}
}
## spatial extent check
if(min(dat$long) < 180){
if(min(dat$long) < -200){
showPlot <- FALSE
warning("longitude should have a minimum of -180 for plotting to work. disabling plots.")
}
Expand Down

0 comments on commit 9f65689

Please sign in to comment.