View source: R/qgis-algorithms.R
qgis_search_algorithms | R Documentation |
Searches for algorithms using a regular expression. In its simplest form that is just a string that must match part of a character value.
qgis_search_algorithms(
algorithm = NULL,
provider = NULL,
group = NULL,
include_deprecated = FALSE
)
algorithm |
Regular expression to match the |
provider |
Regular expression to match the |
group |
Regular expression to match the |
include_deprecated |
Logical. Should deprecated algorithms be included? |
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.
A tibble.
Other topics about information on algorithms & processing providers:
qgis_algorithms()
,
qgis_show_help()
qgis_search_algorithms(
algorithm = "point.*line",
provider = "^native$"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.