Hi,
I'm looking for a way to use the reclassify tool but higher end of the lower input range needs to be exclusive. To be clear, these are my intervals
Unfortunately, all the documentation I find seems to suggest that all the tools in ArcGIS Pro that deal with reclassification work on the opposite way, meaning that the higher end is always inclusive. Like this:
Is there a simple solution to bypass that? I considered creating a script (because of course my intervals maybe not always be the same) but it seems a lot of work. I can't bring myself to believe ESRI does not have a tool to allow more control over the way we reclassify...
Kind regards,
Is it float or integer data? I don't think there's a button-click type setting solution to it. I may be oversimplifying but is there anything against setting the range just below that max range (bearing in mind the decimal precision of your numbers/data), then altering the labels in the legend?
0 - 19.9999
20 - 39.9999
40 - Max
This is not a solution for me...
What if my data had 15 decimals of precision?
Probably a series of Con() statements are needed in raster Calculator then to be sure. Something like.
Con(("Raster" >= 0) & ("Raster" < 20), 1)
Con(("Raster" >= 20) & ("Raster" < 40), 2)
Con("Raster" >= 40, 3)
well then I guess there is no easy way to do this. The example below would work but then, what if I need 25 intervals? I don't even want to start thinking about the length of the formula 😱
Let's cross our fingers ESRI might come up with a solution one day!