Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOCS] Enable markdownlint rule MD004 #1329

Merged
merged 1 commit into from
Apr 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading