├── .Rbuildignore ├── .github ├── .gitignore ├── ISSUE_TEMPLATE │ ├── 10_package_loading.yml │ ├── 20_plugin.yml │ ├── 30_other.yml │ ├── 40_feature.yml │ ├── 50_documentation.yml │ └── config.yml └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── rhub.yaml ├── .gitignore ├── .zenodo.json ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── compat-raster.R ├── compat-sf.R ├── compat-stars.R ├── compat-terra.R ├── qgis-algorithms.R ├── qgis-arguments.R ├── qgis-cache.R ├── qgis-configure.R ├── qgis-detect.R ├── qgis-function.R ├── qgis-has.R ├── qgis-help.R ├── qgis-output.R ├── qgis-plugins.R ├── qgis-result.R ├── qgis-run-algorithm.R ├── qgis-run.R ├── qgis-state.R ├── qgis-tmp.R ├── qgisprocess-deprecated.R ├── qgisprocess-package.R └── zzz.R ├── README.Rmd ├── README.md ├── checklist.yml ├── codecov.yml ├── cran-comments.md ├── data-raw └── qgis_cached_algorithms.R ├── inst ├── CITATION ├── extdata │ ├── extdata.qgs │ └── longlake.qgs └── longlake │ ├── .gitignore │ ├── longlake.gpkg │ ├── longlake.tif │ ├── longlake_depth.gpkg │ └── longlake_depth.tif ├── man ├── as_qgis_argument.Rd ├── figures │ ├── README-buffer-1.png │ ├── copy_as_json.png │ └── qgisprocess.svg ├── has_qgis.Rd ├── qgis_algorithms.Rd ├── qgis_argument_spec.Rd ├── qgis_as_raster.Rd ├── qgis_as_terra.Rd ├── qgis_clean_result.Rd ├── qgis_configure.Rd ├── qgis_delete_old_cachefiles.Rd ├── qgis_detect_paths.Rd ├── qgis_enable_plugins.Rd ├── qgis_extract_output.Rd ├── qgis_function.Rd ├── qgis_list_input.Rd ├── qgis_path.Rd ├── qgis_result_status.Rd ├── qgis_run.Rd ├── qgis_run_algorithm.Rd ├── qgis_run_algorithm_p.Rd ├── qgis_search_algorithms.Rd ├── qgis_show_help.Rd ├── qgis_tmp_file.Rd ├── qgis_unconfigure.Rd ├── qgis_using_json_input.Rd ├── qgisprocess-deprecated.Rd ├── qgisprocess-package.Rd ├── st_as_sf.Rd ├── st_as_stars.Rd └── vignette_childs │ ├── _qgis_arguments.Rmd │ ├── _qgis_expressions.Rmd │ └── _qgisprocess.Rmd ├── misc └── algorithms │ ├── algorithms.csv │ ├── arguments.csv │ └── outputs.csv ├── pkgdown ├── _pkgdown.yml └── extra.css ├── qgisprocess.Rproj ├── renv.lock ├── renv ├── .gitignore ├── activate.R └── settings.json ├── revdep └── .gitignore ├── tests ├── platform-info.R ├── testthat.R └── testthat │ ├── helper.R │ ├── test-compat-raster.R │ ├── test-compat-sf.R │ ├── test-compat-stars.R │ ├── test-compat-terra.R │ ├── test-qgis-algorithms.R │ ├── test-qgis-arguments.R │ ├── test-qgis-cache.R │ ├── test-qgis-configure.R │ ├── test-qgis-detect.R │ ├── test-qgis-function.R │ ├── test-qgis-has.R │ ├── test-qgis-help.R │ ├── test-qgis-output.R │ ├── test-qgis-plugins.R │ ├── test-qgis-result.R │ ├── test-qgis-run-algorithm.R │ ├── test-qgis-run-algorithm2.R │ ├── test-qgis-run.R │ ├── test-qgis-state.R │ ├── test-qgis-tmp.R │ └── test-qgisprocess-deprecated.R └── vignettes ├── .gitignore ├── cheatsheet_en.Rmd ├── cheatsheet_es.Rmd ├── img ├── qgisprocess_en.png └── qgisprocess_es.png ├── options.Rmd ├── qgis_arguments.Rmd ├── qgis_expressions.Rmd └── qgisprocess.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/10_package_loading.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/.github/ISSUE_TEMPLATE/10_package_loading.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/20_plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/.github/ISSUE_TEMPLATE/20_plugin.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/30_other.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/.github/ISSUE_TEMPLATE/30_other.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/40_feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/.github/ISSUE_TEMPLATE/40_feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/50_documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/.github/ISSUE_TEMPLATE/50_documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/.gitignore -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/.zenodo.json -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/compat-raster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/compat-raster.R -------------------------------------------------------------------------------- /R/compat-sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/compat-sf.R -------------------------------------------------------------------------------- /R/compat-stars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/compat-stars.R -------------------------------------------------------------------------------- /R/compat-terra.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/compat-terra.R -------------------------------------------------------------------------------- /R/qgis-algorithms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/qgis-algorithms.R -------------------------------------------------------------------------------- /R/qgis-arguments.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/qgis-arguments.R -------------------------------------------------------------------------------- /R/qgis-cache.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/qgis-cache.R -------------------------------------------------------------------------------- /R/qgis-configure.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/qgis-configure.R -------------------------------------------------------------------------------- /R/qgis-detect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/qgis-detect.R -------------------------------------------------------------------------------- /R/qgis-function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/qgis-function.R -------------------------------------------------------------------------------- /R/qgis-has.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/qgis-has.R -------------------------------------------------------------------------------- /R/qgis-help.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/qgis-help.R -------------------------------------------------------------------------------- /R/qgis-output.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/qgis-output.R -------------------------------------------------------------------------------- /R/qgis-plugins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/qgis-plugins.R -------------------------------------------------------------------------------- /R/qgis-result.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/qgis-result.R -------------------------------------------------------------------------------- /R/qgis-run-algorithm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/qgis-run-algorithm.R -------------------------------------------------------------------------------- /R/qgis-run.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/qgis-run.R -------------------------------------------------------------------------------- /R/qgis-state.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/qgis-state.R -------------------------------------------------------------------------------- /R/qgis-tmp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/qgis-tmp.R -------------------------------------------------------------------------------- /R/qgisprocess-deprecated.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/qgisprocess-deprecated.R -------------------------------------------------------------------------------- /R/qgisprocess-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/qgisprocess-package.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/README.md -------------------------------------------------------------------------------- /checklist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/checklist.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/qgis_cached_algorithms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/data-raw/qgis_cached_algorithms.R -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/extdata/extdata.qgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/inst/extdata/extdata.qgs -------------------------------------------------------------------------------- /inst/extdata/longlake.qgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/inst/extdata/longlake.qgs -------------------------------------------------------------------------------- /inst/longlake/.gitignore: -------------------------------------------------------------------------------- 1 | *.aux.xml 2 | -------------------------------------------------------------------------------- /inst/longlake/longlake.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/inst/longlake/longlake.gpkg -------------------------------------------------------------------------------- /inst/longlake/longlake.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/inst/longlake/longlake.tif -------------------------------------------------------------------------------- /inst/longlake/longlake_depth.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/inst/longlake/longlake_depth.gpkg -------------------------------------------------------------------------------- /inst/longlake/longlake_depth.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/inst/longlake/longlake_depth.tif -------------------------------------------------------------------------------- /man/as_qgis_argument.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/as_qgis_argument.Rd -------------------------------------------------------------------------------- /man/figures/README-buffer-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/figures/README-buffer-1.png -------------------------------------------------------------------------------- /man/figures/copy_as_json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/figures/copy_as_json.png -------------------------------------------------------------------------------- /man/figures/qgisprocess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/figures/qgisprocess.svg -------------------------------------------------------------------------------- /man/has_qgis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/has_qgis.Rd -------------------------------------------------------------------------------- /man/qgis_algorithms.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_algorithms.Rd -------------------------------------------------------------------------------- /man/qgis_argument_spec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_argument_spec.Rd -------------------------------------------------------------------------------- /man/qgis_as_raster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_as_raster.Rd -------------------------------------------------------------------------------- /man/qgis_as_terra.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_as_terra.Rd -------------------------------------------------------------------------------- /man/qgis_clean_result.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_clean_result.Rd -------------------------------------------------------------------------------- /man/qgis_configure.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_configure.Rd -------------------------------------------------------------------------------- /man/qgis_delete_old_cachefiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_delete_old_cachefiles.Rd -------------------------------------------------------------------------------- /man/qgis_detect_paths.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_detect_paths.Rd -------------------------------------------------------------------------------- /man/qgis_enable_plugins.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_enable_plugins.Rd -------------------------------------------------------------------------------- /man/qgis_extract_output.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_extract_output.Rd -------------------------------------------------------------------------------- /man/qgis_function.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_function.Rd -------------------------------------------------------------------------------- /man/qgis_list_input.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_list_input.Rd -------------------------------------------------------------------------------- /man/qgis_path.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_path.Rd -------------------------------------------------------------------------------- /man/qgis_result_status.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_result_status.Rd -------------------------------------------------------------------------------- /man/qgis_run.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_run.Rd -------------------------------------------------------------------------------- /man/qgis_run_algorithm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_run_algorithm.Rd -------------------------------------------------------------------------------- /man/qgis_run_algorithm_p.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_run_algorithm_p.Rd -------------------------------------------------------------------------------- /man/qgis_search_algorithms.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_search_algorithms.Rd -------------------------------------------------------------------------------- /man/qgis_show_help.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_show_help.Rd -------------------------------------------------------------------------------- /man/qgis_tmp_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_tmp_file.Rd -------------------------------------------------------------------------------- /man/qgis_unconfigure.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_unconfigure.Rd -------------------------------------------------------------------------------- /man/qgis_using_json_input.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgis_using_json_input.Rd -------------------------------------------------------------------------------- /man/qgisprocess-deprecated.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgisprocess-deprecated.Rd -------------------------------------------------------------------------------- /man/qgisprocess-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/qgisprocess-package.Rd -------------------------------------------------------------------------------- /man/st_as_sf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/st_as_sf.Rd -------------------------------------------------------------------------------- /man/st_as_stars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/st_as_stars.Rd -------------------------------------------------------------------------------- /man/vignette_childs/_qgis_arguments.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/vignette_childs/_qgis_arguments.Rmd -------------------------------------------------------------------------------- /man/vignette_childs/_qgis_expressions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/vignette_childs/_qgis_expressions.Rmd -------------------------------------------------------------------------------- /man/vignette_childs/_qgisprocess.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/man/vignette_childs/_qgisprocess.Rmd -------------------------------------------------------------------------------- /misc/algorithms/algorithms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/misc/algorithms/algorithms.csv -------------------------------------------------------------------------------- /misc/algorithms/arguments.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/misc/algorithms/arguments.csv -------------------------------------------------------------------------------- /misc/algorithms/outputs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/misc/algorithms/outputs.csv -------------------------------------------------------------------------------- /pkgdown/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/pkgdown/_pkgdown.yml -------------------------------------------------------------------------------- /pkgdown/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/pkgdown/extra.css -------------------------------------------------------------------------------- /qgisprocess.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/qgisprocess.Rproj -------------------------------------------------------------------------------- /renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/renv.lock -------------------------------------------------------------------------------- /renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/renv/.gitignore -------------------------------------------------------------------------------- /renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/renv/activate.R -------------------------------------------------------------------------------- /renv/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/renv/settings.json -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /tests/platform-info.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/platform-info.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/helper.R -------------------------------------------------------------------------------- /tests/testthat/test-compat-raster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-compat-raster.R -------------------------------------------------------------------------------- /tests/testthat/test-compat-sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-compat-sf.R -------------------------------------------------------------------------------- /tests/testthat/test-compat-stars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-compat-stars.R -------------------------------------------------------------------------------- /tests/testthat/test-compat-terra.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-compat-terra.R -------------------------------------------------------------------------------- /tests/testthat/test-qgis-algorithms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-qgis-algorithms.R -------------------------------------------------------------------------------- /tests/testthat/test-qgis-arguments.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-qgis-arguments.R -------------------------------------------------------------------------------- /tests/testthat/test-qgis-cache.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-qgis-cache.R -------------------------------------------------------------------------------- /tests/testthat/test-qgis-configure.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-qgis-configure.R -------------------------------------------------------------------------------- /tests/testthat/test-qgis-detect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-qgis-detect.R -------------------------------------------------------------------------------- /tests/testthat/test-qgis-function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-qgis-function.R -------------------------------------------------------------------------------- /tests/testthat/test-qgis-has.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-qgis-has.R -------------------------------------------------------------------------------- /tests/testthat/test-qgis-help.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-qgis-help.R -------------------------------------------------------------------------------- /tests/testthat/test-qgis-output.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-qgis-output.R -------------------------------------------------------------------------------- /tests/testthat/test-qgis-plugins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-qgis-plugins.R -------------------------------------------------------------------------------- /tests/testthat/test-qgis-result.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-qgis-result.R -------------------------------------------------------------------------------- /tests/testthat/test-qgis-run-algorithm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-qgis-run-algorithm.R -------------------------------------------------------------------------------- /tests/testthat/test-qgis-run-algorithm2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-qgis-run-algorithm2.R -------------------------------------------------------------------------------- /tests/testthat/test-qgis-run.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-qgis-run.R -------------------------------------------------------------------------------- /tests/testthat/test-qgis-state.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-qgis-state.R -------------------------------------------------------------------------------- /tests/testthat/test-qgis-tmp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-qgis-tmp.R -------------------------------------------------------------------------------- /tests/testthat/test-qgisprocess-deprecated.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/tests/testthat/test-qgisprocess-deprecated.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/cheatsheet_en.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/vignettes/cheatsheet_en.Rmd -------------------------------------------------------------------------------- /vignettes/cheatsheet_es.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/vignettes/cheatsheet_es.Rmd -------------------------------------------------------------------------------- /vignettes/img/qgisprocess_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/vignettes/img/qgisprocess_en.png -------------------------------------------------------------------------------- /vignettes/img/qgisprocess_es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/vignettes/img/qgisprocess_es.png -------------------------------------------------------------------------------- /vignettes/options.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/vignettes/options.Rmd -------------------------------------------------------------------------------- /vignettes/qgis_arguments.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/vignettes/qgis_arguments.Rmd -------------------------------------------------------------------------------- /vignettes/qgis_expressions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/vignettes/qgis_expressions.Rmd -------------------------------------------------------------------------------- /vignettes/qgisprocess.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-spatial/qgisprocess/HEAD/vignettes/qgisprocess.Rmd --------------------------------------------------------------------------------