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

Using the win argument when reading in multiple files results in: [rast] extents do not match #1589

Open
Rapsodia86 opened this issue Aug 23, 2024 · 0 comments

Comments

@Rapsodia86
Copy link

Hi Robert!
I am not sure if that is an issue, or the expected behavior. If the latter, then I take it back!
I do have many files that I want to load as a raster stack. They have slightly different extents. To handle that, I would use the "win" argument in rast(), to "internally crop" the data and load up.

If I do this in a loop, everything is ok.
But if I use a vector of file names, then the error shows up: Error: [rast] extents do not match.

Does that mean rast() first stacks all the rasters and then applies the "win"? Or it should be that it takes each object separately (like in a loop), applies the "win" and then stacks?

Below is a small example with only two files: (terra dev version)

library(terra)
terra 1.7.79
> aoi_ext <- ext(c(633138, 634573, 4694581, 4697348))
> rasts <- c("X:/MYDIR/HLS_S30_sr_evi2_doy2023342_aid0001_16N.tif", "X:/MYDIR/HLS_S30_sr_evi2_doy2023347_aid0001_16N.tif")
> 
> rstack <- rast(rasts,win=aoi_ext)
Error: [rast] extents do not match

##Here one by one works!:

> rstack <- rast()
> for (ff in rasts){
+   rstack <- c(rstack,rast(ff,win=aoi_ext))
+ }
Warning message:
[rast] the first raster was empty and was ignored 
> rstack
class       : SpatRaster 
dimensions  : 92, 47, 2  (nrow, ncol, nlyr)
resolution  : 30, 30  (x, y)
window      : 633150, 634560, 4694580, 4697340  (xmin, xmax, ymin, ymax)
coord. ref. : WGS 84 / UTM zone 16N (EPSG:32616) 
sources     : HLS_S30_sr_evi2_doy2023342_aid0001_16N.tif  
              HLS_S30_sr_evi2_doy2023347_aid0001_16N.tif  
names       : HLS_S30_sr_evi2~342_aid0001_16N, HLS_S30_sr_evi2~347_aid0001_16N 
sessionInfo()
R version 4.4.0 (2024-04-24 ucrt)
Platform: x86_64-w64-mingw32/x64
Running under: Windows 10 x64 (build 19045)

Matrix products: default


locale:
[1] LC_COLLATE=English_United States.utf8 
[2] LC_CTYPE=English_United States.utf8   
[3] LC_MONETARY=English_United States.utf8
[4] LC_NUMERIC=C                          
[5] LC_TIME=English_United States.utf8    

time zone: America/New_York
tzcode source: internal

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
[1] terra_1.7-79

loaded via a namespace (and not attached):
[1] compiler_4.4.0   tools_4.4.0      Rcpp_1.0.12      codetools_0.2-20

Thanks!

win_terra_rspatial_test.zip

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

1 participant