Note: This document is for an older version of GRASS GIS that is outdated. You should upgrade, and read the current manual page.
List of available display drivers:
Lets start with simple example of Python script called render.py:
#!/usr/bin/env python3 import os import sys import grass.script as gs from grass.script import task as gtask os.environ['GRASS_RENDER_IMMEDIATE'] = 'default' os.environ['GRASS_RENDER_FILE'] = 'output.png' cmd, dcmd = gtask.cmdstring_to_tuple(sys.argv[1]) gs.run_command('d.text', text="Test of GRASS_RENDER_COMMAND redirection") os.environ['GRASS_RENDER_FILE_READ'] = 'TRUE' gs.run_command(cmd, **dcmd)
export GRASS_RENDER_COMMAND=render.py
d.vect roadsmajor
Available at: Display drivers source code (history)
Latest change: Thu Feb 3 11:10:06 2022 in commit: 73413160a81ed43e7a5ca0dc16f0b56e450e9fef
Main index | Display index | Topics index | Keywords index | Graphical index | Full index
© 2003-2022 GRASS Development Team, GRASS GIS 8.0.3dev Reference Manual