qgis_clean_result | R Documentation |
Deletes any temporary files that are defined in a
qgis_result
object.
These may comprise both input and output files.
qgis_clean_result(x)
x |
A |
The qgis_result
object passed to the function is returned
invisibly.
Other topics about accessing or managing processing results:
qgis_as_raster()
,
qgis_as_terra()
,
qgis_extract_output()
,
qgis_result_status()
,
st_as_sf
,
st_as_stars
result <- qgis_run_algorithm(
"native:buffer",
INPUT = system.file("longlake/longlake_depth.gpkg", package = "qgisprocess"),
DISTANCE = 10
)
file.exists(qgis_extract_output(result))
qgis_clean_result(result)
file.exists(qgis_extract_output(result))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.