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/sedona.git
The following commit(s) were added to refs/heads/master by this push:
new 6e4091af [DOCS] Fix typos in 1.4.0 docs
6e4091af is described below
commit 6e4091afe836735dbc6203e630ba33939402a603
Author: Jia Yu <[email protected]>
AuthorDate: Mon Mar 20 20:12:18 2023 -0700
[DOCS] Fix typos in 1.4.0 docs
---
R/README.md | 2 +-
docs/download.md | 2 +-
docs/setup/maven-coordinates.md | 2 +-
docs/setup/release-notes.md | 4 ++--
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/R/README.md b/R/README.md
index 2883f690..e50f644b 100644
--- a/R/README.md
+++ b/R/README.md
@@ -28,7 +28,7 @@ devtools::install_github("apache/sedona/R")
To get the latest Sedona jars you can:
-* **Compile the Sedona code yourself**, see [Compile the
code](../../setup/compile/)
+* **Compile the Sedona code yourself**, see [Compile the
code](https://sedona.apache.org/latest-snapshot/setup/compile/)
* **Get the latest generated jars** from the [GitHub 'Java build'
action](https://github.com/apache/sedona/actions/workflows/java.yml); click on
the latest run, the generated jars are at the bottom of the page
The path to the sedona-spark-shaded and sedona-viz jars needs to be put in the
`SEDONA_JAR_FILES` environment variables (see below).
diff --git a/docs/download.md b/docs/download.md
index 9fc26e7d..b5b16a69 100644
--- a/docs/download.md
+++ b/docs/download.md
@@ -6,7 +6,7 @@ Old GeoSpark releases: [GitHub
releases](https://github.com/apache/sedona/releas
Automatically generated binary JARs (per each Master branch commit): [GitHub
Action](https://github.com/apache/sedona/actions/workflows/java.yml)
-## Verify the integ1.4.0rity
+## Verify the integrity
[Public keys](https://downloads.apache.org/sedona/KEYS)
diff --git a/docs/setup/maven-coordinates.md b/docs/setup/maven-coordinates.md
index 90f8faf7..9227975f 100644
--- a/docs/setup/maven-coordinates.md
+++ b/docs/setup/maven-coordinates.md
@@ -210,7 +210,7 @@ The optional GeoTools library is required if you want to
use CRS transformation,
</dependency>
<dependency>
<groupId>org.apache.sedona</groupId>
- <artifactId>sedona-flink-3.0_2.12</artifactId>
+ <artifactId>sedona-flink_2.12</artifactId>
<version>{{ sedona.current_version }}</version>
</dependency>
<dependency>
diff --git a/docs/setup/release-notes.md b/docs/setup/release-notes.md
index 69fc9edb..fa607fc5 100644
--- a/docs/setup/release-notes.md
+++ b/docs/setup/release-notes.md
@@ -19,7 +19,7 @@ Sedona 1.4.0 is compiled against, Spark 3.3 / Flink 1.12,
Java 8.
### API change
-* **Sedona Spark & Flink** Packaging strategy changed. See [Maven
Coordinate](../maven-coordinates). Please change your Sedona dependencies if
needed. We recommend `sedona-spark-shaded-3.0_2.12-1.4.0` and
`sedona-flink-shaded-3.0_2.12-1.4.0`
+* **Sedona Spark & Flink** Packaging strategy changed. See [Maven
Coordinate](../maven-coordinates). Please change your Sedona dependencies if
needed. We recommend `sedona-spark-shaded-3.0_2.12-1.4.0` and
`sedona-flink-shaded_2.12-1.4.0`
* **Sedona Spark & Flink** GeoTools-wrapper version upgraded. Please use
`geotools-wrapper-1.4.0-28.2`.
### Behavior change
@@ -30,7 +30,7 @@ Sedona 1.4.0 is compiled against, Spark 3.3 / Flink 1.12,
Java 8.
* `none`: disable spatial join optimization.
* `nonequi`: only enable spatial join optimization on non-equi joins.
This is the default mode.
-When `sedona.join.optimizationmode` is configured as `nonequi`, it won't
optimize join queries such as `SELECT * FROM A, B WHERE A.x = B.x AND
ST_Contains(A.geom, B.geom)`, since it is an equi-join with equi-condition `A.x
= B.x`. Sedona will optimize for `SELECT * FROM A, B WHERE A.x = B.x AND
ST_Contains(A.geom, B.geom)`
+When `sedona.join.optimizationmode` is configured as `nonequi`, it won't
optimize join queries such as `SELECT * FROM A, B WHERE A.x = B.x AND
ST_Contains(A.geom, B.geom)`, since it is an equi-join with equi-condition `A.x
= B.x`. Sedona will optimize for `SELECT * FROM A, B WHERE ST_Contains(A.geom,
B.geom)`
### Bug