Skip to content

Instantly share code, notes, and snippets.

@mdsumner
Last active March 19, 2025 02:19
Show Gist options
  • Save mdsumner/044a9b4257543c3e1302297fcbfd9222 to your computer and use it in GitHub Desktop.
Save mdsumner/044a9b4257543c3e1302297fcbfd9222 to your computer and use it in GitHub Desktop.
library(terra)
a <- vect(cbind(c(0, 1), c(2, 3, 4)), type = "l")

## imagine we have an independently specificed raster, and this line falls in it somewhere
r <- extend(rast(a, res = .05), 1)

(cell <- cells(r, a))

##so we can do 
plot(a); points(xyFromCell(r, cell[, "cell", drop = TRUE]))
plot(as.polygons(crop(r, a)), add = TRUE, border = "red")


Note that the actual cell value is a unique that raster, that combination of xmin,xmax,ymin,ymax,ncol,nrow and nothing else.

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment