Skip to content

Commit

Permalink
[DOCS] Enable markdownlint rule MD004 (#1329)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbampton authored Apr 10, 2024
1 parent 8c2bc71 commit 8a3817c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 19 deletions.
3 changes: 0 additions & 3 deletions .github/linters/.markdown-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
12 changes: 6 additions & 6 deletions docs/api/sql/Raster-operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down Expand Up @@ -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:

Expand Down
20 changes: 10 additions & 10 deletions docs/setup/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8a3817c

Please sign in to comment.