to_geojson: Convert GeoJSON character string to approriate GeoJSON class

View source: R/as.geojson.R

to_geojsonR Documentation

Convert GeoJSON character string to approriate GeoJSON class

Description

Automatically detects and adds the class

Usage

to_geojson(x)

Arguments

x

GeoJSON character string

Examples

mp <- '{"type":"MultiPoint","coordinates":[[100,0],[101,1]]}'
to_geojson(mp)

ft <- '{"type":"Feature","properties":{"a":"b"},
"geometry":{"type": "MultiPoint","coordinates": [ [100.0, 0.0], [101.0, 1.0] ]}}'
to_geojson(mp)

fc <- '{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"a":"b"},
"geometry":{"type": "MultiPoint","coordinates": [ [100.0, 0.0], [101.0, 1.0] ]}}]}'
to_geojson(fc)

ropenscilabs/geojson documentation built on Aug. 23, 2023, 7:51 p.m.