Skip to content

Commit c01d145

Browse files
committed
fix: R CMD Checks
1 parent 81d6ac8 commit c01d145

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

R/importNOAA.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -970,14 +970,14 @@ getDatFwf <- function(code, year, hourly, precip, PWC) {
970970
dat <- dat |>
971971
dplyr::mutate(
972972
cl = ifelse(
973-
(is.na(cl_1) & ceil_hgt == 22000),
973+
(is.na(.data$cl_1) & .data$ceil_hgt == 22000),
974974
0,
975-
cl
975+
.data$cl
976976
),
977977
cl_1 = ifelse(
978-
(is.na(cl_1) & ceil_hgt == 22000),
978+
(is.na(.data$cl_1) & .data$ceil_hgt == 22000),
979979
0,
980-
cl_1
980+
.data$cl_1
981981
)
982982
)
983983

0 commit comments

Comments
 (0)