Skip to content

Commit

Permalink
[DOCS] Enable markdownlint rule MD038 (#1629)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbampton authored Oct 13, 2024
1 parent fa37cb9 commit 0b9dd43
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .github/linters/.markdown-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ MD034: false
# no-emphasis-as-heading - Emphasis used instead of a heading
MD036: false

# no-space-in-code - Spaces inside code span elements
MD038: false

# fenced-code-language - Fenced code blocks should have a language specified
MD040: false

Expand Down
2 changes: 1 addition & 1 deletion docs/api/sql/Optimizer.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ WHERE ST_DistanceSpheroid(pointdf1.pointshape1,pointdf2.pointshape2) <= 2
```

!!!warning
If you use `ST_DistanceSpheroid ` or `ST_DistanceSphere` as the predicate, the unit of the distance is meter. Currently, distance join with geodesic distance calculators work best for point data. For non-point data, it only considers their centroids.
If you use `ST_DistanceSpheroid` or `ST_DistanceSphere` as the predicate, the unit of the distance is meter. Currently, distance join with geodesic distance calculators work best for point data. For non-point data, it only considers their centroids.

## Broadcast index join

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/rdd.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ A generic SpatialRDD is not typed to a certain geometry type and open to more sc

#### From WKT/WKB

Geometries in a WKT and WKB file always occupy a single column no matter how many coordinates they have. Sedona provides `WktReader ` and `WkbReader` to create generic SpatialRDD.
Geometries in a WKT and WKB file always occupy a single column no matter how many coordinates they have. Sedona provides `WktReader` and `WkbReader` to create generic SpatialRDD.

Suppose we have a `checkin.tsv` WKT TSV file at Path `/Download/checkin.tsv` as follows:

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/snowflake/sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ SELECT Sedona.ST_GeomFromWKT(wkt) AS geom, city_name
FROM city_tbl
```

The `geom` column Table `city_tbl_geom ` is now in a `Binary` type and data in this column is in a format that can be understood by Sedona. The output of this query will show geometries in WKB binary format like this:
The `geom` column Table `city_tbl_geom` is now in a `Binary` type and data in this column is in a format that can be understood by Sedona. The output of this query will show geometries in WKB binary format like this:

```
GEOM CITY_NAME
Expand Down

0 comments on commit 0b9dd43

Please sign in to comment.