Interface RasterBandStatisticsExperimental

interface RasterBandStatistics {
    band: number;
    count: number;
    histogram: readonly RasterHistogramBin[];
    max?: number;
    mean?: number;
    min?: number;
    noDataCount: number;
}

Properties

band: number
count: number
histogram: readonly RasterHistogramBin[]
max?: number
mean?: number
min?: number
noDataCount: number