This is an automated email from the ASF dual-hosted git repository. jiayu pushed a commit to branch fix/2408-zonal-stats-docs in repository https://gitbox.apache.org/repos/asf/sedona.git
commit bbb1ba21b4786702b0acea390b5749d97b1e6b97 Author: Jia Yu <[email protected]> AuthorDate: Sat Feb 7 01:24:46 2026 -0800 docs(RS_ZonalStats): fix incorrect 4-arg function signature The docs listed a non-existent signature: RS_ZonalStats(raster, zone, statType, allTouched) The actual 4-arg signature (matching the Java code) is: RS_ZonalStats(raster, zone, band, statType) Fixes #2408 --- docs/api/sql/Raster-operators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/sql/Raster-operators.md b/docs/api/sql/Raster-operators.md index e456cc0693..2408ded8cf 100644 --- a/docs/api/sql/Raster-operators.md +++ b/docs/api/sql/Raster-operators.md @@ -1200,7 +1200,7 @@ RS_ZonalStats(raster: Raster, zone: Geometry, band: Integer, statType: String, a ``` ``` -RS_ZonalStats(raster: Raster, zone: Geometry, statType: String, allTouched: Boolean) +RS_ZonalStats(raster: Raster, zone: Geometry, band: Integer, statType: String) ``` ```
