Nothing
Sourced from the Overture Maps Foundation "divisions_area" table using SedonaDB.
library(sedonadb)
sd_sql("SET datafusion.execution.batch_size = 1024")
sd_read_parquet("/Volumes/data/overture/data/theme=divisions/type=division_area/") |>
sd_to_view("division_area", overwrite = TRUE)
sd_sql("SELECT ROW_NUMBER() OVER (ORDER BY names.primary) as idx, names FROM division_area WHERE names.common IS NOT NULL") |>
sd_compute() |> sd_to_view("names_with_common", overwrite = TRUE)
sd_sql("SELECT * FROM names_with_common WHERE (idx % 100) = 0 ORDER BY idx") |>
nanoarrow::write_nanoarrow("inst/test-data/complex-map.arrows")
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.