Skip to content

r.euro.ecosystem

Sets colors and categories of European ecosystem raster data set

r.euro.ecosystem [-12] input=name [--verbose] [--quiet] [--qq] [--ui]

Example:

r.euro.ecosystem input=name

grass.script.run_command("r.euro.ecosystem", input, flags=None, verbose=None, quiet=None, superquiet=None)

Example:

gs.run_command("r.euro.ecosystem", input="name")

grass.tools.Tools.r_euro_ecosystem(input, flags=None, verbose=None, quiet=None, superquiet=None)

Example:

tools = Tools()
tools.r_euro_ecosystem(input="name")

This grass.tools API is experimental in version 8.5 and expected to be stable in version 8.6.

Parameters

input=name [required]
    Name of input raster map
-1
    level 1 data
-2
    level 2 data
--help
    Print usage summary
--verbose
    Verbose module output
--quiet
    Quiet module output
--qq
    Very quiet module output
--ui
    Force launching GUI dialog

input : str, required
    Name of input raster map
    Used as: input, raster, name
flags : str, optional
    Allowed values: 1, 2
    1
        level 1 data
    2
        level 2 data
verbose : bool, optional
    Verbose module output
    Default: None
quiet : bool, optional
    Quiet module output
    Default: None
superquiet : bool, optional
    Very quiet module output
    Default: None

input : str | np.ndarray, required
    Name of input raster map
    Used as: input, raster, name
flags : str, optional
    Allowed values: 1, 2
    1
        level 1 data
    2
        level 2 data
verbose : bool, optional
    Verbose module output
    Default: None
quiet : bool, optional
    Quiet module output
    Default: None
superquiet : bool, optional
    Very quiet module output
    Default: None

Returns:

result : grass.tools.support.ToolResult | None
If the tool produces text as standard output, a ToolResult object will be returned. Otherwise, None will be returned.

DESCRIPTION

r.euro.ecosystem defines colors and raster category labels for Ecosystem types of Europe.

The data can be downloaded at EEA for level 1 (based on EUNIS habitat classification level 1) and level 2 (based on EUNIS habitat classification level 2).

The dataset combines the Corine based MAES ecosystem classes with the non-spatial EUNIS habitat classification for a better biological characterization of ecosystems across Europe. As such it represents probabilities of EUNIS habitat presence for each MAES ecosystem type.

Data definition rules have to be defined by flags -1 or -2.

Raster data definition rules are donated by EEA.

EXAMPLE

  # link to ecosystem raster data level 1
  r.external input="es_l1_100m.tif" output=es_l1_100m
  # define colors and raster category labels
  r.euro.ecosystem -1 input=es_l1_100m

  # link to ecosystem raster data level 2
  r.external input="es_l2_100m.tif" output=es_l2_100m
  # define colors and raster category labels
  r.euro.ecosystem -2 input=es_l2_100m

SEE ALSO

r.colors r.category

AUTHOR

Helmut Kudrnovsky

SOURCE CODE

Available at: r.euro.ecosystem source code (history)
Latest change: Thursday Feb 20 13:02:26 2025 in commit 53de819