Description Usage Arguments Details Value Author(s) Examples
find_algorithms
lists or queries all QGIS algorithms which can
be accessed via the QGIS Python API.
1 2 | find_algorithms(search_term = NULL, name_only = FALSE,
qgis_env = set_env())
|
search_term |
If ( |
name_only |
If |
qgis_env |
Environment settings containing all the paths to run the QGIS
API. For more information, refer to |
Function find_algorithms
simply calls processing.alglist
using
Python.
The function returns QGIS function names and short descriptions as an R character vector.
Jannes Muenchow, Victor Olaya, QGIS core team
1 2 3 4 5 6 7 8 9 10 11 12 | ## Not run:
# list all available QGIS algorithms on your system
algs <- find_algorithms()
algs[1:15]
# find a function which adds coordinates
find_algorithms(search_term = "add")
# find only QGIS functions
find_algorithms(search_term = "qgis:")
# find QGIS and SAGA functions related to centroid computations
find_algorithms(search_term = "centroid.+(qgis:|saga:)")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.