wkb_debug {wkutils} | R Documentation |
Debug well-known geometry
Description
Prints the raw calls to the WKBGeometryHandler()
. Useful for writing
custom C++ handlers and debugging read problems.
Usage
wkb_debug(wkb)
wkt_debug(wkt)
wkt_streamer_debug(wkt)
Arguments
wkb |
A |
wkt |
A character vector containing well-known text. |
Value
The input, invisibly
Examples
wkt_debug("MULTIPOLYGON (((0 0, 10 0, 0 10, 0 0)))")
wkt_streamer_debug("MULTIPOLYGON (((0 0, 10 0, 0 10, 0 0)))")
wkb_debug(
wk::wkt_translate_wkb(
"MULTIPOLYGON (((0 0, 10 0, 0 10, 0 0)))"
)
)
[Package wkutils version 0.1.3 Index]