Learn R Programming

geojson (version 0.3.5)

point: point class

Description

point class

Usage

point(x)

Arguments

x

input

Examples

Run this code
x <- '{ "type": "Point", "coordinates": [100.0, 0.0] }'
(y <- point(x))
geo_type(y)
geo_pretty(y)
geo_write(y, f <- tempfile(fileext = ".geojson"))
jsonlite::fromJSON(f, FALSE)
unlink(f)

# add to a data.frame
library('tibble')
tibble(a = 1:5, b = list(y))

# as.geojson coercion
as.geojson(x)

Run the code above in your browser using DataLab