Displays a tibble containing the name of the tool's parameters, the argument name used by Rsagacmd, the identifier used by the SAGA-GIS command line, and additional descriptions, default and options/constraints.

# S3 method for saga_tool
print(x, ...)

Arguments

x

A `saga_tool` object.

...

Additional arguments to pass to print. Currently not used.

Examples

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

# Display usage information on a tool
print(saga$ta_morphometry$slope_aspect_curvature)

# Or simply:
saga$ta_morphometry$slope_aspect_curvature
}