bleutner / RStoolbox

Remote Sensing Data Analysis in R 🛰
260 stars 82 forks source link

Allow fitting models on raster stacks of differing extents #82

Open ailich opened 2 years ago

ailich commented 2 years ago

Sometimes I'd like to fit a single model using superClass or unsuperClass on several disjointed areas where I have raster data of the same variables. The way I've done this is the past for supervised classification is to sample each raster at the training points to create a single dataframe, then fit the model in caret, and the use raster::predict on each raster individually. It would be nice however if this could be done directly in RSToolbox and perhaps with the upgrade to terra you could include SpatRasterDatasets as a supported input which is essentially like having a list of rasters/raster stacks that can be of differing extents.

bleutner commented 2 years ago

makes sense, yes. I've been reworking large parts of superClass and will consider this suggestion. Also SpatRasterDatasets seems like a good input structure I wasn't aware of.

ailich commented 2 years ago

Thanks!

ailich commented 2 years ago

I was actually mistaken about the differing extents. I tried using a SpatRasterDataset instead of a list of rasters and got "Error: [sds] extents do not match ()".