Skip to main content
This returns a statistic value specified by statType over the region of interest defined by zone. It computes the statistic from the pixel values within the ROI geometry and returns the result. If the excludeNoData parameter is not specified, it will default to true. This excludes NoData values from the statistic calculation. Additionally, if the band parameter is not provided, band 1 will be used by default for the statistic computation. The valid options for statType are: The allTouched parameter (Since v1.7.1) determines how pixels are selected:
  • When true, any pixel touched by the geometry will be included.
  • When false (default), only pixels whose centroid intersects with the geometry will be included.
RS_ZonalStats_allTouched
  • count: Number of pixels in the region.
  • sum: Sum of pixel values.
  • mean|average|avg: Arithmetic mean.
  • median: Middle value in the region.
  • mode: Most occurring value, if there are multiple values with same occurrence then will return the largest number.
  • stddev|sd: Standard deviation.
  • variance: Variance.
  • min: Minimum value in the region.
  • max: Maximum value in the region.
If the coordinate reference system (CRS) of the input zone geometry differs from that of the raster, then zone will be transformed to match the CRS of the raster before computation.The following conditions will throw an IllegalArgumentException if they are not met:
  • The provided raster and zone geometry should intersect when lenient parameter is set to false.
  • The option provided to statType should be valid.
lenient parameter is set to true by default. The function will return null if the raster and zone geometry do not intersect.
RS_ZonalStats

Signatures

RS_ZonalStats(raster: Raster, zone: Geometry, band: Integer, statType: String, allTouched: Boolean, excludeNoData: Boolean, lenient: Boolean)
RS_ZonalStats(raster: Raster, zone: Geometry, band: Integer, statType: String, allTouched: Boolean, excludeNoData: Boolean)
RS_ZonalStats(raster: Raster, zone: Geometry, band: Integer, statType: String, allTouched: Boolean)
RS_ZonalStats(raster: Raster, zone: Geometry, band: Integer, statType: String)
RS_ZonalStats(raster: Raster, zone: Geometry, statType: String)

Parameters

raster
Raster
required
The input raster.
zone
Geometry
required
The zone value.
band
Integer
The band index.
statType
String
required
The stat type value.
allTouched
Boolean
The all touched value.
excludeNoData
Boolean
The exclude no data value.
lenient
Boolean
The lenient value.

Return type

A numeric value.

Examples

RS_ZonalStats(rast1, geom1, 1, 'sum', true, false)
10690406
RS_ZonalStats(rast2, geom2, 1, 'mean', false, true)
226.55992667794473