This is an automated email from the ASF dual-hosted git repository. jiayu pushed a commit to branch branch-0.1.0 in repository https://gitbox.apache.org/repos/asf/sedona-db.git
commit 46d5268a5344519185f727868196c86450622f31 Author: Kelly-Ann Dolor <[email protected]> AuthorDate: Fri Sep 19 13:46:56 2025 -0700 removing query sections for Rust and SQL and changing GH Discussions link (#113) --- docs/index.md | 25 ++----------------------- 1 file changed, 2 insertions(+), 23 deletions(-) diff --git a/docs/index.md b/docs/index.md index 6f45db2..6d71d1d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -58,16 +58,10 @@ Here's how to install SedonaDB with various build tools: install.packages("sedonadb", repos = "https://community.r-multiverse.org") ``` -## Run a query in SQL, Python, Rust, or R +## Run a query SedonaDB offers a flexible query interface. -=== "SQL" - - ```sql - SELECT ST_Point(0, 1) as geom - ``` - === "Python" ```python @@ -77,20 +71,6 @@ SedonaDB offers a flexible query interface. sd.sql("SELECT ST_Point(0, 1) as geom") ``` -=== "Rust" - - ```Rust - use datafusion::prelude::* - use sedona::context{SedonaContext, SedonaDataFrame}; - - let ctx = SedonaContext::new_local_interactive().await?; - let batches = ctx - .sql("SELECT ST_Point(0, 1) as geom") - .await? - .show_sedona(&cts, None, Default::default()) - .await?; - ``` - === "R" ```r @@ -99,9 +79,8 @@ SedonaDB offers a flexible query interface. sd_sql("SELECT ST_Point(0, 1) as geom") ``` - ## Have questions? -Start a [GitHub Discussion](https://github.com/apache/sedona-db/issues) or join the [Discord community](https://discord.com/invite/9A3k5dEBsY) and ask the developers any questions you may have. +Start a [GitHub Discussion](https://github.com/apache/sedona/discussions) or join the [Discord community](https://discord.com/invite/9A3k5dEBsY) and ask the developers any questions you may have. We look forward to collaborating with you!
