I have 6 tiff file in ArcGIS which are identical in term of geometry (same frame, same number of row and column). The pixel value of each tiff file is integer and range from 1 to 4.
So if I overlay them on top of each other, for each pixel I will have 6 DN number (think like an RGB color composite). Now I need an output raster with pixel value that take the smallest number in the stack. So for 2 pixel that have 123456 and 334662 it will take 1 and 2 as output respectively.
I would like to do it in Python but if it can be done via Raster Calculator or ModelBuilder it would also be good.