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 8a3817c1d [DOCS] Enable markdownlint rule `MD004` (#1329)
8a3817c1d is described below
commit 8a3817c1d090e3769d96e3303a490cff96a53ecf
Author: John Bampton <[email protected]>
AuthorDate: Thu Apr 11 07:09:12 2024 +1000
[DOCS] Enable markdownlint rule `MD004` (#1329)
https://github.com/DavidAnson/markdownlint/blob/main/doc/md004.md
---
.github/linters/.markdown-lint.yml | 3 ---
docs/api/sql/Raster-operators.md | 12 ++++++------
docs/setup/release-notes.md | 20 ++++++++++----------
3 files changed, 16 insertions(+), 19 deletions(-)
diff --git a/.github/linters/.markdown-lint.yml
b/.github/linters/.markdown-lint.yml
index 528372441..222927aa5 100644
--- a/.github/linters/.markdown-lint.yml
+++ b/.github/linters/.markdown-lint.yml
@@ -3,9 +3,6 @@
# heading-increment - Heading levels should only increment by one level at a
time
MD001: false
-# ul-style - Unordered list style
-MD004: false
-
# ul-indent - Unordered list indentation
MD007: false
diff --git a/docs/api/sql/Raster-operators.md b/docs/api/sql/Raster-operators.md
index 85d63904e..6be9238cb 100644
--- a/docs/api/sql/Raster-operators.md
+++ b/docs/api/sql/Raster-operators.md
@@ -1295,9 +1295,9 @@ The convex hull of the raster is considered in the test.
Rules for testing spatial relationship:
-* If the raster or geometry does not have a defined SRID, it is assumed to be
in WGS84.
-* If both sides are in the same CRS, then perform the relationship test
directly.
-* Otherwise, both sides will be transformed to WGS84 before the relationship
test.
+- If the raster or geometry does not have a defined SRID, it is assumed to be
in WGS84.
+- If both sides are in the same CRS, then perform the relationship test
directly.
+- Otherwise, both sides will be transformed to WGS84 before the relationship
test.
Format:
@@ -2260,9 +2260,9 @@ NODATA values. If raster band(s) do not have NODATA
value(s) specified, one can
The returned records have the following schema:
-* `x`: The index of the tile along X axis (0-based).
-* `y`: The index of the tile along Y axis (0-based).
-* `tile`: The tile.
+- `x`: The index of the tile along X axis (0-based).
+- `y`: The index of the tile along Y axis (0-based).
+- `tile`: The tile.
SQL example:
diff --git a/docs/setup/release-notes.md b/docs/setup/release-notes.md
index 93d8a51e7..5b053fab3 100644
--- a/docs/setup/release-notes.md
+++ b/docs/setup/release-notes.md
@@ -686,19 +686,19 @@ This version is a major release on Sedona 1.3.0 line and
consists of 50 PRs. It
### Highlights
-- [X] Sedona on Spark in this release is compiled against Spark 3.3.
-- [X] Sedona on Flink in this release is compiled against Flink 1.14.
-- [X] Scala 2.11 support is removed.
-- [X] Spark 2.X support is removed.
-- [X] Python 3.10 support is added.
-- [X] Aggregators in Flink are added
-- [X] Correctness fixes for corner cases in range join and distance join.
-- [X] Native GeoParquet read and write (../../tutorial/sql/#load-geoparquet).
+* [X] Sedona on Spark in this release is compiled against Spark 3.3.
+* [X] Sedona on Flink in this release is compiled against Flink 1.14.
+* [X] Scala 2.11 support is removed.
+* [X] Spark 2.X support is removed.
+* [X] Python 3.10 support is added.
+* [X] Aggregators in Flink are added
+* [X] Correctness fixes for corner cases in range join and distance join.
+* [X] Native GeoParquet read and write (../../tutorial/sql/#load-geoparquet).
* `df = spark.read.format("geoparquet").option("fieldGeometry",
"myGeometryColumn").load("PATH/TO/MYFILE.parquet")`
* `df.write.format("geoparquet").save("PATH/TO/MYFILE.parquet")`
-- [X] DataFrame style API (../../tutorial/sql/#dataframe-style-api)
+* [X] DataFrame style API (../../tutorial/sql/#dataframe-style-api)
* `df.select(ST_Point(min_value, max_value).as("point"))`
-- [X] Allow WKT format CRS in ST_Transform
+* [X] Allow WKT format CRS in ST_Transform
* `ST_Transform(geom, "srcWktString", "tgtWktString")`
```yaml