I want to calculate the range sequence, the Python script as follow:
- #ndvi_R = CellStatistics(RList, "RANGE", "DATA")the results are 0, but when I run as follows, it's correct.
- ndvi_MAX = CellStatistics(RList, "MAXIMUM", "DATA")
ndvi_MIN = CellStatistics(RList, "MINIMUM", "DATA")
ndvi_R = ndvi_MAX - ndvi_MIN