lawn_kinks: Get points at all self-intersections of a polygon

View source: R/kinks.R

lawn_kinksR Documentation

Get points at all self-intersections of a polygon

Description

Get points at all self-intersections of a polygon

Usage

lawn_kinks(input, lint = FALSE)

Arguments

input

Feature of features.

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

Examples

poly <- '{
 "type": "Feature",
 "properties": {},
 "geometry": {
   "type": "Polygon",
   "coordinates": [[
      [-12.034835, 8.901183],
      [-12.060413, 8.899826],
      [-12.03638, 8.873199],
      [-12.059383, 8.871418],
      [-12.034835, 8.901183]
    ]]
  }
}'
lawn_kinks(poly)
# lint input object
# lawn_kinks(poly, TRUE)
## Not run: 
poly %>% view
lawn_kinks(poly) %>% view

## End(Not run)

ropensci/lawn documentation built on May 18, 2022, 9:58 a.m.