You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
check_algorithm_deprecation(): implement toggle to bypass warning *
This is used internally to avoid producing the same warning multiple times in one user call.
Following code was used in testing interactively (from
#193 (comment)):
library(qgisprocess)
download.file("https://github.com/inbo/coding-club/raw/main/data/20231214/20231214_land_use_nara_2016_100m.tif", "20231214_land_use_nara_2016_100m.tif")
download.file("https://github.com/inbo/coding-club/raw/main/data/20231214/20231214_natura2000_protected_areas.gpkg", "20231214_natura2000_protected_areas.gpkg")
zonal_st <- qgis_run_algorithm("native:zonalstatistics",
INPUT_RASTER = "20231214_land_use_nara_2016_100m.tif",
COLUMN_PREFIX = "landuse_",
INPUT_VECTOR = "20231214_natura2000_protected_areas.gpkg",
STATISTICS = c("Majority", "Minority"))
qgis_show_help("native:zonalstatistics")
qgis_get_description("native:zonalstatistics")
qgis_get_argument_specs("native:zonalstatistics")
qgis_get_output_specs("native:zonalstatistics")
qgis_function("native:zonalstatistics")
0 commit comments