I have a set of rasters that overlap pixel by pixel, one of the rasters has more rows and columns than the others, however the position of pixels matches when they're superposed.
I have created a Mosaic Dataset which I have loaded with the raster files in question, however when I use the different Spatial Analysis Tools in ArcGIS Pro like Summary Statistics I got a "Failed to calculated statistics" message.
How do I generate a raster or an attribute table that contains the pixel values in each of the overlapping rasters? (please see desired output):
| PIXEL_ID | value_raster1 | value_raster2 | value_raster3 | value_raster4 |
|---|---|---|---|---|
| 0 | 4 | NULL | NULL | NULL |
| 1 | 4 | NULL | NULL | NULL |
| 2 | 1 | 2 | 4 | 3 |
| 3 | 2 | 1 | 3 | 4 |
| 4 | 3 | 3 | 2 | 1 |
| 5 | 4 | 4 | 1 | 3 |
| n | x | y | z | m |
as one of my rasters has more cells than the others, I expect to have some null pixel values for certain of the rasters.