This is an automated email from the ASF dual-hosted git repository. jiayu pushed a commit to branch geography-doc in repository https://gitbox.apache.org/repos/asf/sedona.git
commit 65072b7c88e081d95bf6f36b964759e0bbfaf783 Author: Jia Yu <[email protected]> AuthorDate: Wed Aug 6 13:27:52 2025 -0700 Add Geography function template --- docs/api/sql/geography/AggregateFunction.md | 18 ++++++++++++++++++ docs/api/sql/geography/Constructor.md | 20 ++++++++++++++++++++ docs/api/sql/geography/Function.md | 18 ++++++++++++++++++ docs/api/sql/geography/Predicate.md | 18 ++++++++++++++++++ docs/blog/.vscode/ltex.dictionary.en-US.txt | 3 --- docs/blog/posts/.vscode/ltex.dictionary.en-US.txt | 3 --- mkdocs.yml | 14 ++++++++++---- 7 files changed, 84 insertions(+), 10 deletions(-) diff --git a/docs/api/sql/geography/AggregateFunction.md b/docs/api/sql/geography/AggregateFunction.md new file mode 100644 index 0000000000..ef14affc68 --- /dev/null +++ b/docs/api/sql/geography/AggregateFunction.md @@ -0,0 +1,18 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + --> diff --git a/docs/api/sql/geography/Constructor.md b/docs/api/sql/geography/Constructor.md new file mode 100644 index 0000000000..e106bea8d1 --- /dev/null +++ b/docs/api/sql/geography/Constructor.md @@ -0,0 +1,20 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + --> + +## ST_GeogFromWKT diff --git a/docs/api/sql/geography/Function.md b/docs/api/sql/geography/Function.md new file mode 100644 index 0000000000..ef14affc68 --- /dev/null +++ b/docs/api/sql/geography/Function.md @@ -0,0 +1,18 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + --> diff --git a/docs/api/sql/geography/Predicate.md b/docs/api/sql/geography/Predicate.md new file mode 100644 index 0000000000..ef14affc68 --- /dev/null +++ b/docs/api/sql/geography/Predicate.md @@ -0,0 +1,18 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + --> diff --git a/docs/blog/.vscode/ltex.dictionary.en-US.txt b/docs/blog/.vscode/ltex.dictionary.en-US.txt deleted file mode 100644 index 960824593a..0000000000 --- a/docs/blog/.vscode/ltex.dictionary.en-US.txt +++ /dev/null @@ -1,3 +0,0 @@ -Lakehouse -RBAC -Lakehouses diff --git a/docs/blog/posts/.vscode/ltex.dictionary.en-US.txt b/docs/blog/posts/.vscode/ltex.dictionary.en-US.txt deleted file mode 100644 index 9700f695e2..0000000000 --- a/docs/blog/posts/.vscode/ltex.dictionary.en-US.txt +++ /dev/null @@ -1,3 +0,0 @@ -Lakehouse -atomicity -Lakehouses diff --git a/mkdocs.yml b/mkdocs.yml index 02cf474803..b78e5c6f99 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -92,10 +92,16 @@ nav: - SQL: - Quick start: api/sql/Overview.md - Vector data: - - Constructor: api/sql/Constructor.md - - Function: api/sql/Function.md - - Predicate: api/sql/Predicate.md - - Aggregate function: api/sql/AggregateFunction.md + - Geometry type: + - Constructor: api/sql/Constructor.md + - Function: api/sql/Function.md + - Predicate: api/sql/Predicate.md + - Aggregate function: api/sql/AggregateFunction.md + - Geography type: + - Constructor: api/sql/geography/Constructor.md + - Function: api/sql/geography/Function.md + - Predicate: api/sql/geography/Predicate.md + - Aggregate function: api/sql/geography/AggregateFunction.md - DataFrame Style functions: api/sql/DataFrameAPI.md - Query optimization: api/sql/Optimizer.md - Nearest-Neighbour searching: api/sql/NearestNeighbourSearching.md
