Skip to content

Commit 8dcd715

Browse files
committed
fixes #930
1 parent f16fc58 commit 8dcd715

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

R/focal.R

+5-1
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,11 @@ function(x, w=3, fun="ols", ..., fillvalue=NA, filename="", overwrite=FALSE, wop
578578
outnl <- funopt$nl
579579
} else {
580580
# need to test
581-
#outnl <-
581+
out <- fun(1:msz, sample(msz))
582+
outnl <- length(out)
583+
if (is.null(wopt$names) && (length(names(out)) == outnl)) {
584+
wopt$names <- names(out)
585+
}
582586
}
583587
out <- rast(x, nlyr=outnl)
584588

0 commit comments

Comments
 (0)