This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/geos-11.1.1
in repository https://gitbox.apache.org/repos/asf/sedona-db.git
omit 50ac00a1 chore(deps): bump geos from 11.0.1 to 11.1.1
add 36ab4c16 fix(python/sedonadb): support DuckDB 1.5 spatial tests (#700)
add 1ac184d8 feat(rust/sedona-raster-functions): add RS_Contains,
RS_Intersects, RS_Within UDFs (#615)
add 200616a8 chore(deps): bump geos from 11.0.1 to 11.1.1
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 (50ac00a1)
\
N -- N -- N refs/heads/dependabot/cargo/geos-11.1.1 (200616a8)
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:
Cargo.lock | 4 +
c/sedona-proj/src/transform.rs | 5 +-
docs/reference/sql/rs_contains.qmd | 58 ++
docs/reference/sql/rs_intersects.qmd | 57 ++
docs/reference/sql/rs_within.qmd | 63 ++
python/sedonadb/python/sedonadb/testing.py | 10 +-
rust/sedona-functions/src/lib.rs | 2 +-
rust/sedona-raster-functions/Cargo.toml | 5 +
.../benches/native-raster-functions.rs | 113 ++++
rust/sedona-raster-functions/src/crs_utils.rs | 462 +++++++++++++
rust/sedona-raster-functions/src/executor.rs | 723 +++++++++++++++++++-
rust/sedona-raster-functions/src/lib.rs | 2 +
rust/sedona-raster-functions/src/register.rs | 3 +
.../src/rs_spatial_predicates.rs | 745 +++++++++++++++++++++
rust/sedona-schema/src/crs.rs | 6 +
15 files changed, 2249 insertions(+), 9 deletions(-)
create mode 100644 docs/reference/sql/rs_contains.qmd
create mode 100644 docs/reference/sql/rs_intersects.qmd
create mode 100644 docs/reference/sql/rs_within.qmd
create mode 100644 rust/sedona-raster-functions/src/crs_utils.rs
create mode 100644 rust/sedona-raster-functions/src/rs_spatial_predicates.rs