sedona_read_geojson {apache.sedona} | R Documentation |
Create a generic SpatialRDD from a GeoJSON data source.
sedona_read_geojson(
sc,
location,
allow_invalid_geometries = TRUE,
skip_syntactically_invalid_geometries = TRUE,
storage_level = "MEMORY_ONLY",
repartition = 1L
)
sc |
A |
location |
Location of the data source. |
allow_invalid_geometries |
Whether to allow topology-invalid geometries to exist in the resulting RDD. |
skip_syntactically_invalid_geometries |
Whether to allows Sedona to automatically skip syntax-invalid geometries, rather than throwing errorings. |
storage_level |
Storage level of the RDD (default: MEMORY_ONLY). |
repartition |
The minimum number of partitions to have in the resulting RDD (default: 1). |
A SpatialRDD.
Other Sedona data inferface functions:
sedona_read_dsv_to_typed_rdd()
,
sedona_read_geojson_to_typed_rdd()
,
sedona_read_shapefile_to_typed_rdd()
,
sedona_read_shapefile()
,
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_geojson(sc, location = input_location)
}