to_geojson {geojson} | R 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)
[Package geojson version 0.3.5 Index]