R/wkt-writer.R

Defines functions wkt_writer

Documented in wkt_writer

#' @rdname wk_writer
#' @export
wkt_writer <- function(precision = 16L, trim = TRUE) {
  new_wk_handler(
    .Call(
      wk_c_wkt_writer,
      as.integer(precision)[1],
      as.logical(trim)[1]
    ),
    "wk_wkt_writer"
  )
}

Try the wk package in your browser

Any scripts or data that you put into this service are public.

wk documentation built on Oct. 22, 2023, 9:07 a.m.