Imbruced opened a new issue, #2408:
URL: https://github.com/apache/sedona/issues/2408

   In the Sedona docs, there is a Zonal Stats SQL signature that does not exist 
in the code.
   
   ```
   RS_ZonalStats(raster: Raster, zone: Geometry, statType: String, allTouched: 
Boolean)
   ```
   
   The closest one is the following.
   
   ```java
   getZonalStats(GridCoverage2D raster, Geometry roi, int band, String 
statType, boolean allTouched)
   ```
   
   The functions that we have 
   
   java
   ```
   getZonalStats(GridCoverage2D raster, Geometry roi, int band, String 
statType, boolean allTouched, boolean excludeNoData, boolean lenient)
   getZonalStats(GridCoverage2D raster, Geometry roi, int band, String 
statType, boolean allTouched, boolean excludeNoData)
   getZonalStats(GridCoverage2D raster, Geometry roi, int band, String 
statType, boolean allTouched)
   getZonalStats(GridCoverage2D raster, Geometry roi, int band, String statType)
   getZonalStats(GridCoverage2D raster, Geometry roi, String statType)
   ```
   
   We need to implement the function signature from docs or remove or adjust it
   
   cc: @jiayuasu 
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to