Last data update: 2014.03.03

R: Return points that fall within polygons
lawn_withinR Documentation

Return points that fall within polygons

Description

Takes a set of data-Point's and a set of data-Polygon's and returns points that fall within the polygons

Usage

lawn_within(points, polygons, lint = FALSE)

Arguments

points

data-FeatureCollection of points

polygons

data-FeatureCollection of polygons

lint

(logical) Lint or not. Uses geojsonhint. Takes up increasing time as the object to get linted increases in size, so probably use by default for small objects, but not for large if you know they are good geojson objects. Default: FALSE

Value

points that land within at least one polygon, as a data-FeatureCollection

See Also

Other joins: lawn_inside, lawn_tag

Examples

cat(lawn_data$points_within)
cat(lawn_data$polygons_within)
lawn_within(lawn_data$points_within, lawn_data$polygons_within)

Results