Take the 2-minute tour ×
Geographic Information Systems Stack Exchange is a question and answer site for cartographers, geographers and GIS professionals. It's 100% free, no registration required.

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.

share|improve this question

1 Answer 1

up vote 2 down vote accepted

I think you need to use the Cell Statistics tool, you can set which statistic you wish to compute, in your case MINIMUM.

share|improve this answer
    
This is exactly what I need. Thanks a lot. Any further suggestion on a python method (for the shake of learning) is still much appreciated. –  anh.hv Oct 9 '13 at 9:19
2  
anh.hv if some has given a solution to your question you should tick it as answered to let others know and award reputation points. –  Hornbydd Oct 9 '13 at 9:27
    
just tick the accepted answer. Thanks again. –  anh.hv Oct 9 '13 at 15:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.