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_wkb(
sc,
location = input_location,
wkb_col_idx = 0L
)
sedona_write_wkb(rdd, "/tmp/wkb_output.tsv")
}
Run the code above in your browser using DataLab