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 2021/05/26 03:22:24 UTC

[incubator-sedona] branch master updated: Fix the deadlinks on the website

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 567e421  Fix the deadlinks on the website
567e421 is described below

commit 567e421015cc0bfbf18be9446fae3013686853f5
Author: Jia Yu <ji...@apache.org>
AuthorDate: Tue May 25 20:22:12 2021 -0700

    Fix the deadlinks on the website
---
 docs/download/overview.md                                | 4 ++--
 docs/download/release-notes.md                           | 2 +-
 docs/tutorial/Advanced-Tutorial-Tune-your-Application.md | 2 +-
 docs/tutorial/rdd.md                                     | 2 +-
 docs/tutorial/viz.md                                     | 6 +++---
 docs/tutorial/zeppelin.md                                | 4 ++--
 zeppelin/package.json                                    | 2 +-
 7 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/docs/download/overview.md b/docs/download/overview.md
index 0f56a4a..2a7b079 100644
--- a/docs/download/overview.md
+++ b/docs/download/overview.md
@@ -20,11 +20,11 @@ Sedona Python is tested on the following Python and Spark verisons:
 
 ## Direct download
 
-[Release notes](../GeoSpark-All-Modules-Release-notes)
+[Release notes](../release-notes)
 
 Latest source code: [GitHub repository](https://github.com/apache/incubator-sedona/).
 
-Release source code and binary jars: [GitHub releases](https://github.com/apache/incubator-sedona/releases), [Maven Central](../GeoSpark-All-Modules-Maven-Central-Coordinates).
+Release source code and binary jars: [GitHub releases](https://github.com/apache/incubator-sedona/releases), [Maven Central](../maven-coordinates).
 
 Automatically generated binary JARs (per each Master branch commit): [GitHub Action](https://github.com/apache/incubator-sedona/actions?query=workflow%3A%22Scala+and+Java+build%22).
 
diff --git a/docs/download/release-notes.md b/docs/download/release-notes.md
index 8fdd563..1a6231d 100644
--- a/docs/download/release-notes.md
+++ b/docs/download/release-notes.md
@@ -62,7 +62,7 @@ Key dependency upgrade:
 
 Key dependency packaging strategy change:
 
-* JTS, GeoTools, jts2geojson are no longer packaged in Sedona jars. End users need to add them manually. See [here](../GeoSpark-All-Modules-Maven-Central-Coordinates).
+* JTS, GeoTools, jts2geojson are no longer packaged in Sedona jars. End users need to add them manually. See [here](../maven-coordinates).
 
 Key compilation target change:
 
diff --git a/docs/tutorial/Advanced-Tutorial-Tune-your-Application.md b/docs/tutorial/Advanced-Tutorial-Tune-your-Application.md
index 1910239..19099ed 100644
--- a/docs/tutorial/Advanced-Tutorial-Tune-your-Application.md
+++ b/docs/tutorial/Advanced-Tutorial-Tune-your-Application.md
@@ -6,7 +6,7 @@ The versions of Sedona have three levels: X.X.X (i.e., 0.8.1)
 
 The first level means that this version contains big structure redesign which may bring big changes in APIs and performance.
 
-The second level (i.e., 0.8) indicates that this version contains significant performance enhancement, big new features and API changes. An old Sedona user who wants to pick this version needs to be careful about the API changes. Before you move to this version, please read [Sedona version release notes](/download/GeoSpark-All-Modules-Release-notes/) and make sure you are ready to accept the API changes.
+The second level (i.e., 0.8) indicates that this version contains significant performance enhancement, big new features and API changes. An old Sedona user who wants to pick this version needs to be careful about the API changes. Before you move to this version, please read [Sedona version release notes](/download/release-notes/) and make sure you are ready to accept the API changes.
 
 The third level (i.e., 0.8.1) tells that this version only contains bug fixes, some small new features and slight performance enhancement. This version will not contain any API changes. Moving to this version is safe. We highly suggest all Sedona users that stay at the same level move to the latest version in this level.
 
diff --git a/docs/tutorial/rdd.md b/docs/tutorial/rdd.md
index 2d9c384..f5924ec 100644
--- a/docs/tutorial/rdd.md
+++ b/docs/tutorial/rdd.md
@@ -175,7 +175,7 @@ System.setProperty("sedona.global.charset", "utf8")
 
 #### From SparkSQL DataFrame
 
-To create a generic SpatialRDD from CSV, TSV, WKT, WKB and GeoJSON input formats, you can use SedonaSQL. Make sure you include ==the full dependencies== of Sedona. Read [SedonaSQL API](../api/sql/Overview).
+To create a generic SpatialRDD from CSV, TSV, WKT, WKB and GeoJSON input formats, you can use SedonaSQL. Make sure you include ==the full dependencies== of Sedona. Read [SedonaSQL API](../../api/sql/Overview).
 
 We use [checkin.csv CSV file](#pointrdd-from-csvtsv) as the example. You can create a generic SpatialRDD using the following steps:
 
diff --git a/docs/tutorial/viz.md b/docs/tutorial/viz.md
index 91d4680..2d95229 100644
--- a/docs/tutorial/viz.md
+++ b/docs/tutorial/viz.md
@@ -5,7 +5,7 @@ SedonaViz provides native support for general cartographic design by extending S
 SedonaViz offers Map Visualization SQL. This gives users a more flexible way to design beautiful map visualization effects including scatter plots and heat maps. SedonaViz RDD API is also available.
 
 !!!note
-	All SedonaViz SQL/DataFrame APIs are explained in [SedonaViz API](../api/viz/sql). Please see [Viz exmaple project](https://github.com/apache/incubator-sedona/tree/master/examples/viz)
+	All SedonaViz SQL/DataFrame APIs are explained in [SedonaViz API](../../api/viz/sql). Please see [Viz exmaple project](https://github.com/apache/incubator-sedona/tree/master/examples/viz)
 
 ## Why scalable map visualization?
 
@@ -70,7 +70,7 @@ SELECT ST_Point(cast(pointtable._c0 as Decimal(24,20)),cast(pointtable._c1 as De
 FROM pointtable
 ```
 
-As you know, Sedona provides many different methods to load various spatial data formats. Please read [Write an Spatial DataFrame application](sql).
+As you know, Sedona provides many different methods to load various spatial data formats. Please read [Write an Spatial DataFrame application](../sql).
 
 ## Generate a single image
 
@@ -133,7 +133,7 @@ SELECT pixel, ST_Colorize(weight, (SELECT max(weight) FROM pixelaggregates)) as
 FROM pixelaggregates
 ```
 
-Please read [ST_Colorize](../api/viz/sql/#st_colorize) for a detailed API description.
+Please read [ST_Colorize](../../api/viz/sql/#st_colorize) for a detailed API description.
 
 ### Render the image
 
diff --git a/docs/tutorial/zeppelin.md b/docs/tutorial/zeppelin.md
index 5a218f8..443e247 100644
--- a/docs/tutorial/zeppelin.md
+++ b/docs/tutorial/zeppelin.md
@@ -1,4 +1,4 @@
-Sedona provides a Helium visualization plugin tailored for [Apache Zeppelin](). This finally bridges the gap between Sedona and Zeppelin.  Please read [Install Sedona-Zeppelin](../download/zeppelin/) to learn how to install this plugin in Zeppelin.
+Sedona provides a Helium visualization plugin tailored for [Apache Zeppelin](). This finally bridges the gap between Sedona and Zeppelin.  Please read [Install Sedona-Zeppelin](../../download/zeppelin/) to learn how to install this plugin in Zeppelin.
 
 Sedona-Zeppelin equips two approaches to visualize spatial data in Zeppelin. The first approach uses Zeppelin to plot all spatial objects on the map. The second one leverages SedonaViz to generate map images and overlay them on maps.
 
@@ -31,7 +31,7 @@ Select the geometry column to visualize:
 
 ## Large-scale with SedonaViz
 
-SedonaViz is a distributed visualization system that allows you to visualize big spatial data at scale. Please read [How to use SedonaViz](viz).
+SedonaViz is a distributed visualization system that allows you to visualize big spatial data at scale. Please read [How to use SedonaViz](../viz).
 
 You can use Sedona-Zeppelin to ask Zeppelin to overlay SedonaViz images on a map background. This way, you can easily visualize 1 billion spatial objects or more (depends on your cluster size).
 
diff --git a/zeppelin/package.json b/zeppelin/package.json
index 63060fc..41c079d 100644
--- a/zeppelin/package.json
+++ b/zeppelin/package.json
@@ -2,7 +2,7 @@
   "name": "sedona-zeppelin",
   "description": "Zeppelin visualization support for Sedona",
   "author": "Apache Sedona, original authors are listed on https://github.com/myuwono/zeppelin-leaflet",
-  "version": "1.0.0",
+  "version": "1.0.1",
   "main": "index.js",
   "scripts": {
     "test": "echo \"Error: no test specified\" && exit 1",