This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/sedona-db.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 93b061e  Deployed 11fefbd to latest-snapshot with MkDocs 1.6.1 and 
mike 2.1.3
93b061e is described below

commit 93b061e82a1eec3bbbdd5a9ace816d9abbeeb3cf
Author: GitHub Actions <[email protected]>
AuthorDate: Wed Oct 8 04:36:24 2025 +0000

    Deployed 11fefbd to latest-snapshot with MkDocs 1.6.1 and mike 2.1.3
---
 latest-snapshot/reference/python/index.html | 37 ++++++++++++++++++++++++++++-
 latest-snapshot/search/search_index.json    |  2 +-
 2 files changed, 37 insertions(+), 2 deletions(-)

diff --git a/latest-snapshot/reference/python/index.html 
b/latest-snapshot/reference/python/index.html
index cc954a1..ba6e8be 100644
--- a/latest-snapshot/reference/python/index.html
+++ b/latest-snapshot/reference/python/index.html
@@ -3052,6 +3052,8 @@ column with a spatial data type (in that order).</p>
     <span class="n">partition_by</span><span class="p">:</span> <span 
class="n"><a class="autorefs autorefs-external" title="typing.Optional" 
href="https://docs.python.org/3/library/typing.html#typing.Optional";>Optional</a></span><span
 class="p">[</span><span class="n"><a class="autorefs autorefs-external" 
title="typing.Union" 
href="https://docs.python.org/3/library/typing.html#typing.Union";>Union</a></span><span
 class="p">[</span><span class="n"><a class="autorefs autorefs-external" hre 
[...]
     <span class="n">sort_by</span><span class="p">:</span> <span class="n"><a 
class="autorefs autorefs-external" title="typing.Optional" 
href="https://docs.python.org/3/library/typing.html#typing.Optional";>Optional</a></span><span
 class="p">[</span><span class="n"><a class="autorefs autorefs-external" 
title="typing.Union" 
href="https://docs.python.org/3/library/typing.html#typing.Union";>Union</a></span><span
 class="p">[</span><span class="n"><a class="autorefs autorefs-external" 
href="ht [...]
     <span class="n">single_file_output</span><span class="p">:</span> <span 
class="n"><a class="autorefs autorefs-external" title="typing.Optional" 
href="https://docs.python.org/3/library/typing.html#typing.Optional";>Optional</a></span><span
 class="p">[</span><span class="n"><a class="autorefs autorefs-external" 
href="https://docs.python.org/3/library/functions.html#bool";>bool</a></span><span
 class="p">]</span> <span class="o">=</span> <span class="kc">None</span><span 
class="p">,</span>
+    <span class="n">geoparquet_version</span><span class="p">:</span> <span 
class="n"><a class="autorefs autorefs-external" title="typing.Literal" 
href="https://docs.python.org/3/library/typing.html#typing.Literal";>Literal</a></span><span
 class="p">[</span><span class="s2">"1.0"</span><span class="p">,</span> <span 
class="s2">"1.1"</span><span class="p">]</span> <span class="o">=</span> <span 
class="s2">"1.0"</span><span class="p">,</span>
+    <span class="n">overwrite_bbox_columns</span><span class="p">:</span> 
<span class="n"><a class="autorefs autorefs-external" 
href="https://docs.python.org/3/library/functions.html#bool";>bool</a></span> 
<span class="o">=</span> <span class="kc">False</span><span class="p">,</span>
 <span class="p">)</span>
 </code></pre></div>
 
@@ -3060,7 +3062,8 @@ column with a spatial data type (in that order).</p>
         <p>Write this DataFrame to one or more (Geo)Parquet files</p>
 <p>For input that contains geometry columns, GeoParquet metadata is written
 such that suitable readers can recreate Geometry/Geography types when
-reading the output.</p>
+reading the output and potentially read fewer row groups when only a
+subset of the file is needed for a given query.</p>
 
 
 <p><span class="doc-section-title">Parameters:</span></p>
@@ -3108,6 +3111,38 @@ a single file is written if <code>partition_by</code> is 
unspecified and
 <code>path</code> ends with <code>.parquet</code>.</p>
           </div>
         </li>
+        <li class="doc-section-item field-body">
+            <b><code>geoparquet_version</code></b>
+              (<code><a class="autorefs autorefs-external" 
title="typing.Literal" 
href="https://docs.python.org/3/library/typing.html#typing.Literal";>Literal</a>['1.0',
 '1.1']</code>, default:
+                  <code>'1.0'</code>
+)
+          –
+          <div class="doc-md-description">
+            <p>GeoParquet metadata version to write if output contains
+one or more geometry columns. The default (1.0) is the most widely
+supported and will result in geometry columns being recognized in many
+readers; however, only includes statistics at the file level.</p>
+<p>Use GeoParquet 1.1 to compute an additional bounding box column
+for every geometry column in the output: some readers can use these columns
+to prune row groups when files contain an effective spatial ordering.
+The extra columns will appear just before their geometry column and
+will be named "[geom_col_name]_bbox" for all geometry columns except
+"geometry", whose bounding box column name is just "bbox".</p>
+          </div>
+        </li>
+        <li class="doc-section-item field-body">
+            <b><code>overwrite_bbox_columns</code></b>
+              (<code><a class="autorefs autorefs-external" 
href="https://docs.python.org/3/library/functions.html#bool";>bool</a></code>, 
default:
+                  <code>False</code>
+)
+          –
+          <div class="doc-md-description">
+            <p>Use <code>True</code> to overwrite any bounding box columns
+that already exist in the input. This is useful in a read -&gt; modify
+-&gt; write scenario to ensure these columns are up-to-date. If 
<code>False</code>
+(the default), an error will be raised if a bbox column already exists.</p>
+          </div>
+        </li>
     </ul>
         <p>Examples:</p>
 <div class="codehilite"><pre><span></span><code><span 
class="o">&gt;&gt;&gt;</span> <span class="kn">import</span><span class="w"> 
</span><span class="nn">tempfile</span>
diff --git a/latest-snapshot/search/search_index.json 
b/latest-snapshot/search/search_index.json
index 3834ce6..3856c94 100644
--- a/latest-snapshot/search/search_index.json
+++ b/latest-snapshot/search/search_index.json
@@ -1 +1 @@
-{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["stopWordFilter"]},"docs":[{"location":"","title":"Introducing
 SedonaDB","text":"<p>SedonaDB is an open-source single-node analytical 
database engine with geospatial as a first-class citizen. It aims to deliver 
the fastest spatial analytics query speed and the most comprehensive function 
coverage available.</p> <p>SedonaDB is perfect for processing smaller to medium 
datasets on local machines or cloud instances. For distributed [...]
\ No newline at end of file
+{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["stopWordFilter"]},"docs":[{"location":"","title":"Introducing
 SedonaDB","text":"<p>SedonaDB is an open-source single-node analytical 
database engine with geospatial as a first-class citizen. It aims to deliver 
the fastest spatial analytics query speed and the most comprehensive function 
coverage available.</p> <p>SedonaDB is perfect for processing smaller to medium 
datasets on local machines or cloud instances. For distributed [...]
\ No newline at end of file

Reply via email to