| sedona_read_shapefile {apache.sedona} | R Documentation |
Create a generic SpatialRDD from a shapefile data source.
sedona_read_shapefile(sc, location, storage_level = "MEMORY_ONLY")
sc |
A |
location |
Location of the data source. |
storage_level |
Storage level of the RDD (default: MEMORY_ONLY). |
A SpatialRDD.
Other Sedona data inferface functions:
sedona_read_dsv_to_typed_rdd(),
sedona_read_geojson_to_typed_rdd(),
sedona_read_geojson(),
sedona_read_shapefile_to_typed_rdd(),
sedona_read_wkb(),
sedona_read_wkt(),
sedona_save_spatial_rdd(),
sedona_write_geojson(),
sedona_write_wkb(),
sedona_write_wkt()
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_shapefile(sc, location = input_location)
}