I'm reclassifying the original raster file three times to produce three different new raster files. Original raster attribute table:Rowid; Value; Count0; 1; 6096245421; 2; 8545401052; 3; 167276779I used the Value field to reclass it once to 1, 0, 0, and NoData to 0. Did a second reclass to 0, 1, 0, and NoData to 0 and then a third reclass to 0, 0, 1, and NoData to 0.
Mel, I think the Raster Calculator tool would be a more straight-forward approach as you can use the IsNull and Con tools together like this: Con(IsNull("inraster"), 0, Con("inraster" == 1, 1, 0)) Con(IsNull("inraster"), 0, Con("inraster" == 2, 1, 0)) Con(IsNull("inraster"), 0, Con("inraster" == 3, 1, 0))
And it looks like I can use the 'Single Output Map Algebra' tool to place this in ModelBuilder.
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.