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

   We had a few configuration options exposed in the Python bindings since 0.2, 
notably the memory limit (where settin it will trigger the new out of core 
spatial join).
   
   We also had expose some options for writing Parquet files (particularly nice 
GeoParquet ones) that I also ported to `sd_write_parquet()`.
   
   ``` r
   library(sedonadb)
   
   # Exposes runtime config options
   sd_configure_context(memory_limit = "4g")
   
   # Expose writer options
   tf <- tempfile(fileext = ".parquet")
   sd_read_parquet(
     
"https://github.com/geoarrow/geoarrow-data/releases/download/v0.2.0/ns-water_water-point.parquet";
   ) |> 
     sd_write_parquet(tf, max_row_group_size = 100000)
   ```
   
   <sup>Created on 2026-02-24 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