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 1ce83b419a [DOCS] Fix typos in Markdown and Python files (#2631)
1ce83b419a is described below
commit 1ce83b419a6d21eac5f45a5983613067997c4f4c
Author: John Bampton <[email protected]>
AuthorDate: Tue Feb 10 15:15:59 2026 +1000
[DOCS] Fix typos in Markdown and Python files (#2631)
---
docs/tutorial/snowflake/sql.md | 2 +-
python/sedona/spark/geoarrow/geoarrow.py | 2 +-
python/tests/sql/test_function.py | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/tutorial/snowflake/sql.md b/docs/tutorial/snowflake/sql.md
index e9fd9d03c8..7d0b2ae29c 100644
--- a/docs/tutorial/snowflake/sql.md
+++ b/docs/tutorial/snowflake/sql.md
@@ -485,7 +485,7 @@ rights AS (
)
)
),
--- compute s2 cells covering the polyons for both tables
+-- compute s2 cells covering the polygons for both tables
-- S2 discretizes the polygons, hence higher resolution yields more accurate
queries, at the cost of increased computation
-- both tables need to be discretized at the same level - in this case 10
lefts_s2 AS (
diff --git a/python/sedona/spark/geoarrow/geoarrow.py
b/python/sedona/spark/geoarrow/geoarrow.py
index 8e7fd73cd9..1c8a949dc5 100644
--- a/python/sedona/spark/geoarrow/geoarrow.py
+++ b/python/sedona/spark/geoarrow/geoarrow.py
@@ -200,7 +200,7 @@ def unique_srid_from_ewkb(obj):
return None
# WKB Z high byte is 0x80
- # WKB M high byte is is 0x40
+ # WKB M high byte is 0x40
# EWKB SRID high byte is 0x20
# High bytes where the SRID is set would be
# [0x20, 0x20 | 0x40, 0x20 | 0x80, 0x20 | 0x40 | 0x80]
diff --git a/python/tests/sql/test_function.py
b/python/tests/sql/test_function.py
index 00915c13e1..031978032d 100644
--- a/python/tests/sql/test_function.py
+++ b/python/tests/sql/test_function.py
@@ -2424,7 +2424,7 @@ class TestPredicateJoin(TestBase):
actual = actualDf.selectExpr("ST_NRings(geom)").take(1)[0][0]
assert expected == actual
- def test_trangulatePolygon(self):
+ def test_triangulatePolygon(self):
baseDf = self.spark.sql(
"SELECT ST_GeomFromWKT('POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0), (5
5, 5 8, 8 8, 8 5, 5 5))') as poly"
)