as.json {geojsonio} | R Documentation |
Convert inputs to JSON
Description
Convert inputs to JSON
Usage
as.json(x, ...)
Arguments
x |
Input |
... |
Further args passed on to |
Details
when the output of topojson_list()
is given to
this function we use a special internal fxn astjl()
to
parse the object - see that fxn and let us know if any
problems you run in to
Examples
## Not run:
(res <- geojson_list(us_cities[1:2, ], lat = "lat", lon = "long"))
as.json(res)
as.json(res, pretty = TRUE)
vec <- c(-99.74, 32.45)
as.json(geojson_list(vec))
as.json(geojson_list(vec), pretty = TRUE)
## End(Not run)
[Package geojsonio version 0.11.3 Index]