qgis_search_algorithms: Search geoprocessing algorithms

View source: R/qgis-algorithms.R

qgis_search_algorithmsR Documentation

Search geoprocessing algorithms

Description

Searches for algorithms using a regular expression. In its simplest form that is just a string that must match part of a character value.

Usage

qgis_search_algorithms(algorithm = NULL, provider = NULL, group = NULL)

Arguments

algorithm

Regular expression to match the algorithm or algorithm_title value from the output of qgis_algorithms().

provider

Regular expression to match the provider or provider_title value from the output of qgis_algorithms().

group

Regular expression to match the group value from the output of qgis_algorithms().

Details

When using multiple arguments in combination, only the algorithms are returned that fulfill all conditions.

All regular expressions that stringr::str_detect() can handle, are accepted. Have a look at stringi::search_regex() to get a nice overview.

Value

A tibble.

See Also

Other topics about information on algorithms & processing providers: qgis_algorithms(), qgis_show_help()

Examples


qgis_search_algorithms(
  algorithm = "point.*line",
  provider = "^native$"
)


qgisprocess documentation built on Aug. 17, 2023, 5:14 p.m.