list_service_raster_fns | R Documentation |
This function returns the rasterFunctionInfos
field of the ImageServer
's metadata
as a data.frame
. If the field does not exist then an error is emitted.
list_service_raster_fns(
x,
arg = rlang::caller_arg(x),
call = rlang::caller_call()
)
x |
an |
arg |
An argument name in the current function. |
call |
The execution environment of a currently running
function, e.g. You only need to supply Can also be For more information about error calls, see Including function calls in error messages. |
a data.frame of the available raster functions.
## Not run:
# use paste to avoid cran note
furl <- paste0(
"https://di-usfsdata.img.arcgis.com/arcgis/rest/services",
"/FIA_BIGMAP_2018_Species_Aboveground_Biomass/ImageServer"
)
service <- arc_open(furl)
raster_fns <- list_service_raster_fns(service)
head(raster_fns)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.