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
validate_wkt(x)
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.