Learn R Programming

geojsonsf (version 2.0.5)

sfc_geojson: sfc to GeoJSON

Description

Converts `sfc` objects to GeoJSON

Usage

sfc_geojson(sfc, digits = NULL)

Value

vector of GeoJSON

Arguments

sfc

simple feature collection object

digits

integer specifying the number of decimal places to round numeric coordinates. numeric values are coorced using as.integer, which may round-down the value you supply. Default is NULL - no rounding

Examples

Run this code
if (FALSE) {
library(sf)
sf <- sf::st_sfc(list(sf::st_point(c(0,0)), sf::st_point(c(1,1))))
sfc_geojson(sf)
}

Run the code above in your browser using DataLab