Skip to content

r3.out.v5d

Exports GRASS 3D raster map to 3-dimensional Vis5D file.

r3.out.v5d [-m] input=string output=name [--overwrite] [--verbose] [--quiet] [--qq] [--ui]

Example:

r3.out.v5d input=string output=name

grass.script.run_command("r3.out.v5d", input, output, flags=None, overwrite=None, verbose=None, quiet=None, superquiet=None)

Example:

gs.run_command("r3.out.v5d", input="string", output="name")

grass.tools.Tools.r3_out_v5d(input, output, flags=None, overwrite=None, verbose=None, quiet=None, superquiet=None)

Example:

tools = Tools()
tools.r3_out_v5d(input="string", output="name")

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

Parameters

input=string [required]
    3D raster map to be converted to Vis5D (V5D) file
output=name [required]
    Name for V5D output file
-m
    Use map coordinates instead of xyz coordinates
--overwrite
    Allow output files to overwrite existing files
--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
    3D raster map to be converted to Vis5D (V5D) file
    Used as: input, 3d-raster
output : str, required
    Name for V5D output file
    Used as: output, file, name
flags : str, optional
    Allowed values: m
    m
        Use map coordinates instead of xyz coordinates
overwrite : bool, optional
    Allow output files to overwrite existing files
    Default: None
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, required
    3D raster map to be converted to Vis5D (V5D) file
    Used as: input, 3d-raster
output : str, required
    Name for V5D output file
    Used as: output, file, name
flags : str, optional
    Allowed values: m
    m
        Use map coordinates instead of xyz coordinates
overwrite : bool, optional
    Allow output files to overwrite existing files
    Default: None
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

Exports 3D raster maps to V5D format. The map parameter is a valid 3D raster map in the current mapset search path. The output parameter is the name of a V5D file which will be written in the current working directory.

Vis5D is a system for interactive visualization of large 5D gridded data sets such as those produced by numerical weather models. The user can make isosurfaces, contour line slices, colored slices, volume renderings, etc. of data in a 3D raster map, then rotate and animate the images in real time. There's also a feature for wind trajectory tracing, a way to make text annotations for publications, support for interactive data analysis, etc.

SEE ALSO

r3.in.v5d, r3.out.vtk

AUTHOR

Jaro Hofierka, GeoModel s.r.o., Slovakia

SOURCE CODE

Available at: r3.out.v5d source code (history)
Latest change: Sunday Jul 27 05:53:30 2025 in commit da40958