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

imbruced pushed a change to branch sedona-arrow-udf-example
in repository https://gitbox.apache.org/repos/asf/sedona.git


 discard e2bccb7e8e Update .github/workflows/java.yml
 discard 1f8288769e SEDONA-721 Add documentation
 discard 7b11281141 SEDONA-721 Add documentation
 discard bd3a649be4 SEDONA-721 Add documentation
 discard 131622ada6 SEDONA-721 Add Sedona vectorized udf.
     add c33b457c83 [SEDONA-726] Fix ST_Force_2D and add ST_Force2D (#1876)
     add 84146249db [DOCS] Update the Databricks doc to reflect issues on DBR 
16 (#1877)
     add 221592d656 [DOCS] Re-enable GitHub discussion due to ASF Infra change 
(#1878)
     add 7d832f2597 [DOCS] Add notification target for GitHub Discussions 
(#1879)
     add 718fa5b57a [SEDONA-704] Add the grid extension to the stac reader 
(#1883)
     add defb6348d3 [CI] pre-commit(scala): auto add and standardize license 
headers (#1880)
     add 4967a19c83 [DOCS] Fix case / spelling (#1882)
     add e2545244ff [DOCS] Format Python Markdown codeblocks with black (#1881)
     add 34874ca1b8 [CI] pre-commit(insert-license): fix bug in comment markers 
for .c and .h (#1884)
     add 1d9a595f17 [CI] Add prettier pre-commit hook and format YAML files 
(#1716)
     add 969a7ce4cb [DOCS] Fix spelling in Java code
     add 141a36829f [CI] Update CODEOWNERS add @jbampton for pre-commit config 
(#1891)
     add 286a61089f SEDONA-721 Add Sedona vectorized udf.
     add f281ede99a SEDONA-721 Add documentation
     add 932c8ade64 SEDONA-721 Add documentation
     add 2749a74412 SEDONA-721 Add documentation
     add 264305a2af Update .github/workflows/java.yml
     add d5b9f5f163 SEDONA-721 Apply requested changes.
     add 6277cbd2c5 SEDONA-721 Apply requested changes.

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (e2bccb7e8e)
            \
             N -- N -- N   refs/heads/sedona-arrow-udf-example (6277cbd2c5)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .asf.yaml                                          |  69 +++++------
 .github/CODEOWNERS                                 |   3 +-
 .github/linters/.yaml-lint.yml                     |   1 +
 .github/workflows/docker-build.yml                 |   4 +-
 .github/workflows/docs.yml                         |   2 +-
 .github/workflows/first-interaction.yml            |   4 +-
 .github/workflows/labeler.yml                      |   2 +-
 .github/workflows/lint.yml                         |  12 +-
 .github/workflows/python.yml                       |  10 +-
 .github/workflows/r.yml                            |   2 +-
 .pre-commit-config.yaml                            |  53 +++++++--
 .prettierignore                                    |   9 ++
 .prettierrc                                        |   4 +
 R/_pkgdown.yml                                     |  30 ++---
 .../java/org/apache/sedona/common/Functions.java   |   2 +-
 .../sedona/common/raster/RasterBandAccessors.java  |   4 +-
 ...former.java => GeometryForce2DTransformer.java} |  22 ++--
 .../org/apache/sedona/common/FunctionsTest.java    |  75 ++++++++++++
 docs/api/flink/Function.md                         |  22 +++-
 docs/api/snowflake/vector-data/Function.md         |  26 ++++-
 docs/api/sql/Function.md                           |  22 +++-
 docs/community/contact.md                          |   2 +-
 docs/setup/databricks.md                           |   7 +-
 docs/tutorial/concepts/spatial-joins.md            |   6 +-
 docs/tutorial/files/geojson-sedona-spark.md        |  14 ++-
 docs/tutorial/files/geopackage-sedona-spark.md     |  12 +-
 docs/tutorial/files/geoparquet-sedona-spark.md     |  21 ++--
 docs/tutorial/files/shapefiles-sedona-spark.md     |  20 ++--
 docs/tutorial/files/stac-sedona-spark.md           |   1 +
 docs/tutorial/sql.md                               |  17 ++-
 examples/spark-sql/src/main/scala/RddExample.scala |  26 +++--
 examples/spark-sql/src/main/scala/SqlExample.scala |  26 +++--
 examples/spark-sql/src/main/scala/VizExample.scala |  26 +++--
 .../main/java/org/apache/sedona/flink/Catalog.java |   1 +
 .../apache/sedona/flink/expressions/Functions.java |  10 ++
 .../java/org/apache/sedona/flink/FunctionTest.java |  13 ++-
 mkdocs.yml                                         |   4 +-
 python/sedona/sql/functions.py                     |  90 +++++++++++---
 python/sedona/sql/st_functions.py                  |  12 ++
 python/tests/sql/test_dataframe_api.py             |   2 +
 python/tests/sql/test_function.py                  |  15 ++-
 python/tests/utils/test_pandas_arrow_udf.py        | 129 +++++++++++++++++----
 .../scala/org/apache/sedona/sql/UDF/Catalog.scala  |   1 +
 .../org/apache/sedona/sql/UDF/PythonEvalType.scala |   1 +
 .../sql/sedona_sql/expressions/Functions.scala     |  13 +++
 .../sql/sedona_sql/expressions/st_functions.scala  |   3 +
 .../sql/sedona_sql/io/stac/StacExtension.scala     |  57 +++++++++
 .../spark/sql/sedona_sql/io/stac/StacUtils.scala   |  69 ++++++++++-
 .../resources/datasource_stac/extended-item.json   |   3 +-
 .../sedona_sql/io/stac/StacDataSourceTest.scala    | 120 ++++++++++++-------
 .../spark/sql/udf/ExtractSedonaUDFRule.scala       |   2 +
 .../apache/spark/sql/udf/SedonaArrowStrategy.scala |   8 +-
 .../org/apache/spark/sql/udf/StrategySuite.scala   |   2 +-
 53 files changed, 856 insertions(+), 255 deletions(-)
 create mode 100644 .prettierignore
 create mode 100644 .prettierrc
 copy 
common/src/main/java/org/apache/sedona/common/utils/{GeometryForce3DTransformer.java
 => GeometryForce2DTransformer.java} (74%)
 create mode 100644 
spark/common/src/main/scala/org/apache/spark/sql/sedona_sql/io/stac/StacExtension.scala

Reply via email to