sifter: Sift geojson - high level DSL

View source: R/sifter.R

sifterR Documentation

Sift geojson - high level DSL

Description

Sift geojson - high level DSL

Usage

sifter(.data, ...)

sifter_(.data, ..., .dots)

Arguments

x

input, one of character string, json, list, or ...

query

query

Value

an object of class character

Examples

library("leaflet")

# get sample data
file <- system.file("examples", "zillow_or.geojson", package = "siftgeojson")

# plot as is
dat <- jsonlite::fromJSON(file, FALSE)
leaflet() %>% addTiles() %>% addGeoJSON(dat) %>% setView(-122.8, 44.8, zoom = 8)

# filter to features in Multnomah County only
json <- paste0(readLines(file), collapse = "")
json2 <- sifter(json, '.features[] | select(.properties.COUNTY == "Multnomah")')
dat <- jsonlite::fromJSON(json2, FALSE)
leaflet() %>% addTiles() %>% addGeoJSON(dat) %>% setView(-122.6, 45.5, zoom = 10)

# sift to Multnomah County only
res <- sifter(json, COUNTY == Multnomah)
## check that only Multnomah County came back
res %>% jqr::index() %>% jqr::dotstr(properties.COUNTY)

ropenscilabs/siftgeojson documentation built on May 18, 2022, 8:32 p.m.