This is an automated email from the ASF dual-hosted git repository.
jiayu pushed a change to branch support-spark-4.1
in repository https://gitbox.apache.org/repos/asf/sedona.git
omit 6b145398e9 [GH-2609] Support Spark 4.1
omit 6766d14ca5 [GH-2645] Fix GitHub Actions workflow policy violation by
replacing pull_request_target with pull_request
add a91c940504 [GH-2645] Fix GitHub Actions workflow policy violation in
Pull Request Labeler (#2648)
add 7c6c76885d [GH-2610] Integrate proj4sedona for CRS transformation
(#2647)
add b54b976e1d [GH-2609] Support Spark 4.1
add 2a23a99381 Remove Spark 4.1 from example CI
add 3c621e5712 Fix docs and CI: remove Scala 2.12 tabs for Spark 4.1, fix
Python compatibility table, refine CI matrices
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 (6b145398e9)
\
N -- N -- N refs/heads/support-spark-4.1 (3c621e5712)
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:
.github/workflows/docker-build.yml | 5 +-
.github/workflows/example.yml | 4 -
.github/workflows/java.yml | 13 +-
.github/workflows/python.yml | 41 -
.pre-commit-config.yaml | 2 +-
common/pom.xml | 5 +
.../org/apache/sedona/common/Constructors.java | 18 +-
.../java/org/apache/sedona/common/Functions.java | 4 +-
.../org/apache/sedona/common/FunctionsProj4.java | 194 +++++
.../common/FunctionsProj4PerformanceTest.java | 349 +++++++++
.../apache/sedona/common/FunctionsProj4Test.java | 576 ++++++++++++++
common/src/test/resources/grids/ca_nrc_ntv2_0.tif | Bin 0 -> 7784410 bytes
common/src/test/resources/grids/us_noaa_conus.tif | Bin 0 -> 173029 bytes
docs/api/flink/Function.md | 57 +-
docs/api/snowflake/vector-data/Function.md | 23 +-
docs/api/sql/CRS-Transformation.md | 285 +++++++
docs/api/sql/Function.md | 59 +-
docs/api/sql/Parameter.md | 11 +
docs/setup/maven-coordinates.md | 33 +-
docs/setup/platform.md | 6 +-
flink/pom.xml | 5 +
.../main/java/org/apache/sedona/flink/Catalog.java | 2 +-
...{FunctionsGeoTools.java => FunctionsProj4.java} | 66 +-
.../java/org/apache/sedona/flink/FunctionTest.java | 47 +-
mkdocs.yml | 1 +
pom.xml | 7 +
python/tests/sql/test_dataframe_api.py | 3 +-
.../streaming/spark/test_constructor_functions.py | 2 +-
.../sedona/snowflake/snowsql/TestFunctions.java | 2 +-
.../sedona/snowflake/snowsql/TestFunctionsV2.java | 2 +-
snowflake/pom.xml | 5 +
.../sedona/snowflake/snowsql/GeoToolsWrapper.java | 43 --
.../org/apache/sedona/snowflake/snowsql/UDFs.java | 5 +-
.../apache/sedona/snowflake/snowsql/UDFsV2.java | 5 +-
.../org/apache/sedona/core/utils/SedonaConf.java | 67 ++
.../sql/sedona_sql/expressions/Functions.scala | 62 +-
.../src/test/resources/grids/ca_nrc_ntv2_0.tif | Bin 0 -> 7784410 bytes
.../uk_os_OSTN15_NTv2_ETRStoOSGB.gsb} | Bin 12301436 -> 15240384
bytes
.../uk_os_OSTN15_NTv2_OSGBtoETRS.gsb} | Bin 12301436 -> 15240384
bytes
.../src/test/resources/grids/us_noaa_conus.tif | Bin 0 -> 173029 bytes
.../apache/sedona/sql/CRSTransformProj4Test.scala | 858 +++++++++++++++++++++
.../apache/sedona/sql/dataFrameAPITestScala.scala | 4 +-
.../org/apache/sedona/sql/functionTestScala.scala | 10 +-
43 files changed, 2557 insertions(+), 324 deletions(-)
create mode 100644
common/src/main/java/org/apache/sedona/common/FunctionsProj4.java
create mode 100644
common/src/test/java/org/apache/sedona/common/FunctionsProj4PerformanceTest.java
create mode 100644
common/src/test/java/org/apache/sedona/common/FunctionsProj4Test.java
create mode 100644 common/src/test/resources/grids/ca_nrc_ntv2_0.tif
create mode 100644 common/src/test/resources/grids/us_noaa_conus.tif
create mode 100644 docs/api/sql/CRS-Transformation.md
copy
flink/src/main/java/org/apache/sedona/flink/expressions/{FunctionsGeoTools.java
=> FunctionsProj4.java} (51%)
delete mode 100644
snowflake/src/main/java/org/apache/sedona/snowflake/snowsql/GeoToolsWrapper.java
create mode 100644 spark/common/src/test/resources/grids/ca_nrc_ntv2_0.tif
copy spark/common/src/test/resources/{knn/queries-large-skewed-multiple.csv =>
grids/uk_os_OSTN15_NTv2_ETRStoOSGB.gsb} (54%)
copy spark/common/src/test/resources/{knn/queries-large-skewed-multiple.csv =>
grids/uk_os_OSTN15_NTv2_OSGBtoETRS.gsb} (54%)
create mode 100644 spark/common/src/test/resources/grids/us_noaa_conus.tif
create mode 100644
spark/common/src/test/scala/org/apache/sedona/sql/CRSTransformProj4Test.scala