This is an automated email from the ASF dual-hosted git repository.
jiayu pushed a commit to branch website
in repository https://gitbox.apache.org/repos/asf/sedona.git
The following commit(s) were added to refs/heads/website by this push:
new 45581e515 Deployed 24c10ea70 to latest-snapshot with MkDocs 1.5.2 and
mike 1.1.2
45581e515 is described below
commit 45581e515eeea02c0dec2c45d961b62c808e93c2
Author: Jia Yu <[email protected]>
AuthorDate: Sun Jan 21 21:29:19 2024 -0800
Deployed 24c10ea70 to latest-snapshot with MkDocs 1.5.2 and mike 1.1.2
---
latest-snapshot/.DS_Store | Bin 8196 -> 8196 bytes
latest-snapshot/setup/snowflake/install/index.html | 18 +++++++++---------
latest-snapshot/sitemap.xml.gz | Bin 127 -> 127 bytes
3 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/latest-snapshot/.DS_Store b/latest-snapshot/.DS_Store
index c662964c6..43f7035e5 100644
Binary files a/latest-snapshot/.DS_Store and b/latest-snapshot/.DS_Store differ
diff --git a/latest-snapshot/setup/snowflake/install/index.html
b/latest-snapshot/setup/snowflake/install/index.html
index 6381ef0d2..3f8f6b8ea 100644
--- a/latest-snapshot/setup/snowflake/install/index.html
+++ b/latest-snapshot/setup/snowflake/install/index.html
@@ -3706,9 +3706,9 @@
<h2 id="step-1-create-a-stage-in-the-database">Step 1: Create a stage in the
database<a class="headerlink" href="#step-1-create-a-stage-in-the-database"
title="Permanent link">¶</a></h2>
<p>A stage is a Snowflake object that maps to a location in a cloud storage
provider, such as Amazon S3, Azure Blob Storage, or Google Cloud Storage. You
can use a stage to load data into a table, or unload data from a table.</p>
<p>In this case, we will create a stage named <code>ApacheSedona</code> in the
<code>public</code> schema of the database created in the previous step. The
stage will be used to load Sedona's JAR files into the database. We will choose
a <code>Snowflake managed</code> stage.</p>
-<p><img alt="Create Stage" src="../../../../image/snowflake/snowflake-1.png"
/></p>
+<p><img src="./../../../image/snowflake/snowflake-1.png"></p>
<p>After creating the stage, you should be able to see the stage in the
database.</p>
-<p><img alt="Stage Details" src="../../../../image/snowflake/snowflake-2.png"
/></p>
+<p><img src="./../../../image/snowflake/snowflake-2.png"></p>
<p>You can refer to <a
href="https://docs.snowflake.com/en/sql-reference/sql/create-stage.html">Snowflake
Documentation</a> to how to create a stage.</p>
<h2 id="step-2-upload-sedonas-jar-files-to-the-stage">Step 2: Upload Sedona's
JAR files to the stage<a class="headerlink"
href="#step-2-upload-sedonas-jar-files-to-the-stage" title="Permanent
link">¶</a></h2>
<p>You will need to download the following 2 JAR files:</p>
@@ -3718,14 +3718,14 @@
</ul>
<p>Then you can upload the 2 JAR files to the stage created in the previous
step.</p>
<p>After uploading the 2 JAR files, you should be able to see the 2 JAR files
in the stage.</p>
-<p><img alt="JAR Details" src="../../../../image/snowflake/snowflake-3.png"
/></p>
+<p><img src="./../../../image/snowflake/snowflake-3.png"></p>
<p>You can refer to <a
href="https://docs.snowflake.com/en/sql-reference/sql/put.html">Snowflake
Documentation</a> to how to upload files to a stage.</p>
<h2 id="step-3-create-a-schema-in-the-database">Step 3: Create a schema in the
database<a class="headerlink" href="#step-3-create-a-schema-in-the-database"
title="Permanent link">¶</a></h2>
<p>A schema is a Snowflake object that maps to a database. You can use a
schema to organize your tables into groups based on business functions or other
categories.</p>
<p>In this case, we will create a schema named <code>SEDONA</code> in the
database created in the previous step. The schema will be used to create
Sedona's functions.</p>
-<p><img alt="Create Schema" src="../../../../image/snowflake/snowflake-4.png"
/></p>
+<p><img src="./../../../image/snowflake/snowflake-4.png"></p>
<p>You can find your schema in the database as follows:</p>
-<p><img alt="Schema Details" src="../../../../image/snowflake/snowflake-5.png"
/></p>
+<p><img src="./../../../image/snowflake/snowflake-5.png"></p>
<p>You can refer to <a
href="https://docs.snowflake.com/en/sql-reference/sql/create-schema.html">Snowflake
Documentation</a> to how to create a schema.</p>
<h2 id="step-4-get-the-sql-script-for-creating-sedonas-functions">Step 4: Get
the SQL script for creating Sedona's functions<a class="headerlink"
href="#step-4-get-the-sql-script-for-creating-sedonas-functions"
title="Permanent link">¶</a></h2>
<p>You will need to download <a
href="../../../../image/snowflake/sedona-snowflake.sql">sedona-snowflake.sql</a>
to create Sedona's functions in the schema created in the previous step.</p>
@@ -3736,9 +3736,9 @@
<h2 id="step-5-run-the-sql-script-to-create-sedonas-functions">Step 5: Run the
SQL script to create Sedona's functions<a class="headerlink"
href="#step-5-run-the-sql-script-to-create-sedonas-functions" title="Permanent
link">¶</a></h2>
<p>We will create a worksheet in the database created in the previous step,
and run the SQL script to create Sedona's functions.</p>
<p>In this case, we will choose the option <code>Create Worksheet from SQL
File</code>.</p>
-<p><img alt="Create Worksheet"
src="../../../../image/snowflake/snowflake-6.png" /></p>
+<p><img src="./../../../image/snowflake/snowflake-6.png"></p>
<p>In the worksheet, choose <code>SEDONA_TEST</code> as the database, and
<code>PUBLIC</code> as the schema. The SQL script should be in the worksheet.
Then right click the worksheet and choose <code>Run All</code>. Snowflake will
take 3 minutes to create Sedona's functions.</p>
-<p><img alt="Worksheet" src="../../../../image/snowflake/snowflake-7.png"
/></p>
+<p><img src="./../../../image/snowflake/snowflake-7.png"></p>
<h2 id="step-6-verify-the-installation">Step 6: Verify the installation<a
class="headerlink" href="#step-6-verify-the-installation" title="Permanent
link">¶</a></h2>
<p>Open a new worksheet, choose <code>SEDONA_TEST</code> as the database, and
any schema as the schema. Then run the following SQL statement:</p>
<div class="highlight"><pre><span></span><code><span
class="k">SELECT</span><span class="w"> </span><span
class="n">SEDONA</span><span class="p">.</span><span
class="n">ST_AsEWKT</span><span class="p">(</span><span
class="n">SEDONA</span><span class="p">.</span><span
class="n">ST_SETSRID</span><span class="p">(</span><span
class="n">SEDONA</span><span class="p">.</span><span
class="n">ST_POINT</span><span class="p">(</span><span class="mi">1</span><span
class="p">,</span><span class="w"> [...]
@@ -3747,14 +3747,14 @@
<div class="highlight"><pre><span></span><code>SRID=4326;POINT (1 2)
</code></pre></div>
<p>The worksheet should look like this:</p>
-<p><img alt="Worksheet" src="../../../../image/snowflake/snowflake-8.png"
/></p>
+<p><img src="./../../../image/snowflake/snowflake-8.png"></p>
<hr>
<div class="md-source-file">
<small>
Last update:
- <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime">January 13, 2024 10:01:29</span>
+ <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime">January 21, 2024 20:59:39</span>
</small>
diff --git a/latest-snapshot/sitemap.xml.gz b/latest-snapshot/sitemap.xml.gz
index 972d072c9..a68498475 100644
Binary files a/latest-snapshot/sitemap.xml.gz and
b/latest-snapshot/sitemap.xml.gz differ