sedona_apply_spatial_partitioner {apache.sedona} | R Documentation |
Apply a spatial partitioner to a Sedona spatial RDD.
Description
Given a Sedona spatial RDD, partition its content using a spatial partitioner.
Usage
sedona_apply_spatial_partitioner(
rdd,
partitioner = c("quadtree", "kdbtree"),
max_levels = NULL
)
Arguments
rdd |
The spatial RDD to be partitioned. |
partitioner |
The name of a grid type to use (currently "quadtree" and
"kdbtree" are supported) or an
|
max_levels |
Maximum number of levels in the partitioning tree data
structure. If NULL (default), then use the current number of partitions
within |
Value
A spatially partitioned SpatialRDD.
Examples
library(sparklyr)
library(apache.sedona)
sc <- spark_connect(master = "spark://HOST:PORT")
if (!inherits(sc, "test_connection")) {
input_location <- "/dev/null" # replace it with the path to your input file
rdd <- sedona_read_dsv_to_typed_rdd(
sc,
location = input_location,
delimiter = ",",
type = "point",
first_spatial_col_index = 1L
)
sedona_apply_spatial_partitioner(rdd, partitioner = "kdbtree")
}