get_graphab_raster_codes {graph4lg} | R Documentation |
Get unique raster codes from a Graphab project
Description
The function extracts unique raster codes from a Graphab project
Usage
get_graphab_raster_codes(proj_name, mode = "all", proj_path = NULL)
Arguments
proj_name |
A character string indicating the Graphab project name. The project name is also the name of the project directory in which the file proj_name.xml will be created. |
mode |
A character string equal to either 'all' (default) or 'habitat' indicating whether the returned codes are all the codes of the source raster used for creating the project or only the code corresponding to the habitat patches. |
proj_path |
(optional) A character string indicating the path to the
directory that contains the project directory. It should be used when the
project directory is not in the current working directory. Default is NULL.
When 'proj_path = NULL', the project directory is equal to |
Value
The function returns a vector of integer values corresponding to the source raster codes (all the codes or only the one corresponding to habitat patches).
Author(s)
P. Savary
Examples
## Not run:
proj_name <- "grphb_ex"
get_graphab_raster_codes(proj_name = proj_name,
mode = "all")
## End(Not run)