Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cv_spatial fails with misleading message when r doesn't overlap #52

Open
AMBarbosa opened this issue Feb 21, 2025 · 1 comment
Open

Comments

@AMBarbosa
Copy link

Using one of the examples from the function help file, and an example raster layer:

points <- read.csv(system.file("extdata/", "species.csv", package = "blockCV"))
pa_data <- sf::st_as_sf(points, coords = c("x", "y"), crs = 7845)

library(terra)
r <- rast(ext(pa_data), crs = crs(pa_data))
values(r) <- 1:ncell(r)
plot(r)

sb1 <- cv_spatial(x = pa_data,
                  column = "occ",
                  size = 450000,
                  k = 5,
                  selection = "random",
                  iteration = 50,
                  r = r)

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!

@rvalavi
Copy link
Owner

rvalavi commented Feb 24, 2025

Hi @AMBarbosa, thank you for the issue and suggesstion.
I'll add a specific error for this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants