st_as_stars | R Documentation |
Convert a qgis_result object or one of its elements to a stars object
## S3 method for class 'qgis_outputRaster'
st_as_stars(x, ...)
## S3 method for class 'qgis_outputLayer'
st_as_stars(x, ...)
## S3 method for class 'qgis_result'
st_as_stars(x, ...)
x |
A |
... |
Arguments passed to |
The stars package must be loaded explicitly to use these methods.
A stars
or a stars_proxy
object.
Other topics about coercing processing output:
qgis_as_raster()
,
qgis_as_terra()
,
st_as_sf
Other topics about accessing or managing processing results:
qgis_as_raster()
,
qgis_as_terra()
,
qgis_clean_result()
,
qgis_extract_output()
,
qgis_result_status()
,
st_as_sf
# not running below examples in R CMD check to save time
result <- qgis_run_algorithm(
"native:slope",
INPUT = system.file("longlake/longlake_depth.tif", package = "qgisprocess")
)
# most direct approach, autoselecting a `qgis_outputRaster` type
# output from the `result` object and reading as stars or stars_proxy:
stars::st_as_stars(result)
stars::st_as_stars(result, proxy = TRUE)
# if you need more control, extract the needed output element first:
output_raster <- qgis_extract_output(result, "OUTPUT")
stars::st_as_stars(output_raster)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.