You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sedona.apache.org by ji...@apache.org on 2022/01/11 00:00:42 UTC

[incubator-sedona] branch master updated: [DOCS] Fix a typo in Raster doc

This is an automated email from the ASF dual-hosted git repository.

jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-sedona.git


The following commit(s) were added to refs/heads/master by this push:
     new 6ec547b  [DOCS] Fix a typo in Raster doc
6ec547b is described below

commit 6ec547baf267111127dd4fa9c5d78e6c37b40884
Author: Jia Yu <ji...@apache.org>
AuthorDate: Mon Jan 10 16:00:33 2022 -0800

    [DOCS] Fix a typo in Raster doc
---
 docs/api/sql/Raster-operators.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/api/sql/Raster-operators.md b/docs/api/sql/Raster-operators.md
index a401ba0..ccb5677 100644
--- a/docs/api/sql/Raster-operators.md
+++ b/docs/api/sql/Raster-operators.md
@@ -1,15 +1,15 @@
-## RS_AddBand
+## RS_AddBands
 
 Introduction: Add two spectral bands in a Geotiff image 
 
-Format: `RS_AddBand (Band1: Array[Double], Band2: Array[Double])`
+Format: `RS_AddBands (Band1: Array[Double], Band2: Array[Double])`
 
 Since: `v1.1.0`
 
 Spark SQL example:
 ```Scala
 
-val sumDF = spark.sql("select RS_Add(band1, band2) as sumOfBands from dataframe")
+val sumDF = spark.sql("select RS_AddBands(band1, band2) as sumOfBands from dataframe")
 
 ```
 
@@ -306,4 +306,4 @@ Since: `v1.1.0`
 Spark SQL example
 ```SQL
 SELECT RS_Normalize(band)
-```
\ No newline at end of file
+```