The number of pixels excluding pixels with NaN.
The smallest value (minimum) among the values of all pixels.
The largest value (maximum) among the values of all pixels.
The sum of the values of all pixels.
The mean of the values of all pixels (sum / size).
The standard deviation of the values of all pixels (√( Σ((x - mean)^2) / size )).
The median of the values of all pixels.
Computes the statistics of the data. Pixels with
NaNare not included in the statistics. Note that this calculation does not take into account the difference in area per pixel on the actual Earth's surface. This simplified calculation is fine when the latitude-longitude range is sufficiently narrow and the difference in area per pixel can be ignored, but to perform a rigorous evaluation on data with a wide latitude-longitude range where there are differences in area per pixel, use globalStat.Also, for data other than
dataObject.photometricInterpretation = 1, statistical calculations such as the mean have no meaning, so no valid numerical value other thansizecan be retrieved.