Summarize the parameters that are available within a SAGA-GIS tool and return these as a tibble.

# S3 method for class 'saga_tool'
tidy(x, ...)

Arguments

x

a `saga_tool` object

...

additional arguments. Currently unused.

Value

a tibble that describes tools, identifiers used by the saga_cmd command line tool, the equivalent argument name used by Rsagacmd, and other options and descriptions.

Examples

if (FALSE) { # \dontrun{
# Initialize a saga object
saga <- saga_gis()

# tidy the tools parameters into a tibble
tidy(saga$ta_morphometry$slope_aspect_curvature)
} # }