This is an automated email from the ASF dual-hosted git repository. jiayu pushed a commit to branch branch-1.8.1 in repository https://gitbox.apache.org/repos/asf/sedona.git
commit 40c1dd2b8449c7a4cc76a313128cea34bf016766 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 74bd28ef07..0ce53d2d63 100644 --- a/python/tests/sql/test_function.py +++ b/python/tests/sql/test_function.py @@ -2421,7 +2421,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" )
