Calculate pixel value in arcmap
Calculate pixel value in arcmap
I want to change pixel values of elevation data. I want to change values meter to feet. So i need to multiply pixel values with 3.2808. How can i do that in arcmap?
2 Answers
2
You will be able to do the calculations using the Raster Calculator with the following syntax:
float("DEM_raster" * 3.2808)
This will ensure the calculations are floating point accuracy rather than integer.
Also Times tool can be use for the calculation.
https://support.esri.com/en/technical-article/000012381
Thanks for contributing an answer to Geographic Information Systems Stack Exchange!
But avoid …
To learn more, see our tips on writing great answers.
Required, but never shown
Required, but never shown
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.