I have a raster called "aspect" and I want to add 360 to every cells which have a current value lower than 100.
How can I do this using raster calculator?
-
1desktop.arcgis.com/en/arcmap/10.3/tools/spatial-analyst-toolbox/…Dan C– Dan C2018年04月05日 19:04:59 +00:00Commented Apr 5, 2018 at 19:04
1 Answer 1
Using raster calculator assuming you have the spatial analyst extension, you can input the expression:
Con(YourRas, YourRas+360, YourRas, "VALUE<100")
The structure is Con(InputRaster, ValueIfTrue, ValueIfFalse, ConditionalStatement).
See Dan C's reference for more uses of the conditional tool.
Explore related questions
See similar questions with these tags.