validate_wkt: Validate WKT objects

Description Usage Arguments Value See Also Examples

View source: R/RcppExports.R

Description

validate_wkt takes a vector of WKT objects and validates them, returning a data.frame containing the status of each entry and (in the case it cannot be parsed) any comments as to what, in particular, may be wrong with it. It does not, unfortunately, check whether the object meets the WKT spec - merely that it is formatted correctly.

Usage

1

Arguments

x

a character vector of WKT objects.

Value

a data.frame of two columns, is_valid (containing TRUE or FALSE values for whether the WKT object is parseable and valid) and comments (containing any error messages in the case that the WKT object is not). If the objects are simply NA, both fields will contain NA.

See Also

wkt_correct() for correcting WKT objects that fail validity checks due to having a non-default orientation.

Examples

1
2
3
4
wkt <- c("POLYGON ((30 10, 40 40, 20 40, 10 20, 30 10))",
 "ARGHLEFLARFDFG",
 "LINESTRING (30 10, 10 90, 40 some string)")
validate_wkt(wkt)

wellknown documentation built on May 26, 2021, 1:06 a.m.