paleolimbot opened a new pull request, #814:
URL: https://github.com/apache/sedona-db/pull/814

   ``` r
   library(sedonadb)
   
   cities <- sd_read_parquet(system.file(
     "files/natural-earth_cities_geo.parquet",
     package = "sedonadb"
   ))
   countries <- sd_read_parquet(system.file(
     "files/natural-earth_countries_geo.parquet",
     package = "sedonadb"
   ))
   
   cities |> sd_left_join(countries, by = sd_join_intersects())
   #> <sedonab_dataframe: NA x 4>
   #> ┌──────────────┬───────────────────────────────┬────────────┬───────────┐
   #> │    name.x    ┆            geometry           ┆   name.y   ┆ continent │
   #> │     utf8     ┆            geometry           ┆    utf8    ┆    utf8   │
   #> ╞══════════════╪═══════════════════════════════╪════════════╪═══════════╡
   #> │ Lobamba      ┆ POINT(31.1999971 -26.4666675) ┆ eSwatini   ┆ Africa    │
   #> ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌┤
   #> │ Vaduz        ┆ POINT(9.5166695 47.1337238)   ┆ Austria    ┆ Europe    │
   #> ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌┤
   #> │ Luxembourg   ┆ POINT(6.1300028 49.6116604)   ┆ Luxembourg ┆ Europe    │
   #> ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌┤
   #> │ Vatican City ┆ POINT(12.4533865 41.9032822)  ┆ Italy      ┆ Europe    │
   #> ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌┤
   #> │ San Marino   ┆ POINT(12.4417702 43.9360958)  ┆ Italy      ┆ Europe    │
   #> ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌┤
   #> │ Palikir      ┆ POINT(158.1499743 6.9166437)  ┆            ┆           │
   #> └──────────────┴───────────────────────────────┴────────────┴───────────┘
   #> Preview of up to 6 row(s)
   ```
   
   <sup>Created on 2026-05-04 with [reprex 
v2.1.1](https://reprex.tidyverse.org)</sup>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to