You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OK. However, if the user inadvertently provides a raster layer that does not overlap the points, there's a misleading error message which complains instead about the block size:
r2 <- shift(r, dx = 1e100, dy = 1e100)
sb2 <- cv_spatial(x = pa_data,
column = "occ",
size = 450000,
k = 5,
selection = "random",
iteration = 50,
r = r2)
| | 0%Could not create spatial blocks! possibly because of using a very small block size.
Remember, size is in metres not the unit of the CRS.
Error in .make_blocks(x_obj = if (is.null(r)) x else r, blocksize = size, :
object 'fishnet_poly' not found
The function could just check if 'r' overlaps the study region, and if not, just ignore 'r' with a warning message; but still produce the spatial blocks, which should not depend on 'r' at all.
It would also be helpful if these messages were preceded by a line break \n, so that they don't glue to the progress bar.
Cheers!
The text was updated successfully, but these errors were encountered:
Using one of the examples from the function help file, and an example raster layer:
OK. However, if the user inadvertently provides a raster layer that does not overlap the points, there's a misleading error message which complains instead about the block size:
The function could just check if 'r' overlaps the study region, and if not, just ignore 'r' with a warning message; but still produce the spatial blocks, which should not depend on 'r' at all.
It would also be helpful if these messages were preceded by a line break
\n
, so that they don't glue to the progress bar.Cheers!
The text was updated successfully, but these errors were encountered: