I have a raster file with classifcation codes, and want to reclassify valid codes to 1, and all others to 'NoData'.
RMAP2 = arcpy.sa.RemapValue([[3.2, 1],
[4.1, 1],
[4.2, 1]])
LCA = arcpy.sa.Reclassify(LCA, "LCCODE_USE", RMAP2, "NODATA")
The output however only contains the values 0 and 127, with the 0 value coinciding with just one of the missing values.
Any idea what the hell is going on?