lawn_geosjontype: Enforce expectations about types of GeoJSON objects.

Description Usage Arguments Value See Also Examples

View source: R/geojsontype.R

Description

Enforce expectations about types of GeoJSON objects.

Usage

1

Arguments

x

value of any data-GeoJSON object. required.

type

expected GeoJSON type. required.

name

name of calling function. required.

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

nothing if no problems - error message if a problem

See Also

Other invariant: lawn_collectionof(), lawn_featureof()

Examples

1
2
3
4
5
6
# all okay
x <- "{ type: 'Point', coordinates: [10, 50] }"
lawn_geosjontype(x, 'Point', 'fooBar')

# error
# lawn_geosjontype(x, 'Polygon', 'fooBar')

lawn documentation built on Jan. 6, 2021, 5:07 p.m.