Round Raster to next higher or lower int
Int(yourraster + 0.5)
will round to the nearest integer.
For rasters that may contain negative values:
Con(yourraster < 0, Int(yourraster - 0.5), Int(yourraster + 0.5))
Int(yourraster + 0.5)
will round to the nearest integer.
For rasters that may contain negative values:
Con(yourraster < 0, Int(yourraster - 0.5), Int(yourraster + 0.5))