Skip to content

Commit

Permalink
fix copy/paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
paleolimbot committed Oct 22, 2023
1 parent 852a5e8 commit c4753fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ S3method(grd_tile,wk_grd_rct)
S3method(grd_tile,wk_grd_xy)
S3method(is.na,wk_rcrd)
S3method(is.na,wk_wkb)
S3method(is.na,wk_xy)
S3method(length,wk_rcrd)
S3method(names,wk_rcrd)
S3method(plot,wk_crc)
Expand Down
2 changes: 1 addition & 1 deletion R/xyzm.R
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ format.wk_xyzm <- function(x, ...) {
}

#' @export
is.na.wk_rcrd <- function(x, ...) {
is.na.wk_xy <- function(x, ...) {
is_na <- Reduce("&", lapply(unclass(x), is.na))
is_nan <- Reduce("&", lapply(unclass(x), is.nan))
is_na & !is_nan
Expand Down

0 comments on commit c4753fc

Please sign in to comment.